
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


:root {
  --color_primary: #4FC3C7;
  --color_green: #25D366;
  --color_purple: #AA69AB;
  --color_red: #E27481;
  --color_blue: #626DB3;
  --color_dark: #878E8E;
  --color_grey: #EDEDED;
  --color_light: #F6F6F6;

  --color_primary2: #B0F7F5;
  --color_green2: #ACF9C1;
  --color_purple2: #D1CAE9;
  --color_red2: #EFBBC3;
  --color_blue2: #99A5E0; 

  --color_yellow: #FFCC00;
  
  --font_sans: "Nunito Sans", sans-serif;
  --font_primary: "Nunito", sans-serif;

}
::-moz-selection {
  background: #ffcf21b9;
}

::selection {  
  background: #ffcf21b9;
}



#preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  .loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid var(--color_primary); /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  .bg_primary{
    background: var(--color_primary);
  }
  .bg_primary2{
    background: var(--color_primary2)!important;
  }
  .bg_black {
    background: black;
  }
  .bg_red {
    background: var(--color_red);
  }
  .bg_red2 {
    background: var(--color_red2)!important;
  }
  .bg_blue {
    background: var(--color_blue);
  }
  .bg_blue2 {
    background: var(--color_blue2)!important;
  }
  .bg_yellow {
    background: var(--color_yellow);
  }
  .bg_purple {
    background: var(--color_purple);
  }
  .bg_purple2 {
    background: var(--color_purple2)!important;
  }
  .bg_green {
    background: var(--color_green);
  }
  .bg_green2 {
    background: var(--color_green2) !important;
  }
  .bg_grey {
    background: var(--color_grey);
  }
  .bg_light {
    background: var(--color_light);
  }
  .bg-white-transparent {
    background-color: rgba(255, 255, 255, 0.95);
  }  
  .bg_blue_gradient {
    background: rgb(118,146,224);
    background: linear-gradient(180deg, rgba(118,146,224,1) 0%, rgba(4,32,104,1) 100%);
  }
  .lds-ellipsis span {    
      background: var(--color-purple);
  }

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-img-hrz {
    background-position: top;
    background-repeat: repeat-x;
}

.modal-open .modal-backdrop{
    background: #000000 !important
}
.modal-backdrop.show {
    opacity: .9;
  }

  
.text-primary {
  color: var(--color_primary) !important ;
}
.text-danger {
  color: var(--color_red) !important ;
}
.text-success {
  color: var(--color_blue) !important;
}
.text-blue {
  color: var(--color_blue) !important;
}

.text-warning {
  color: var(--color_yellow) !important;
}

.text-purple {
  color: var(--color_purple) !important;
}
.text-gray {
  color: #8E8E8E;
}
.text-green {
color: var(--color_green)
}

.fw-normal {
  font-weight: 700 !important;
}
.fw-bold {
  font-weight: 800 !important;
}
.font-bolder {
  font-weight: 900 !important;
}

.fs-7{
  font-size: .8rem;
}
  
  a {
    color: inherit;
    text-decoration: none;
  }
  a:hover {
    text-decoration: none;
  }
  a:link {
    text-decoration: none;
  }
  a:focus {
    outline: none;
  }

  
  .btn-success {
    background-color: var(--color_green);
    border-width: 0; 
    color: black !important;
    font-weight: 700;
  }
  .btn-success:hover {
    background-color: white;
    color: var(--color_purple) !important;
    
  }


  .btn-green {
    background-color: var(--color_green);
    border-width: 0;
    color: white !important;
    font-weight: 700;
    border-radius: 0.6rem;
    padding: 0.7rem 2rem;
  }
  .btn-green:hover {
    background-color: rgb(5, 211, 22);
    
  }

  .btn-red {
    background-color: var(--color_red);
    border-width: 0;
    color: white !important;
    font-weight: 700;
    border-radius: 0.6rem;
    padding: 0.7rem 2rem;
  }
  .btn-red:hover {
    background-color: #F996A2;
    
  }


  .btn-purple {
    background-color: var(--color_purple);
    border-width: 0;
    color: white !important;
    font-weight: 700;
    border-radius: 0.6rem;
    padding: 0.7rem 2rem;
  }
  .btn-purple:hover {
    background-color: #D7A6D8;
    
  }


  .btn-primary {
    background-color: var(--color_primary);
    border-width: 0;
    color: white !important;
    font-weight: 700;
    border-radius: 0.6rem;
    padding: 0.7rem 2rem;
  }
  .btn-primary:hover {
    background-color: var(--color_primary2);
    
  }









  .btn_circle {
    background: var(--color_blue2);
    border: 1px solid var(--color_blue);
    border-width: 5px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

  }
  .btn_circle img {
    width: 100%;
    padding: 30px;
  }

