/* ---GLOBAL STYLES--- */

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --green: #03593f;
    --light-green: #03a64b;
    --black: #252525;
}

body {
    background: white;
}

body.noscroll {
    overflow: hidden;
}

img,
svg {
    width: 100%;
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button {
    cursor: pointer;
}

h1,
h2 {
    font-size: 1.5vw;
}

p,
li {
    color: var(--green);
    font-size: 1vw;
    font-weight: 400;
}

ul {
    color: var(--green);
    list-style-position: inside;
}

.absolute_media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    translate: .25s;
}

.main_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5vw;
    color: white;
    font-size: 1vw;
    font-weight: 500;
    padding: 1vw 2vw;
    border-radius: .25vw;
    background: var(--light-green);
    transition: .25s;
}

.main_btn:hover {
    color: var(--light-green);
    background: white;
}

.main_btn i {
    font-size: 1.5vw;
}

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 5vw;
    }
    p,
    li {
        font-size: 3vw;
    }
    .main_btn {
        font-size: 3.5vw;
        gap: 3vw;
        padding: 3vw 6vw;
        border-radius: .75vw;
    }
    .main_btn i {
        font-size: 5vw;
    }
}


/* ---HEADER STYLES--- */

header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

header .bar_box {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: .5vw;
    background: var(--green);
}

header .bar_box a,
header .bar_box p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25vw;
    color: white;
    font-size: .9vw;
}

header .bar_box a:hover {
    color: var(--light-green);
}

header .language_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5vw;
}

header .language_box i {
    color: white;
    font-size: .9vw;
}

header .language_box span {
    color: white;
    font-size: 1vw;
}

header .networks_box{
    display: flex;
    gap: 1vw;
}

header .header_box {
    padding: 2% 2%;
}

header .header_box .logo_img {
    width: 7%;
}

@media (max-width: 996px) {
    header .bar_box {
        flex-direction: column;
        gap: 3vw;
        padding: 5vw 10vw;
    }
    header .bar_box a,
    header .bar_box p {
        gap: 2vw;
        font-size: 3vw;
    }
    header .language_box {
        gap: 3vw;
    }
    header .language_box i {
        font-size: 3vw;
    }
    header .language_box span {
        font-size: 3vw;
    }
    header .networks_box{
        gap: 2vw;
    }
    header .header_box {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5%;
    }
    header .header_box .logo_img {
        width: 25%;
    }
}


/* ---FOOTER STYLES--- */

footer {
    background: var(--green);
}

footer .footer_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 5% 10%;
}

footer .footer_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

footer .logo_img {
    width: 30%;
}

footer .legal_box {
    display: flex;
    align-items: center;
    gap: 1vw;
}

footer .legal_box a {
    font-size: .7vw !important;
}

footer .legal_box span {
    color: white;
    font-size: .8vw;
}

footer .footer_item h2 {
    color: white;
}

footer .footer_item a,
footer .footer_item p {
    color: white;
    font-size: 1vw;
}

footer .footer_item a:hover {
    color: var(--light-green);
}

footer .networks_box{
    display: flex;
    gap: 1vw;
}

footer .credits_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: .5vw;
    background: white;
}

footer .credits_box a {
    color: var(--green);
    font-size: .9vw;
}

footer .credits_box a:hover {
    color: var(--light-green);
}

footer .credits_box span {
    color: var(--green);
    font-size: .9vw;
}

@media (max-width: 996px) {
    footer .footer_box {
        grid-template-columns: 1fr;
        gap: 10vw;
        padding: 10%;
    }
    footer .footer_item {
        gap: 3vw;
    }
    footer .logo_img {
        width: 30%;
        margin: auto;
    }
    footer .legal_box a {
        font-size: 2.5vw !important;
    }
    footer .legal_box span {
        font-size: 3vw;
    }
    footer .footer_item {
        align-items: center;
    }
    footer .footer_item h2 {
        text-align: center;
    }
    footer .footer_item a,
    footer .footer_item p {
        font-size: 3.5vw;
        text-align: center;
    }
    footer .networks_box{
        gap: 2vw;
    }
    footer .credits_box {
        gap: 2vw;
        padding: 1vw;
    }
    footer .credits_box a {
        font-size: 2.2vw;
    }
    footer .credits_box span {
        font-size: 2.5vw;
    }
}