*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    background: #080808;
    color: #fff;
}
.container{
    padding: 10px 10%;
    position: relative;
    z-index: 1;
}
.logo{
    width: 250px;
}

h1{
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 5rem;
    color: #fff;
}
p{
    color: #fff;
}

/* HEADER */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 2;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}
#header .logo{
    width: 300px;
}
#header.scroll {
    background-color: #1b2838;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
#header nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
} 
#header nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
} 
#header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
}
#header nav ul li a::after {
    content: "";
    width: 0;
    height: 3px;
    background: #4FAE32; /* #10542A */
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
#header nav ul li a:hover::after {
    width: 100%;
}

/* SHOWCASE */
#showcase {
    position: relative;
    width: 100%;
    height: 100vh;
}
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.50; /* Adjust the opacity here */
    z-index: -1;
}
.showcase-text{
    margin-top: 15%;
    font-size: 30px;
    text-align: center;
    opacity: 100%;
}
.showcase-text span{
    color: #4FAE32; 
}
.showcase-text h1{
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}
.showcase-text h3{
    font-size: 3.2rem;
    font-weight: 700;
}
.showcase-text h3:nth-of-type(2){
    margin-bottom: 2rem;
}

/*ABOUT*/
#about{
    padding-top: 120px;
    color:  #ababab;
    font-size: 1.2rem;
    line-height: 1.6rem;
}
.row{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.about-col-1{
    display: flex;
    align-items: center;
    flex-basis: 40%;
}
.about-col-1 img{
    width: 100%;
    border-radius: 10px;
}
.about-col-2{
    flex-basis: 50%;
}
#about h1{
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 5rem;
    color: #fff;
}
#about h2 span{
    margin-top: 10px;
    color: #4FAE32;
}
#about p{
    margin-top: 10px;
    line-height: 2rem;
    text-align: justify;
}

/*CONTACT*/
#contact{
    padding-top: 120px;
    padding-bottom: 20px;
    color:  #ababab;
    font-size: 1.2rem;
}
.contact-left{
    flex-basis: 35%;
    margin-top: 4%;
}
.contact-right{
    flex-basis: 60%;
}
.contact-left p{
    margin-top: 30px;
}
.contact-left p i{
    color: #4FAE32;
    margin-right: 15px;
    font-size: 25px;
}
.social-icons a{
    text-decoration: none;
    font-size: 50px;
    margin-right: 15px;
    color: #ababab;
    display: inline-block;
    transition: transform 0.5s;
}
.social-icons a:hover{
    color: #4FAE32;
    transform: translateY(-5px);
}
.contact-right{
    width: 100%;
}
#map{
    width: 100%;
}

/*FOOTER*/
#footer{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #262626;
    font-weight: 300;
}

/*<!--RESPONSIVE-->*/
nav .fas{
    display: none;
}

@media only screen and (max-width: 600px){
    h1{
        font-size: 2.2rem;
    }
    /*HEADER*/
    #header .logo{
        width: 75%;
    }
    nav .fas{
        display: block;
        font-size: 25px;
    }
    #header nav ul{
        background: #10542A;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        
    }
    #header nav ul li{
        display: block;
        margin: 25px;
    }
    #header nav ul .fas{
        position: absolute;
        top: 35px;
        right: 37px;
        cursor: pointer;
    }

    /*SHOWCASE*/
    #showcase{
        height: 75vh;
    }
    #showcase .background-image{
        object-fit: cover;
    }
    #showcase .showcase-text{
        margin-top: 50%;
    }
    #showcase h1{
        font-size: 3rem;
    }
    #showcase h3{
        font-size: 2.2rem;
    }
    #showcase br{
        display: none;
    }

    /*ABOUT*/
    #about{
        padding-top: 75px;
    }
    .about-col-1, .about-col-2{
        flex-basis: 100%;
    }
    .about-col-2{
        font-size: 14px;
    }
    .about-col-1 img{
        margin-top: 20px;
    }

    /*CONTACT*/
    #contact{
        padding-top: 50px;
    }
    #contact .social-icons{
        margin: 0;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .contact-left{
        margin-bottom: 4%;
    }
    .contact-left p{
        margin-bottom: 30px;
        margin-top: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    h1{
        font-size: 3.2rem;
    }

    /*HEADER*/
    #header .logo{
        width: 50%;
    }
    nav .fas{
        display: block;
        font-size: 25px;
    }
    #header nav ul{
        background: #10542A;
        flex-direction: column;
        align-items: center;
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        padding-top: 50px;
        z-index: 2;
        transition: right 0.5s;
        
    }
    #header nav ul li{
        display: block;
        margin: 25px;
    }
    #header nav ul .fas{
        position: absolute;
        top: 35px;
        right: 70px;
        cursor: pointer;
    }

    /*SHOWCASE*/
    #showcase{
        height: 75vh;
    }
    #showcase .showcase-text{
        margin-top: 30%;
    }
    #showcase h1{
        font-size: 4rem;
    }
    #showcase h3{
        font-size: 3.2rem;
    }
    #showcase .background-image{
        object-fit: cover;
    }

    /*ABOUT*/
    .about-col-1, .about-col-2{
        flex-basis: 100%;
        font-size: 1rem;
    }
    .about-col-1 img{
        margin-top: 20px;
    }

    /*CONTACT*/
    #contact{
        padding-top: 50px;
    }
    #contact .social-icons{
        margin: 0;
    }
    .contact-left, .contact-right{
        flex-basis: 100%;
    }
    .contact-left{
        margin-bottom: 4%;
    }
    .contact-left p{
        margin-bottom: 30px;
        margin-top: 0px;
    }
  }