@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');

:root {
  /* Cores principais */
  --bs-primary: #264653!important; /* Cor principal */

  --bs-secondary: #2a9d8f; /* Cor secundária */
  --bs-success: #28a745; /* Sucesso */
  --bs-info: #17a2b8; /* Informação */
  --bs-warning: #fec624; /* Aviso */
  --bs-danger: #dc3545; /* Erro */
  --bs-light: #f8f9fa; /* Claro */
  --bs-dark: #212529; /* Escuro */

  /* Personalização de textos e fundo */
  --title-color: #000000; /* Títulos */
  --body-color: #444444; /* Texto padrão */
  --smoke-color: #F3F3F3; /* Fundo neutro */
  --black-color: #000000; /* Preto */
  --white-color: #ffffff; /* Branco */

  /* Outras cores e elementos */
  --yellow-color: #fec624; /* Cor amarela personalizada */
  --border-color: #e8e8e8; /* Cor de bordas */
  --success-color: #28a745; /* Sucesso personalizado */
  --error-color: #dc3545; /* Erro personalizado */

  /* Tipografia */
  --title-font: "Oxygen", sans-serif; /* Fonte de títulos */
  --body-font: "Oxygen", sans-serif; /* Fonte do corpo */
  --icon-font: "Font Awesome 5 Pro"; /* Fonte de ícones */

  /* Dimensões */
  --main-container: 1290px; /* Largura principal do container */
  --container-gutters: 30px; /* Espaçamento interno do container */
  --section-space: 120px; /* Espaçamento entre seções */
  --section-space-mobile: 80px; /* Espaçamento entre seções no mobile */
  --section-title-space: 70px; /* Espaçamento abaixo do título */

  /* Animações */
  --ripple-ani-duration: 5s; /* Duração da animação */
}

html,
body {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--body-color);
    line-height: 26px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.card:hover {
    border-color: #264653 !important;
}

