

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-VariableFont_wght.ttf');
    font-weight: 400 800;
}
* {
    font-family: Raleway;
    color:#003658

}

.w300 {
    font-variation-settings: 'wght' 300;
    color:white;
}

.w500 {
    font-variation-settings: 'wght' 500;
    color:white;
}
.w800 {
    font-variation-settings: 'wght' 800;
    color:white;
}

.btn{
   color:white;
    font-weight: bold;
}


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
    --white-color:                  #ffffff;
    --primary-color:                #000;
    --secondary-color:              #6b6b6b;
    --section-bg-color:             #f0f8ff;
    --site-footer-bg-color:         #44525d;
    --custom-btn-bg-color:          #597081;
    --custom-btn-bg-hover-color:    #617a75;
    --dark-color:                   #000000;
    --p-color:                      #003658;
    --border-color:                 #e9eaeb;
    --alert-crecido:                #ff9500;
    --menu-color:                   #11204D;
    --azul-bebe:                    #0075BF;

    --body-font-family:             'Raleway', sans-serif;

    --h1-font-size:                 52px;
    --h2-font-size:                 46px;
    --h3-font-size:                 32px;
    --h4-font-size:                 28px;
    --h5-font-size:                 24px;
    --h6-font-size:                 22px;
    --p-font-size:                  16px;
    --btn-font-size:                18px;
    --copyright-font-size:          14px;

    --border-radius-large:          100px;
    --border-radius-medium:         20px;
    --border-radius-small:          10px;

    --font-weight-light:            300;
    --font-weight-medium:           500;
    --font-weight-normal:           400;
    --font-weight-semibold:         600;
    --font-weight-bold:             700;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
}



/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
    letter-spacing: -1px;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
}

h2 {
    color: var(--secondary-color);
    font-size: var(--h2-font-size);
    letter-spacing: -2px;
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    color: var(--primary-color);
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

a,
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    color: var(--p-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

#controle1,  #controle2{
    display: none;
}




.btn-warning{
    background-color: darkorange;

}

#crmimg1, #crmimg2{
-webkit-box-shadow: -7px 10px 15px 0px rgb(255, 255, 255);
-moz-box-shadow: -7px 10px 15px 0px rgb(255, 255, 255);
box-shadow: -7px 10px 15px 0px rgb(255, 255, 255);
border-radius: 18px 18px 18px 18px;
-moz-border-radius: 18px 18px 18px 18px;
-webkit-border-radius: 18px 18px 18px 18px;
border: 0px solid #ffffff;
}


/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
    background: var(--white-color);
    padding-top: 15px;
    padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
    color: var(--primary-color);
    font-size: var(--copyright-font-size);
}
.site-header .social-icon {
    margin: 0;
    padding: 0;
}


.site-header .social-icon {
    text-align: right;
}

.site-header .social-icon-link {
    background: transparent;
    width: inherit;
    height: inherit;
    line-height: inherit;
    margin-right: 15px;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.custom-btn {
    background: var(--secondary-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--btn-font-size);
    font-weight: var(--font-weight-normal);
    line-height: normal;
    padding: 15px 25px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    color: var(--custom-btn-bg-color);
    margin-top: 8px;
    padding: 12px 25px;
}

.custom-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--primary-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
    color: var(--white-color);
}


/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.navbar {
    background: var(--white-color);
    z-index: 9;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand {
    color: var(--primary-color);
    font-size: var(--h6-font-size);
    font-weight: var(--font-weight-bold);
}

.navbar-brand span {
    display: inline-block;
    vertical-align: middle;
}

.navbar-brand small {
    color: var(--secondary-color);
    display: block;
    font-size: 10px;
    line-height: normal;
    text-transform: uppercase;
}

.logo {
    width: 160px;
    height: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 20px;
}

.navbar-nav .nav-link {
    display: inline-block;
    color: var(--menu-color);
    font-size: 1.3em;
    font-weight: var(--font-weight-medium);
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}

.CadastreseBnt, .CadastreseBnt:hover{
    background-color: orange !important;
    border-radius: 1.6rem;
    font-weight: var(--font-weight-bold) !important;
}

.LoginBnt, .LoginBnt:hover{
    border-radius: 1.6rem;
    font-weight: var(--font-weight-bold) !important;


}

.PlanBnt, .PlanBnt:hover{
    border-radius: 1.6rem;
    font-weight: var(--font-weight-bold) !important;
    background-color: #0b5ed7;
    color:white;
}

.PlanBntActive, .PlanBntActive:hover{
    border-radius: 1.6rem;
    font-weight: var(--font-weight-bold) !important;
    background-color:  white;
    color:#0b5ed7;
}


.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background: transparent;
    color: var(--menu-color);
}

