@font-face {
    font-family: 'Geomatrix';
    src: url('/assets/fonts/Geomatrix/Geomatrix\ Thin.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Geomatrix';
    src: url('/assets/fonts/Geomatrix/Geomatrix\ Light.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Geomatrix';
    src: url('/assets/fonts/Geomatrix/Geomatrix.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Geomatrix';
    src: url('/assets/fonts/Geomatrix/Geomatrix\ Medium.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Geomatrix';
    src: url('/assets/fonts/Geomatrix/Geomatrix\ Bold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: 'Geomatrix';
    src: url('/assets/fonts/Geomatrix/Geomatrix\ Black.ttf');
    font-weight: 900;
}

@font-face {
    font-family: 'Rooney-Sans';
    src: url('/assets/fonts/Rooney-Sans/RooneySans-Light.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Rooney-Sans';
    src: url('/assets/fonts/Rooney-Sans/RooneySans-Regular.ttf');
    font-weight: 600;
}

@font-face {
    font-family: 'Rooney-Sans';
    src: url('/assets/fonts/Rooney-Sans/RooneySans-Medium.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Rooney-Sans';
    src: url('/assets/fonts/Rooney-Sans/RooneySans-Bold.ttf');
    font-weight: 800;
}

@font-face {
    font-family: 'Rooney-Sans';
    src: url('/assets/fonts/Rooney-Sans/RooneySans-Black.ttf');
    font-weight: 900;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

:root{
    --primary-color: #83c800;
}

html{
    scroll-behavior: smooth;
}

a, button{
    text-decoration: none;
    cursor: pointer;
}

/* HEADER */

header{
    height: 15vh;
    display: flex;
    align-items: center;
    position: fixed;
    background-color: #fff;
    top: 0;
    z-index: 99999;
}

header nav{
    height: 15vh;
    width: 100vw;
    padding: 3vh 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

header nav img{
    height: 100%;
}

header nav ul{
    display: flex;
    align-items: center;
    gap: 20px;
}

header nav ul > a{
    list-style: none;
    border-right: 1px solid #000;
    padding-right: 20px;
}

header nav ul a:last-child{
    border: none;
}

header nav ul a li{
    color: #000;
    font-family: 'Geomatrix', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: font-size 0.2s ease-in-out;
}

header nav ul a li:hover{
    font-size: 18px;
}

header i{
    font-size: 30px;
    cursor: pointer;
    display: none !important;
}

header nav i{
    position: absolute;
    right: 10vw;
}

header .mobile-logo{
    display: none;
    width: 150px;
}

header .mobile-translate {
    display: none;
}

@media screen and (max-width:768px) {

    header{
        padding: 2vh 10vw 2vh 10vw;
        width: 100vw;
        justify-content: space-between;
        height: 10vh;
    }

    header .mobile-logo{
        display: block;
    }

    header nav{
        flex-direction: column;
        padding: 0;
        justify-content: initial;
        align-items: start;
        gap: 10vh;
        width: 100vw;
        height: 100vh;
        padding: 5vh 10vw 5vh 5vw;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        transition: transform 0.5s ease-in-out;
    }

    header nav.open{
        transform: translateX(0);
    }

    header nav img{
        width: 150px;
        height: auto;
    }

    header nav ul{
        flex-direction: column;
        align-items: inherit;
        margin-left: 20px;
    }

    header nav ul a{
        border: none;
    }

    header i{
        display: block !important;
    }

    .wrapper-menu-mobile {
        display: flex; 
        gap: 16px;
    }

    header .mobile-translate {
        display: block;
    }

    header .desktop-translate {
        display: none;
    }

    .gtranslate_wrapper a.glink img {
        width: 36px;
    }
}

@media(max-width: 578px) {
    header {
        padding: 2vh 5vw 2vh 5vw;
    }

    .gtranslate_wrapper a.glink img {
        width: 28px;
    }
}

/* BANNER */

section#banner{
    position: relative;
    width: 100vw;
    background-color: #6bc61a;
    margin-top: 15vh;
    transition: position 0.5s ease-in-out;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: start;
}

section#banner img {
    max-width: 100%;
    height: 70vh;
    object-fit: cover;
}

.wrapper-video {
    position: absolute;
    top: auto;
    bottom: auto;
    right: 5%;
    /* max-height: 45px; */
    top: 50%;
    /* left: 50%; */
    -ms-transform: translate(-50%, -50%);
    transform: translate(-5%, -50%);
}

.wrapper-video video {
    width: 15vw;
    min-width: 120px;
    max-height: 65vh;
    max-width: 281px;
}

.mockup-video {
    display: none;
}


@media screen and (max-width: 1200px) {
    section#banner{
        height: 70vh;
    }  
    section#banner img {
        height: 70vh;
    }

    .wrapper-video video {
        max-height: 65vh;
    }
    
}

@media screen and (max-width: 1000px) {
    section#banner{
        height: 45vh;
    }  
    section#banner img {
        height: 45vh;
    }

    .wrapper-video video {
        max-height: 40vh;
    }
    
}


@media screen and (max-width: 768px) {
    section#banner img {
        object-fit: cover;
        height: 30vh;
    }
    section#banner{
        margin-top: 10vh;
        height: auto;
    }  
    
}

@media screen and (max-width: 500px) {
    section#banner img {
        height: 25vh;
        
    }
    
}

