@font-face {
    font-family: 'New Science Bold Extended';
    src: url('../fonts/New_Science_Bold_Extended.otf');
}

@font-face {
    font-family: 'New Science SemiBold Extended';
    src: url('../fonts/New_Science_SemiBold_Extended.otf');
}

@font-face {
    font-family: 'New Science Medium Extended';
    src: url('../fonts/New_Science_Regular_Extended.otf');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

:root{
    --primary-color: #3E5121;
    --secondary-color: #D82B2A;
    --background: #F6FBF3;
}

a, h1, b{
    font-family: 'New Science Bold Extended';
    text-decoration: none;
    color: var(--primary-color);
}

h2, p, input, textarea{
    font-family: 'New Science Medium Extended';
    color: var(--primary-color);
}

a, button{
    cursor: pointer;
}

html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}

/* HEADER */

header{
    padding: 4vh 4vh;
    position: fixed;
    top: 0;
    transition: background-color 0.5s ease-out;
    width: 100vw;
    z-index: 999;
}

header > .logo{
    display: none !important;
}

header nav > i{
    display: none !important;
    font-size: 20px;
}

header nav ul{
    display: flex;
    gap: 3vw;
    justify-content: center;
    align-items: center;
}

header .logo{
    width: 15vw;
    display: flex;
    align-items: center;
    position: relative;
}

header .logo img{
    width: 15vw;
    position: absolute;
}

header .logo img:first-child{
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

header .logo img:last-child{
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

header.scroll .logo img:first-child{
    opacity: 0;
}

header.scroll .logo img:last-child{
    opacity: 1;
}

header nav ul a{
    color: #fff;
    width: fit-content;
    text-align: center;
    font-size: 0.77vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    transition: color 0.5s ease-out;
}

header nav ul a hr{
    color: var(--secondary-color);
    width: 0px;
    height: 3px;
    transition: 0.3s ease-in;
    background-color: var(--secondary-color);
    opacity: 0;
    border: var(--secondary-color);

}

header nav ul a:hover hr{
    width: 100%;
    opacity: 1;
}

header nav ul a:last-child{
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
    flex-direction: row;
    gap: 10px;
    color: #fff !important;
}

header nav ul a:last-child:hover{
    background-color: var(--primary-color);
}

header nav ul a:nth-child(7), header nav ul a:nth-child(8){
    color: var(--primary-color);
}

header nav ul a:last-child span{
    background-color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav ul a:last-child span i{
    font-size: 12px;
    color: var(--secondary-color);
    transform: rotate(45deg);
    transition: color 0.2s ease-in-out;
}

header nav ul a:last-child:hover span i{
    color: var(--primary-color);
}

header.scroll{
    background-color: #fff;
}

header.scroll nav ul a{
    color: var(--primary-color);
}

header > i{
    display: none !important;
}

@media screen and (max-width:768px) {

    header{
        padding: 5vh 5vh;
    }

    header > .logo{
        display: flex !important;
        width: 30vw;
    }

    header > .logo img{
        width: 30vw;
    }

    header > i{
        position: absolute;
        right: 5vh;
        top: 3vh;
        font-size: 18px;
        color: #fff;
        display: block !important;
        transition: color 0.5s ease-in-out;
    }

    header.scroll > i{
        color: var(--primary-color);
    }

    header nav{
        width: 100vw;
        height: 100vh;
        position: fixed;
        background-color: #fff;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        transition: transform 0.5s ease-out;
        z-index: 9999;
    }
    
    header nav.active{
        transform: translateX(0);
    }

    header nav i{
        display: block !important;
        position: absolute;
        top: 3vh;
        right: 5vh;
        font-size: 20px;
        color: var(--primary-color);
    }

    header nav ul{
        flex-direction: column;
        align-items: flex-start;
        padding: 10vh;
    }

    header nav ul a{
        color: var(--primary-color);
        font-size: 14px;
        text-align: left;
    }

    header nav ul a:last-child{
        display: none;
    }

    header nav ul a br{
        display: none;
    }

    header nav ul .logo{
        margin: 0 auto 10vh auto;
        justify-content: center;
    }

    header nav ul .logo img{
        width: 40vw;
    }

    header nav ul .logo img:first-child{
        opacity: 0 !important;
    }

    header nav ul .logo img:last-child{
        opacity: 1 !important;
    }
}

/* BANNER */

section#banner{
    width: 100vw;
    height: 130vh;
}

section#banner .circle{
    background: url('../img/background.webp');
    width: 80vw;
    height: 90vw;
    position: absolute;
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    top: -26vw;
    left: -12vw;
}

section#banner .content{
    padding: 18vh 0 0 15vw;
    display: flex;
    height: 47vw;
}