.menu-categoria {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu-categoria li {
    margin-bottom: 5px;
}

.menu-categoria li a {
    display: block;
    border: 1px solid #999999;
    border-radius: 5px;
    padding: 5px;
    text-decoration: none;
    color: black;
    font-weight: 500;
     padding-left: 10px;
}

.menu-categoria li a:hover {
    background-color: var(--bs-primary);
    color: white;
}

/* Paginas */

.titulo-pagina {
    font-family: var(--body-font);
    font-size: 32px; /* Tamanho do texto da configuração */
    color: var(--bs-primary);
    font-weight: 800;
}

.sub-titulo-pagina {
    font-size: 22px; /* Tamanho do texto da configuração */
    color: black;
    font-weight: 600;
}

/* Header  */

.form-busca {
    max-width: 100%;
    position: relative;
}

.form-busca .input-group {
    display: flex;
    align-items: center;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
    padding: 0px;
}

.form-busca .input-group-prepend {
    padding-right: 10px;
}

.form-busca .form-control {
    border: none;
    font-weight: 500;
}

.final-nav {
    padding-bottom: 1px;
    position: relative;
    box-shadow: 10px 30px 40px rgba(0, 0, 0, 0.1);
    z-index: 1; /* Garante que o conteúdo interno fique visível acima do plano de fundo */
}

.final-nav::before {
    content: ''; /* Insere um elemento vazio */
    position: absolute; /* Posiciona o elemento no mesmo lugar da div */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://s3-alpha-sig.figma.com/img/f671/7b3a/29b7daf90c7c79ddfefd173d4785ded2?Expires=1734307200&Key-Pair-Id=APKAQ4GOSFWCVNEHN3O4&Signature=WpvJq85JTj7YyN46Xz0B148HkA3sYRevTmJ3l6xWU00FCpEXk5PZGeRNN~4IX3tmJtpr3CORILxHNdDCVpCu3NV2NJ-nkzIBUx9UZjcUQbouXK9jbIrLdm8PWTpV1lcrcAA~sKuE8C2Aiyopi-ZnL3oCiVIF8jWuiTipULK-AdYTlHmli6POA0XMmiG18CDo0kcxF4To6JxsQBjX3H-7oT~neflRcxTRkc03~NgH7KroxH7yw3a2Bc-pxu16MACIwuy2Ldj8J-Se9EylhZvyoyn~JQgpQ7ddEiL4CqJ8l~EkPw1Bu1BCr1z-vug1RuoqNO0BPSOgFIZkqAwLKD25RA__');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2; /* Ajusta a intensidade do plano de fundo */
    z-index: -1; /* Garante que o fundo fique atrás do conteúdo */
}



/* Pagina Quem somos  */

.quem-somos .d-flex-container {
    display: flex;
    align-items: center;
    background-color: #F2F5FF; /* Cor de fundo azul */
    color: white; /* Cor do texto branco */
    padding: 10px; /* Espaçamento interno */
    border-radius: 10px; /* Bordas arredondadas */
}

.quem-somos .contato-text {
    font-size: 20px; /* Tamanho do texto "WhatsApp" */
    font-weight: bold; /* Texto em negrito */
    color: var(--bs-primary);
}

.quem-somos .config-text {
    font-size: 16px; /* Tamanho do texto da configuração */
    color: black;
}

/* Pagina de Contato  */

.contato .d-flex-container {
    display: flex;
    align-items: center;
    background-color: #F2F5FF; /* Cor de fundo azul */
    color: white; /* Cor do texto branco */
    padding: 10px; /* Espaçamento interno */
    border-radius: 10px; /* Bordas arredondadas */
}

/* Estilo para o ícone */
.contato .d-flex-container.icone-whatsapp i {
    font-size: 50px; /* Tamanho do ícone */
    color: #25D366; /* Cor do ícone */
}

/* Estilo para o texto "WhatsApp" */
.contato .whatsapp-text {
    font-size: 20px; /* Tamanho do texto "WhatsApp" */
    font-weight: bold; /* Texto em negrito */
    color: #25D366;
}

.contato .d-flex-container.icone-contato i {
    font-size: 50px; /* Tamanho do ícone */
    color: var(--bs-primary); /* Cor do ícone */
}

.contato .contato-text {
    font-size: 20px; /* Tamanho do texto "WhatsApp" */
    font-weight: bold; /* Texto em negrito */
    color: var(--bs-primary);
}

.contato .d-flex-container.icone-email i {
    font-size: 50px; /* Tamanho do ícone */
    color: #C74724; /* Cor do ícone */
}

.contato .email-text {
    font-size: 20px;
    font-weight: bold;
    color: #C74724;
}


.contato .config-text {
    font-size: 16px;
    color: black;
}

/* Pagina do Certificado  */

.certificado .custom-list {

}

.certificado .custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    text-decoration: none;
    line-height: 1.5;
}

.certificado .custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background-image: url('../assets/img/layout/tick-circle.png'); /* URL da imagem */
    background-size: cover;
}

/* Inputs  */

.form-label{
    font-size: 14px;
    color: black;
    font-weight: 600;
    margin-bottom: 0px;
}

textarea.form-control,
textarea {
  min-height: 210px;
  padding-top: 16px;
  padding-bottom: 17px;
  font-size: 14px;
  color: #CCCCCC;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  height: 36px;
  padding: 5px 10px;
}