.dropdown-menu {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
    border: 0;
    padding: 0;
    margin-top: 20px;
}

.dropdown-item {
    display: inline-block;
    color: var(--menu-color);
    font-size: var(--menu-font-size);
    font-weight: var(--font-weight-medium);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
    padding-top: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
    background: transparent;
    color: var(--menu-color);
}

.dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-size: var(--copyright-font-size);
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    left: 2px;
    border: 0;
}

@media screen and (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0;
    width: 30px;
    height: 35px;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--dark-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--dark-color);
    width: 30px;
    height: 2px;
    content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}


/*---------------------------------------
  HERO & HERO SLIDE
-----------------------------------------*/

.hero-section-full-height {
    height: 780px;
    min-height: 998px;
    position: relative;
   /* background-image: linear-gradient(red, yellow);*/
    background-color: #003658;

}

.hero-section-full-height2 {
    position: relative;
     background-image: linear-gradient( #003658, #3D8CCC);
  }

.hero-section-full-height3 {

}

.hero-section-full-height6 {
    height: 720px;
    min-height:720px;
    background-image: linear-gradient( #FFFFFF, #cdebfe)
}

.hero-section-full-height4 {
  /*  height: 1600px;
    min-height:1600px;*/
    position: relative;
    background-image: linear-gradient( #003658, #3D8CCC);
}

.hero-section-full-height5 {

    position: relative;
    background-image: linear-gradient( #003658, #3D8CCC);
}

.hero-section-full-height7 {
    height: 250px;
    min-height:250px;
    position: relative;

}

.hero-section-full-height8 {

    position: relative;
    background-color: #181C32;

}

.hero-section-full-height9 {

    position: relative;

}

.hero-section-full-height10 {
    background-color:#3D8CCC;
}

.hero-section-full-height11 {
    background-color: #d8effd;
    background-image: url(/images/bannersuporte.jpg);
    background-position:center;
    background-repeat: no-repeat;
    min-height: 364px;
}

.footer {
    height: 500px;
    min-height:500px;
    position: relative;

}

/*---------------------------------------
TABS
-----------------------------------------*/
.tab .nav-tabs {
    border: none;
}
.tab .nav-tabs li a {
    color: var(--p-color);

    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 12px 20px 14px;
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0.3s;
}
.tab .nav-tabs li, .tab .nav-tabs li:hover{
    background-color: transparent;
    border-color:  transparent;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: white;
    background-color: transparent;
    border-color:  transparent;
    border-bottom: 3px white;

}

.nav-tabs .nav-item .nav-link{
    color: #ccc;
}

.nav-link .active{
    border-bottom: 5px solid #223d5c;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
isolation: isolate;
border-color: transparent;
color: var(--p-color);
}

.tab .nav-tabs li.active a,
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a:hover {
color: var(--p-color);

background-color: transparent;
border-color:  transparent;
}
.tab .nav-tabs li a:before,
.tab .nav-tabs li a:after {
content: "";
background-color:transparent;
width: 100%;
height: 80%;
position: absolute;
top: -80%;
left: 0;
z-index: -1;
/*  clip-path: polygon(0 0, 100% 0, 50% 100%);*/
    transition: all 0.3s ease 0s;
}
.tab .nav-tabs li a:after {
    background-color: transparent;
    top: auto;
    bottom: -4px;
    height: 4px;
    clip-path: none;
}
.tab .nav-tabs li.active a:before,
.tab .nav-tabs li a:hover:before {
    top: 0;
}
.tab .nav-tabs li.active a:after,
.tab .nav-tabs li a:hover:after {
    bottom: 0;
}
.tab .tab-content {
    color: #555;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 25px;
    padding: 20px;
    position: relative;
}
@media only screen and (max-width: 479px) {
    .tab .nav-tabs {
        margin: 0 0 10px;
    }
    .tab .nav-tabs li {
        width: 100%;
        text-align: center;
    }
}
#myTab li a{
    color:white;
    font-weight: var(--font-weight-medium);
}
#myTab li a:hover, #myTab .nav-item .nav-link .active .show{
    color:white;
    border-bottom:5px solid var(--azul-bebe);
    font-weight: var(--font-weight-medium);
}

#myTab2 li a{
    color:#003658;
    font-weight: var(--font-weight-medium);
}
#myTab2 li a:hover{
    color:#0069C0;
    border-bottom:5px solid darkorange;
    font-weight: var(--font-weight-medium);
}


/* ----------------------------------------------------
Swiper caroussel
-------------------------------------------------------- */
.swiper {

    width: 100%;
}