section#banner .content .text{
    color: #fff;
    margin-bottom: 20vh;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

section#banner .content img{
    width: 50vw;
    height: 47vw;
    object-fit: cover;
    object-position: 70%
}

section#banner .content .text h2{
    font-size: 50px;
    margin-bottom: 5vh;
    color: #fff;
    transform: translateX(-100%);
    transition: transform 0.8s ease-in-out;
}

section#banner .content .text h2.animation{
    transform: translateX(0);
}

section#banner .content .text p{
    font-size: 16px;
    margin-bottom: 3vh;
    color: #fff;
    padding-right: 10vw;
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
}

section#banner .content .text p.animation{
    transform: translateX(0);
}

section#banner .content .text a{
    background-color: var(--secondary-color);
    margin-bottom: 5vh;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    gap: 10px;
    color: #fff !important;
    width: fit-content;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 1.2s ease-in-out;
}

section#banner .content .text a.animation{
    transform: translateX(0);
}

section#banner .content .text a:hover{
    background-color: var(--primary-color);
}

section#banner .content .text a:hover i{
    color: var(--primary-color);
}

section#banner .content .text a span{
    background-color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section#banner .content .text a span i{
    font-size: 12px;
    color: var(--secondary-color);
    transform: rotate(45deg);
    transition: color 0.2s ease-out;
}

section#banner .absolute{
    position: absolute;
    top: 13vh;
    right: 44vw;
    width: 8vw;
}

section#banner .side{
    position: absolute;
    top: 30vh;
    left: 5vh;
    width: 2vw;
}

section#banner > img{
    transform: scale(0.8);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

section#banner > img.animation{
    transform: scale(1);
    opacity: 1;
}

@media screen and (max-width:768px) {

    section#banner{
        height: fit-content;
    }
    
    section#banner .circle{
        width: 100vw;
        height: 100vh;
        top: -50vh;
        left: 0vh;
        background-size: cover;
        background-position: bottom;
    }

    section#banner .content{
        height: initial;
        padding: 15vh 0 0 0;
        flex-direction: column-reverse;
    }

    section#banner .content img{
        height: auto;
        width: 70vw;
        margin: 0 auto;
    }

    section#banner .content .text{
        margin: 0 10vw;
        text-align: center;
    }

    section#banner .content .text h2{
        font-size: 25px;
        margin-bottom: 3vh;
        color: var(--primary-color);
    }

    section#banner .content .text h2 br{
        display: none;
    }

    section#banner .content .text p{
        font-size: 12px;
        color: var(--primary-color);
    }

    section#banner .content .text a{
        font-size: 12px;
        margin: 0 auto;
    }

    section#banner .side{
        left: 5vw;
    }

    section#banner .absolute{
        top: 9vh;
    }

    section#banner .content .text p{
        padding-right: 0;
    }
}

@media screen and (min-width:1370px) {
    section#banner{
        height: 100vh;
    }
}

@media screen and (min-width:1500px) {
    section#banner{
        height: 110vh;
    }
}

/* INTRO */

section#intro{
    padding: 15vh 15vw 10vh 15vw;
    background-color: #F5EFE6;
    margin-top: 15vh;
}

section#intro h2{
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
}

section#intro > h2{
    margin-bottom: 20px;
    transform: scale(0.5);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

section#intro > h2.animation{
    transform: scale(1);
    opacity: 1;
}

section#intro p{
    text-align: center;
    font-size: 14px;
}

section#intro > p{
    transform: scale(0.5);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