.form-control,
.form-select,
input,
select {
    font-size: 14px;
    /*color: #CCCCCC;*/
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    height: 36px;
    padding: 5px 10px;
}
select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  background-color: var(--white-color);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
  font-weight: lighter;
}
select::-moz-placeholder, .form-control::-moz-placeholder, .form-select::-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder {
  color: var(--body-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


input[type=number] {
  -moz-appearance: textfield;
}

/* Footer  */

.footer-wrapper{
 background-color: #262626;
  min-height: 320px;
  color: #C8C8C8;
}

.widget-area{
margin-top: 50px;
padding-top: 40px;
padding-bottom: 30px;
}

.footer-text{
  color: #C8C8C8;
  font-size: 14px;
  font-weight: 500;
}

.footer-curso {
    color: #C8C8C8;
    font-weight: 600;
}

.footer-curso span {
    color: #1AFF91;
}

.copyright-text{
   color: #C8C8C8;
   font-size: 14px;
}

.btn-social{
  color: #262626;
  margin-bottom: 20px;
}

.widget .widget_title {
  font-size: 18px;
  color: #DFDFDF;
}

.widget .menu-all-pages-container.footer-menu .menu {
  list-style: none;
  padding: 0;
}

.widget .menu-all-pages-container.footer-menu .menu li {
  margin-bottom: 9px;
}

.widget .menu-all-pages-container.footer-menu .menu li a {
  color: black;
  text-decoration: none;
  color: #C8C8C8;
  font-size: 14px;
}

.widget .menu-all-pages-container.footer-menu .menu li a:hover {
  color: #999999;
}


/* Login */



.form-check-label{
  font-size: 13px;
  font-weight: 400;

}

.input-icon {
    position: relative;
}

.input-icon-addon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 9999;
}

.line-with-text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px; /* Ajuste a margem conforme necessário */
}

.line-with-text:before,
.line-with-text:after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(62% - 100px); /* Ajuste a largura da linha conforme necessário */
  border-bottom: 1px solid black;
}

.line-with-text:before {
  right: 60%; /* Posiciona à esquerda do texto */
  margin-right: 10px; /* Espaçamento entre a linha e o texto */
}

.line-with-text:after {
  left: 60%; /* Posiciona à direita do texto */
  margin-left: 10px; /* Espaçamento entre a linha e o texto */
}

.line-with-text .title {
  margin: 0 10px; /* Espaçamento entre o texto e a linha */
  white-space: nowrap; /* Evita que o texto quebre em duas linhas */
}

.btn-google {
  color: #fff;
  background-color: #dc4e41;
  border-color: #dc4e41;
}

.btn-google:hover {
  background-color: #c53727;
  border-color: #c53727;
}

.btn-google:focus,
.btn-google.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 78, 65, 0.5);
}

.btn-google.disabled,
.btn-google:disabled {
  color: #fff;
  background-color: #dc4e41;
  border-color: #dc4e41;
}

.btn-google:not(:disabled):not(.disabled):active,
.btn-google:not(:disabled):not(.disabled).active,
.show > .btn-google.dropdown-toggle {
  color: #fff;
  background-color: #c53727;
  border-color: #c53727;
}

.btn-google:not(:disabled):not(.disabled):active:focus,
.btn-google:not(:disabled):not(.disabled).active:focus,
.show > .btn-google.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 78, 65, 0.5);
}

.btn-facebook {
  color: #fff;
  background-color: #1877F2;
  border-color: #1877F2;
}

.btn-facebook:hover {
  background-color: #0e5cad;
  border-color: #0e5cad;
}

.btn-facebook:focus,
.btn-facebook.focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 119, 242, 0.5);
}

.btn-facebook.disabled,
.btn-facebook:disabled {
  color: #fff;
  background-color: #1877F2;
  border-color: #1877F2;
}

.btn-facebook:not(:disabled):not(.disabled):active,
.btn-facebook:not(:disabled):not(.disabled).active,
.show > .btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #0e5cad;
  border-color: #0e5cad;
}

.btn-facebook:not(:disabled):not(.disabled):active:focus,
.btn-facebook:not(:disabled):not(.disabled).active:focus,
.show > .btn-facebook.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 119, 242, 0.5);
}

/* Carrinho  */

.carrinho .table-borderless {
    border: 0;
}
.carrinho .table-borderless th{
  padding-bottom: 20px;
}
.carrinho .table-borderless th,
.table-borderless td {
    border: 0;
}