/* Video */

@media screen and (max-width:970px) {
    .wrapper-video {
        display: none;
    }
}

@media screen and (max-width: 970px) {
    .mockup-video {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: #6bc61a;
    }

    .wrapper-mobile-video video {
        width: 15vw;
        min-width: 260px;
    }
}

/* Partners */

section#partners{
    width: 70vw;
    font-family: 'Geomatrix', sans-serif;
    margin: 64px auto 0px auto;
}

section#partners h1{
    text-align: center;
    font-weight: 900;
    font-size: clamp(20px, 10vw, 28px);
}

section#partners h1 span {
    padding: 7px 10px;
    color: #fff;
    background-color: #6bc61a;
    border-radius: 10px;
}


.marquee {
    margin-top: 42px;
    overflow: hidden;
  }
  
  .marquee-content {
    display: flex;
    animation: scrolling 20s linear infinite;
  }
  
  .marquee-item {
	flex: 0 0 16vw;
	display: flex;
	align-items: center;
	justify-content: center;
}
  
  .marquee-item img {
    display: block;
    width: 150px;
  }
  
  @keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translatex(-144vw); }
  }


@media(max-width: 1279px) {
    section#partners{
        width: 100vw;
    }

    section#partners h1 span {
        padding: 7px 10px;
        color: #fff;
        background-color: #6bc61a;
        border-radius: 10px;
        margin: 10px auto;
        display: inline-block;
    }

    .marquee-item {
        flex: 0 0 16vw;
        margin: 0 5vw;
    }

    .marquee-item img {
        display: block;
        width: 90px;
      }
}

/* SOLUTIONS */

section#solutions{
    text-align: center;
    padding: 15vh 0 0 10vw;
    width: 70vw;
}

section#solutions .texts{
    font-family: 'Geomatrix', sans-serif;
    font-weight: 800;
    display: flex;
    justify-content: center;
    gap: 5vw;
    flex-wrap: wrap-reverse;
    margin-bottom: 5vw;
}

section#solutions .texts p{
    font-size: 18px;
    width: 25vw;
}

section#solutions .texts p::before{
    content: "";
    width: 50%;
    height: 10px;
    display: block;
    background-color: #83c800;
    border-radius: 20px;
    margin: 0 auto 10px auto;
}

section#solutions .cards{
    display: flex;
    gap: 5vw;
    flex-wrap: wrap;
    margin-bottom: 5vw;
    justify-content: center;
}

section#solutions .cards .card{
    background-color: var(--primary-color);
    width: 20vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    font-family: 'Rooney-Sans', sans-serif;
    padding: 0 2vw 2vw 2vw;
    border-radius: 2vw;
}

