:root {
    --lightgreen: #75ad42;
    --darkgreen: #015e32;
}

@font-face {
    font-family: 'Bebas';
    src: url(../fonts/BebasNeue-Regular.ttf) format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat-VariableFont_wght.ttf) format('truetype');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

header {
    width: 100%;
    height: 4.5rem;
    background-color: var(--darkgreen);
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}

.logo-con {
    width: 85%;
    height: 4.5rem;
}

.logo-con img {
    height: 8rem;
    width: 8rem;
    margin-left: 0.5rem;
    margin-top: 0.5rem;
}

.social-con {
    width: 15%;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-right: 1rem;
}

.social-con img {
    height: 3rem;
    width: 3rem;
    cursor: pointer;
}

@media screen and (min-width: 451px) and (max-width: 770px) {
    .logo-con {
        width: 80%;
    }
    
    .social-con {
        width: 20%;
        padding-right: 1.5rem;
    }

    .social-con img {
        margin-right: 0.5rem;
    }
}

@media screen and (max-width: 770px) and (orientation: landscape) {
    header {
        height: 2.5rem;
    }
    
    .logo-con {
        width: 80%;
        height: 2.5rem;
    }
    
    .logo-con img {
        height: 5rem;
        width: 5rem;
        margin-left: 0.25rem;
        margin-top: 0.25rem;
    }
    
    .social-con {
        width: 20%;
        height: 2.5rem;
        padding-right: 0.5rem;
    }
    
    .social-con img {
        height: 2rem;
        width: 2rem;
    }
}


@media screen and (max-width: 450px) {
    header {
        width: 100%;
        height: 4rem;
        background-color: var(--darkgreen);
        display: flex;
        align-items: center;
        z-index: 1;
        position: relative;
    }
    
    .logo-con {
        width: 60%;
       height: 4rem;
    }
    
    .logo-con img {
        height: 6rem;
        width: 6rem;
        margin-left: 0.3rem;
        margin-top: 0.3rem;
    }
    
    .social-con {
        width: 40%;
        height: 4rem;
        margin-right: 0rem;
        padding: 0;
    }
    
    .social-con img {
        height: 2.9rem;
        width: 2.9rem;
        cursor: pointer;
        margin: 0;
    }
  
}

/* ---------------title */

.title {
    width: 100%;
    height: 95vh;
    background-image: url(../images/home/title-bck.webp);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-desk {
    font-size: 5rem;
    transform: scaleY(1.2);
    letter-spacing: 3px;
    line-height: 5rem;
    text-transform: uppercase;
    font-family: 'Bebas', sans-serif;
    background-color: var(--darkgreen);
    padding: 0.5rem 2rem;
    border-radius: 1rem;
    color: #fff;
}

.tt-mbl {
    display: none;
}

#span {
    font-family: 'Montserrat';
    font-stretch: ultra-condensed;
    font-weight: 800;
}

@media screen and (max-width: 1028px) {    
    .tt-desk {
        display: none;
    }

    .tt-mbl {
        display: block;
        font-size: 6rem;
        transform: scaleY(1.2);
        letter-spacing: 3px;
        line-height: 5.5rem;
        text-transform: uppercase;
        font-family: 'Bebas', sans-serif;
        background-color: var(--darkgreen);
        padding: 2rem 2rem;
        border-radius: 1rem;
        color: #fff;
        text-align: center;
    }
}

@media screen and (max-width: 770px) {
    .tt-mbl {
        font-size: 5rem;
        line-height: 4.5rem;
    }
} 

@media screen and (max-width: 770px) and (orientation: landscape) {
    .tt-mbl {
        font-size: 3rem;
        line-height: 3rem;
        padding: 1rem 1rem;
        border-radius: 1rem;
        margin: 1rem;
    }
} 

@media screen and (max-width: 450px) {    
    .title {
        margin-top: -5%;
        background-image: url(../images/home/title-bck-mbl.webp);
    }
    
    .tt-mbl {
        font-size: 3rem;
        line-height: 3rem;
        padding: 1rem 1rem;
        border-radius: 1rem;
        margin: 1rem;
    }
}
@media screen and (max-width: 400px) {
    .tt-mbl {
        max-width: 80%;
    }
}


