
  @import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto&family=Satisfy&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppings', sans-serif;
    list-style: none;
    text-decoration: none;
}
body{
    background: linear-gradient(245.59deg, #459252 0%, #38703d 28.53%, #133917 75.52%);

}


header{
    position: fixed;
    right:0;  
    top:0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background: transparent;

}

.logo{
    font-size: 38px;
    font-weight: 500;
    color:white;
   
  

}
.navlinks{
    display: flex;
}
.navlinks a{
    color:white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
    font-family: 'Red Hat Display', sans-serif;
}
.navlinks a:hover{
    border: 2px solid white;
}

#menu-icon{
    color: white;
    font-size: 35px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.hero{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    position:relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    
}

section{
    padding: 16%;
}
.hero-text{
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
}

.hero-text h1{
    font-family: 'Satisfy', cursive;
    font-size: 90px;
    line-height: 1;
    color: white;
    margin: 0 0 45px;

}
.hero-text h4{
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.hero-text p{
    color: white;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 40px; 
   font-family: 'Red Hat Display', sans-serif;
}

.hero-img{
    width: 700px;
    height: auto;

}

.hero-text a{
    display: inline-block;
    color: white;
    background: #4d9559;
    border: 1px solid transparent;
    padding: 12px 30px;
    border-radius: 5px;
    font-family: 'Red Hat Display', sans-serif;
    text-transform: uppercase;
    transition: all .60s ease-in-out;
}

.hero-text a:hover{
 background-color: transparent;
 transform: translatex(8px);
}

.icons{
    position: absolute;
    top: 50%;
    padding: 0 4%;
    transform: translateY(-50%) ;
}

.icons i {
    display: block;
    margin: 26px 0;
    font-size: 24px;
    color: white;
    transition: all .30s ease;
}

.icons i:hover{
    transform: translateY(-5px);
}

@media (max-width: 1535px){
    header{
        padding: 15px 3%;
        transition: .2s;
    }
.icons{
    padding: 0.3%;
    transition: .2s;
}
}

@media (max-width: 1460px){
    section{
        padding: 16%;
        transition:  .2s;
    }
}
@media (max-width: 1340px){
    .hero-text h1{
        font-size: 75px;
        margin: 0 0 30px;
    }
}

@media (max-width: 1195px){
    section{
        padding: 0 3%;
        transition: .2s;
    }

    .hero-text{
        padding-top: 115px;
    }
    .hero{
        height:100%;
        gap: 1rem;
        grid-template-columns: 1fr;
    }
    .icons{
        display:none;
    }
}


@media (max-width: 990px){
   
    .navlist{
        position: absolute;
        top: 100%;
        right: 0;
        width: 300px;
        height: 40vh;
        background: #4d9559;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 50px 20px;
        transition: all .55s ease;
    }
}