section#solutions .cards .card .image{
    background-color: #fff;
    width: 5vw;
    height: 5vw;
    border-radius: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2vw;
}

section#solutions .cards .card .image img{
    width: 70%;
    height: 70%;
}

section#solutions .cards .card h1{
    font-weight: 700;
    margin-top: -1vw;
    text-transform: uppercase;
    font-size: 20px;
}

section#solutions .cards .card p{
    font-weight: 600;
}

@media screen and (max-width: 1279px) {
    section#solutions{
        width: 100vw;
        padding: 20vw 10vw 0 10vw;
    }

    section#solutions .cards .card{
        width: 30vw;
    }
}


@media screen and (max-width: 768px) {
    section#solutions .texts p{
        width: 100%;
        font-size: 16px;
        margin-bottom: 5vh;
    }

    section#solutions .cards .card{
        width: 60vw;
        margin-bottom: 5vh;
        gap: 20px;
        padding: 0 20px 20px 20px;
    }

    section#solutions .cards .card h1{
        font-size: 18px;
    }

    section#solutions .cards .card .image {
        width: 15vw;
        height: 15vw;
    }

    section#solutions .cards .card p{
        font-size: 14px;
    }
}

/* Benefits */

section#benefits {
    margin: 36px 0;
}

section#benefits h1 {
    padding: 30px 30vw 0 16vw;
	font-size: 32px;
	font-family: 'Geomatrix', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
}

section#benefits .main-text{
    padding: 30px 30vw 0 16vw;
    font-family: 'Rooney-Sans', sans-serif;
    text-align: justify;
    font-size: 20px;
}

section#benefits .wrapper-image {
    padding: 30px 30vw 0 16vw;
}

section#benefits .wrapper-image img {
	display: block;
	max-width: 60%;
	margin: 0 auto;
}

@media (max-width: 768px) {
    section#benefits h1 {
        font-size: 26px;
        padding: 0px 15vw 0px 16vw;
    }

    section#benefits .main-text {
        font-size: 16px;
        padding: 30px 15vw 5vh 16vw;
    }

    section#benefits .wrapper-image {
        padding: 30px 15vw 5vh 16vw;
    }

    section#benefits .wrapper-image img {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }
}


/* ABOUT-US */

section#about-us{
    position: relative;
    font-family: 'Geomatrix', sans-serif;
}

section#about-us .header{
    width: 100vw;
    background-color: var(--primary-color);
    padding: 2vw 30vw 2vw 20vw;
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: relative;
    z-index: 999;
}

section#about-us .header::before{
    content: '';
    width: 10vw;
    height: 15vw;
    display: block;
    background-color: var(--primary-color);
    position: absolute;
    right: 0;
    top: -15vw;
    border-top-left-radius: 2vw;
}

section#about-us .header p{
    font-size: 20px;
}

section#about-us .header .image{
    display: flex;
    align-items: start;
}

section#about-us .header .image img{
    width: 50%;
}

section#about-us .content {
	/*background-color: var(--primary-color);*/
	margin-left: 15vw;
	width: 55vw;
	border-bottom-right-radius: 6vw;
	margin-top: 42px;
}

section#about-us .content .list-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	/* align-items: start; */
	justify-content: space-around;
	z-index: 2;
}

section#about-us .content .list-cards .card-item {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-bottom: 16px;
}

section#about-us .content .list-cards .card-item .card-title {
	margin-bottom: 12px;
	font-weight: bold;
	font-size: 18px;
}

section#about-us .content .list-cards .card-item p {
	margin: 0 auto;
	text-align: center;
}

section#about-us .content .list-cards .card-item .wrapper-image {
    width: clamp(100px, 50vw, 200px);
    margin: 0 auto 16px auto;
}

section#about-us .content .list-cards .card-item .wrapper-image img {
    display: block;
    max-width: 100%;
}

section#about-us .content .text{
    background-color: #fff;
    width: 80%;
    padding: 2vw 30% 2vw 1vw;
}