section#intro > p.animation{
    transform: scale(1);
    opacity: 1;
}

section#intro .cards{
    display: flex;
    gap: 2vw;
    margin: 50px 0 0 0;
}

section#intro .cards .card{
    width: 22vw;
    display: flex;
    flex-direction: column;
    background-color: var(--background);
    padding: 1vw;
    gap: 2vw;
    transform: scale(0.5);
    transition: transform 0.5s ease-in-out;
}

section#intro .card.animation{
    transform: scale(1);
}

section#intro .cards .card .circle{
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto 2vh auto;
}

section#intro .cards .card .circle img{
    width: 70%;
    margin: 0 -60% -60% 0;
}

section#intro .cards .card h2{
    font-size: 16px;
}

section#intro .cards .card p{
    font-size: 12px;
    text-align: center;
}

section#intro .cards .card a{
    background-color: var(--secondary-color);
    color: #fff;
    width: fit-content;
    padding: 5px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    transition: background-color 0.3s ease-in-out;
    margin: auto auto 0px auto;
}

section#intro .cards .card a:hover{
    background-color: var(--primary-color);
}

@media screen and (max-width:768px) {
    
    section#intro{
        padding: 10vh 10vw 10vh 10vw;
    }

    section#intro h2{
        font-size: 24px;
    }

    section#intro p{
        font-size: 12px;
    }

    section#intro .cards{
        flex-direction: column;
        align-items: center;
        gap: 5vh;
    }

    section#intro .cards .card{
        width: 60vw;
        padding: 5vw;
    }

    section#intro .cards .card .circle{
        width: 20vw;
        height: 20vw;
    }

    section#intro .cards .card p{
        margin-bottom: 20px;
    }
}

/* US */

section#us{
    padding-top: 15vh;
}

section#us .container{
    display: flex;
    width: 100vw;
    padding: 5vh 15vw 0 15vw;
    /* background-color: #F5EFE6; */
}

section#us .container .col:first-child{
    width: 60%;
    position: relative;
    padding-left: 50px;
}

section#us .container .col:last-child{
    width: 40%;
    padding-left: 1vw;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section#us .container .col img{
    width: 100%;
    margin-bottom: -25px;
}

section#us .col p {
    text-align: justify;
}

section#us .container .col:first-child p{
    background-color: var(--secondary-color);
    position: absolute;
    left: 0;
    bottom:-50px;
    padding: 2vw;
    font-size: 14px;
    color: #fff;
    width: 50%;
    transform: scale(0.5);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

section#us .container .col:first-child p.animation{
    opacity: 1;
    transform: scale(1);
}

section#us .container .col h2{
    text-transform: uppercase;
    margin-top: 2vh;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
}

section#us .container .col h2.animation{
    transform: translateX(0);
}

section#us .container .col:last-child p{
    font-size: 12px;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

section#us .container .col:last-child p.animation{
    transform: translateX(0);
}

@media screen and (max-width: 768px) {
    
    section#us{
        padding-top: 5vh;
    }

    section#us .container{
        width: 100vw;
        flex-direction: column;
        align-items: center;
        padding: 5vh 10vw;
    }

    section#us .container .col:first-child{
        width: 80%;
    }

    section#us .container .col:last-child{
        width: 100%;
        margin-top: 10vh;
    }

    section#us .container .col:first-child p, section#us .container .col:last-child p{
        font-size: 12px;
    }
}

@media screen and (max-width:768px) {
    
    section#us .container .col:first-child{
        width: 100%;
    }
}

/* SERVICES */

section#services{
    padding: 15vh 15vw 15vh 15vw;
}

section#services h2{
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
}

section#services > p{
    font-size: 14px;
    text-align: center;
    padding: 30px 5vw 50px 5vw;
}

section#services > h2, section#services > p{
    transform: scale(0.5);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

section#services > h2.animation, section#services > p.animation{
    transform: scale(1);
    opacity: 1;
}

section#services .splide{
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

section#services .splide.animation{
    opacity: 1;
}

section#services .slide img{
    width: 80%;
}