/* 
=======================
  VAR NAV 
=======================
 */

 .navbar .navbar-btn a {
    background: var(--color-red) !important;
    border-color: var(--color-red) !important;
   
}

.navbar .navbar-btn a:hover {
    background: var(--color-blue) !important;
    border-color: var(--color-blue) !important;
   
}

.header-area.header-6-area .header-nav .navigation .navbar .navbar-nav .nav-item a {
    color: #fff; 
}

/* home */

.hero-6-area::before {
    display: none !important;
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    height: 450px;
    width: 380px;
    background: #F5F5F5;
}




.titulo {
    font-size: 4.5rem;
    letter-spacing: -0.02rem;
    line-height: 1.1;
}
.sub-titulo {
  font-size: 2rem;
  line-height: 1.2; 
  font-weight: 500;
}

.titulo-light {
    font-size: 2.3rem;
    line-height: 1;
    color: #fff;
    font-weight: 300;
}

 .titulo-normal {
    font-size: 2rem;
    line-height: 1.0;    
    font-weight: 700;
}
/*
.text-legal {
    font-size: smaller;
} */

.text-description {
    font-size: 1.1rem;
    line-height: 1.36;
    font-weight: normal;
}


.select {
    width: 100%;
    background: #F5F5F5;
    border: 0;
    /* padding-left: 20px; */
    line-height: 45px;
    color: #33415C;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 10px;

}
label.error {
    color: red; 
    /* var(--color-red); */
    font-size: 0.8rem;
}
.feature {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    border-radius: 100%;
    
}
.feature-text {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 0.8rem;
}
.line-up {
  width: 25%;
  height: 15px;
  background: rgb(211, 211, 211);
  margin-bottom: 25px;
  display: block;
  border-radius: 3rem;
}
.line-up.bg-green {   
    background: var(--color-green);   
}

.rounded-box {
  border-radius: 2.5rem;
  display: block;
  overflow: hidden;
}
.box-category {
  min-height: 420px;
}

.lh-1{
    line-height: 1 !important;
}

.border-buttom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.554);
}
.icon_features {
    min-width: 50px;;
}
.icon-loading {
    width: 30px;
    height: 30px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    } 

.border-form{
  border: 1px solid var(--color_purple);
  border-bottom-width: 10px;
  border-radius: 2rem;
  overflow: hidden;
}
 


.whatsApp-position {
  bottom: 25px;
  right: 10px;
  z-index: 99;
}
.whatsApp-float {
  background: #2cb741;
  height: 70px;
  width: 70px;
  
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsApp-icon {
  color: #fff;
  font-size: 3rem;
  width: 50px;
  height: 50px;
}

  
@media (max-width: 991px) {
  .bg-img-hrz {
    background-position-y: 0px;
    background-size: 140% 5px;
  }
  .btn_circle img {
    width: 100%;
    padding: 33px;
  }
   
    footer {
        text-align: center;
    }
   
    .text-center-mobile {
        text-align: center !important;
    }
    p {       
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .titulo {
      font-size: 3.3rem;      
    }
    .sub-titulo {
      font-size: 1.3rem;
    line-height: 1.3;
     
    }


    .titulo-normal {
        font-size: 1.7rem;
        line-height: 1.2;
    }
    .services-6-area {
        padding-top: 50px;
        padding-bottom: 50px;
       
      }
}

@media (max-width: 767px) {

  .btn_circle img {
    width: 100%;
    padding: 25px;
  }

  .hero-6-content{
      text-align: center;
      padding-top: 30px;
  }
  .hero-6-content img {
      margin: auto;
  }

  .box-category {
    min-height: 300px;
  }
  
}

   
/* 
###############
### SPACING ###
############### 
*/
.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.my-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.my-150 {
  margin-top: 150px;
  margin-bottom: 150px;
}
.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-80 {
  margin-bottom: 80px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mb-150 {
  margin-bottom: 150px;
}
.pt-80 {
  padding-top: 80px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-150 {
  padding-bottom: 150px;
}