section#about-us .content .text h1{
    text-transform: uppercase;
    font-weight: 900;
    font-size: 28px;
    position: relative;
    z-index: 999;
}

section#about-us .content .images{
    display: flex;
    gap: 1%;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    padding: 1vw;
    border-radius: 10vw;
    margin-left: -5vw;
    position: relative;
    z-index: 999;
}

section#about-us .content .images .image-hover{
    width: 16%;
    display: flex;
    cursor: pointer;
    position: relative;
}

section#about-us .content .images .image-hover img{
    width: 100%;
    border-radius: 50%;
    box-shadow: #000 -2px 2px;
}

section#about-us .content .images .image-hover .link{
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

section#about-us .content .images .image-hover .link img{
    width: 50%;
    border-radius: 0;
    box-shadow: none;
}

section#about-us .content .images .image-hover:hover .link{
    opacity: 1;
}

section#about-us .absolute-style{
    position: absolute;
    border: 1px solid #D2FEE6;
    z-index: -1;
}

section#about-us .absolute-style:nth-child(3){
    width: 20vw;
    height: 32vw;
    top: 12vw;
    right: 0;
    border-top: none;
    border-bottom-left-radius: 10vw;
}

section#about-us .absolute-style:nth-child(4){
    width: 62vw;
    height: 59vw;
    top: 41vw;
    left: 23vw;
    border-radius: 13vw 10vw 10vw 10vw;
}

section#about-us .absolute-style:nth-child(5){
    top: 8vw;
    left: -4vw;
    width: 33vw;
    height: 47vw;
    border-radius: 10vw;
}

@media screen and (max-width: 1279px) {
    section#about-us .header{
        padding: 2vw 20vw 2vw 30vw;
    }

    section#about-us .content{
        width: 90vw;
        margin: 42px auto;
    }
}

@media screen and (max-width: 768px) {
    section#about-us .header{
        padding: 4vw 10vw;
        align-items: start;
    }

    section#about-us .header h1{
        font-size: 40px;
    }
    
    section#about-us .header .image{
        height: auto;
    }

    section#about-us .header .image img{
        width: 30px;
    }

    section#about-us .content{
        width: 90vw;
    }

    section#about-us .content .text{
        width: 80vw;
        padding: 5vw 30% 5vw 1vw;
    }

    section#about-us .content .text h1{
        font-size: 20px;
    }

    section#about-us .content .images{
        margin-left: -8vw;
    }
}

/* WE */

section#we{
    padding: 9vw 0 0vw 0;
}

section#we h1{
    font-size: 32px;
    font-family: 'Geomatrix', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    z-index: 999;
}

section#we h1 span{
    background: url('/assets/img/quem-somos.svg');
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    height: 48px;
    width: 100%;
    padding: 5px 10px 5px 15vw;
    color: #fff;
}

section#we .main-text{
    padding: 30px 30vw 0 16vw;
    font-family: 'Rooney-Sans', sans-serif;
    text-align: justify;
    font-size: 20px;
}

section#we .why{
    padding: 5vw 60vw 2vw 15vw;
}

section#we .data{
    padding: 5vw 30vw 0 15vw;
    font-family: 'Geomatrix', sans-serif;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 2%;
    color: #fff;
}

section#we .data .col{
    width: 49%;
    display: flex;
    flex-direction: column;
}

section#we .data .col:first-child{
    align-items: end;
}

section#we .data .col .content{
    margin-bottom: 4%;
}

section#we .data .col .content .background{
    background-color: var(--primary-color);
    padding: 1vw 3vw;
}

section#we .data .col .content .background .header{
    display: flex;
    align-items: end;
}

section#we .data .col .content .background h1{
    font-size: 130px;
    font-weight: 700;
}

section#we .data .col .content .background h2{
    font-size: 80px;
    padding: 0 0 10px 0px;
}

section#we .data .col .content .background h3{
    font-size: 28px;
    padding: 0 0 30px 10px;
    font-weight: 700;
    line-height: 1;
}