.swiper-slide {
    text-align: center;
    color:white;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;

    background-color: #181C32;
    border-radius: 25px;
    border: 2px solid #73AD21;
    padding:10px;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
   ;

}
/*parceitos*/
.mySwiper2{
    width: 100%;
    min-height: 100px !important;
}

.mySwiper2 .swiper-slide {
    text-align: center;
    color:white;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    background-color: #fff;
    height:100px;
    border: none;
}

.swiper-button-next{
    color:dodgerblue;
}

.swiper-button-prev{
    color:dodgerblue;
}



/*-- fim parceiros*/


.swiper-planitem-enable{

}
.swiper-planitem-disable{

}

/*
Card Plan Slider
*/
.cardPlan{

}
.cardPlan li{
    text-align: left;
    list-style: none;
    font-size: 1em;
    color:white;
    line-height:30px;
}

/*testemunhos cards*/
.testemunho_card {
    text-align: center;
    color: white;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background-color: #181C32;
    border-radius: 25px;
    border: 2px solid;
    padding:20px 10px 10px 10px;
}

.testemunho_card img{
 max-height: 10vh;
 border: 2px solid ;
}

/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
    background-color: #005286;
    padding-top: 70px;
    background-image: url(/images/azul1-816.webp.webp);
    background-position: center;
    background-repeat: no-repeat;
}

.site-footer-title{

}

.site-footer-bottom {
    background-color: #005286;
    position: relative;
    z-index: 2;
    margin-top: 70px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.site-footer-bottom a {
    color: var(--white-color);
}

.site-footer-bottom a:hover {
    color: #FF6;
}

.site-footer-link {
    color: var(--white-color);
}

.copyright-text {
    color: var(--section-bg-color);
    font-size: var(--copyright-font-size);
    margin-right: 30px;
}

.site-footer .custom-btn {
    font-size: var(--copyright-font-size);
}

.site-footer .custom-btn:hover {
    background: var(--primary-color);
}

#Funcionalidades h3{
    font-size: 1.4em;
}


/*---------------------------------------
  FOOTER MENU
-----------------------------------------*/
.footer-menu {
    column-count: 2;
    margin: 0;
    padding: 0;
}

.footer-menu-item {
    list-style: none;
    display: block;
}

.footer-menu-link {
    font-size: var(--p-font-size);
    color: var(--white-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
}

/*
25% off - tag
*/

element.style {
}
.absolute {
    position: absolute;
}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.font-bold {
    font-weight: 700;
}

.text-xs {
    font-size: 1rem;
    line-height: 1rem;
}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.bg-green-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.rounded {
    border-radius: 0.25rem;
}
.transform {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-1\/2 {
    --tw-translate-x: 50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.z-10 {
    z-index: 10;
}
.top-0 {
    top: 0;
}
.right-0 {
    right: 0;
}

/*
ACCORDION FAQ
*/

.accordion-header{
    margin-bottom: -2px;
    border: 1px solid #0069C0;
}


.swiper-slide{
    height:900px;
}

.blog_card{

}

.blog_card_body{
    margin-top: 0px !important;
}

/* -----------------------------*/
/*Combo Bandeiras telefone*/
.form-group-2 {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.form-group-2 select,
.form-group-2 input[type="tel"] {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff !important;
    padding: .370rem .75rem !important;
    height: calc(2.25rem + 2px) !important;
    border: 1px solid #ced4da !important;
    box-sizing: border-box !important;
}

.form-group-2 select {
    border-right: none !important;
    border-radius: .25rem 0 0 .25rem !important;
    max-width: 25% !important;

}
.container_html {
    transition: width 0.5s;
}

@media (max-width: 600px) {
    .container_html {
        width: 100% !important
    }
}
.form-group-2 input[type="tel"] {
    flex: 1;
    border-radius: 0 .25rem .25rem 0;
    height: 100%; }
/* -----------------------------*/
/*fim Combo Bandeiras telefone*/

.iti .input-group .form-control, .intl-tel-input{
    width: 100%;
    display: block;
}
 .country-list {
    max-height: 200px !important;
}

.iti__selected-country {
    border-right: none !important;
    border-radius: .25rem 0 0 .25rem !important;
    max-width: 25% !important;
}

.intl-tel-input {
       display: table-cell;
   }
.intl-tel-input .selected-flag {
    z-index: 4;
}
.intl-tel-input .country-list {
    z-index: 5;
}
.input-group .intl-tel-input .form-control {
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
}




/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 340px ) and (max-width: 1000px ) {
     .btn{
      font-size: 21px;
     }

    .w500 {
        font-weight: bolder;
        line-height: 87%;
        font-variation-settings: 'wght' 500;
        font-size: 40px;
    }

    .w800 {
        font-variation-settings: 'wght' 800;
        font-size: 40px;
    }

    p, li, li span, .card-text {
      font-size: 14px;
    }

    ul li {
        font-size: 11px;
    }




    #heroVideo{
        width: 100%;
        height: 23.5vh;
    }
    .bntafter{
        display:block;
    }
    .bntbefore{
        display:none;
    }

    .card-body{
        text-align: center !important;
        margin-top: 0px;
    }
    .cardPlan li {
        font-size: 1.2em;
        line-height: 33px;
    }

    .titulobicolor{
        font-size: 40px;
    }

    .hero-section-full-height4{
        min-height: 1200px
    }

    .hero-section-full-height9{
        min-height: 960px
    }

    .swiper-wrapper {
       height:1000px;
    }

    #planoCustom{
        line-height:362px;
    }

    .hero-section-full-height6 {
        height: 1050px;
        min-height: 1050px;
    }

    .hero-section-full-height11 {
        background-color: #d8effd;
        background-image: url(/images/banner-vertical-consultoria-gratuita.png);
        background-position:center;
        background-repeat: no-repeat;
        min-height: 364px;
    }

    #heroSubTitle1{
        font-size: 27px;
    }


    #myTab li a{
        font-size: 18px;
    }
    #myTab li a:hover{
        font-size: 18px;
    }

    #myTab2 li a{
        font-size: 11px;
    }
    #myTab2 li a:hover{
        font-size: 11px;
    }

    #Funcionalidades .titulobicolor{
        font-size: 40px;
    }

    #Funcionalidades h3{
        font-size: 1.2em;
    }

    #Testemunhos .w500{
        font-size: 27px;
    }

    #FAQ .w500{
        font-size: 27px;
    }

    #accordionFlushExample b{
        font-size: 18px;
    }

    #accordionFlushExample .accordion-button, .accordion-body{
        font-size: 18px;
    }

    #accordionFlushExample accordion-body{
        font-size: 18px;
    }





}





