@font-face{
    font-family: 'Comme';
    font-weight: 400;
    src: url('../fonts/comme-regular-webfont.woff2') format('woff2'),
         url('../fonts/comme-regular-webfont.woff') format('woff');
    font-display: swap;
}

@font-face{
    font-family: 'Comme';
    font-weight: 500;
    src: url('../fonts/comme-medium-webfont.woff2') format('woff2'),
         url('../fonts/comme-medium-webfont.woff') format('woff');
    font-display: swap;
}

@font-face{
    font-family: 'Comme';
    font-weight: 600;
    src: url('../fonts/comme-semibold-webfont.woff2') format('woff2'),
         url('../fonts/comme-semibold-webfont.woff') format('woff');
    font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comme', sans-serif;
}

html, body{
    scroll-behavior: smooth;
    height: 100%;
}

.clear{
    clear: both;
}

.blockScroll{
    overflow-Y: hidden;
}

section{
    scroll-snap-align: start;
}

.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.bottomHelp{
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1100;
  cursor: pointer;
}

.bottomHelp i{
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 32px;
  font-size: 30px;
  background-color: #3D808A;
  border-radius: 50%;
  padding: 8px;
  color: white;
  transition: all 300ms ease;
}

.bottomHelp i:hover{
  background-color: #37787b;
}

.btn-primary-full{
    background-color: #3D808A;
    height: 40px;
    font-size: 16px;
    width: 180px;
    border: 1px solid #3D808A;
    border-radius: 8px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
}

.btn-primary-full:hover{
    background: transparent;
    color: #3D808A;
    border: 1px solid #3D808A;
}

.btn-video-full{
    background-color: #3D808A;
    height: 40px;
    font-size: 16px;
    width: 180px;
    border: 1px solid #3D808A;
    border-radius: 8px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
}

.btn-video-full:hover{
    opacity: 1;
}

.btn-primary-line{
    background-color: transparent;
    height: 40px;
    color: #3D808A;
    font-size: 16px;
    width: 180px;
    border: 1px solid #3D808A;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
}

.btn-primary-line:hover{
    background-color: #3D808A;
    color: white;
}

.gotopbtn{
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: #002b4d;
    bottom: 20px;
    right: 32px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    opacity: 0;
    color: white;
    transition: all 0.4s;
    pointer-events: none;
    border-radius: 20%;
}

.gotopbtn.active {
    pointer-events: auto;
    opacity: 1;
}

.gotopbtn:hover{
    background-color: #3D808A;
}

.texth3{
    color: #3D808A;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
}

.texth2{
    color: #001f2b;
    font-size: 34px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.updown-animation{
    animation-name: infiniteupdown;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .5s;
}

.downup-animation{
    animation-name: infinitedownup;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    transition: all .5s;
}

@keyframes infiniteupdown{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-40px);
    }

    100%{
        transform: translateY(0px);
    }
}

@keyframes infinitedownup{
    0%{
        transform: translateY(-40px);
    }

    50%{
        transform: translateY(0px);
    }

    100%{
        transform: translateY(-40px);
    }
}

/* First Background */

section.backgroundHead{
    position:relative; 
    background-image: linear-gradient(to right bottom, #f1f2f4, #eef4fa, #e8f7fe, #e2faff, #dcfdff);
}

.custom-shape-divider-bottom-1715697253 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
}

.custom-shape-divider-bottom-1715697253 svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 160px;
}

.custom-shape-divider-bottom-1715697253 .shape-fill {
	fill: white;
}

/* Menu Desktop */

header{
    background-color: white;
    position: fixed;
    width: 100%;
    padding: 20px 2rem;
    z-index: 100;
}

header.transparent{
    background-color: transparent;
}