.carrinho .texto-carrinho-pagamento{
  color: #134CA3;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .carrinho .text-tabela {
    font-size: 15px;
  }
  .carrinho .text-curso{
    font-size: 14px;
  }
  .carrinho .btn-sm{
    font-size: 10px;
  }
  .text-select{
    text-align: left!important;
  }


}


.carrinho .steps-container {
  position: relative;
}
.carrinho .steps-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  width: calc(100% - 2rem); /* largura total menos margem dos itens */
  background-color: #ccc;
}
.carrinho .step {
  position: relative;
  z-index: 1; /* para ficar acima do traço */
}
.carrinho .step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  height: 1px;
  width: 2rem; /* comprimento do traço */
  background-color: #ccc;
}

.carrinho .form-select {
  /* Estilo padrão */
  white-space: normal; /* Permite que o texto quebre em várias linhas */
  overflow: hidden; /* Esconde o overflow */
  text-overflow: ellipsis; /* Exibe '...' no final do texto se ele for muito longo */
  /* Adiciona a seta no final do select */
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1em auto;
}

/* Estilo padrão do checkbox */
.carrinho .form-check-input {
  width: 2em; /* Largura do checkbox */
  height: 2em; /* Altura do checkbox */
  border: 2px solid #adb5bd;
  border-radius: 0.25em;
  transition: all 0.3s ease;
}

/* Estilo do checkbox quando selecionado */
.carrinho .form-check-input:checked {
  background-color: #17FF90; /* Cor verde quando selecionado */
  border-color: #17FF90; /* Cor verde para a borda quando selecionado */
}

/* Estilo do ícone quando selecionado */
@media (max-width: 768px) {

.carrinho .form-check-input {
  width: 1em; /* Largura do checkbox */
  height: 1.5em; /* Altura do checkbox */
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  transition: all 0.3s ease;
}

/* Estilo do checkbox quando selecionado */
.carrinho .form-check-input:checked {
  background-color: #17FF90; /* Cor verde quando selecionado */
  border-color: #17FF90; /* Cor verde para a borda quando selecionado */
}

}

.carrinho .table-vcenter > :not(caption) > * > * {
  vertical-align: middle;
}

/* Fim Carrinho */

/* Menu Mobile  */
.offcanvas-menu .offcanvas {
  max-width: 70%;
}
/* Fim Menu Mobile  */

/* Banner  */
.banner .carousel-control-prev{
    border: 1px solid #134CA3;
    border-radius: 50px;
    background-color: #134CA3;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: -25px;
}

.banner .carousel-control-next{
    border: 1px solid #134CA3;
    border-radius: 50px;
    background-color: #134CA3;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: -25px;
}
.banner .carousel-indicators {
    position: absolute!important;
    bottom: -40px;
    left: 0;
    right: 0;
    margin-bottom: 10px;
    text-align: center;
    z-index: 15;
}

.banner .carousel-indicators button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    opacity: 0.5;
    transition: opacity 0.15s ease;
    background-color: #134CA3;
}

.banner .carousel-indicators button.active {
    opacity: 1;

}
/* Fim Banner  */


/* Curso */

.bg-curso{
  min-height: 400px;
}

.titulo-curso{
  font-family: Oxygen;
  font-size: 32px;
  font-weight: 700;
  line-height: 54px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #264653;
}

.reviews-titulo-curso{
  font-size: 18px;
  color: #FFCC33!important;
}

.barra-amarela{
  border: 3px solid #FFFF00;
}

.titulo-grupo{
  font-size: 15px;
  color: #264653;
}

.sub-titulo-grupo{
  font-size: 15px;
  color: #264653;
  font-weight: 700;
  line-height: -20px;
}


.texto-autenticar{
  color: #fff;
}

.form-text{
  color: #fff;
  font-size: 14px;
  font-weight: lighter;
}

#scrolling-text {
    display: flex;
    align-items: center;
    animation: scroll 5s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.btn-curso {
    min-height: 70px !important;
    border-radius: 0 0 20px 0;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
}

.conteudo{
  border: 1px solid #999999;
  border-radius: 3px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #F2F5FF;
  font-weight: 800;
  color: black;
}