section#services .slide .box{
    width: 70%;
    display: flex;
    flex-direction: column;
    background-color: #F5EFE6;
    padding: 5%;
    position: relative;
    gap: 20px;
    margin: -50px 0 0 24%;
}

section#services .slide .box img{
    width: 40%;
}

section#services .slide .box .absolute{
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    width: 20%;
    padding: 5%;
}

section#services .slide .box h2{
    font-size: 14px;
}

section#services .slide .box p{
    text-align: center;
    font-size: 10px;
}

section#services .splide__arrow{
    display: none;
}

section#services .splide__pagination{
    bottom: -5vh;
}

section#services .splide__pagination__page{
    background-color: var(--secondary-color);
    opacity: 1;
    width: 0.8vw;
    height: 0.8vw;
}

@media screen and (max-width:768px) {
    
    section#services{
        padding: 10vh 10vw;
    }
}

/* START */

section#start{
    padding-top: 15vh;
}

section#start .container{
    background: url('../img/start.webp');
    background-size: cover;
    width: 100vw;
    padding: 5vh 15vw;
    display: flex;
}

section#start .container .col{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section#start .container .col h2{
    font-size: 25px;
    color: #fff;
    text-transform: uppercase;
}



section#start .container .col h2 b{
    color: #fff;
}

section#start .container .col p{
    color: #fff;
    font-size: 14px;
}

section#start .container .col .box{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

section#start .container .col .box .row{
    display: flex;
    gap: 20px;
}

section#start .container .col > h2, section#start .container .col > p, section#start .container .col .box .row{
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
}

section#start .container .col > h2.animation, section#start .container .col > p.animation, section#start .container .col .box .row.animation{
    transform: translateX(0);
}

section#start .container .col .box .row img{
    width: 5vw;
    
}

section#start .container .col .box .row h2{
    font-size: 18px;
    margin-bottom: 5px;
}

section#start .container .col a{
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px 8px;
    border: 2px solid #fff;
    width: fit-content;
    border-radius: 12px;
    margin: 0 auto;
    transform: scale(0.5s);
    opacity: 0;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 1s ease-in-out, opacity 1s ease-in-out;
}

section#start .container .col a.animation{
    opacity: 1;
    transform: scale(1);
}

section#start .container .col a:hover{
    color: var(--primary-color);
    background-color: #fff;
}

section#start .container > img{
    width: 35vw;
    margin: 8vh 0 -20vh 2vw;
}

@media screen and (max-width:768px) {

    section#start .container{
        padding: 5vh 10vw;
        flex-direction: column-reverse;
    }
    
    section#start .container > img{
        width: 100%;
        margin: 0;
    }

    section#start .container .col{
        margin-top: 5vh;
    }

    section#start .container .col p{
        font-size: 12px;
    }

    section#start .container .col .box .row img{
        width: 15vw;
    }
}

/* WHY */

section#why{
    padding: 15vh 15vw 10vh 15vw;
    margin-top: 10vh;
}

section#why > h2{
    font-size: 30px;
    text-transform: uppercase;
    padding: 0 3vw 30px 3vw;
    transform: translateX(-100%);
    transition: transform 1s ease-in-out;
}

section#why > h2.animation{
    transform: translateX(0);
}

section#why .background{
    background: url('../img/why.webp');
    background-size: cover;
    width: 100%;
    height: 60vh;
}

section#why .cards{
    display: flex;
    padding: 0 5vw;
    margin-top: -15vh;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

section#why .cards.animation{
    opacity: 1;
}

section#why .cards .card{
    background-color: var(--background);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 2vw;
    padding: 2vw;
    margin: 0 1vw;
    gap: 20px;
    height: 100%;
}

section#why .splide__arrow{
    display: none;
}

section#why .splide__pagination{
    display: none;
}

section#why .cards .card img{
    width: 50%;
}

section#why .cards .card h2{
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
}

section#why .cards .card p{
    font-size: 14px;
}

section#why .cards .card hr{
    width: 60%;
    height: 5px;
    background-color: var(--primary-color);
    border: var(--primary-color);
    border-radius: 5px;
    margin-top: auto;
}