/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .w500 {

    }

    p, li, li span {
        font-size: 16px;
    }

    ul li {
        font-size: 16px;
    }

    .accordion-button, .accordion-body{
        font-size: 16px;
    }

    .titulobicolor{

        font-size: var(--h2-font-size);
        letter-spacing: -2px;
    }

    .hero-section-full-height {
        height: 850px;
        min-height: 900px;
    }
    #heroTitle1{
        font-size: 6em;
    }
    #heroSubTitle1{
        font-size: 1.8em;
    }
    #heroVideo {
        width: 100%;
        height: 43.5vh;
    }

    .hero-section-full-height2 {
        height: 735px;
        min-height: 735px;
    }
    .card-body{
        text-align: left;

    }



    .hero-section-full-height3{
        height: 680px;
        min-height: 740px;
    }

    #heroSubTitle2{
        line-height: 1.5em;
    }

    .hero-section-full-height5 {
        height: 1450px;
        min-height: 1450px;
    }

    .hero-section-full-height6 {
        height:720px;
        min-height:720px;
    }

    hero-section-full-height8 {
        height: 1165px;
        min-height: 1165px;
    }

    .hero-section-full-height9 {
        height: 600px;
        min-height:600px;
    }
    .swiper {
        min-height: 990px;
    }
    .swiper-slide{
        min-height:948px;
    }
    .cardplan #customPlan{
        margin-top:205px;
    }

    .brunoleo {
        max-width: 70%;
        margin-bottom: -50px;

    }

    .bntbefore{
        display:block;
    }
     .bntafter{
        display:none;
     }


}

@media only screen and (min-width: 1600px){

    .w500 {

    }

    p, li, li span {
        font-size: 16px;
    }

    ul li {
        font-size: 16px;
    }

    .accordion-button, .accordion-body{
        font-size: 16px;
    }


 .swiper {
           min-height: 950px;
        }
    .swiper-slide{
        min-height:828px;
    }

    .cardplan #customPlan{
        margin-top:95px;
    }
}

@media only screen and (min-width: 1900px) {

    .formContato{
        width: 25rem;
    }

    .w500 {

    }

    p, li, li span {
        font-size: 1.31em;
    }

    ul li {
        font-size: 16px;
    }

    .cardplan li{
        margin-top:0px;
    }

    #controle1,  #controle2{
        display: block;
    }
}

.iti__country-container {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: var(--iti-border-width);
}

.iti--allow-dropdown input.iti__tel-input, .iti--allow-dropdown input.iti__tel-input[type=text], .iti--allow-dropdown input.iti__tel-input[type=tel] {
    z-index: 0;
    padding-left: 60px !important;
}



