section#we .data .col .content .background p{
    font-size: 16px;
}

section#we .data .col .content .background p span{
    color: #000;
}

section#we .data .col:nth-child(1) .content:nth-child(1) .background{
    border-radius: 30px 30px 0 30px;
}

section#we .data .col:nth-child(1) .content:nth-child(2){
    width: 80%;
}

section#we .data .col:nth-child(1) .content:nth-child(2) .background{
    border-radius: 30px 0 30px 30px;
}

section#we .data .col:nth-child(2) .content:nth-child(1) .background{
    border-radius: 30px 30px 30px 0;
}

section#we .data .col:nth-child(2) .content:nth-child(2){
    width: 90%;
}

section#we .data .col:nth-child(2) .content:nth-child(2) .background{
    border-radius: 0 30px 30px 30px;
}

section#we .genai{
    padding: 5vw 30vw 0 15vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Geomatrix', sans-serif;
}

section#we .genai h1{
    text-align: center;
    text-transform: inherit;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 3vw;
}

section#we .genai .card{
    width: 80%;
    margin-bottom: 3vw;
}

section#we .genai .card .background{
    border-radius: 3vw;
    display: flex;
    margin-bottom: 10px;
}

section#we .genai .card:nth-child(2) .background{
    background-color: #000;
    color: var(--primary-color);
}

section#we .genai .card:nth-child(4) .background{
    background-color: var(--primary-color);
    color: #fff;
}

section#we .genai .card .background .content{
    padding: 0 3vw;
    margin: 3vw 0;
    border-right: 3px solid var(--primary-color);
    width: 50%;
}

section#we .genai .card:nth-child(4) .background .content{
    border-color: #fff;
}

section#we .genai .card .background .content:last-child{
    border-right: none;
}

section#we .genai .card .background .content .header{
    display: flex;
    align-items: end;
    justify-content: center;
}

section#we .genai .card .background .content .header h1{
    font-size: 120px;
    margin-bottom: 0;
}

section#we .genai .card .background .content .header h2{
    font-size: 75px;
    padding-bottom: 9px;
}

section#we .genai .card .background .content p{
    font-size: 16px;
    text-align: center;
}

section#we .genai .card .fonts{
    display: flex;
    justify-content: space-around;
}

section#we .genai .card .fonts .font{
    text-align: center !important;
}

@media screen and (max-width: 1279px) {
    section#we .main-text{
        padding: 30px 15vw 0 16vw;
    }

    section#we .why{
        padding: 5vw 30vw 2vw 15vw;
    }
    
    section#we .data, section#we .genai{
        padding: 5vw 15vw 0 15vw;
    }
}

@media screen and (max-width:768px) {
    section#we{
        padding: 10vh 0 0 0;
    }

    section#we h1{
        font-size: 26px;
    }

    section#we .main-text{
        font-size: 16px;
        padding: 30px 15vw 5vh 16vw;
    }

    section#we .why{
        padding: 5vh 15vw 2vw 15vw;
    }

    section#we .data, section#we .genai{
        padding: 5vh 10vw 0 10vw;
    }

    section#we .data .col .content .background{
        padding: 3vw;
    }

    section#we .data .col .content .background h1{
        font-size: 55px;
    }

    section#we .data .col .content .background h3{
        font-size: 16px;
        padding: 0 0 10px 0;
        text-align: center;
    }

    section#we .data .col .content .background p{
        font-size: 12px;
    }

    section#we .data .col .content .background h2{
        font-size: 30px;
    }

    section#we .data .col .content:first-child .background .header{
        flex-direction: column;
        align-items: center;
    }

    section#we .genai h1{
        font-size: 26px;
        margin-bottom: 50px;
    }

    section#we .genai .card{
        width: 100%;
    }

    section#we .genai .card:last-child{
        margin-bottom: 80px;
    }

    section#we .genai .card .background .content .header h1{
        font-size: 70px;
    }

    section#we .genai .card .background .content .header h2{
        font-size: 40px;
        padding-bottom: 7px;
    }

    section#we .genai .card .background .content p{
        font-size: 12px;
    }

}

