
/*---------------------------
    SUMÁRIO
    -------------------------
    05- page title 
    06- Buttons
    07- Forms
    08- Tabs
    09- Icons
    10- Breadcrumb - NÃO USADO
    11- Pagination
    12- Lists
    13- AnimationsTimeline
    14- Alerts
    16- Carousel  - slick-list NÃO USADO
    29- Pricing - TALVEZ VOU USAR NÃO TIREI
----------------------------*/
/*-------------------------- 
      global styles
---------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #848e9f;
  overflow-x: hidden;
}

::-moz-selection {
  background-color: #6CA6DB;
  color: #ffffff;
}

::selection {
  background-color: #6CA6DB;
  color: #ffffff;
}

a {
  color: #6CA6DB;
  transition: color 0.3s ease;
}
a:hover {
  color: #0F284C;
  text-decoration: none;
}

section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}

img {
  max-width: 100%;
}
/*-------------------------
    Reset default styles
 --------------------------*/
* {
  outline: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
}

select {
  background-color: transparent;
}

button,
button:focus,
.form-control,
.form-control:focus {
  outline: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea {
  resize: none;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  html,
  body {
    overflow-x: hidden;
  }
}

/*----------------------------
   Card Grupo Clinic Brasil
----------------------------*/
.cartaogrupoclinicbrasil {
  position: relative;
  width: calc(100% - 40px); /* Calcula a largura como 100% menos o espaçamento horizontal total */
  margin: 20px; /* Adiciona uma margem em todos os lados para evitar que o cartão toque as bordas */
  padding: 20px;
  background-color: #0f294c; /* Fundo escuro */
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff; /* Cor do texto em branco */
  z-index: 0;
}

/* Adiciona a imagem de fundo com opacidade usando pseudo-elemento */
.cartaogrupoclinicbrasil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://grupoclinicbrasil.com.br/Views/pages/assets/images/backgrounds/fundocartao.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.cartaobgc {
  text-align: center;
  margin-left: 50%;
  cursor: pointer;
}

.cartaobgc:hover {
  color: #000;
}