.conteudo:hover {
    border-color: #134CA3 !important;
}
.team-review {
  color: #F6B800;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
  background-color: var(--white-color);
}

.blue-dot {
    display: inline-block;
    width: 30px; /* Ajuste conforme necessário */
    height: 30px; /* Ajuste conforme necessário */
    background-color: #134CA3;
    color: white;
    text-align: center;
    border-radius: 50%; /* Para criar o formato de uma bola */
    margin-right: 5px; /* Espaçamento entre a bola e o texto */
    line-height: 32px; /* Centraliza verticalmente o texto */
}

@media (max-width: 768px) {
    .curso .container {
      padding: 0px;
      margin: 0px;
    }

    .curso .btn-curso {
        min-height: 70px !important;
        border-radius: 0 0 0px 0;
        display: flex;
        align-items: center; /* Centraliza verticalmente */
        justify-content: center; /* Centraliza horizontalmente */
    }
    .titulo-curso{
      padding: 10px;
    }
    .text-review{

      font-size: 20px;
    }
    .star-review{
      padding-top: 10px;
      font-size: 20px;
    }
    .tab-content{
      padding: 20px;
    }
    .card .text-review{
      font-size: 12px;
    }
    .card .star-review{
      font-size: 12px;
    }
}

.text-review{
  color: #FFCC33;
}

.card .text-review{
  color: black;
}

.star-review{
  padding-top: 5px; 
  color: #FFCC33;
}

.card .star-review{
  color: #EAEA00;
}

/* Fim Curso */

/* Meus Cusos */

.btn-concluido {
    border-color: #009933 !important;
    background-color: #00B33A;
    color: white;
}
.btn-concluido:hover {
    border-color: #00B33A !important;
    background-color: #009933;
    color: white;
}

/* Fim Meu Crusos */

iframe {
  border: none;
  width: 100%;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid #E2E2E2;
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--theme-color2);
}
a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 40px;
}

.h3,
h3 {
  font-size: 36px;
}

.h4,
h4 {
  font-size: 30px;
}

.h5,
h5 {
  font-size: 24px;
}

.h6,
h6 {
  font-size: 20px;
}


@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 36px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*=col] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 1500px) {
  .row:not([class*=gx-]) {
    --bs-gutter-x: 30px;
  }
}
.gy-30 {
  --bs-gutter-y: 30px;
}

.gx-1px {
  --bs-gutter-x: 1px;
}

.gx-15 {
  --bs-gutter-x: 15px;
}

.gx-gy {
  --bs-gutter-y: var(--bs-gutter-x);
}

@media (min-width: 1500px) {
  .gx-45 {
    --bs-gutter-x: 45px;
  }
  .gx-50 {
    --bs-gutter-x: 50px;
  }
  .gx-60 {
    --bs-gutter-x: 60px;
  }
  .gx-70 {
    --bs-gutter-x: 70px;
  }
  .gx-80 {
    --bs-gutter-x: 80px;
  }
  .gx-90 {
    --bs-gutter-x: 80px;
  }
  .gx-100 {
    --bs-gutter-x: 100px;
  }
}
@media (min-width: 1399px) {
  .gx-20 {
    --bs-gutter-x: 20px;
  }
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
}

.log-whatsapp{
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    color: #212529;
    box-sizing: border-box;
    position: fixed;
    z-index: 2;
    bottom: 20px;
    right: 20px;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 1;
    background: #4dc247!important;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    font-size: 30px!important;
    transition: .5s all;
    box-shadow: 0 0 0 #ccc;
	display:flex;align-items:center;justify-content:center;
}
.log-whatsapp a{color:#fff;line-height: 1;}

@media(max-width:768px){
	.log-whatsapp{bottom:60px;}
}


@media (max-width: 768px) {
 .card-title{
    font-size: 16px;
 }
 .card-body{
     min-height: 50px!important;
     padding-left: 12px;
 }
}