header .navbar{
    width: 100%;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .navbar .logo{
    display: flex;
    align-items: center;
}

header img{
    width: 125px;
    height: 125px;
}

header .navbar .links{
    display: flex;
    column-gap: 30px;
}

header .navbar .toggle-btn{
    color: #000e1a;
    font-size: 28px;
    cursor: pointer;
    display: none;
}

header .navbar-mobile{
    display: none;
}

header .navbar .nav-bar-btn{
    background-color: #3D808A;
    color: #001f2b;
    padding: 12px;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s ease;
}

header .navbar .nav-bar-btn:hover{
    scale: 1.05;
    color: #001f2b;
}

header .navbar .nav-bar-btn:active{
    scale: 0.95;
}

header .navbar li{
    list-style: none;
}

header .navbar a{
    text-transform: uppercase;
    text-decoration: none;
    color: #001f2b;
    font-size: 16px;
    cursor: pointer;
}

header .navbar ul li a:hover{
    color: #3D808A;
}

header .navbar ul li a.active{
    color: #3D808A;
}

header .navbar ul li a.login{
    background: #3D808A;
    color: white;
    border-radius: 8px;
    padding: 10px 25px;
    border: 1px solid #3D808A;
    transition: 0.5s;
}

header .navbar ul li a.login:hover{
    background: transparent;
    color: #3D808A;
    border: 1px solid #3D808A;
}

header .navbar ul li i{
    transition: 0.2s;
}

header .navbar .rotate{
    transform: rotate(3.142rad);
}

header .navbar .sub-menu{
    position: absolute;
    top: 80%;
    left: 40%;
    background: white;
    -webkit-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    -moz-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    padding: 30px 80px 0 30px;
    border-radius: 8px;
    display: none;
}

header .navbar .sub-menuOpen{
    display: none;
}

header .navbar .sub-menu .singleMenu{
    display: flex;
    margin-bottom: 30px;
    cursor: pointer;
    transition: 0.5s;
}

header .navbar .sub-menu .singleMenu:hover{
    scale: 1.02;
}

header .navbar .sub-menu .singleMenu img{
    width: 30px;
    height: 30px;
    margin-right: 15px;
    margin-top: 3px;
}

header .navbar .sub-menu .singleMenu .menuInfo{
    display: flex;
    flex-direction: column;
}

header .navbar .sub-menu .singleMenu .menuInfo h3{
    text-transform: uppercase;
    font-size: 18px;
    color: #000e1a;
}

header .navbar .sub-menu .singleMenu .menuInfo p{
    font-size: 14px;
}

/* Menu Mobile */

header .navbar-mobile{
    display: none;
    z-index: 999;
    position: fixed;
    width: 100%;
    top: 100px;
    height: 0;
    left: 0;
    background-color: white;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

header .navbar-mobile.open{
    height: 100%;
}

header .navbar-mobile li{
    padding: 5px;
    list-style: none;
    text-transform: uppercase;
}

header .navbar-mobile a{
    text-decoration: none;
    color: #001f2b;
    font-size: 16px;
    margin-left: 20px;
    cursor: pointer;
}

header .navbar-mobile button{
    position: absolute;
    bottom: 14%;
    left: 5%;
    background-color: #3D808A;
    color: white;
    padding: 12px;
    width: 90%;
    text-transform: uppercase;
    border: none;
    outline: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.4s ease;
}

header .navbar-mobile .Mobilesub-menu{
    margin-top: 10px;
    margin-left: 20px;
    display: none;
}

header .navbar-mobile ul li i{
    transition: 0.2s;
}

header .navbar-mobile .rotate{
    transform: rotate(90deg);
}

header .navbar-mobile .Mobilesub-menu .singleMenu{
    padding: 2px;
    cursor: pointer;
}

header .navbar-mobile .Mobilesub-menu .singleMenu h3{
    text-decoration: none;
    color: #001f2b;
    font-size: 16px;
    font-weight: normal;
}

/* Section Welcome */
section.welcome{
    padding: 50px 2% 80px 2%;
}

section.welcome .container{
	max-width: 1200px;
}

section.welcome .welcome-wraper{
	padding-top: 60%;
	position: relative;
}

section.welcome .welcome-wraper2{
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

section.welcome .welcome-wraper2 img{
    margin-top: 50px;
    width: 100%;
    height: 80%;
}

section.welcome .text-welcome{
	width: 100%;
	padding: 0 2%;
	color: white;
}

section.welcome .text-welcome p{
	color: #6E777C;
	font-weight: 200;
	font-size: 16px;
	margin-bottom: 30px;
}

section.welcome .buttons{
    display: flex;
    gap: 15px;
}

/* Video */
section.video{
    margin-top: -40px;
    padding: 0px 2% 100px 2%;
    position: relative;
    z-index: 10;
}

section.video .videoBox{
    text-align: center;
}

section.video .videoBox .processBox{
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 2% 20px 2%;
}

section.video .videoBox .processBox .processSingle{
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    padding: 20px;
    border-radius: 12px;
}

section.video .videoBox .processBox .processSingle .processIcon{
    width: 75px;
    height: 75px;
    background-color: #dcedef;
    margin: 0 auto;
    border-radius: 12px;
}

section.video .videoBox .processBox .processSingle .processIcon i{
    margin-top: 10px;
    font-size: 54px;
    color: #3D808A;
}

section.video .videoBox .processBox .processSingle .processIcon span{
    position: absolute;
    margin-right: 150px;
    margin-top: -5px;
    font-size: 18px;
    width: 25px;
    height: 25px;
    color: #3D808A;
    background-color: white;
    line-height: 18px;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 1px 1px 12px 0px rgba(0,0,0,0.2);
}

section.video .videoBox .processBox .processSingle .processText{
    margin-top: 20px;
}

section.video .videoBox .processBox .processSingle .processText h3{
    text-transform: uppercase;
    margin-bottom: 10px;
}

section.video .videoBox .processBox .processSingle .processText p{
    color: #6E777C;
    font-size: 16px;
}

/* About */

section.about{
    padding: 50px 0;
    background-image: linear-gradient(to right bottom, #f1f2f4, #eef4fa, #e8f7fe, #e2faff, #dcfdff);
}

section.about .container{
    max-width: 1200px;
}

section.about .about-wraper{
    padding-top: 60%;
    position: relative;
}

section.about .about-wraper2{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

section.about .img-about{
    width: 100%;
    height: 85%;
    background: url(../images/about1.webp);
    background-size: 100% 100%;
}

section.about .img-about2{
    position: absolute;
    top: 180px;
    left: -120px;
    width: 35%;
    height: 60%;
    background: url(../images/about2.webp);
    background-size: 100% 100%;
}

section.about .text-about{
    width: 100%;
    padding: 0 30px;
}

section.about .text-about p{
    color: #6E777C;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 25px;
}

section.about .text-about .group{
    display: flex;
    flex-direction: column;
}

section.about .text-about .group .groupHeader{
    display: flex;
    gap: 5px;
}

section.about .text-about .group .groupHeader h3{
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 4px;
}

section.about .text-about .group i{
    color: #3D808A;
    font-size: 28px;
}

section.about .text-about .group .info p{
    font-size: 15px;
    margin-top: 5px;
}

/* FAQ */

section.faq{
    margin-top: -30px;
    padding: 50px 0;
}

section.faq .container{
    max-width: 1200px;
}

section.faq .faq-wraper{
    padding-top: 60%;
    position: relative;
}

section.faq .faq-wraper2{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

section.faq .img-faq{
    width: 70%;
    height: 70%;
    background: url(../images/faq.webp);
    background-size: 100% 100%;
}

section.faq .text-faq{
    width: 80%;
    padding: 0 30px;
}

section.faq .wrapper{
    background-color: #ffffff;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 40px;
    border-radius: 12px;
    -webkit-box-shadow: 1px 8px 24px 14px rgba(235, 234, 234, 1);
    -moz-box-shadow: 1px 8px 24px 14px rgba(235, 234, 234, 1);
    box-shadow: 1px 8px 24px 14px rgba(235, 234, 234, 1);
}

section.faq .toggle{
    width: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #111130;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 15px 0;
}

section.faq .content{
    position: relative;
    font-size: 14px;
    text-align: justify;
    line-height: 30px;
    height: 0;
    overflow: hidden;
    transition: all 1s;
}

section.faq .content a{
    color: #3D808A;
    text-decoration: none;
}

/* Start */

section.start{
    padding: 100px;
    background: url(../images/BackgroundStart.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 350px;
}

section.start .text{
    margin: 0 auto;
    text-align: center;
}

section.start .text h3{
    color: white;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

section.start .text h2{
    color: #3D808A;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 25px;
}

section.start .text button{
    background-color: #3D808A;
    height: 40px;
    font-size: 16px;
    width: 200px;
    border: 1px solid #3D808A;
    border-radius: 8px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
}

section.start .text button:hover{
    background: transparent;
}

footer{
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
  }
footer::before{
    content: '';
    position: absolute;
    left: 0;
    top: 90px;
    height: 1px;
    width: 100%;
    background: #AFAFB6;
}

footer .content{
    max-width: 1200px;
    margin: auto;
    padding: 30px 40px 40px 40px;
}

footer .content .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.content .top .logo-details img{
    width: 30%;
}

.content .top .media-icons{
    display: flex;
}

.content .top .media-icons a{
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.4s ease;
    background-color: #3D808A;
    border: 1px solid #3D808A;
}

.content .top .media-icons a:hover{
    background: transparent;
    color: #3D808A;
}

footer .content .link-boxes{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .content .link-boxes .box{
    width: calc(100% / 5);
}

footer form{
    width: auto;
}

.content .link-boxes .box .link_name{
    color: #000e1a;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.content .link-boxes .box li{
    margin: 10px 0;
    list-style: none;
}

.content .link-boxes .box li a{
    color: #001b33;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
}

.content .link-boxes .box li a:hover{
    opacity: 1;
    text-decoration: underline;
}

.content .link-boxes .input-box{
    margin-right: 55px;
}

.link-boxes .input-box input{
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #AFAFB6;
    background: white;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 15px;
    color: black;
    margin-top: 5px;
}

.link-boxes .input-box input::placeholder{
    color: #AFAFB6;
    font-size: 16px;
}

.link-boxes .input-box input[type="submit"]{
    background-color: #3D808A;
    height: 40px;
    font-size: 16px;
    border: 1px solid #3D808A;
    border-radius: 8px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s;
}

.input-box input[type="submit"]:hover{
    background: transparent;
    color: #3D808A;
    border: 1px solid #3D808A;
}

footer .bottom-details{
    width: 100%;
    background: white;
}

footer .bottom-details .bottom_text{
    margin: auto;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}

.bottom-details .bottom_text span{
    font-size: 14px;
    font-weight: 300;
    color: #001b33;
    text-decoration: none;
}

.bottom-details .bottom_text a{
    font-size: 14px;
    font-weight: 300;
    color: #3D808A;
    text-decoration: none;
}

.bottom-details .bottom_text a:hover{
    opacity: 1;
    text-decoration: underline;
}

.bottom-details .bottom_text a{
    margin-right: 10px;
}

.bottom-details .bottom_text .policy_terms a{
    color: #001b33;
}

/* Price */

section.price{
    background-color: #f2f2f2;
    width: 100%;
    padding-top: 140px;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 50px;
}

section.price .btnsFilter{
    text-align: center;
    background-color: #cbe5e7;
    width: 300px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 5px;
}

section.price .btnsFilter button{
    border: none;
    background-color: #cbe5e7;
    padding: 8px 40px;
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    cursor: pointer;
}

section.price .btnsFilter button.active{
    background-color: #306569;
    border-radius: 12px;
}

section.price .slide-container{
    max-width: 1200px;
    width: 100%;
    padding: 40px 2%;
    z-index: 1;
}

section.price .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
}

section.price .card{
    border-radius: 25px;
    background-color: #FFF;
    transition: 0.5s
}

section.price .image-content,
section.price .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

section.price .image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
}

section.price .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #cbe5e7;
    border-radius: 25px 25px 0 0;
}

section.price .card-header{
    position: relative;
    text-align: center;
}

section.price .card-header.blur{
    filter: blur(8px);
}

section.price .card-header .title{
    color: #001f2b;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

section.price .card-header .desc{
    font-size: 13px;
    max-width: 300px;
    margin-bottom: 10px;
}

section.price .card-header .price{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

section.price .card-header .price .priceText{
    color: #001f2b;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -2px;
}

section.price .card-header .price span{
    margin-top: 10px;
    font-size: 28px;
    font-weight: 700;
}

.card-header .time{
    font-size: 16px;
    margin-top: -3px;
    margin-bottom: 20px;
}

section.price .card-header .buttons{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section.price .card-header .buttons button{
    border: 1px solid #306569;
    background-color: #306569;
    padding: 8px 0px;
    border-radius: 8px;
    text-transform: uppercase;
    color: white;
    font-size: 14px;
    font-weight: 500;
    width: 150px;
    cursor: pointer;
    transition: 0.5s;
    margin: 0 auto;
}

section.price .card-header button:hover{
    scale: 1.05;
}

section.price .card-header .buttons button.btnCon{
    border: 1px solid #306569;
    background-color: transparent;
    padding: 8px 0px;
    border-radius: 8px;
    text-transform: uppercase;
    color: #306569;
    font-size: 14px;
    font-weight: 500;
    width: 150px;
    cursor: pointer;
    transition: 0.5s;
    margin: 0 auto;
}

section.price .card-header button.btnCon:hover{
    background-color: #306569;
    color: white;
}

section.price .card-content.blur{
    filter: blur(8px);
}

section.price .card-content .single-list{
    display: flex;
    margin: 10px auto;
    gap: 10px;
    font-size: 14px;
}

section.price .card-content .single-list i{
    font-size: 18px;
    color: #3D808A;
}

section.price .card-content .no{
    opacity: 0.5;
}

section.price .card-content .single-list .grey{
    color: #6E777C;
}

section.price .swiper-pagination-bullet{
    background-color: #3D808A;
    opacity: 1;
}
section.price .swiper-pagination-bullet-active{
    background-color: #3D808A;
}

/* Contato */

section.contato::before{
    content: '';
    position: absolute;
    height: 980px;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: rgb(0,43,77);
    background: linear-gradient(180deg, rgba(33, 37, 41,1) 0%,  rgba(52, 58, 64,1) 33%, rgba(173, 181, 189,1) 100%);
    -webkit-clip-path: circle(37.3% at 86% 81%);
    clip-path: circle(37.3% at 86% 81%);
}

section.contato{
    padding-top: 140px;
    padding-left: 2%;
    padding-right: 2%;
    padding-bottom: 100px;
}

section.contato h3{
    text-align: center;
}

section.contato h2{
    text-align: center;
    margin-bottom: 30px;
}

section.contato .box{
    max-width: 1200px;
    width: 100%;
    background: white;
    margin: 0 auto;
    border-radius: 12px;
    -webkit-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    -moz-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
}

section.contato .box .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
}

section.contato .content .image-box{
    width: 50%;
    margin-right: 30px;
}

section.contato .content form{
    width: 50%;
    margin-right: 50px;
}

section.contato .content form h3{
    text-transform: uppercase;
    font-size: 26px;
    font-weight: 600;
    text-align: left;
}

section.contato .content .input-box{
    height: 50px;
    width: 100%;
    margin: 18px 0;
    position: relative;
}

section.contato .content .input-box input{
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    padding-left: 16px;
    background: #e6e6e6;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

section.contato .content .input-box input:focus,
section.contato .content .input-box input:valid{
    border-color: #3D808A;
    background-color: #fff;
}

section.contato .content .input-box label{
    position: absolute;
    left: 18px;
    top: 50%;
    color: #555C62;
    font-size: 15px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

section.contato .content .input-box input:focus ~ label,
section.contato .content .input-box input:valid ~ label{
    top: 0;
    left: 12px;
    display: 14px;
    padding: 0 2px;
    color: #3D808A;
    background: #fff;
}

section.contato .content .message-box{
    min-height: 100px;
    position: relative;
}

section.contato .content .message-box textarea{
    position: absolute;
    height: 100%;
    width: 100%;
    resize: none;
    background: #e6e6e6;
    border: 2px solid transparent;
    border-radius: 6px;
    outline: none;
    padding-left: 15px;
    padding-top: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

section.contato .content .message-box textarea:focus{
    border-color: #3D808A;
    background-color: #fff;
}

section.contato .content .message-box label{
    position: absolute;
    font-size: 15px;
    color: #555C62;
    left: 18px;
    top: 6px;
    pointer-events: none;
    transition: all 0.3s ease;
}

section.contato .content .message-box textarea:focus ~ label{
    left: 12px;
    top: -10px;
    color: #3D808A;
    font-size: 15px;
    padding: 0 2px;
    background: #fff;
}

section.contato .content .input-box input[type="number"]{
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

section.contato .content .input-box input[type="submit"]{
    color: #fff;
    background: #3D808A;
    padding-left: 0;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.5s ease;
}

section.contato .content .input-box input[type="submit"]:hover{
    background-color: transparent;
    color: #3D808A;
}

/* Sobre */

section.sobre{
    padding: 80px 0;
}

section.sobre .container{
    max-width: 1200px;
}

section.sobre .sobre-wraper{
    padding-top: 60%;
    position: relative;
}

section.sobre .sobre-wraper2{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

section.sobre .img-sobre{
    width: 65%;
    height: 65%;
    background: url(../images/aboutPage.svg);
    background-size: 100% 100%;
}

section.sobre .text-sobre{
    width: 100%;
    padding: 0 30px;
}

section.sobre .text-sobre p{
    color: #6E777C;
    font-size: 16px;
    margin-top: 8px;
    margin-bottom: 25px;
}

/*TERMOS E CONDICOES*/

section.termosCondicoes{
    padding: 150px 2%;
}

section.termosCondicoes p{
    color: #6c757a;
    font-size: 16px;
}

section.termosCondicoes small{
    text-transform: uppercase;
    color: #3D808A;
}

section.termosCondicoes b{
    color: black;
    text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
    section.welcome::before{
        display: none;  
    }
    
    section.welcome .text-welcome .buttons{
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    section.about::before{
        display: none;  
    }

    header{
        padding: 20px 2%;
    }

    header .navbar .links, header.navbar, .nav-bar-btn{
        display: none;
    }

    header .navbar .toggle-btn{
        display: block;
    }

    header .navbar-mobile{
        display: block;
    }

    header img{
        width: 100px;
        height: 100px;
    }

    section.welcome .text-welcome{
        width: 100%;
        padding: 0 2%;
    }

    section.welcome .welcome-wraper{
        padding-top: 10%;
    }

    section.welcome .img-welcome{
        display: none;
    }

    section.welcome .welcome-wraper2{
        text-align: center;
        display: inline-block;
        height: auto;
        position: static;
    }

    section.welcome .text-welcome{
        float: none;
        text-align: center;
    }
    
    section.welcome .text-welcome button{
        width: 100%;
        margin-bottom: 15px;
    }

    section.video{
        padding: 80px 2% 150px 2%;
        margin-top: -10%;
    }

    section.video .videoBox .video{
        height: 400px;
    }

    section.contato .content .image-box{
        max-width: 60%;
    }
      section.contato .content{
        padding: 10px 0;
    }
    
    section.about{
        margin-top: -10%;
        padding-bottom: 5%;
    }

    section.about .about-wraper{
        padding: 0 2%;
    }

    section.about .about-wraper2{
        text-align: center;
        display: inline-block;
        height: auto;
        position: static;
    }

    section.about .img-about{
        display: none;
    }

    section.about .img-about2{
        display: none;
    }

    section.about .text-about{
        display: inline-block;
        width: 100%;
        padding: 0 2%;
    }
    
    section.about .text-about .mobileSpace{
        margin-bottom: 50px;
    }
    
    section.about .text-about .group .groupHeader{
        margin: auto;
    }
}

@media screen and (max-width: 800px) {
    section.about{
        margin-top: -10%;
        padding-bottom: 10%;
    }
    
    section.faq{
        margin-top: 0px;
        padding-bottom: 10%;
    }

    section.faq .faq-wraper{
        padding: 0 2%;
    }

    section.faq .faq-wraper2{
        text-align: center;
        display: inline-block;
        height: auto;
        position: static;
    }

    section.faq .img-faq{
        display: none;
    }

    section.faq .img-faq{
        display: none;
    }

    section.faq .text-faq{
        display: inline-block;
        width: 100%;
        padding: 0 2%;
    }

    footer .content .link-boxes{
        flex-wrap: wrap;
    }
      footer .content .link-boxes .input-box{
        width: 40%;
        margin-top: 10px;
    }

    footer{
        position: relative;
    }

    .content .top .logo-details img{
        width: 25%;
    }

    .content .top .media-icons a{
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    footer .content .link-boxes .box{
        width: calc(100% / 3 - 10px);
    }

    footer .content .link-boxes .input-box{
        width: 60%;
    }

    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a{
        font-size: 12px;
    }
    
    section.video .videoBox .processBox .processSingle{
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    section.contato .box .content{
        padding: 30px 20px;
    }

    section.contato .content .image-box{
        display: none;
    }
    section.contato .content form{
        width: 100%;
        margin-left: 30px;
    }

    section.sobre{
        padding: 120px 2%;
        background: white;
    }

    section.sobre .sobre-wraper{
        padding: 0 2%;
    }

    section.sobre .sobre-wraper2{
        text-align: center;
        display: inline-block;
        height: auto;
        position: static;
    }

    section.sobre .img-sobre{
        display: none;
    }

    section.sobre .text-sobre{
        display: inline-block;
        width: 100%;
        padding: 0 2%;
    }
    
    footer .bottom-details .bottom_text{
        margin: auto;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 650px) {
    /* Section Welcome */
    section.backgroundHead{
        position:relative; 
        background-image: linear-gradient(to right bottom, #f1f2f4, #eef4fa, #e8f7fe, #e2faff, #dcfdff);
    }
    
    section.backgroundHead .custom-shape-divider-bottom-1715697253{
        display: none;
    }
    
    section.welcome{
        padding: 100px 2% 0px 2%;
    }
    
    section.welcome .welcome-wraper2 img{
        width: 100%;
        height: 100%;
        margin-top: 0px;
    }
    
    .cover-bg{
        background: white;
    }
    
    section.start{
        height: 450px;
    }

    .content .top .logo-details img{
        display: none;
    }

    footer::before{
        top: 105px;
    }

    footer .content .top{
        flex-direction: column;
    }

    .content .top .media-icons{
        margin-top: 16px;
    }

    footer .content .link-boxes .box{
        width: calc(100% / 2 - 10px);
    }

    footer .content .link-boxes .input-box{
        width: 100%;
    }

    section.contato::before{
        display: none;
    }
    
    section.contato{
        padding: 180px 6%;
    }
}

@media screen and (max-width: 450px) {
    section.video{
        margin-top: 0;
        padding: 50px 2% 100px 2%;
    }

    section.video .videoBox .video{
        height: 250px;
    }

    section.start .text{
        margin: -50px auto;
    }

    section.start .text button{
        font-size: 14px;
        width: 150px;
    }
    
    section.price{
        padding-left: 0px;
        padding-right: 0px;
    }
    
    section.price .slide-container{
        max-width: 100%;
        padding: 0px;
    }
    
    section.video .videoBox .processBox .processSingle{
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* MODAL CONTACT */

section.helpSection .modalHelp{
    position: fixed;
    right: 1.5%;
    bottom: 10%;
    background: white;
    -webkit-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    -moz-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
    border-radius: 8px;
    width: 320px;
    z-index: 2000;
    display: none;
}

section.helpSection .modalHelp .modalHeader{
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
}

section.helpSection .modalHelp .modalHeader h3{
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 5px;
}

section.helpSection .modalHelp .modalHeader i{
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 2px;
}

section.helpSection .modalHelp .modalHeader i:hover{
    background-color: #f1f2f4;
    border-radius: 4px;
}

section.helpSection .modalHelp .modalHeader .logo img{
    width: 80px;
    height: 80px;
}

section.helpSection .modalHelp .modalBody{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 5% 45px 5%;
}

section.helpSection .modalHelp .modalBody .cardContact{
    width: 100%;
    display: flex;
    background: #f1f2f4;
    color: black;
    padding: 15px;
    cursor: pointer;
    border-radius: 4px;
    align-items: center;
}

section.helpSection .modalHelp .modalBody .cardContact h3{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: normal;
}

section.helpSection .modalHelp .modalBody .cardContact i{
    margin-left: auto;
    color: #3D808A;
    padding: 5px;
    transition: all 0.3s;
    border-radius: 4px;
}

section.helpSection .modalHelp .modalBody .cardContact:hover i{
    background-color: #3D808A;
    color: white;
}


section.blog{
    padding: 200px 2%;
}

section.blog h2{
    text-align: center;
    margin-bottom: 20px;
}

section.blog h3{
    text-align: center;
}

section.blog .blog-slider {
    width: 95%;
    position: relative;
    max-width: 1200px;
    background: #fff;
    box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
    padding: 25px;
    border-radius: 12px;
    height: auto;
    transition: all 0.3s;
    margin: 0 auto;
}

.blog-slider__item.swiper-slide-active .blog-slider__img img {
    opacity: 1;
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > * {
    opacity: 1;
    transform: none;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
    transition-delay: 0.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
    transition-delay: 0.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
    transition-delay: 0.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
    transition-delay: 0.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
    transition-delay: 0.7s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
    transition-delay: 0.8s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
    transition-delay: 0.9s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
    transition-delay: 1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
    transition-delay: 1.1s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
    transition-delay: 1.2s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
    transition-delay: 1.3s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
    transition-delay: 1.4s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
    transition-delay: 1.5s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
    transition-delay: 1.6s;
}

.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
    transition-delay: 1.7s;
}

.blog-slider__img {
    width: 300px;
    flex-shrink: 0;
    height: 320px;
    background-image: linear-gradient(to right bottom, #f1f2f4, #eef4fa, #e8f7fe, #e2faff, #dcfdff);
    box-shadow: 4px 13px 30px 1px rgba(180, 180, 180, 0.2);
    border-radius: 16px;
    transform: translateX(-80px);
    overflow: hidden;
}

.blog-slider__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0.8;
}

.blog-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    border-radius: 16px;
    transition: all 0.3s;
}

.blog-slider__content > * {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s;
}

.blog-slider__code {
    color: #7b7992;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.blog-slider__title {
    font-size: 24px;
    font-weight: 700;
    color: #0d0925;
    margin-bottom: 20px;
    text-transform: uppercase;
    margin-top: 40px;
}

.blog-slider__text {
    color: #4e4a67;
    margin-bottom: 30px;
    max-width: 700px;
    line-height: 1.5em;
}

.blog-slider__button {
    display: inline-flex;
    padding: 8px 35px;
    border-radius: 12px;
    color: #fff;
    background-color: #3D808A;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    justify-content: center;
    text-align: center;
    letter-spacing: 1px;
}

.blog-slider__pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    display: block;
    border-radius: 10px;
    background: #062744;
    opacity: 0.2;
    transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #3D808A;
    height: 30px;
}
.blog-slider__content {
    padding-right: 25px;
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets, .blog-slider .swiper-pagination-custom, .blog-slider .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}
.blog-slider__pagination {
    position: absolute;
    z-index: 21;
    right: 20px;
    width: 11px !important;
    text-align: center;
    left: auto !important;
    top: 50%;
    bottom: auto !important;
    transform: translateY(-50%);
}

.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 8px 0;
}

.blog-slider__item {
display: flex;
align-items: center;
}

@media screen and (max-height: 500px) and (min-width: 992px) {
    .blog-slider__img {
        height: 270px;
    }
    .blog-slider {
        height: 350px;
    }
    .blog-slider {
        max-width: 680px;
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    section.blog{
        padding-top: 280px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .blog-slider__img {
        transform: translateY(-50%);
        width: 90%;
    }

    .blog-slider__content {
        margin-top: -80px;
        text-align: center;
        padding: 0   30px;
    }

    .blog-slider__pagination {
        transform: translateX(-50%);
        left: 50% !important;
        top: 205px;
        width: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }

    .blog-slider__pagination .swiper-pagination-bullet-active {
        height: 11px;
        width: 30px;
    }

    .blog-slider {
        min-height: 500px;
        height: auto;
        margin: 180px auto;
    }

    .blog-slider__item {
        flex-direction: column;
    }
}

@media screen and (max-width: 576px) {
    .blog-slider__img {
        width: 95%;
    }

    .blog-slider__content {
        padding: 0;
    }

    .blog-slider__button {
        width: 100%;
    }
    
    section.helpSection .modalHelp{
        position: fixed;
        right: 5%;
        bottom: 12%;
        background: white;
        -webkit-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
        -moz-box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
        box-shadow: 1px 1px 24px 0px rgba(208, 209, 212, 1);
        border-radius: 8px;
        width: 80%;
        z-index: 2000;
        display: none;
    }
}
  