/* Depoiments */

section#depoiments {
	margin: 60px 30vw 30px 16vh;
}

section#depoiments h1 {
	font-size: 24px;
	font-family: 'Geomatrix', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
}

section#depoiments .splide .splide__track .splide__list .slide-depoiment {
    display: flex;
}

section#depoiments .slide-depoiment .wrapper-image {
    display: block;
    max-width: 250px;
}

section#depoiments .slide-depoiment .wrapper-image img{
    display: block;
    max-width: 100%;
}

/* FORM */

section#form.fixed-form{
    position: fixed;
    top: 20vh;
}

section#form {
	z-index: 999;
	right: 6px;
	width: 25vw;
	display: flex;
	/* justify-content: center; */
	font-family: 'Geomatrix', sans-serif;
    background-color: var(--primary-color);
    box-shadow: 0px 0px 7px #000;
    border-radius: 20px;
}

section#form.absolute-form{
    position: absolute;
    top: 125vh;
}

section#form .content{
    position: relative;
    width: 100%;
    height: 320px;
    padding: 36px 24px 64px 24px;
}

section#form .content form{
    position: relative;
    width: 100%;
}

section#form .content form .form-steps {
    width: 100%;
    margin-bottom: 24px;
}

section#form .content form .form-steps .list-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    list-style: none;
}

section#form .content form .form-steps .list-step .step {
    width: 10px;
	height: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	color: #000;
    font-weight: 700;
    font-size: 16px;
	background-color: #092e2142;
	border-radius: 50%;
    transition: all .4s;
    cursor: pointer;
    pointer-events: all;
}

section#form .content form .form-steps .list-step .step.active {
    background-color: #092e21;
    color: #FFF;
}

.step-1 {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    transition: all .4s;
    opacity: 0;
    visibility: hidden;
}

.button-step {
    display: block;
    margin-top: 0px;
    padding: 8px 16px;
    background: #000;
    width: max-content;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: opacity .4s;
}

.step-2 {
    position: absolute;
    top: 48px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: opacity .4s;
}

.step-3 {
    position: absolute;
    top: 48px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: opacity .4s;
}

.step-active {
    opacity: 1;
    visibility: visible;
}

section#form .content form h1 {
	margin-bottom: 12px;
	font-size: 16px;
	color: #2e3336;
	font-weight: 700;
}

section#form .content form .input-box {
    margin: 12px auto;
}

section#form .content form .input-box .alert {
	color: #000;
	padding: 0px 6px;
	font-weight: 500;
}

section#form .content form .phone-number {
    display: flex;
    max-height: 39px;
}

section#form .content form input {
	width: 100%;
	padding: 10px 12px;
	border-radius: 3px;
	border: none;
	font-weight: 600;
    font-family: 'Geomatrix', sans-serif;
	font-size: 16px;
}

section#form .content form input[type=text]::placeholder{
    color: #000;
    opacity: 1;
}

section#form .content form select {
	width: 100%;
	background-color: #fff;
	border: none;
	padding: 10px 12px;
	border-radius: 3px;
    font-weight: 600;
    font-family: 'Geomatrix', sans-serif;
	font-size: 16px;
}


section#form .content form .phone-number input {
    border-radius: 0px 3px 3px 0px;
}

section#form .content form .phone-number select {
    display: flex;
    width: 83px;
    font-size: 15px;
    text-align: center;
    border-radius: 3px 0px 0px 3px;
    border: none;
    background-color: #fff;
}

section#form .content form .button-submit {
    position: relative;
    display: block;
    width: 90%;
    margin: 24px auto;
    padding: 16px 0;
    background-color: #000;
    border: none;
    color: #fff;
    font-size: 16px;
    font-family: 'Geomatrix', sans-serif;
    font-weight: 600;
    transition: all .4s;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: all .3s;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