@media screen and (max-width:768px) {
    
    section#why{
        padding: 10vh 10vw;
    }

    section#why > h2{
        font-size: 24px;
    }

    section#why .background{
        height: 30vh;
        background-position: center top;
    }

    section#why .cards{
        flex-direction: column;
    }

    section#why .cards .card{
        margin-top: 10vh;
    }

    section#why .cards .card p{
        text-align: center;
        font-size: 12px;
    }
}

/* FEEDBACKS */

section#feedbacks{
    padding: 15vh 0 0 0;
}

section#feedbacks > h2{
    text-align: center;
    margin-bottom: 10vh;
    font-size: 30px;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.5);
    transition: 0.5s ease-in-out;
}

section#feedbacks > h2.animation{
    opacity: 1;
    transform: scale(1);
}

section#feedbacks .cards{
    padding: 5vh 15vw;
    background-color: #F5EFE6;
    display: flex;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

section#feedbacks .cards.animation{
    opacity: 1;
}

section#feedbacks .cards a{
    width: 22vw;
    padding: 0 2vw;
    display: flex;
    align-items: center;
}

section#feedbacks .cards a img{
    width: 100%;
}

section#feedbacks .splide__slide{
    display: flex;
}

section#feedbacks .splide__arrow{
    display: none;
}

section#feedbacks .splide__pagination{
    display: none;
}

@media screen and (max-width:768px) {
    
    section#feedbacks{
        padding: 0;
    }

    section#feedbacks .cards .card{
        width: 100%;
        margin: 0 !important;
        padding: 10vw;
    }

    section#feedbacks .cards .card:first-child{
        margin-top: 10vh !important;
    }

    section#feedbacks .cards .card:last-child{
        margin-bottom: 10vh !important;
    }

    section#feedbacks .cards .card i{
        top: 5vw;
        right: 5vw;
    }

    section#feedbacks > h2{
        margin-bottom: 10vh;
    }

    section#feedbacks .splide__slide{
        justify-content: center;
    }

    section#feedbacks .cards a{
        width: 50vw;
    }
}

/* CONTACT */

section#contact{
    padding: 15vh 0 0 15vw;
}

section#contact .content{
    background-color: var(--secondary-color);
    display: flex;
    padding: 2vw 2vw 10vh 2vw;
}

section#contact .content img{
    width: 35vw;
    height: 35vw;
    margin-left: -10vw;
}

section#contact .content .col{
    padding: 0 13vw 0 5vw;
}

section#contact .content .col h1{
    text-transform: uppercase;
    color: #fff;
    font-size: 28px;
    margin-top: 20px;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

section#contact .content .col h1.animation{
    transform: translateX(0);
}

section#contact .content .col form{
    padding: 20px 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section#contact .content .col form input{
    background-color: var(--secondary-color);
    border: none;
    border-bottom: 2px solid #fff;
    outline: none;
    padding: 5px 20px;
    color: #fff;
    font-size: 14px;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

section#contact .content .col form input.animation{
    transform: translateX(0);
}

section#contact .content .col form input::placeholder, section#contact .content .col form textarea::placeholder{
    opacity: 1;
    color: #fff;
}

section#contact .content .col form textarea{
    background-color: var(--secondary-color);
    border: 2px solid #fff;
    outline: none;
    padding: 20px;
    color: #fff;
    resize: none;
    width: 100%;
    font-size: 14px;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

section#contact .content .col form textarea.animation{
    transform: translateX(0);
}

section#contact .content .col form button{
    background-color: var(--primary-color);
    color: #fff;
    font-family: 'New Science Medium Extended';
    font-size: 18px;
    padding: 10px 50px;
    width: fit-content;
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    transform: scale(0.5);
    opacity: 0;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, transform 1s ease-in-out, opacity 1s ease-in-out;
}

section#contact .content .col form button.animation{
    opacity: 1;
    transform: scale(1);
}

section#contact .content .col form button:hover{
    color: var(--primary-color);
    background-color: #fff;
}

/* ZAP */

section#zap-modal{
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    display: none;
}

section#zap-modal.active{
    display: block;
}