/* Header com logos */
.card-header-assinatura {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo-left img,
.logo-right img {
  width: 100%; /* Tamanho ajustável das logos */
  height: auto;
}

.qr-code-and-number {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 5px;
  flex-direction: column;
}

.qr-code {
  width: 100px;
  height: 100px;
}

.card-content-assinatura {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinha os itens à esquerda */
  text-align: left; /* Alinha o texto à esquerda */
  width: 100%;
}

.numero-assinatura {
  font-size: 18px;
  margin-bottom: 0px !important;
  color: #fff;
}

.nome-completo {
  font-family: 'Courier New', Courier, monospace; /* Fonte que lembra cartões */
  font-size: 18px; /* Ajuste o tamanho conforme necessário */
  margin-bottom: 0px !important;
  color: #fff;
}

.cartao-validade {
  font-family: 'Courier New', Courier, monospace; /* Fonte que lembra cartões */
  font-size: 17px;
  color: #fff;
  margin-bottom: 0px !important;
}

/* Estilo para dispositivos com largura de tela abaixo de 1200px */
@media (max-width: 1200px) {
  .cartaogrupoclinicbrasil {
      flex-direction: column;
      align-items: center;
  }

  .logo-right {
    text-align: right;
  }

  .logo-left img,
  .logo-right img {
    width: 70%; /* Tamanho ajustável das logos */
    height: auto;
  }

  .qr-code {
    width: 60px;
    height: 60px;
  }

  .nome-completo {
    font-size: 15px;
  }

  .numero-assinatura {
    font-size: 15px;
  }

  .cartao-validade {
    font-size: 10px;
  }
}


/*----------------------------
   Auxiliary Styles
----------------------------*/

.sticky-top {
  z-index: 500;
}

.row-no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.row-no-gutter > [class*=col] {
  padding-right: 0;
  padding-left: 0;
}

.inner-padding {
  padding: 65px;
}

.box-shadow-none {
  box-shadow: none !important;
}

.background-banner {
  min-height: 500px;
}

.bg-size-auto {
  background-size: auto !important;
}

.bg-top-right {
  background-position: top right !important;
}

.bg-no-repeat {
  background-repeat: no-repeat !important;
}

.bg-bottom-center {
  background-position: bottom center !important;
}

.width-auto {
  width: auto !important;
}

.fz-13 {
  font-size: 13px !important;
}

.fz-14 {
  font-size: 14px !important;
}

.fz-16 {
  font-size: 16px !important;
}

.fz-25 {
  font-size: 25px !important;
}

.font-secondary {
  font-family: "Roboto", sans-serif;
}

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

.list-inline > li {
  display: inline-block;
}

.text-register-center{
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

.align-v {
  display: flex !important;
  align-items: center !important;
}

.align-v-h {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.border-top {
  border-top: 1px solid #e7ebef !important;
}

.border-bottom {
  border-bottom: 1px solid #e7ebef !important;
}

/*----------------------
     Dividers 
------------------------*/
.divider {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 2px;
  background-color: #e7ebef;
}
.divider-sm {
  width: 20px;
  height: 2px;
}
.divider-xl {
  width: 130px;
}

.divider-primary {
  background-color: #6CA6DB;
}

.divider-secondary {
  background-color: #0F284C;
}

.divider-white {
  background-color: #ffffff;
}

.minwidth-120 {
  min-width: 120px !important;
}

.minwidth-170 {
  min-width: 170px !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.mt--20 {
  margin-top: -20px;
}

.mt--50 {
  margin-top: -50px;
}

.mt--80 {
  margin-top: -80px;
}

.mt--90 {
  margin-top: -90px;
}

.mt--100 {
  margin-top: -80px;
}

.mt--120 {
  margin-top: -120px;
}

.mt--130 {
  margin-top: -130px;
}

.mt--140 {
  margin-top: -140px;
}

.mt--170 {
  margin-top: -170px;
}

.mt--200 {
  margin-top: -200px;
}

.mt--210 {
  margin-top: -210px;
}

/*  margin Top */
.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

/* Margin Bottom */
.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.mt--100 {
  margin-top: -100px;
}

/* Margin Right */
.mr-0 {
  margin-right: 0 !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

/* Margin Left */
.ml-0 {
  margin-left: 0 !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.selectionpadding {
  padding-top: 50px !important;
}
/* padding Top */
.pb-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-110 {
  padding-top: 110px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-140 {
  padding-top: 140px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-170 {
  padding-top: 170px !important;
}

/*  Padding Bottom */
.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pb-140 {
  padding-bottom: 140px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-170 {
  padding-bottom: 170px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-220 {
  padding-bottom: 220px !important;
}

/* padding Right */
.pr-0 {
  padding-right: 0 !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-100 {
  padding-right: 100px !important;
}

/* padding Left */
.pl-0 {
  padding-left: 0 !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.max-width-1300 {
  max-width: 1300px !important;
}

@media (min-width: 1500px) {
  .inner-padding {
    padding: 110px;
  }
}
@media (max-width: 1200px) {
  .inner-padding {
    padding: 30px !important;
  }
}
@media (max-width: 992px) {
  .mt-30 {
    margin-top: 20px !important;
  }
  .mt-40 {
    margin-top: 20px !important;
  }
  .mt-50 {
    margin-top: 25px !important;
  }
  .mt-60 {
    margin-top: 30px !important;
  }
  .mt-70 {
    margin-top: 35px !important;
  }
  .mt-80 {
    margin-top: 40px !important;
  }
  .mt-90 {
    margin-top: 45px !important;
  }
  .mt-100 {
    margin-top: 50px !important;
  }
  .mt-120 {
    margin-top: 60px !important;
  }
  .mt-150 {
    margin-top: 75px !important;
  }
  .mb-30 {
    margin-bottom: 15px !important;
  }
  .mb-40 {
    margin-bottom: 20px !important;
  }
  .mb-50 {
    margin-bottom: 25px !important;
  }
  .mb-60 {
    margin-bottom: 30px !important;
  }
  .mb-70 {
    margin-bottom: 35px !important;
  }
  .mb-80 {
    margin-bottom: 40px !important;
  }
  .mb-90 {
    margin-bottom: 45px !important;
  }
  .mb-100 {
    margin-bottom: 50px !important;
  }
  .mb-120 {
    margin-bottom: 60px !important;
  }
  .mb-130 {
    margin-bottom: 65px !important;
  }
  /* Margin Right */
  .mr-30 {
    margin-right: 15px !important;
  }
  .mr-40 {
    margin-right: 20px !important;
  }
  .mr-50 {
    margin-right: 25px !important;
  }
  /* Margin Left */
  .ml-30 {
    margin-left: 15px !important;
  }
  .ml-40 {
    margin-left: 20px !important;
  }
  .ml-50 {
    margin-left: 25px !important;
  }
  /* padding Top */
  .pt-30 {
    padding-top: 15px !important;
  }
  .pt-40 {
    padding-top: 20px !important;
  }
  .pt-50 {
    padding-top: 25px !important;
  }
  .pt-60 {
    padding-top: 30px !important;
  }
  .pt-70 {
    padding-top: 35px !important;
  }
  .pt-80 {
    padding-top: 40px !important;
  }
  .pt-90 {
    padding-top: 45px !important;
  }
  .pt-100 {
    padding-top: 50px !important;
  }
  .pt-110 {
    padding-top: 55px !important;
  }
  .pt-120 {
    padding-top: 60px !important;
  }
  .pt-130 {
    padding-top: 70px !important;
  }
  .pt-140 {
    padding-top: 70px !important;
  }
  .pt-150 {
    padding-top: 75px !important;
  }
  .pt-160 {
    padding-top: 80px !important;
  }
  .pt-170 {
    padding-top: 85px !important;
  }
  /*  Padding Bottom */
  .pb-30 {
    padding-bottom: 15px !important;
  }
  .pb-40 {
    padding-bottom: 20px !important;
  }
  .pb-50 {
    padding-bottom: 25px !important;
  }
  .pb-60 {
    padding-bottom: 30px !important;
  }
  .pb-70 {
    padding-bottom: 35px !important;
  }
  .pb-80 {
    padding-bottom: 40px !important;
  }
  .pb-90 {
    padding-bottom: 45px !important;
  }
  .pb-100 {
    padding-bottom: 50px !important;
  }
  .pb-110 {
    padding-bottom: 55px !important;
  }
  .pb-120 {
    padding-bottom: 60px !important;
  }
  .pb-130 {
    padding-bottom: 65px !important;
  }
  .pb-140 {
    padding-bottom: 70px !important;
  }
  .pb-150 {
    padding-bottom: 75px !important;
  }
  .pb-160 {
    padding-bottom: 80px !important;
  }
  .pb-170 {
    padding-bottom: 85px !important;
  }
}
/* Medium Devices */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .inner-padding {
    padding: 20px !important;
  }
  .text-center-xs-sm {
    text-align: center !important;
  }
  .mt-0-xs-sm {
    margin-top: 0 !important;
  }
}
/*-------------------------
   Background & Colors
--------------------------*/
/* Cores */
.color-white {
  color: #ffffff !important;
}

.color-white-hover:hover {
  color: #ffffff !important;
}

.color-gray {
  color: #f9f9f9 !important;
}

.color-dark {
  color: #222222 !important;
}

.color-primary {
  color: #6CA6DB !important;
}

.color-secondary {
  color: #0F284C !important;
}

.color-heading {
  color: #010A14 !important;
}

.color-body {
  color: #848e9f !important;
}

/* backgrounds */
.bg-white {
  background-color: #ffffff !important;
}

.bg-gray {
  background-color: #f9f9f9 !important;
}

.bg-dark {
  background-color: #222222 !important;
}

.bg-heading {
  background-color: #010A14 !important;
}

.bg-primary {
  background-color: #6CA6DB !important;
}

.bg-secondary {
  background-color: #0F284C !important;
}

.bg-light-blue {
  background-color: #0F284C !important;
}

.bg-img {
  position: relative;
  z-index: 1;
}

.background-size-auto {
  background-size: auto !important;
}

.bg-parallax {
  background-attachment: fixed;
}

.bg-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(27, 26, 26, 0.25);
}

.bg-overlay-2:before {
  background-color: rgba(27, 26, 26, 0.15);
}

.bg-overlay-3:before {
  background-color: rgba(27, 26, 26, 0.05);
}

.bg-overlay-gradient:before {
  background-color: transparent;
  opacity: 0.65;
  background-image: linear-gradient(180deg, #010711 0%, rgba(27, 26, 26, 0.65) 34%);
}

.bg-overlay-secondary:before {
  background-color: rgba(15, 40, 76, 0.93);
}

.bg-overlay-primary:before {
  background-color: rgba(33, 205, 192, 0.85);
}

.bg-overlay-primary-gradient:before {
  opacity: 0.95;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(108, 166, 219, 0.95) 19%, #62ABF4 71%);
}

.bg-overlay-secondary-gradient:before {
  opacity: 0.95;
  background-color: transparent;
  background-image: linear-gradient(180deg, #061733 19%, #061733 71%);
}

.bg-overlay-blue-gradient:before {
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(56, 81, 162, 0.9019607843) 21%, #263B72 86%);
}

/*-------------------------
   Typography
--------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #010A14;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

p {
  line-height: 1.75;
  margin-bottom: 15px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 18px;
}

.heading__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #435ba1;
  margin-bottom: 12px;
}

.heading__title {
  font-size: 37px;
  margin-bottom: 20px;
}
.heading__title .underlined-text {
  border-bottom: 4px solid #6CA6DB;
}

.heading__desc {
  font-size: 16px;
  margin-bottom: 0;
}

.heading-layout2 .heading__title {
  font-size: 40px;
}

.heading-layout3 .heading__title {
  font-size: 50px;
}

.heading-light .heading__subtitle {
  color: #f9f9f9;
}
.heading-light .heading__subtitle:after {
  background-color: #ffffff;
}
.heading-light .heading__title,
.heading-light .heading__desc {
  color: #ffffff;
}

.text-block__title {
  font-size: 25px;
  margin-bottom: 17px;
}

.text-block__desc {
  font-size: 16px;
  line-height: 26px;
}

.text__link {
  font-size: 14px;
  font-weight: 700;
}
.text__link a:not(.btn) {
  padding-bottom: 2px;
  border-bottom: 2px solid #6CA6DB;
}
.text__link a:not(.btn).color-secondary {
  border-bottom-color: #0F284C;
}
.text__link:hover a:not(.btn) {
  color: #0F284C;
  border-bottom-color: #0F284C;
}
.text__link:hover a:not(.btn).color-secondary {
  color: #6CA6DB;
  border-bottom-color: #6CA6DB;
}

@media (max-width: 992px) {
  .heading__title {
    font-size: 30px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .heading__title {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .heading__subtitle,
  .text__link {
    font-size: 13px;
  }
  .heading__desc {
    font-size: 13px;
  }
  .heading-layout2 .heading__title {
    font-size: 24px;
  }
  .heading-layout3 .heading__title {
    font-size: 26px;
  }
  .text-block__desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
/*-------------------------
    Page title 
-------------------------*/
.pagetitle__subheading {
  color: #6CA6DB;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.pagetitle__heading {
  font-size: 40px;
  margin-bottom: 20px;
}

.pagetitle__desc {
  color: #6CA6DB;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 32px;
}

.page-title {
  padding-top: 110px;
  padding-bottom: 120px;
}
.page-title .breadcrumb-item a,
.page-title .breadcrumb-item.active,
.page-title .breadcrumb-item + .breadcrumb-item::before {
  color: #435ba1;
}
.page-title .btn {
  min-width: 190px;
}
.page-title .btn.btn__outlined {
  line-height: 58px;
}
.page-title.bg-overlay:before {
  opacity: 0.55;
  background-color: transparent;
  background-image: linear-gradient(90deg, #ffffff 0%, rgba(0, 0, 0, 0) 35%);
}

.page-title-layout2 .pagetitle__desc {
  font-size: 20px;
}
.page-title-layout2 .pagetitle__icon {
  position: relative;
  width: 120px;
  height: 120px;
  font-size: 80px;
  border-radius: 50%;
  display: inline-block;
  color: #0F284C;
  background-color: #ffffff;
  margin-bottom: 70px;
}
.page-title-layout2 .pagetitle__icon:after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid #ffffff;
}
.page-title-layout2 .scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 80px;
  font-size: 25px;
  border-radius: 30px;
  color: #6CA6DB;
  background-color: #ffffff;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.page-title-layout2.bg-overlay:before {
  opacity: 1;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.1490196078) 47%, #ffffff 76%);
}

.page-title-layout3 {
  padding-bottom: 250px;
}

.page-title-layout5 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-title-layout6 .testimonials__rating .overall__rate {
  border-color: #ffffff;
}
.page-title-layout6 .testimonials__rating span,
.page-title-layout6 .testimonials__rating .total__rate,
.page-title-layout6 .testimonials__rating .overall__rate {
  color: #ffffff;
}

@media (min-width: 1200px) {
  .page-title-layout4 {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .page-title-layout4 .pagetitle__desc {
    padding: 0 40px;
  }
  .page-title-layout6 {
    padding-top: 320px;
    padding-bottom: 40px;
  }
}
/* Medium Size Devices */
@media (min-width: 768px) and (max-width: 991px) {
  .page-title {
    padding-bottom: 70px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .page-title {
    padding-bottom: 50px;
  }
  .page-title .pagetitle__subheading {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .page-title .pagetitle__desc {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .page-title .pagetitle__heading {
    font-size: 28px !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .page-title .btn {
    height: 40px;
    min-width: 140px;
  }
  .page-title-layout3 {
    padding-bottom: 170px;
  }
}
/*--------------------
   Buttons
---------------------*/

.btnsmall {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  min-width: 100px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.btnsmall:focus, .btnsmall.active, .btnsmall:active {
  box-shadow: none;
  outline: none;
}

.btnsmall span,
.btnsmall i {
  margin: 0 3px;
}
.btnsmall .icon-filled {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  transition: all 0.3s linear;
}

.btn {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 700;
  min-width: 170px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s linear;
}
.btn:focus, .btn.active, .btn:active {
  box-shadow: none;
  outline: none;
}

.btn span,
.btn i {
  margin: 0 3px;
}
.btn .icon-filled {
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  transition: all 0.3s linear;
}

.btn:not(.btn__link):not(.btn__outlined):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0F284C;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.24s cubic-bezier(0.37, 0.31, 0.31, 0.9);
}
.btn:not(.btn__link):not(.btn__outlined):hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}

.btn__primary {
  color: #ffffff;
  background-color: #6CA6DB;
}
.btn__primary .icon-outlined {
  color: #0F284C;
  border: 1px solid #6CA6DB;
  color: #6CA6DB;
  background-color: #ffffff;
}
.btn__primary .icon-filled {
  color: #ffffff;
  background-color: #6CA6DB;
}
.btn__primary:active, .btn__primary:focus {
  color: #ffffff;
  border-color: #6CA6DB;
  background-color: #6CA6DB;
}
.btn__primary:hover {
  color: #ffffff;
}
.btn__primary:hover .icon-outlined {
  color: #0F284C;
  background-color: #ffffff;
}
.btn__primary:hover .icon-filled {
  color: #ffffff;
  background-color: #0F284C;
}
.btn__primary.btn__outlined {
  background-color: transparent;
  border: 2px solid #6CA6DB;
  color: #6CA6DB;
}
.btn__primary.btn__outlined .icon-arrow-right,
.btn__primary.btn__outlined .icon-arrow-left {
  color: #ffffff;
  background-color: #6CA6DB;
}
.btn__primary.btn__outlined:hover {
  color: #ffffff;
  background-color: #6CA6DB;
}
.btn__primary.btn__outlined:hover .icon-arrow-right,
.btn__primary.btn__outlined:hover .icon-arrow-left {
  color: #6CA6DB;
  background-color: #ffffff;
}
.btn__primary-style2:before {
  background-color: #ffffff !important;
}
.btn__primary-style2:hover {
  color: #0F284C;
}
.btn__primary-style2:hover .icon-arrow-right,
.btn__primary-style2:hover .icon-arrow-left {
  color: #ffffff;
  background-color: #0F284C;
}

.btn__secondary {
  color: #ffffff;
  background-color: #0F284C;
}
.btn__secondary:before {
  background-color: #6CA6DB !important;
}
.btn__secondary .icon-filled {
  color: #ffffff;
  background-color: #0F284C;
}
.btn__secondary:hover {
  color: #ffffff;
}
.btn__secondary:hover .icon-filled {
  background-color: #6CA6DB;
}
.btn__secondary:active, .btn__secondary:focus {
  color: #ffffff;
  border-color: #222222;
  background-color: #222222;
}
.btn__secondary.btn__outlined {
  color: #0F284C;
  background-color: transparent;
  border: 2px solid #0F284C;
}
.btn__secondary.btn__outlined:hover {
  color: #ffffff;
  background-color: #0F284C;
}
.btn__secondary-style2:before {
  background-color: #ffffff !important;
}
.btn__secondary-style2:hover {
  color: #0F284C;
}

.btn__white {
  background-color: #ffffff;
  color: #0F284C;
}
.btn__white:active, .btn__white:focus {
  color: #0F284C;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn__white:hover {
  color: #ffffff;
}
.btn__white.btn__outlined {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
}
.btn__white.btn__outlined:hover {
  color: #6CA6DB;
  background-color: #ffffff;
}
.btn__white-style2 {
  color: #6CA6DB;
}
.btn__white-style2:before {
  background-color: #6CA6DB !important;
}

.btn__outlined {
  background-color: transparent;
}

.btn__link {
  background-color: transparent;
  border-color: transparent;
  min-width: 0;
  line-height: 1;
  height: auto;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
}
.btn__link:focus, .btn__link:active {
  background-color: transparent;
}
.btn__link.btn__icon {
  height: auto;
  line-height: 1;
  padding: 0;
}
.btn__link.btn__primary {
  color: #6CA6DB;
}
.btn__link.btn__primary-style2:hover {
  color: #ffffff !important;
}
.btn__link.btn__primary.btn__underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid #6CA6DB;
}
.btn__link.btn__primary:hover {
  color: #222222;
}
.btn__link.btn__primary:hover.btn__underlined {
  border-color: #0F284C;
}
.btn__link.btn__secondary {
  color: #0F284C;
}
.btn__link.btn__secondary:hover {
  color: #6CA6DB;
}
.btn__link.btn__white {
  color: #ffffff;
}
.btn__link.btn__white.btn__underlined {
  padding-bottom: 3px;
  border-bottom: 2px solid #ffffff;
}
.btn__link.btn__white:hover {
  color: #0F284C;
}
.btn__link.btn__white:hover.btn__underlined {
  border-color: #0F284C;
}

.btn__block {
  width: 100%;
}

.btn__icon {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.btn__icon i,
.btn__icon span {
  margin: 0 5px;
}

.btn__social {
  height: 54px;
  line-height: 54px;
  width: 54px;
  min-width: 0 !important;
  font-weight: 400;
  color: #ffffff;
  border-radius: 3px;
}

.btn__facebook {
  background-color: #4267b2;
}

.btn__twitter {
  background-color: #1da0f0;
}

.btn__google-plus {
  background-color: #ea4335;
}

.btn__lg {
  min-width: 200px;
}

.btn__xl {
  height: 70px;
  line-height: 70px;
  min-width: 220px;
}

.btn__xhight {
  height: 70px;
  line-height: 68px;
}

.btn__rounded {
  border-radius: 50px;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .btn:not(.btn__link) {
    font-size: 13px;
    min-width: 120px;
    height: 50px;
  }
  .btn__icon {
    padding: 0 10px;
  }
  .btn__xl {
    height: 50px;
    min-width: 150px;
  }
}
/*---------------------------
        Forms
----------------------------*/
label {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
label.error {
  color: red;
  font-size: 14px;
  font-weight: 400;
  margin: 7px 0 0 0;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-control {
  font-size: 14px;
  height: 60px;
  padding: 0 20px;
  border-radius: 55px;
  background-color: #ffffff;
  border: 2px solid #e6e8eb;
}
.form-control:focus {
  border-color: #6CA6DB;
  background-color: #ffffff;
}
.form-control::-webkit-input-placeholder {
  color: #26365e;
}
.form-control:-moz-placeholder {
  color: #26365e;
}
.form-control::-moz-placeholder {
  color: #26365e;
}
.form-control:-ms-input-placeholder {
  color: #26365e;
}

textarea.form-control {
  border-radius: 20px;
  min-height: 105px;
  padding-top: 10px;
}

input[type="file"].form-control {
  font-size: 14px;
  height: 60px;
  padding: 15px;
  border-radius: 55px;
  background-color: #ffffff;
  border: 2px solid #e6e8eb;
}

.form__title {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 20px;
}

/* Input Radio */
.label-radio {
  display: block;
  position: relative;
  padding-left: 26px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: #848e9f;
}

.label-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.radio-indicator {
  position: absolute;
  top: -1px;
  left: 0;
  height: 17px;
  width: 17px;
  background: transparent;
  border: 2px solid #eaeaea;
  border-radius: 50%;
}

.label-radio input:checked ~ .radio-indicator {
  background: transparent;
}

.label-radio:hover input:not([disabled]):checked ~ .radio-indicator,
.label-radio input:checked:focus ~ .radio-indicator {
  background: transparent;
}

.radio-indicator:after {
  content: "";
  position: absolute;
  display: none;
  left: 3px;
  top: 3px;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #6CA6DB;
}

.label-radio input:checked ~ .radio-indicator:after {
  display: block;
}

.custom-control-label {
  font-weight: 400;
}
.custom-control-label:before {
  position: absolute;
  top: -2px;
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #e7ebef;
  border-radius: 0;
}
.custom-control-label:after {
  position: absolute;
  top: 2px;
  left: -20px;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
  border-radius: 1px;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: none;
  background-color: #6CA6DB;
  width: 8px;
  height: 8px;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: transparent;
  border-color: transparent;
}

.custom-control-input:checked ~ .custom-control-label::before {
  border: 1px solid #e7ebef !important;
  background-color: transparent;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

input[type=checkbox],
input[type=radio] {
  box-shadow: none !important;
}

.nice-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 60px;
  margin-bottom: 30px;
}
.nice-select .list {
  width: 100%;
}
.nice-select .current,
.nice-select .option {
  color: #848e9f;
}
.nice-select:before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  right: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  z-index: 1;
  border-radius: 50%;
  background-color: #0F284C;
}
.nice-select:after {
  right: 20px;
  z-index: 2;
  border-color: #ffffff;
}

.form-group-icon {
  position: absolute;
  top: 23px;
  left: 23px;
  z-index: 2;
  color: #d7d8da;
  pointer-events: none;
}
.form-group-icon + .form-control,
.form-group-icon + select + .form-control {
  padding-left: 45px;
}
.form-group-icon + .form-control[type=date],
.form-group-icon + .form-control[type=time] {
  padding: 0 15px;
}

.form-group-date .form-group-icon {
  top: 22px;
  left: auto;
  right: 14px;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: #ffffff;
}

::-webkit-inner-spin-button,
::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 767px) {
  .form-group,
  .nice-select {
    margin-bottom: 20px;
  }
  .form-control,
  .nice-select {
    height: 50px;
    border-radius: 50px;
  }
  .nice-select {
    line-height: 50px;
  }
  .form-group-icon {
    top: 19px;
  }
}
/*--------------------
    Tabs
--------------------*/
.nav-tabs {
  border-bottom: none;
}
.nav-tabs .nav__link {
  display: block;
  position: relative;
  padding-bottom: 10px;
  margin: 0 30px 0 0;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  color: #0F284C;
}
.nav-tabs .nav__link:last-of-type {
  margin-right: 0;
}
.nav-tabs .nav__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #6CA6DB;
  transform: scale3d(0, 1, 1);
  transform-origin: 100% 50%;
  transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1);
}
.nav-tabs .nav__link.active, .nav-tabs .nav__link:hover {
  color: #6CA6DB;
}
.nav-tabs .nav__link.active:after, .nav-tabs .nav__link:hover:after {
  transform: scale3d(1, 1, 1);
  transform-origin: 0 50%;
}

.nav-tabs-white .nav__link {
  color: #ffffff;
}
.nav-tabs-white .nav__link.active, .nav-tabs-white .nav__link:hover {
  color: #ffffff;
}
.nav-tabs-white .nav__link:after {
  background-color: #fff;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .nav-tabs .nav__link {
    font-size: 13px;
    margin: 0 15px 0 0;
  }
  .nav-tabs .nav__link:after {
    bottom: 4px;
  }
}
/*------------------- 
    Icons
------------------*/
.social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.social-icons li {
  margin-right: 10px;
}
.social-icons li a {
  position: relative;
  z-index: 2;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 32px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
  color: #6CA6DB;
  background-color: #0F284C;
  transition: all 0.4s linear;
}
.social-icons li a:hover {
  background-color: #104176;
}
.social-icons li:last-of-type {
  margin-right: 0;
}
.social-icons-light li a {
  color: #ffffff;
}
.social-icons-light li a:hover {
  color: #6CA6DB;
}
.social-icons-primary li a {
  color: #6CA6DB;
}
.social-icons-primary li a:hover {
  color: #0F284C;
}

.icon-arrow-right {
  font-size: 65%;
}

/*-------------------------
    Breadcrumb
--------------------------*/
.breadcrumb {
  padding: 0;
  background-color: transparent;
}

.breadcrumb-item {
  position: relative;
  font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .breadcrumb-item a,
  .breadcrumb-item + .breadcrumb-item {
    font-size: 12px;
  }
}
/*----------------------
    Pagination
-----------------------*/
.pagination li {
  margin-right: 10px;
}
.pagination li:last-child {
  margin-right: 0;
}

/* Estilo padrão para todos os links na paginação */
.pagination li a {
  font-size: 20px;
  font-weight: 700;
  display: flex; /* Usar flexbox para centralizar o ícone */
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
  width: 50px;
  height: 50px;
  text-align: center;
  color: #0F284C;
  border: 2px solid #e6e8eb;
  background-color: #ffffff;
  transition: all 0.3s linear;
  /* Remover border-radius: 50% daqui */
  /* line-height: 46px; não é mais necessário com flexbox */
}

/* Estilo para os links de número (permanecem redondos) */
.pagination li:not(:first-child):not(:last-child) a {
    border-radius: 50%; /* Somente os links de número */
}

/* Estilo para o botão "Voltar" (primeiro item) */
.pagination li:first-child a {
    border-top-left-radius: 25px; /* Ajuste para bordas arredondadas */
    border-bottom-left-radius: 25px; /* Ajuste para bordas arredondadas */
    width: auto; /* Permite que o botão se ajuste ao conteúdo (ícone + texto SR-Only) */
    padding: 0 15px; /* Adiciona padding para o ícone */
}

/* Estilo para o botão "Avançar" (último item) */
.pagination li:last-child a {
    border-top-right-radius: 25px; /* Ajuste para bordas arredondadas */
    border-bottom-right-radius: 25px; /* Ajuste para bordas arredondadas */
    width: auto; /* Permite que o botão se ajuste ao conteúdo (ícone + texto SR-Only) */
    padding: 0 15px; /* Adiciona padding para o ícone */
}


.pagination li a:hover,
.pagination li a.current {
  color: #ffffff;
  border-color: #6CA6DB;
  background-color: #6CA6DB;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .pagination li a {
    font-size: 16px;
    height: 35px;
    /* line-height: 31px; não é mais necessário com flexbox */
  }
  .pagination li:not(:first-child):not(:last-child) a {
    width: 35px; /* Manter largura fixa para números em mobile */
  }
  .pagination li:first-child a,
  .pagination li:last-child a {
      padding: 0 10px; /* Ajusta padding para mobile */
  }
}
/*-------------------
    lists
-------------------*/
.contact-list li {
  font-size: 14px;
  margin-bottom: 5px;
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list li a {
  color: #848e9f;
}

.list-items li {
  position: relative;
  padding-left: 27px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 9px;
}
.list-items li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 9px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  color: #6CA6DB;
}
.list-items li:last-of-type {
  margin-bottom: 0;
}

.list-items-layout2 li {
  margin-bottom: 14px;
  padding-left: 33px;
  color: #848e9f;
}
.list-items-layout2 li:before {
  color: #ffffff;
  border-color: #6CA6DB;
  background-color: #6CA6DB;
}

.list-items-layout4 li {
  margin-bottom: 14px;
  padding-left: 33px;
  color: #848e9f;
}
.list-items-layout4 li:before {
  color: #ffffff;
  border-color: #435ba1;
  background-color: #435ba1;
}

.list-items-layout3 li:before {
  color: #0F284C;
}

.list-items-light li {
  color: #ffffff;
}
.list-items-light li:before {
  color: #ffffff;
}
.list-items-light.list-items-layout2 li:before {
  color: #ffffff;
  border-color: #6CA6DB;
  background-color: #6CA6DB;
}

.list-horizontal {
  display: flex;
  flex-wrap: wrap;
}
.list-horizontal li {
  flex: 0 0 50%;
  max-width: 50%;
}

.details-list > li {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  border-radius: 13px;
}
.details-list > li:nth-of-type(odd) {
  background-color: #def8f6;
}
.details-list > li .details__title {
  font-size: 14px;
  flex: 0 0 40%;
  max-width: 40%;
  margin-bottom: 0;
}
.details-list > li .details__content {
  flex: 0 0 60%;
  max-width: 60%;
}
.details-list .list-items-layout2 li {
  font-weight: 400;
}

.borderd-box {
  padding: 27px;
  border-radius: 4px;
  border: 1px solid #e7ebef;
}

@media (max-width: 992px) {
  .list-horizontal li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .details-list > li {
    padding: 10px;
    flex-direction: column;
  }
  .details-list > li .details__title,
  .details-list > li .details__content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 767px) {
  .list-items li {
    font-size: 14px;
  }
  .list-horizontal li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #888; 
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

@media (max-width: 768px) {
  .table thead {
    display: none;
  }

  .table tr {
    display: block;
    margin-bottom: 1rem;
  }

  .table td {
    display: block;
    text-align: right;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    padding-left: 50%;
  }

  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 0.75rem;
    font-weight: bold;
    text-align: left;
  }
}

/*------------------------
    Animations
-----------------------*/
@keyframes pulsing {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  40% {
    opacity: 0.3;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
@keyframes slideTopDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}
@keyframes headerAnimation {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomOut {
  50% {
    transform: scale(1.1);
  }
}
/*------------------------
    Alerts
--------------------------*/
.alert-primary {
  padding: 30px;
  color: #6CA6DB;
  background-color: #def8f6;
  border-color: transparent;
  border-radius: 15px;
}
.alert-primary .alert__title {
  font-size: 19px;
}

.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 0 solid transparent;
  border-radius: .375rem
}

.alert-heading {
  color: inherit
}

.alert-link {
  font-weight: 600
}

.alert-success {
  color: #2e6930;
  background-color: #dbefdc;
  border-color: #c9e7cb
}

.alert-success .alert-link {
  color: #255426
}

.alert-info {
  color: #10458b;
  background-color: #d1e3fa;
  border-color: #bad5f8
}

.alert-info .alert-link {
  color: #0d376f
}

.alert-warning {
  color: #975400;
  background-color: #fee8cc;
  border-color: #feddb3
}

.alert-warning .alert-link {
  color: #794300
}

.alert-danger {
  color: #922820;
  background-color: #fdd9d7;
  border-color: #fcc7c2
}

.alert-danger .alert-link {
  color: #75201a
}

.alert-success {
  background-image: linear-gradient(195deg,#66bb6a,#43a047)
}

.alert-info {
  background-image: linear-gradient(195deg,#49a3f1,#1a73e8)
}

.alert-warning {
  background-image: linear-gradient(195deg,#ffa726,#fb8c00)
}

.alert-danger {
  background-image: linear-gradient(195deg,#ef5350,#e53935)
}
/*----------------------
    Carousel
-----------------------*/
.slick-list {
  margin: 0 -10px;
}

.slick-slide {
  margin: 0 10px;
}

.m-slides-0 .slick-list {
  margin: 0;
}
.m-slides-0 .slick-slide {
  margin: 0;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  color: #0F284C;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 0;
  z-index: 3;
  transition: all 0.3s linear;
  transform: translateY(-50%);
}
.slick-arrow:hover {
  color: #6CA6DB;
}
.slick-arrow.slick-next:before, .slick-arrow.slick-prev:before {
  font-family: "icomoon";
  font-size: 40px;
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next:before {
  content: "\e906";
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev:before {
  content: "\e904";
}

.carousel-arrows-light .slick-arrow {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}
.carousel-arrows-light .slick-arrow:hover {
  color: #ffffff;
}

.slick-dots {
  list-style: none;
  position: relative;
  z-index: 2;
  padding: 0;
  text-align: center;
  margin-bottom: 0;
}
.slick-dots li {
  display: inline-flex;
  position: relative;
  width: 10px;
  height: 10px;
  margin: 0 7px;
  transition: all 0.3s linear;
}
.slick-dots li button {
  display: block;
  font-size: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background-color: #0F284C;
  transition: all 0.2s linear;
}
.slick-dots li.slick-active button {
  background-color: #6CA6DB;
  box-shadow: 0 0 0 5px rgba(33, 205, 192, 0.15);
}

.carousel-dots-light .slick-dots li button {
  background-color: #ffffff;
}
.carousel-dots-light .slick-dots li.slick-active button {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

/*----------------------
    Pre Loader
-----------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 5000;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .loading {
  position: relative;
  width: 80px;
  height: 80px;
}
.preloader .loading span {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 5px solid #6CA6DB;
  border-radius: 50%;
  animation: rotating 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #6CA6DB transparent transparent transparent;
}
.preloader .loading span:nth-child(1) {
  animation-delay: -0.45s;
}
.preloader .loading span:nth-child(2) {
  animation-delay: -0.3s;
}
.preloader .loading span:nth-child(3) {
  animation-delay: -0.15s;
}

/* ROTAÇÃO LOADING */
@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


#loadingform {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
}

.loadingform-content {
  text-align: center;
}

.spinnerform {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.3);
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spinform 1s linear infinite;
}

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

/*----------------------------
      Navbar & Header 
-----------------------------*/
.header { 
  position: relative;
  z-index: 1000;
}
/* Navbar */
.navbar { 
  padding: 0;
  height: 100px;
  max-height: 100px;
  background-color: #ffffff;
}
.navbar > .container,
.navbar > .container-fluid {
  position: relative;
  height: 100px;
}
.navbar .navbar-brand {
  padding: 0;
  margin: 0;
  line-height: 100px;
}
.navbar .logo-light {
  display: none;
}
.navbar .navbar-toggler {
  padding: 0;
  border: none;
  border-radius: 0;
  width: 23px;
  position: relative;
}
.navbar .navbar-toggler .menu-lines {
  display: inline-block;
}
.navbar .navbar-toggler .menu-lines:before, .navbar .navbar-toggler .menu-lines:after {
  content: "";
  position: absolute;
  left: 0;
  width: 23px;
  height: 1px;
  display: inline-block;
  background-color: #0F284C;
  transition: 0.3s ease;
}
.navbar .navbar-toggler .menu-lines:before {
  top: 0;
}
.navbar .navbar-toggler .menu-lines:after {
  top: 12px;
}
.navbar .navbar-toggler .menu-lines span {
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  height: 1px;
  background-color: #0F284C;
}
.navbar .navbar-toggler.actived .menu-lines > span {
  opacity: 0;
}
.navbar .navbar-toggler.actived .menu-lines:before {
  top: 0;
  transform: rotate(-45deg);
}
.navbar .navbar-toggler.actived .menu-lines:after {
  top: 0;
  transform: rotate(45deg);
}

.navbar .nav__item {
  position: relative;
  margin-right: 29px;
}
.navbar .nav__item:last-child {
  margin-right: 0;
}
.navbar .nav__item .nav__item-link {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  position: relative;
  color: #0F284C;
  line-height: 100px;
  letter-spacing: 0.4px;
  padding-right: 15px;
}
.navbar .nav__item .nav__item-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #62ABF4;
  transition: 0.5s ease;
}
.navbar .nav__item .nav__item-link.active, .navbar .nav__item .nav__item-link:hover {
  color: #62ABF4;
}
.navbar .nav__item .nav__item-link.active:before, .navbar .nav__item .nav__item-link.active:before, .navbar .nav__item .nav__item-link:hover:before, .navbar .nav__item .nav__item-link:hover:before {
  width: 100%;
}

/* header topbar */
.header-topbar {
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #6CA6DB;
}
.header-topbar .contact__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  margin-right: 20px;
  height: 50px;
  margin-top: 5px;
}
.header-topbar .contact__list li a:not(.btn) {
  color: #0F284C;
}
.header-topbar .contact__list li a:not(.btn):hover {
  color: #ffffff;
}
.header-topbar .contact__list li > i {
  font-size: 16px;
  color: #0F284C;
  margin-right: 8px;
}
.header-topbar .contact__list li:last-child {
  margin-right: 0;
}
.header-topbar .social-icons li a {
  color: #6CA6DB;
  background-color: #0F284C;
}
.header-topbar .social-icons li a:hover {
  background-color: #104176;
}
.header-layout-gcb {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}
/* BARRA DE ROLAGEM QUE ACOMPANHA */
.is-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1040;
  border-bottom: 0 !important;
  height: 80px !important;
  max-height: 80px !important;
  background-color: #ffffff !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);
  animation: translateHeader 0.8s;
}
.is-sticky > .container,
.is-sticky > .container-fluid {
  position: relative;
  height: 80px;
}
.is-sticky .navbar-brand {
  line-height: 80px;
}
.is-sticky .header__top-right {
  display: none !important;
}
.is-sticky .nav__item .nav__item-link {
  color: #0F284C;
  line-height: 80px !important;
}
.is-sticky .nav__item .nav__item-link:before {
  background-color: #6CA6DB !important;
}
.is-sticky .logo-light {
  display: none;
}
.is-sticky .logo-dark {
  display: inline-block;
}
.is-sticky .navbar-nav {
  margin-top: 0 !important;
}

@media (min-width: 1200px) {
  .header-topbar {
    display: block;
  }
  .navbar > .container-fluid,
  .header-topbar > .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 1199px) {
  .header-topbar {
    display: none;
  }
}
/* Large Size Screens */
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar .nav__item {
    margin-right: 20px;
  }
}
/* Mobile and Tablets */
@media (max-width: 991px) {
  .navbar .navbar-toggler {
    position: absolute;
    right: 15px;
    height: 13px;
  }
  .navbar .collapse:not(.show) {
    display: block;
  }
  .navbar .navbar-nav {
    margin: 0 !important;
  }
  .navbar .nav__item {
    margin-right: 0;
  }
  .navbar .nav__item .nav__item-link {
    color: #222222;
    line-height: 35px !important;
    padding-left: 15px;
  }
  .navbar .nav__item .nav__item-link:hover {
    color: #62ABF4;
  }
  .navbar .nav__item .nav__item-link:before {
    display: none;
  }
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    padding: 0;
    transition: 0.4s ease;
  }
  .navbar .navbar-collapse .navbar-nav {
    opacity: 0;
    width: 240px;
    height: 100%;
    overflow-y: auto;
    padding: 50px 0 20px;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: 0.3s ease;
    transition-delay: 0.4s;
  }
  .navbar .navbar-collapse.menu-opened {
    opacity: 1;
    visibility: visible;
  }
  .navbar .navbar-collapse.menu-opened .navbar-nav {
    opacity: 1;
    transform: translateX(0);
  }
  .navbar .navbar-collapse.menu-opened .close-mobile-menu {
    opacity: 1;
    transform: scale(1);
  }
  .navbar .close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    transition-delay: 0.5s;
  }
  .navbar .nav__item [data-toggle=dropdown]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    width: 50%;
    text-align: right;
    z-index: 2;
    padding-right: 15px;
    line-height: 35px;
    display: block !important;
  }

  .navbar .nav__item.opened > [data-toggle=dropdown]:after,
  .navbar .nav__item.show > [data-toggle=dropdown]:after {
    content: "\f107";
  }
  .header .navbar {
    background-color: #ffffff;
  }
  .header .logo-dark {
    display: inline-block;
  }
  .header .logo-light {
    display: none;
  }
  .header .module__btn {
    color: #0F284C;
    margin: 0 60px 0 0;
  }
  .header .navbar .navbar-toggler .menu-lines:before,
  .header .navbar .navbar-toggler .menu-lines:after,
  .header .navbar .navbar-toggler .menu-lines span{
    background-color: #0F284C;
  }
  .header .navbar-expand-lg > .container,
  .header .navbar-expand-lg > .container-fluid{
    width: 100%;
    max-width: none;
  }
  .header .navbar,
  .header .navbar > .container,
  .header .navbar > .container-fluid {
    height: 80px;
  }
  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand,
  .header .navbar-brand {
    margin-left: 15px;
    line-height: 80px !important;
  }
  .header .header-full .navbar,
  .header .header-full .navbar .navbar-brand {
    line-height: 80px;
  }
  .header-topbar > .container {
    max-width: none;
  }
}
/* Medium and large Screens */
@media (min-width: 992px) {
  .navbar .nav__item.dropdown-submenu > .mega-menu,
  .navbar .nav__item.has-dropdown > .mega-menu {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(10px);
  }
  .navbar .nav__item.dropdown-submenu:hover > .mega-menu,
  .navbar .nav__item.has-dropdown:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .nav__item.has-dropdown.mega-dropdown {
    position: static;
  }
  .nav__item i[data-toggle=dropdown] {
    display: none;
  }
}

@media (max-width: 420px) {
  .header .navbar-brand img {
    max-width: 120px;
  }
  .header .action__btn-login span {
    display: none;
  }
}
/* Header Animation */
@keyframes translateHeader {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------------------
    Accordions
------------------------*/
.accordion-item {
  padding: 22px 0;
  margin-top: -1px;
  border-top: 2px solid #e7ebef;
  border-bottom: 2px solid #e7ebef;
  background-color: #ffffff;
}
.accordion-item .accordion__title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: block;
  position: relative;
  padding-left: 40px;
  color: #0F284C;
}
.accordion-item .accordion__title:hover {
  color: #6CA6DB;
}
.accordion-item .accordion__title:after {
  position: absolute;
  left: 0;
  top: 4px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
  text-align: center;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #0F284C;
}
.accordion-item.opened {
  border-color: #6CA6DB;
}
.accordion-item.opened .accordion__header:not(.collapsed) .accordion__title {
  color: #6CA6DB;
}
.accordion-item.opened .accordion__header:not(.collapsed) .accordion__title:after {
  content: "\f107";
  background-color: #6CA6DB;
}
.accordion-item .accordion__body {
  padding-top: 20px;
}
.accordion-item .accordion__body p {
  margin-bottom: 0;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .accordion-item {
    padding: 10px 15px;
  }
  .accordion-item .accordion__title {
    font-size: 14px;
  }
  .accordion-item .accordion__body p {
    font-size: 13px;
  }
}
/*-----------------------
    Banners
------------------------*/
.banner-layout-gcb .top-banner {
  padding-bottom: 35px;
}
.banner-layout-gcb .banner-text {
  padding: 110px 40px 110px 0;
}
.banner-layout-gcb .list-items-light.list-items-layout2 li:before {
  color: #0F284C;
  border-color: #ffffff;
  background-color: #ffffff;
}

/* Extra Large Size Screens */
@media (min-width: 1200px) {
  .banner-layout-gcb .banner-img {
    position: absolute;
    top: 0;
    right: -15px;
    height: 100%;
  }
  .banner-layout-gcb .fancybox-layout3 {
    position: absolute;
    top: 20%;
    right: -250px;
    z-index: 3;
  }
  .banner-layout-gcb .banner-img {
    height: calc(100% + 100px);
    border-bottom-left-radius: 15px;
  }
}
/* Mobile Phones & tablets and Small Screens */
@media (max-width: 1199px) {
  .banner-layout-gcb .banner-text {
    padding: 50px 0;
  }
  .banner-layout-gcb .banner-img {
    min-height: 300px;
  }
}
/*-------------------------
    Footer
--------------------------*/
.footer .footer-primary {
  padding-top: 85px;
  padding-bottom: 60px;
  background-color: #04162D;
}
.footer .footer-secondary {
  position: relative;
  padding: 46px 0;
  background-color: #ffffff;
}
.footer .footer-secondary:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 50px;
  height: 5px;
  background-color: #6CA6DB;
}
.footer [class*=footer-widget] {
  margin-bottom: 30px;
}
.footer .footer-widget__title {
  color: #ffffff;
  font-size: 16px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.footer .contact-list li {
  line-height: 26px;
  margin-bottom: 0;
}
.footer .footer-widget-contact {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: 15px;
  background-color: #ffffff;
}
.footer .footer-widget-contact:before {
  content: "\e916";
  font-family: icomoon;
  position: absolute;
  right: -30px;
  bottom: -15px;
  font-size: 170px;
  line-height: 1;
  color: rgba(40, 59, 106, 0.05);
  transform: rotate(-20deg);
  z-index: 0;
}
.footer .footer-widget-contact:after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  background-color: #6CA6DB;
}
.footer .footer-widget-nav li a {
  display: block;
  position: relative;
  color: #848e9f;
  font-size: 14px;
  margin-bottom: 11px;
}
.footer .footer-widget-nav li a:hover {
  color: #6CA6DB;
}
.footer .footer__copyright-links li a {
  color: #848e9f;
  display: block;
  margin-right: 25px;
  padding: 3px 0;
}
.footer .footer__copyright-links li a:hover {
  color: #6CA6DB;
}
.footer .footer__copyright-links li:last-child a {
  margin-right: 0;
}
.footer .phone__number {
  margin: 20px 0;
}

.phone__number {
  display: inline-flex;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  color: #0F284C !important;
}
.phone__number:hover {
  color: #6CA6DB !important;
}
.phone__number i {
  margin-right: 7px;
}

/* Scroll Top Button */
#scrollTopBtn {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  opacity: 0;
  z-index: 1000;
  font-size: 18px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #6CA6DB;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
#scrollTopBtn:hover {
  background-color: #222222;
}
#scrollTopBtn.actived {
  right: 30px;
  opacity: 1;
}

@media (min-width: 1200px) {
  .footer .footer-widget-nav,
  .footer .footer-widget-about {
    margin-top: 40px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 1200px) {
  .footer .footer-primary {
    padding-top: 35px;
    padding-bottom: 30px;
  }
  .footer .footer-secondary {
    padding: 20px 0;
  }
  .footer .footer-secondary:after {
    left: 20px;
    right: 20px;
    height: 3px;
  }
  .footer .footer-widget-contact {
    padding: 20px;
  }
  .footer .footer-widget-contact:after {
    top: 20px;
    bottom: 20px;
  }
  .footer .footer-widget {
    margin-bottom: 20px;
  }
  .footer .footer-widget__title {
    margin-bottom: 15px;
  }
  .footer .footer-widget-nav li a {
    font-size: 13px;
  }
  .footer .phone__number {
    margin: 10px 0;
  }
}
/* Mobile Phones */
@media (min-width: 320px) and (max-width: 767px) {
  .footer .footer__copyright-links {
    justify-content: flex-start !important;
  }
  #scrollTopBtn {
    bottom: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  #scrollTopBtn.actived {
    right: 20px;
  }
}

/*------------------------
    Slider 
--------------------------*/
.slider {
  padding: 0;
}
.slider .slide-item {
  height: calc(100vh - 165px);
  min-height: 550px;
}
.slider .slide__subtitle {
  color: #0F284C;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.slider .slide__title {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: math-auto;
}
.slider .slide__desc {
  color: #6CA6DB;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  max-width: 550px;
  margin-bottom: 30px;
}
.slider .slick-dots {
  position: absolute;
  bottom: 30px;
  text-align: center;
  width: 100%;
}
.slider .slick-arrow {
  transform: translateY(30px);
}
.slider .contact-panel-wrapper {
  position: relative;
}
.slider .contact-panel {
  position: absolute;
  right: 15px;
  bottom: -100px;
  z-index: 5;
  padding: 50px;
  max-width: 370px;
}
.slider .contact-panel .contact-panel__title {
  margin-bottom: 15px;
}
.slider .contact-panel .form-group {
  margin-bottom: 20px;
}

.slider-centerd {
  text-align: center;
}
.slider-centerd .slide__desc {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .slider .slick-arrow {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .slider .slick-arrow:before {
    font-size: 50px;
  }
  .slider .slick-arrow.slick-next {
    right: 20px;
  }
  .slider .slick-arrow.slick-prev {
    left: 20px;
  }
  .slider .btn {
    min-width: 190px;
  }
  .slider .btn.btn__outlined {
    line-height: 58px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .slider .slide-item {
    padding-right: 50px;
    padding-left: 50px;
  }
  .slider .slick-arrow.slick-prev {
    left: 10px;
  }
  .slider .slick-arrow.slick-next {
    right: 10px;
  }
}
/* Large Size Screens */
@media (min-width: 992px) and (max-width: 1200px) {
  .slider .slide__title {
    font-size: 35px;
    line-height: 1.3;
    padding: 0 250px 0 0;
  }
}
/* Medium Size Screens */
@media (min-width: 768px) and (max-width: 991px) {
  .slider .slide__title {
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 250px 0 0;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .slider .slide-item {
    min-height: 0;
    padding: 100px 10px;
    height: auto !important;
  }
  .slider .slide__desc {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
  }
}
/*  Small Screens and tablets  */
@media (min-width: 576px) and (max-width: 767px) {
  .slider .slide__title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
    padding: 0 120px 0 0;
  }
  .slider .slick-arrow.slick-prev {
    left: 0;
  }
  .slider .slick-arrow.slick-next {
    right: 0;
  }
}
/* Extra Small Devices */
@media (min-width: 320px) and (max-width: 575px) {
  .slider .slide__title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
    padding: 0 120px 0 0;
  }
  .slider .btn {
    margin-bottom: 10px;
  }
  .slider .slick-arrow {
    display: none;
  }
  .slider .slide-item {
    padding: 30px 10px;
  }
}
/*--------------------------
      Video
--------------------------*/
.video__btn {
  text-align: center;
  display: inline-flex;
  position: relative;
  padding-left: 70px;
  height: 60px;
  align-items: center;
}
.video__btn .video__player {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #6CA6DB;
  box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.15);
  transition: all 0.3s linear;
}
.video__btn:hover .video__player {
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.15);
}
.video__btn .video__btn-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  margin-left: 12px;
}
.video__btn-lg {
  padding-left: 80px;
  height: 80px;
}
.video__btn-lg .video__player {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.video__btn-white .video__player {
  background-color: #ffffff !important;
  color: #010A14;
}
.video__btn-white .video__player-animation {
  border-color: #ffffff !important;
}

.video-banner {
  position: relative;
  z-index: 2;
}
.video-banner img {
  border-radius: 15px;
}
.video-banner .video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-banner .video__btn-title {
  position: absolute;
  bottom: -30px;
  left: -7px;
  line-height: 1.5;
}

.video-banner-layout-gcb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.video-banner-layout-gcb.bg-overlay:before {
  z-index: 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 66%, #061733 97%);
}
.video-banner-layout-gcb .video__btn {
  position: absolute;
  left: 40px;
  bottom: 40px;
  padding-left: 60px;
  height: 36px;
}
.video-banner-layout-gcb .video__player {
  width: 54px;
  height: 36px;
  line-height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
}
.video-banner-layout-gcb:hover .video__player {
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.1);
}

.video-banner-layout3 {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.video-banner-layout3.bg-overlay:before {
  z-index: 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 66%, #061733 97%);
}
.video-banner-layout3 .video__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*-----------------------
    Features
------------------------*/
.feature-item {
  position: relative;
  border-radius: 13px;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.08);
  transition: all 0.3s linear;
}
.feature-item .feature__img {
  position: absolute;
  bottom: 40%;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.feature-item .feature__img img {
  border-radius: 13px;
}
.feature-item .feature__content {
  overflow: hidden;
  position: relative;
  padding: 37px 40px 35px;
}
.feature-item .feature__icon {
  font-size: 50px;
  line-height: 1;
  color: #6CA6DB;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature-item .feature__icon i:nth-of-type(2) {
  position: absolute;
  right: -30px;
  font-size: 80px;
  opacity: 0;
  transition: all 0.5s linear;
}
.feature-item .feature__title {
  font-size: 18px;
  margin-bottom: 0;
}
.feature-item .feature__desc {
  font-size: 14px;
  line-height: 1.7;
}
.feature-item .btn__link {
  position: absolute;
  bottom: -15px;
  left: 40px;
  display: flex;
  align-items: center;
  height: 30px;
  line-height: 30px;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.5s linear;
}
.feature-item .btn__link .icon-outlined {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background-color: #0F284C;
  margin-right: 5px;
  transition: all 0.3s linear;
}
.feature-item .btn__link .icon-outlined:hover {
  background-color: #6CA6DB;
}
.feature-item .btn__link .icon-outlined.icon-arrow-right {
  font-size: 75%;
}
.feature-item:hover {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.feature-item:hover .feature__icon {
  color: #6CA6DB;
}
.feature-item:hover .feature__icon i:nth-of-type(2) {
  opacity: 0.2;
}
.feature-item:hover .feature__img {
  bottom: 50%;
  opacity: 1;
}
.feature-item:hover .btn__link {
  opacity: 1;
  transform: scale(1);
}
.features-list .feature-item {
  box-shadow: none;
  margin-bottom: 0;
  margin-right: 30px;
  text-align: center;
  background-color: transparent;
}
.features-list .feature-item:last-of-type {
  margin-right: 0;
}
.features-list .feature-item .feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  font-size: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
  color: #0F284C;
  background-color: #ffffff;
  transition: all 0.3s linear;
}
.features-list .feature-item .feature__title {
  font-size: 15px;
}
.features-list .feature-item:hover .feature__icon {
  box-shadow: 0 0 0 9px rgba(0, 0, 0, 0.1);
  transform: translateY(-7px);
}

@media (max-width: 1199px) {
  .feature-item {
    margin: 10px 0;
  }
}

.text-pagamento {
  color: #7b2900!important;
  font-weight: 600!important;
}
/* Mobile Phones and tablets  */
@media (min-width: 768px) and (max-width: 1200px) {
  .features-list .feature-item .feature__title {
    background-color: #6CA6DB;
    border-radius: 10px;
    padding: 2px 5px
  }
}
/* Mobile Phones and tablets  */
@media (min-width: 320px) and (max-width: 767px) {
  .feature-item .feature__content {
    padding: 20px;
  }
  .feature-item .feature__title {
    font-size: 16px !important;
    margin-bottom: 5px;
  }
  .feature-item .feature__desc {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .feature-item .feature__icon {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .features-list .feature-item {
    margin-right: 10px;
  }
  .features-list .feature-item .feature__icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .features-list .feature-item .feature__title {
    font-size: 11px !important;
    background-color: #6CA6DB;
    border-radius: 10px;
    padding: 2px 5px
  }
}
/*-----------------------
   Fancybox
------------------------*/
.fancybox-item {
  position: relative;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: all 0.3s linear;
}
.fancybox-item .fancybox__icon {
  font-size: 50px;
  line-height: 1;
  color: #6CA6DB;
}
.fancybox-item .fancybox__title {
  font-size: 19px;
  margin-bottom: 16px;
}
.fancybox-item .fancybox__desc {
  margin-bottom: 0;
}
.fancybox-item .fancybox__icon,
.fancybox-item .fancybox__title,
.fancybox-item .fancybox__desc {
  transition: all 0.3s linear;
}
.fancybox-item:hover .fancybox__icon {
  animation: zoomOut 1s infinite alternate;
}
.fancybox-item:hover .fancybox__title {
  color: #6CA6DB;
}

.fancybox-layout1 .fancybox-item,
.fancybox-layout2 .fancybox-item {
  padding: 40px;
  border: 2px solid #e6e8eb;
}
.fancybox-layout1 .fancybox-item .fancybox__icon,
.fancybox-layout2 .fancybox-item .fancybox__icon {
  flex: 0 0 70px;
}

.fancybox-layout1 .fancybox-item:hover {
  border-color: #ffffff;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}

.fancybox-layout2 .fancybox-item {
  padding: 30px;
}
.fancybox-layout2 .fancybox-item .fancybox__title {
  font-size: 18px;
  margin-bottom: 6px;
}
.fancybox-layout2 .fancybox-item:hover {
  border-color: #6CA6DB;
  background-color: #6CA6DB;
}
.fancybox-layout2 .fancybox-item:hover .fancybox__title,
.fancybox-layout2 .fancybox-item:hover .fancybox__desc,
.fancybox-layout2 .fancybox-item:hover .fancybox__icon {
  color: #ffffff;
}

.fancybox-layout3 .fancybox-item {
  width: 270px;
  padding: 37px 35px 30px;
  background-color: #ffffff;
}
.fancybox-layout3 .fancybox-item .fancybox__icon {
  flex: 0 0 70px;
}
.fancybox-layout3 .fancybox-item .fancybox__title {
  font-size: 18px;
}

.fancybox-light .fancybox-item .fancybox__icon,
.fancybox-light .fancybox-item .fancybox__title,
.fancybox-light .fancybox-item:hover .fancybox__title {
  color: #ffffff;
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .fancybox-item .fancybox__icon {
    font-size: 40px;
    margin-bottom: 5px;
  }
  .fancybox-item .fancybox__title {
    font-size: 15px !important;
    margin-bottom: 5px;
  }
  .fancybox-layout1 .fancybox-item .fancybox__icon,
  .fancybox-layout2 .fancybox-item .fancybox__icon {
    flex: 0 0 50px;
  }
  .fancybox-layout1 .fancybox-item,
  .fancybox-layout2 .fancybox-item,
  .fancybox-layout3 .fancybox-item {
    padding: 20px;
  }
}
/*--------------------
     Members
---------------------*/
.member {
  position: relative;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.4s ease-in-out;
  margin-bottom: 30px;
}
.member:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background-color: #6CA6DB;
  transition: transform 0.4s linear;
  transition-delay: 0.3s;
  transform: scaleX(0);
}
.member .member__img {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.member .member__img img {
  transition: all 0.9s ease;
}
.member .member__info {
  padding: 35px 40px;
}
.member .member__info .member__name {
  font-size: 21px;
  margin-bottom: 11px;
}
.member .member__info .member__name a {
  color: #010A14;
}
.member .member__info .member__name a:hover {
  color: #6CA6DB;
}
.member .member__info .member__job {
  color: #6CA6DB;
  margin-bottom: 10px;
}
.member .member__info .member__desc {
  font-size: 15px;
  margin-bottom: 0;
}
.member .member__hover {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  transition: all 0.5s linear;
}
.member .social-icons li {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.member .social-icons li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #ffffff;
}
.member .social-icons li a.facebook {
  background-color: #3b5999;
}
.member .social-icons li a.twitter {
  background-color: #55acee;
}
.member .social-icons li a.phone {
  background-color: #6CA6DB;
}
.member .social-icons li a:hover {
  background-color: #222222;
}
.member .social-icons li:nth-of-type(1) {
  transition-delay: 100ms;
}
.member .social-icons li:nth-of-type(2) {
  transition-delay: 200ms;
}
.member .social-icons li:nth-of-type(3) {
  transition-delay: 300ms;
}
.member .btn__link.btn__secondary {
  padding: 12px 0;
  margin-top: 5px;
}
.member .btn__link.btn__secondary i {
  width: auto;
  height: auto;
  margin-left: 3px;
  color: #0F284C;
  background-color: transparent !important;
  transition: all 0.3s linear;
}
.member .btn__link.btn__secondary:hover {
  color: #ffffff !important;
  background-color: #6CA6DB !important;
}
.member:hover {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.member:hover .member__hover,
.member:hover .social-icons li {
  opacity: 1;
}
.member:hover .btn__link.btn__secondary {
  padding: 12px 15px;
  color: #ffffff;
  background-color: #0F284C;
}
.member:hover .btn__link.btn__secondary i {
  color: #ffffff;
}

.team-layout-gcb .slick-list {
  margin: -15px;
  overflow: visible;
}

.team-layout-gcb .slick-slide {
  margin: 15px;
  transition: all 0.3s ease;
}

.team-layout-gcb .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.team-layout-gcb .slick-slide:not(.slick-active) {
  opacity: 0;
  visibility: hidden;
}

.team-layout-gcb .member:hover:before {
  transform: scaleX(1);
}

/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .member:before {
    left: 20px;
    right: 20px;
  }
  .member .member__info {
    padding: 15px 20px;
  }
}

/*----------------------------
     Testimonial
------------------------------*/
.testimonial__title {
  font-size: 23px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial__meta {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.testimonial__meta .testimonial__thmb {
  margin-bottom: 16px;
}
.testimonial__meta.slick-current {
  opacity: 1;
}
.testimonial__meta.slick-current .testimonial__thmb {
  border: 2px solid #6CA6DB;
  background-color: #ffffff;
}

.testimonial__meta-title {
  font-size: 16px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.testimonial__meta-desc {
  position: relative;
  z-index: 2;
  font-size: 13px;
  line-height: 1;
  margin-bottom: 0;
}

.testimonial__thmb {
  cursor: pointer;
  width: 52px !important;
  height: 52px;
  padding: 4px;
  border-radius: 50%;
  border: 2px solid transparent;
  background-color: transparent;
  transition: all 0.4s ease;
}
.testimonial__thmb img {
  display: block;
  border-radius: 50%;
  margin: auto;
}

.testimonials-layout-gcb .slick-dots{
  display: none !important;
}
.testimonials-layout-gcb .slider-nav{
  max-width: 550px;
}
.testimonials-layout-gcb .testimonial__meta{
  padding-top: 10px;
  display: flex;
  align-items: center;
}
.testimonials-layout-gcb .testimonial__meta .testimonial__thmb{
  position: relative;
  width: 65px !important;
  height: 65px;
  padding: 6px;
  margin-bottom: 0;
  margin-right: 15px;
}
.testimonials-layout-gcb .testimonial__meta .testimonial__thmb:before{
  font-family: icomoon;
  content: "\e95c";
  position: absolute;
  top: -5px;
  left: -5px;
  font-size: 12px;
  opacity: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  color: #6CA6DB;
  background-color: #ffffff;
  transition: all 0.4s ease;
}
.testimonials-layout-gcb .testimonial__meta.slick-current .testimonial__thmb:before {
  opacity: 1;
}

.testimonials__rating {
  position: relative;
  max-width: 300px;
  padding: 20px 0px 20px 30px;
}
.testimonials__rating:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  width: 143px;
  height: 95px;
  /* background-image: url(../images/icons/text-shape.png); */
}
.testimonials__rating .total__rate {
  font-family: "Quicksand", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #6CA6DB;
  margin-right: 10px;
}
.testimonials__rating .overall__rate {
  font-weight: 700;
  color: #0F284C;
  border-bottom: 2px solid #0F284C;
}

/* Mobile Phones and tablets */
@media (max-width: 992px) {
  .testimonial__title {
    font-size: 15px;
  }
  .testimonial__meta-title {
    font-size: 13px;
  }
  .testimonials-layout-gcb .testimonial__meta .testimonial__thmb {
    position: relative;
    width: 40px !important;
    height: 40px;
    padding: 3px;
    margin-right: 7px;
  }
  .testimonials-layout-gcb .testimonial__meta .testimonial__thmb:before {
    font-size: 9px;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

/*---------------------------
    Parceiro
---------------------------*/
.client {
  position: relative;
  overflow: hidden;
}
.client img {
  padding: 15px;
  transition: transform 0.5s ease;
}
.client img:first-of-type {
  opacity: 0.7;
}
.client img:last-of-type {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150%);
}
.client:hover img:first-of-type {
  transform: translateY(150%);
}
.client:hover img:last-of-type {
  transform: translate(-50%, -50%);
}

.clients-light .client img {
  filter: brightness(100);
}
.clients-light .client img:first-of-type {
  opacity: 0.98;
}

/*----------------------------
    Contacts
----------------------------*/
.contact-info .boxes-wrapper {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  overflow: hidden;
  border-radius: 10px;
}
.contact-info .boxes-wrapper > [class*=col-]:nth-of-type(1) .contact-box {
  background-color: #6CA6DB;
}
.contact-info .boxes-wrapper > [class*=col-]:nth-of-type(2) .contact-box {
  background-color: #0F284C;
}
.contact-info .boxes-wrapper > [class*=col-]:nth-of-type(3) .contact-box {
  background-color: #04162D;
}
.contact-info .contact-box {
  position: relative;
  padding: 45px;
  height: 100%;
}
.contact-info .contact-box .contact__title {
  font-size: 19px;
}
.contact-info .contact-box .contact__icon {
  font-size: 50px;
  flex: 0 0 80px;
  max-width: 80px;
}
.contact-info .contact-box .contact__title,
.contact-info .contact-box .contact__icon,
.contact-info .contact-box .time__list li,
.contact-info .contact-box .contact__desc {
  color: #ffffff;
}
.contact-info .contact-box .phone__number {
  font-size: 23px;
  margin-top: 5px;
  font-weight: 600;
  color: #ffffff !important;
}
.contact-info .contact-box .phone__number .icon-phone {
  font-size: 17px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
  background-color: #1ebaae;
}
.contact-info .contact-box .btn__white.btn__outlined {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-panel {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.1);
}

.contact-panel__title {
  font-size: 24px;
}

.contact-panel__desc {
  font-size: 15px;
  line-height: 25px;
}

textarea.form-control {
  min-height: 120px;
  padding-top: 16px;
}

.contact-layout-gcb .contact-panel__info{
  position: relative;
  padding: 55px 60px;
  border-radius: 20px;
  overflow: hidden;
  flex: 0 0 38%;
  max-width: 38%;
}
.contact-layout-gcb .contact-panel__info:after {
  content: "";
  position: absolute;
  top: 55px;
  bottom: 55px;
  left: 0;
  width: 3px;
  background-color: #0F284C;
}
.contact-layout-gcb .contact-panel__info .contact__list li {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-layout-gcb .contact-panel__info .contact__list li a {
  color: #ffffff;
}
.contact-layout-gcb .contact-panel__info .contact__list li i {
  margin-right: 8px;
}
.contact-layout-gcb .contact-panel__info .contact-panel__title {
  font-size: 30px;
}
.contact-layout-gcb .contact-panel__form {
  flex: 0 0 62%;
  max-width: 62%;
}
.contact-layout-gcb2 .text__block {
  margin-top: 50px;
  padding-top: 45px;
  border-top: 2px solid rgba(231, 235, 239, 0.3);
}
.contact-layout-gcb2 .text__block .text__block-desc {
  font-size: 17px;
}

@media (min-width: 1200px) {
  .contact-layout-gcb .contact-panel__form{
    padding-right: 70px;
  }
  .contact-layout-gcb2 .contact-panel {
    margin-right: 30px;
  }
}
/* Mobile Phones & tablets and Small Screens */
@media (max-width: 992px) {
  .contact-info .contact-box {
    padding: 25px;
  }
  .contact-panel {
    padding: 20px;
  }
  .contact-panel .contact-panel__desc {
    font-size: 13px;
    line-height: 23px;
  }
  .contact-layout-gcb .contact-panel__info{
    padding: 20px;
    margin-top: 30px;
  }
  .contact-layout-gcb .contact-panel__info:after {
    top: 20px;
    bottom: 20px;
  }
  .contact-layout-gcb .contact-panel__info,
  .contact-layout-gcb .contact-panel__form {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* Mobile Phones and tablets  */
@media (min-width: 320px) and (max-width: 767px) {
  .contact-info .boxes-wrapper {
    margin-top: -20px;
  }
  .contact-info .boxes-wrapper .contact-box {
    padding: 15px;
  }
  .contact-info .boxes-wrapper .contact-box .contact__icon {
    font-size: 40px;
    flex: 0 0 50px;
    max-width: 50px;
  }
  .contact-info .boxes-wrapper .contact-box .contact__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
/*--------------------------
        pricing
--------------------------*/
.pricing-package {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 30px);
  padding: 45px 50px 50px;
  background-color: #ffffff;
  box-shadow: 0px 5px 83px rgba(14, 32, 77, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.pricing-package .package__title {
  color: #6CA6DB;
  font-size: 16px;
  margin-bottom: 15px;
}
.pricing-package .package__price {
  font-family: "Quicksand", sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #435ba1;
  line-height: 1;
  margin-bottom: 20px;
}
.pricing-package .package__period {
  font-size: 14px;
  font-weight: 600;
}
.pricing-package .package__desc {
  font-size: 14px;
  margin-bottom: 44px;
}
.pricing-package .package__list {
  margin-bottom: 50px;
}
.pricing-package .package__list li {
  margin-bottom: 13px;
}
.pricing-package .package__list li:before {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.pricing-package .package__footer {
  text-align: center;
  border-radius: 10px;
  padding: 32px 20px 40px;
  background-color: #def8f6;
}

.packages-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -130px;
  border-radius: 15px;
}

[class*=pricing-widget-layout] {
  padding: 40px;
  border-radius: 12px;
}
[class*=pricing-widget-layout] .pricing__title {
  font-size: 19px;
}
[class*=pricing-widget-layout] .pricing__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dcdee2;
}
[class*=pricing-widget-layout] .pricing__list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
[class*=pricing-widget-layout] .pricing__list li .price {
  line-height: 1;
  padding: 6px 10px;
  border-radius: 5px;
}

.pricing-widget-layout1 {
  background-color: #def8f6;
}
.pricing-widget-layout1 .pricing__list li .price {
  color: #ffffff;
  background-color: #6CA6DB;
}

.pricing-widget-layout2 {
  border: 2px solid #e6e8eb;
}
.pricing-widget-layout2 .pricing__list li .price {
  color: #ffffff;
  background-color: #0F284C;
}

.pricing-widget-layout3 {
  background-color: #f6f6f6;
}
.pricing-widget-layout3 .pricing__list li .price {
  color: #ffffff;
  background-color: #0F284C;
}

.widget-plan {
  border-radius: 13px;
  border: 2px solid #e6e8eb;
}
.widget-plan .widget__body {
  padding: 50px;
}
.widget-plan .widget__footer {
  padding: 50px;
  border-top: 2px solid #e6e8eb;
}
.widget-plan .plan__items {
  padding: 30px;
  border-radius: 10px;
  background-color: #def8f6;
}
.widget-plan .plan__items li {
  color: #0F284C;
}
.widget-plan .plan__price {
  line-height: 1;
  font-size: 50px;
  color: #435BA1;
}
.widget-plan .plan__price .period {
  font-size: 14px;
}

@media (min-width: 992px) {
  .packages-wrapper > [class*=col-]:first-of-type .pricing-package {
    border-radius: 15px 0px 0px 15px;
  }
  .packages-wrapper > [class*=col-]:last-of-type .pricing-package {
    border-radius: 0px 15px 15px 0px;
  }
}
/* Mobile Phones & tablets and Small Screens */
@media (max-width: 992px) {
  .widget-plan .widget__body {
    padding: 20px;
  }
  .widget-plan .plan__items {
    margin-top: 10px;
  }
  .pricing-package {
    height: auto;
    padding: 20px;
    border-radius: 10px;
  }
  .pricing-package .package__title {
    margin-bottom: 10px;
  }
  .pricing-package .package__price {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .pricing-package .package__desc {
    margin-bottom: 20px;
  }
  .pricing-package .package__list {
    margin-bottom: 30px;
  }
  .pricing-package .package__footer {
    border-radius: 10px;
    padding: 17px 10px 20px;
  }
  [class*=pricing-widget-layout] {
    padding: 20px;
    border-radius: 8px;
  }
  [class*=pricing-widget-layout] .pricing__title {
    font-size: 16px;
  }
  [class*=pricing-widget-layout] .pricing__list li {
    font-size: 14px;
  }
  [class*=pricing-widget-layout] .pricing__list li .price {
    padding: 3px 6px;
  }
}
/*--------------------
 sidebar
----------------------*/
.widget {
  position: relative;
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 40px;
  background-color: #def8f6;
}
.widget:after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  width: 3px;
  background-color: #6CA6DB;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widget__title {
  font-size: 19px;
  margin-bottom: 23px;
}

/* Widget schedule */
.widget-schedule {
  background-color: #f6f6f6;
}
.widget-schedule .widget__icon {
  color: #0F284C;
  font-size: 50px;
  margin-bottom: 6px;
}

.time__list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dcdee2;
}
.time__list li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

/* widget member */
.widget-member {
  padding: 0;
  overflow: visible;
}
.widget-member:after {
  display: none;
}
.widget-member .member {
  z-index: 3;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.widget-member .member:before {
  transform: scaleX(1);
}
.widget-member .member .social-icons li {
  opacity: 1;
}

.ui-slider {
  position: relative;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-widget.ui-widget-content {
  border: none;
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal .ui-slider-handle {
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 4px;
  background-color: #6CA6DB;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

@media (min-width: 1200px) {
  .sidebar.has-marign-right {
    margin-right: 40px;
  }
  .sidebar.has-marign-left {
    margin-left: 40px;
  }
  .widget-member.shifted-top {
    margin-top: -450px;
  }
}
@media (min-width: 320px) and (max-width: 992px) {
  .widget {
    padding: 20px;
    margin-bottom: 30px;
  }
  .widget:after {
    top: 20px;
    bottom: 20px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .widget {
    padding: 15px;
  }
  .widget:after {
    top: 15px;
    bottom: 15px;
  }
  .widget .widget__title {
    margin-bottom: 20px;
  }
}
/*----------------------
    About
-----------------------*/
.about-layout-gcb .about__Text{
  padding: 0 40px;
}
.about-layout-gcb .about__Text p{
  font-size: 16px;
  color: #0F284C;
}
.about-layout-gcb .about__Text p:first-of-type{
  position: relative;
  font-weight: 600;
}
.about-layout-gcb .about__Text p:first-of-type:before{
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -40px;
  width: 2px;
  background-color: #0F284C;
}

.about-layout-gcb2 .text-with-icon .text__icon {
  color: #6CA6DB;
  font-size: 50px;
}
.about-layout-gcb2 .video-banner-layout-gcb {
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .about-layout-gcb2 + .services-layout-gcb {
    padding-top: 200px;
  }
  .about-layout-gcb2 .text-with-icon {
    display: flex;
    flex-wrap: wrap;
  }
  .about-layout-gcb2 .text-with-icon .text__icon {
    flex: 0 0 100px;
    max-width: 100px;
  }
  .about-layout-gcb2 .text-with-icon .text__content {
    flex: 0 0 calc(100% - 100px);
    max-width: calc(100% - 100px);
  }
  .about-layout-gcb2 .about__text {
    position: relative;
    z-index: 4;
    border-radius: 20px;
    padding: 0 0 90px 90px;
  }
  .about-layout-gcb2 .video-banner-layout-gcb {
    position: absolute;
    z-index: 3;
    width: 135%;
    border-radius: 20px;
  }
  .about-layout-gcb2 .video-banner-layout-gcb .video__player {
    box-shadow: none;
  }
  .about-layout-gcb2 .video-banner-layout-gcb .video__btn {
    position: absolute;
    left: auto;
    right: 10px;
  }
  .about-layout-gcb2 .video-banner-layout-gcb .video__btn-title {
    line-height: 1.3;
    max-width: 80px;
    text-align: left;
    white-space: normal;
  }
}
/* Mobile Phones and tablets */
@media (max-width: 992px) {
  .about-layout-gcb .about__Text{
    padding: 0 20px;
  }
  .about-layout-gcb .about__Text p:first-of-type:before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: -20px;
    width: 2px;
    background-color: #0F284C;
  }
}
/*-----------------------
    Services 
--------------------------*/
.service-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  background-color: #ffffff;
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.05);
  transition: all 0.4s ease;
}
.service-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 3px;
  background-color: #435ba1;
  transition: all 0.4s linear;
}
.service-item .service__content {
  padding: 40px;
}
.service-item .service__icon {
  color: #0F284C;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 25px;
  transition: all 0.3s linear;
}
.service-item .service__icon i:nth-of-type(2) {
  position: absolute;
  right: -60px;
  font-size: 140px;
  opacity: 0.1;
  top: 100px;
}
.service-item .service__title {
  font-size: 24px;
  margin-bottom: 31px;
  transition: all 0.3s linear;
}
.service-item .service__desc {
  font-size: 15px;
  margin-bottom: 32px;
  transition: all 0.3s linear;
}
.service-item .list-items {
  margin-bottom: 30px;
}
.service-item .list-items li {
  margin-bottom: 15px;
}
.service-item .btn:not(.btn__link) {
  height: 50px;
}
.service-item .btn:hover {
  border-color: #6CA6DB;
  background-color: #6CA6DB;
}
.service-item:hover {
  z-index: 5;
  box-shadow: 0px 5px 83px 0px rgba(40, 40, 40, 0.12);
}
.service-item:hover:before {
  background-color: #6CA6DB;
}

.services-layout-gcb .service-item {
  padding: 40px;
}
.services-layout-gcb .service-item .service__content {
  padding: 0;
}

.services-layout-gcb2 .service-item:before {
  background-color: #0F284C !important;
  transform: scaleX(0);
}
.services-layout-gcb2 .service-item .service__title {
  font-size: 23px;
  margin-bottom: 16px;
}
.services-layout-gcb2 .service-item .service__img {
  overflow: hidden;
  border-radius: 8px;
}
.services-layout-gcb2 .service-item .service__img img {
  transition: all 0.9s ease;
}
.services-layout-gcb2 .service-item .btn:hover {
  border-color: #0F284C;
  background-color: #0F284C;
}
.services-layout-gcb2 .service-item:hover:before {
  transform: scaleX(1);
}
.services-layout-gcb2 .service-item:hover .service__img img {
  transform: scale(1.1) rotate(1deg);
}

.services-carousel.services-layout-gcb .service-item {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.05);
}
.services-carousel.services-layout-gcb .service-item:hover {
  box-shadow: 0px 5px 83px 0px rgba(9, 29, 62, 0.15);
}
.services-carousel.services-layout-gcb .slick-dots {
  text-align: center;
}
.services-carousel .slick-dots {
  margin-top: 40px;
  text-align: left;
}
.services-carousel .slick-list {
  margin: -15px;
  overflow: visible;
}
.services-carousel .slick-slide {
  margin: 15px;
  transition: all 0.3s ease;
}
.services-carousel .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}
.services-carousel .slick-slide:not(.slick-active) {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1500px) {
  .services-carousel .carousel-container {
    margin-right: -250px;
  }
}
@media (min-width: 1200px) {
  .services-carousel .carousel-container {
    margin-right: -170px;
  }
  .services-carousel .slick-arrow {
    top: -90px;
  }
  .services-carousel .slick-arrow.slick-prev {
    left: 80%;
  }
  .services-carousel .slick-arrow.slick-next {
    left: 85%;
  }
  .services-carousel .service-item .service__desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
}
/* Mobile Phones & tablets and Small Screens */
@media (max-width: 992px) {
  .service-item {
    padding: 20px;
  }
  .service-item:before {
    left: 20px;
    right: 20px;
  }
  .service-item .service__icon {
    font-size: 50px;
    margin-bottom: 10px;
  }
  .service-item .service__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .service-item .service__desc {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .services-layout-gcb .service-item {
    padding: 20px;
  }
  .services-layout-gcb2 .service-item {
    margin-bottom: 30px;
  }
  .services-layout-gcb2 .service-item .service__content {
    padding: 15px 0 0 0;
  }
}
/*-------------------------
  Timeline
-------------------------*/
.doctors-timetable th {
  font-weight: 700;
  color: #848e9f;
  padding: 17px 15px;
}
.doctors-timetable th,
.doctors-timetable td {
  text-align: center;
  vertical-align: middle;
  border-radius: 14px;
  border: 3px solid #ffffff;
}
.doctors-timetable thead {
  background-color: #def8f6 !important;
}
.doctors-timetable tbody tr:nth-of-type(even) td:first-of-type {
  min-width: 80px;
  background-color: #def8f6 !important;
}
.doctors-timetable tbody tr td:first-of-type {
  font-weight: 700;
}
.doctors-timetable .event {
  padding: 27px 10px;
  vertical-align: top;
  color: #ffffff;
  background-color: #435ba1;
}
.doctors-timetable .event .event__header {
  font-family: "Quicksand", sans-serif;
  display: block;
  color: #ffffff !important;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 2px;
}
.doctors-timetable .event .event__type {
  font-size: 13px;
}
.doctors-timetable .event .doctor__name {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.doctors-timetable .event .event__time {
  margin: 15px 0;
}
.doctors-timetable .event .event__time span {
  display: block;
}

.timeline-item {
  position: relative;
}
.timeline-item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 116px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6CA6DB;
  transition: 0.3s linear;
}
.timeline-item .timeline__year {
  display: block;
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  flex: 0 0 80px;
  max-width: 80px;
  margin-right: 40px;
  border-radius: 5px;
  height: 30px;
  margin-bottom: 0;
  align-self: baseline;
  padding: 5px 20px 5px 25px;
  background-color: #0F284C;
}
.timeline-item .timeline__year:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  left: 10px;
  top: 50%;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
}
.timeline-item .timeline__year:after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  right: -8px;
  top: 5px;
  z-index: -1;
  transform: rotate(45deg);
  background-color: #0F284C;
}
.timeline-item .timeline__body {
  position: relative;
  font-size: 15px;
  padding-left: 40px;
  margin-bottom: 0;
  padding-bottom: 48px;
}
.timeline-item .timeline__body:before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid #dcdee2;
}
.timeline-item .timeline__body:after {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 0;
  left: -1px;
  width: 2px;
  background-color: #dcdee2;
}
.timeline-item .timeline__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
}
.timeline-item:hover:before {
  transform: scale(1.3);
}
.timeline-item:last-of-type .timeline__body {
  padding-bottom: 0;
}

/*-------------------------
   Gallery
-------------------------*/
.gallery .slick-list {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}
.gallery .slick-slide {
  margin: 0;
}
.gallery .slick-arrow.slick-next {
  right: -50px;
}
.gallery .slick-arrow.slick-prev {
  left: -50px;
}

@media (min-width: 320px) and (max-width: 575px) {
  .gallery .slick-arrow.slick-next {
    right: 0;
  }
  .gallery .slick-arrow.slick-prev {
    left: 0;
  }
}

/*-------------------------
  Work process
-------------------------*/
.work-process .slick-list {
  margin: -15px;
  overflow: visible;
}
.work-process .slick-slide {
  margin: 15px;
  transition: all 0.3s ease;
}
.work-process .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}
.work-process .slick-slide:not(.slick-active) {
  opacity: 0;
  visibility: hidden;
}
.work-process .cta {
  padding-top: 140px;
  padding-bottom: 70px;
  margin-top: -70px;
}
.work-process .cta .cta__title {
  color: #ffffff;
  font-size: 27px;
}
.work-process .cta .cta__desc {
  font-size: 16px;
  color: #ffffff;
}
.work-process .cta .btn:not(.btn__link) {
  height: 50px;
}

@media (min-width: 1500px) {
  .work-process .carousel-container {
    margin-right: -200px;
  }
}
@media (min-width: 1200px) {
  .work-process .carousel-container {
    margin-right: -140px;
  }
  .work-process .cta .cta__title {
    padding: 0 30px;
  }
  .work-process .cta .cta__desc {
    padding: 0 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .work-process .cta {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  .work-process .cta .cta__img {
    max-width: 90px;
    margin-bottom: 10px;
  }
}
/* Mobile Phones and tablets */
@media (min-width: 320px) and (max-width: 767px) {
  .work-process .cta .cta__title {
    font-size: 20px;
  }
}

/*-----------------------
    Progress Bars
------------------------*/
.progress-item {
  margin-bottom: 27px;
  overflow: hidden;
}

.progress {
  background-color: #e9e9e9;
  border-radius: 6px;
  width: 100%;
  height: 6px;
  overflow: visible;
  position: relative;
}

.progress-bar {
  overflow: visible;
  position: relative;
  border-radius: 6px;
  height: 6px;
  width: 0;
  background-color: #6CA6DB;
  transition: width 2s ease;
}

.progress__title {
  position: relative;
  z-index: 2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.progress__percentage {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -18px;
  right: 0;
  color: #848e9f;
}/*# sourceMappingURL=style.css.map */
/* Botão de Agendamento */
.btn-agendamento {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #25D366; /* WhatsApp green */
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.05s ease;
}
.btn-agendamento i {
  margin-right: 8px;
}
.btn-agendamento:hover {
  background-color: #128C7E; /* darker on hover */
  color: #ffffff;
}
.btn-agendamento:active {
  transform: translateY(1px);
}
.btn-agendamento:disabled,
.btn-agendamento.disabled {
  background-color: #cfd8dc;
  color: #607d8b;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}