section#form .content form .terms-box {
	display: flex;
	width: 100%;
	justify-content: start;
	align-items: center;
	gap: 16px;
}

section#form .content form .terms-box input {
	width: auto;
}


section#form .content .zap {
	/* margin-top: 267px; */
	display: flex;
	align-items: center;
	position: absolute;
	bottom: -70px;
	margin: 0 auto;
	left: 0;
	right: 0;
	/* top: 0; */
	justify-content: center;
}
section#form .content .zap img{
    width: 50px;
    margin-right: -20px;
    position: relative;
    z-index: 9;
}

section#form .content .zap span{
    background-color: var(--primary-color);
    color: #000;
    font-weight: 900;
    font-size: 22px;
    padding: 10px 20px 10px 40px;
    border-radius: 8px;
    box-shadow: 0px 0px 7px #000;
}

.status-message {
    position: absolute;
    display: block;
    right: 6px;
    bottom: 23px;
    font-size: 14px;
}

@media screen and (max-width: 1279px) {
    section#form{
        width: 90vw;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {

    section#form .content h1{
        font-size: 18px;
    }

    section#form .content form input[type="text"], section#form .content form p, section#form .content form .contact label{
        font-size: 14px;
    }

    section#form .content form .alert{
        font-size: 13px;
    }

    section#form .content form .contact{
        padding: 0;
    }

    section#form .content .zap span{
        font-size: 20px;
    }
}

/* FOOTER */

footer{
    padding: 10vw 30vw 3vw 5vw;
    font-family: 'Geomatrix', sans-serif;
    font-weight: 600;
}

footer .content{
    display: flex;
    justify-content: space-between;
}

footer .content img{
    width: 200px;
}

footer .content .contact{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .content .contact p{
    font-size: 16px;
}

footer .content .contact p a{
    color: #000;
}

footer .content .links{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .content .links a{
    color: #000;
    font-size: 18px;
    transition: 0.3s ease-in-out;
    width: 150px;
}

footer .content .links a:hover{
    font-size: 22px;
}

footer .media{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
    gap: 20px;
    height: 40px;
}

footer .media a{
    color: #000;
}

footer .media a i{
    font-size: 30px;
    transition: 0.3s ease-in-out;
}

footer .media a:hover i{
    font-size: 38px;
}

.footerbar{
    background-color: var(--primary-color);
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: 'Montserrat', sans-serif;
}

.footerbar p:first-child{
    padding-right: 30px;
    border-right: 1px solid #000;
}

@media screen and (max-width: 1279px) {
    footer{
        padding: 10vw 15vw 3vw 15vw;
    }
}

@media screen and (max-width: 768px) {
    footer{
        padding: 25vw 10vw 3vw 10vw;
    }

    footer .content{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    footer .content img{
        width: 120px;
    }

    footer .content .contact p{
        font-size: 14px;
        text-align: center;
    }

    footer .content .contact p br{
        margin-bottom: 5px;
    }

    footer .content .links a{
        font-size: 16px;
        text-align: center;
        list-style: none;
    }

    footer .media{
        padding: 40px 0;
    }

    .footerbar{
        padding: 10px 10px;
        flex-direction: column;
        gap: 10px;
    }

    .footerbar p{
        font-size: 12px;
        text-align: center;
    }

    .footerbar p:first-child{
        padding-right: 0;
        border-right: none;
    }
}

/* GLOBAL */

svg{
    position: absolute;
    width: 0;
    height: 0;
}

.font{
    color: #000;
    text-align: right;
    font-size: 10px;
    margin: 3px 0 2% 0;
    font-family: 'Geomatrix', sans-serif;
    font-weight: 700;
}

.zap-link{
    position: fixed;
    bottom: 5vh;
    right: 5vw;
    z-index: 9999;
    display: none;
}

.zap-link img{
    width: 60px;
}

@media screen and (max-width: 768px) {
    .font{
        font-size: 5px;
    }

    .zap-link{
        display: block;
    }
}