@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&family=Inter:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Goblin+One&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    list-style: none;
    text-decoration: none;
}

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;
}
body{
    background: red;
}
.logo{
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.nav {
    display: flex;
}

.nav a{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    transition: all .55s ease;
    border: 10px solid transparent;
    border-radius: 15px;
}

.nav a:hover{
    border: 10px solid transparent;
    background-color: #000000;
    border-radius: 15px;
}

#menu-icon {
    color:white;
    font-size: 30px;
    z-index: 1001;
    cursor:pointer;
    display: none;
}

.hero{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.9deg, #808080 0%, #808080 28.53%, #000000);
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    
}

section{
    padding: 0 19%;
}

.hero-text h5{
    font-size: 14px;
    font-weight: 400;
    color: white;
    margin-bottom: 40px;
}

.hero-text h1{ 
    font-family: 'Goblin One', serif;
    font-size: 35px;
    text-align: center;
    line-height: 1;
    color: white;
    /* margin: 0 0 0 45px; */
}

.hero-text h4{
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}
.hero-text p{
    color: white;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-img img{
    width: 400px;
    height: auto;
}

.hero-text a {
    display: inline-block;
    color: white;
    background: #4d9559;
    border: 1px solid transparent;
    padding: 12px 30px;
    line-height: 1.4;
    font-size: 14px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
}

.hero-text a:hover{
    background: transparent;
    border: 1px solid white;
    transform: translateX(10px);
}

.hero-text a.ctaa{
    margin-left: 20px;
}
.hero-text a.ctaa i{
    vertical-align: middle;
    margin-right: 5px;
}

.scroll-down{
    position: absolute;
    bottom: 6%;
    right: 9%;
}

@media (max-width: 1535px){
    .header{
        padding: 15px 3%;
        transition: .2s;
    }
    .icons{
        padding: 0 3%;
        transition: .2s;
    }
}   

@media (max-width: 1460){
    section{
        padding: 0 12%;
        transition: .2s;
    }
}

@media (max-width: 1340px){
    .hero-img img{
        width: 100%;
        height: auto;
    }
    .hero-text h1{
        font-size: 75px;
        margin: 0 0 30px;

    }

    .hero-text h5{
        margin-bottom: 25px;
    }
}
@media (max-width: 1195px){
    section{
        padding: 0 3%;
        transition: .2s;
    }
    .hero-text{
        padding-top: 115px;
    }
    .hero-img{
        text-align: center;
    }
    .hero-img img{
        width: 560px;
        height: auto;

    }
    .hero{
        height: 100%;
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 990px){
    #menu-icon{
        display: block;
  

    }
    .navlist{
        position: absolute;
        top: 100%;
        right: -100;
        width: 300px;
        height: 40vh;
        background: #4d9559;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 50px 20px;
        transition: all .55s ease;
    }
    .navlist a {
        display: block;
        margin: 10px 0;
        margin-left: 0;
    }
    
    .navlist.open {
        right: 0;
    }
}
@media (max-width: 680px){
    .hero-img img{
        width: 100%;
        height: auto;
    }
}