section#zap-modal .mini-form{
    display: flex;
    flex-direction: column;
    width: 300px;
    position: absolute;
    right: 2vw;
    bottom: 5vh;
    border-radius: 10px;
}

section#zap-modal .mini-form .header{
    background-color: #005d4f;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 30px 15px 15px 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

section#zap-modal .mini-form .content{
    background-color: #f1e7d8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 15px;
}

section#zap-modal .mini-form .content input{
    width: 100%;
    border: none;
    font-size: 16px;
    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
}

section#zap-modal .mini-form .content .alert{
    font-size: 12px;
    color: red;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 5px;
}

section#zap-modal .mini-form .content button{
    background-color: #00a554;
    border: none;
    color: #fff;
    text-transform: uppercase;
    width: 100%;
    padding: 10px;
}

section#zap-modal .mini-form .content button a{
    color: #fff;
}

section#zap-modal .mini-form i{
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.btn-zap{
    position: fixed;
    bottom: 2vh;
    right: 2vw;
    width: 5vw;
    background-color: transparent;
    border: none;
}

.btn-zap img{
    width: 100%;
}

@media screen and (max-width: 768px){
    
    .btn-zap{
        width: 50px;
        right: 5vw;
    }

    section#zap-modal .mini-form{
        width: 280px;
        bottom: 12vh;
    }
}

@media screen and (max-width:768px) {
    
    section#contact{
        padding: 15vh 0 0 0;
    }

    section#contact .content{
        flex-direction: column;
        padding: 10vw;
    }

    section#contact .content img{
        width: 60vw;
        height: 60vw;
        margin: -15vh auto 0 auto;
    }

    section#contact .content .col{
        padding: 0;
    }

    section#contact .content .col h1{
        font-size: 20px;
        text-align: center;
    }

    section#contact .content .col form{
        padding: 5vh 0 0 0;
    }

    section#contact .content .col form input, section#contact .content .col form textarea{
        font-size: 12px;
    }
}

/* FOOTER */

footer{
    padding: 10vh 15vw;
    background-color: var(--primary-color);
    display: flex;
}

footer .col{
    width: 20vw;
    display: flex;
    flex-direction: column;
}

footer .col:last-child{
    align-items: flex-end;
}

footer .col img{
    width: 10vw;
}

footer .col .links{
    display: flex;
    justify-content: space-between;
    width: 10vw;
    padding-top: 2vh;
}

footer .col .links a i{
    color: #fff;
    font-size: 2vw;
    transition: color 0.3s ease-in-out;
}

footer .col .links a:hover i{
    color: var(--secondary-color);
}

footer .col a{
    color: #fff;
    font-family: 'New Science Medium Extended';
}

footer .col:nth-child(2){
    gap: 20px;
    width: 30vw;
}

footer .col:nth-child(2) a{
    display: flex;
    gap: 15px;
    font-size: 16px;
}

footer .col:nth-child(2) a i{
    font-size: 24px;
}

footer .col:last-child{
    gap: 6px;
}

footer .col:last-child a{
    font-size: 16px;
    text-transform: uppercase;
    transition: font-size 0.2s ease-in-out;
}

footer .col:last-child a:hover{
    font-size: 17px;
}

footer .col:last-child a li{
    list-style: none;
    display: flex;
}

footer .col:last-child a li::after{
    content: '•';
    margin-left: 10px;
}

@media screen and (max-width:768px) {
    
    footer{
        padding: 10vh 10vw;
        flex-direction: column-reverse;
        gap: 5vh;
    }

    footer .col{
        width: 100% !important;
    }

    footer .col:last-child{
        gap: 10px;
    }

    footer .col:last-child a{
        font-size: 14px;
        margin: 0 auto;
    }

    footer .col:last-child a li::after{
        display: none;
    }

    footer .col:nth-child(2) a{
        justify-content: center;
        font-size: 14px;
    }

    footer .col img{
        margin: 0 auto;
        width: 80%;
        max-width: 200px;
    }

    footer .col .links{
        width: 80%;
        max-width: 200px;
        margin: 0 auto;
    }

    footer .col .links a i{
        font-size: 7vw;
    }
}


