@charset "utf-8";
:root{
    --red:#a70000;
    --gold:#f4b400;
    --dark:#222;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#fafafa;
}

.page{
    max-width:1400px;
    margin:auto;
    background:#faf6f5;
    position:relative;
}

/* Corner */

.corner-ribbon{
    position:absolute;
    top:0;
    right:0;
   
    height:363px;
    
    display:flex;
    justify-content:center;
    align-items:flex-start;
    padding-top:20px;
}

.corner-ribbon span{
    font-size:30px;
    font-weight:900;
    text-align:center;
    color:#3c0000;
}

/* Logo */

.logo-section{
    text-align:center;
    padding:40px 20px;
}

.logo-section img{
    max-width:550px;
    width:100%;
}

/* Hero */

.hero{
    text-align:center;
    padding:10px 20px 40px;
}

.mini-title{
    font-size:40px;
    letter-spacing:8px;
    margin-bottom:20px;
}

.mini-title span{
    width:120px;
    height:2px;
    background:var(--gold);
    display:inline-block;
    vertical-align:middle;
}

.hero h1{
    font-size:110px;
    font-weight:900;
}

.red{
    color:var(--red);
}

.gold{
    color:var(--gold);
}

.hero h2{
    margin-top:20px;
    font-size:40px;
    font-weight:800;
}

.hero p{
    max-width:900px;
    margin:25px auto;
    font-size:26px;
    line-height:1.6;
}

/* Content */

.content-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr 1fr;
    gap:30px;
    padding:50px;
    align-items:center;
}

.feature{
    display:flex;
    gap:15px;
    margin-bottom:35px;
}

.icon{
    width:60px;
    height:60px;
    background:var(--red);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.feature h3{
    color:#000;
    margin-bottom:5px;
}

.feature p{
    color:#555;
    line-height:1.6;
}

.africa-map img{
    width:100%;
}

/* Tagline */

.tagline{
    text-align:center;
    padding:30px;
    font-size:34px;
    font-weight:800;
}

.tagline span{
    margin:0 20px;
}

.tagline span:nth-child(2){
    color:var(--red);
}

.tagline span:nth-child(3){
    color:var(--gold);
}

/* CTA */

.cta{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:var(--red);
    color:white;
}

.subscribe,
.contact-box{
    padding:50px;
}

.contact-box{
    background:var(--gold);
    color:black;
}

.subscribe h3,
.contact-box h3{
    font-size:34px;
    margin-bottom:15px;
}

/* Footer */

footer{
    padding:25px;
    text-align:center;
}

.social a{
    margin:0 10px;
    text-decoration:none;
    color:var(--red);
}

.hashtags{
    margin-top:20px;
    color:var(--red);
    font-weight:700;
}

.hashtags span{
    margin:10px;
    
}
.poweredby{ margin-top:20px;
    color:var(--red);
    font-weight:700;}
	
.poweredby a{ font-weight:400; color:#000; text-decoration:none; font-size:14px;  }
.poweredby a:hover{ font-weight:400; color:#000; text-decoration:underline; font-size:14px;  }
     
	
/* Responsive */

@media(max-width:992px){

.hero h1{
    font-size:70px;
}

.content-grid{
    grid-template-columns:1fr;
}

.cta{
    grid-template-columns:1fr;
}

.tagline{
    font-size:22px;
}

}/* CSS Document */

