

/**************************************************************
LAYOUT HEADER
**************************************************************/
.custom-nav > div{
    height: 60px;
    width: 100%;
    display:flex;
    align-items: center;
}
.custom-nav > div:first-child{
    background-color:#0C231E;
}
.custom-nav > div:last-child{
    background-color:#13322B;
}
/**************************************************************
LAYOUT FOOTER
**************************************************************/
.main-footer {
    background-color: #3dfdd0;
    min-height: 56px;
    color: #FFF;
    padding: 0px 0 0px;
    text-align: left;
    font-weight: 300
}

.main-footer .list-info {
    line-height: auto;
    /*background-color: #12322B;*/

    /* background-image: url(https://framework-gb.cdn.gob.mx/landing/img/fondofooter3.svg); */
    color: white;
    background-size: cover;
    background-position: bottom;
    padding: 30px 10px 10px;
    /*margin-bottom: 30px*/
}

.main-footer .list-info form label {
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 110%;
    color: black;
}

.main-footer .list-info form .form-group-icon {
    max-width: none;
    font-size: 14px
}

.main-footer .list-info form .form-control {
    font-size: 14px
}

.main-footer .list-info h5 {
    font-weight: 300;
    margin-bottom: 20px
}

.main-footer .list-info a {
    color: #FFF;
    font-size: 14px;
    text-decoration: none;
}

.main-footer .list-info a.link-email {
    color: #fff;
    font-size: 14px
}

.main-footer .list-info p {
    margin-bottom: 15px
}

.main-footer .list-info ul {
    margin: 0 0 60px;
    padding: 0
}

.main-footer .list-info ul li {
    list-style-type: none;
    margin: 0 0 2px;
    padding: 0;
    line-height: 110%
}

.main-footer .row>div {
    margin-bottom: 15px
}

.main-footer p {
    margin: 0;
    font-size: 14px;
    line-height: 136%;
    height: auto;
    position: static
}

@media (min-width:768px) {
    .main-footer {
        text-align: left
    }
    .main-footer .list-info form .form-group-icon {
        max-width: 300px
    }
    .main-footer .row>div {
        margin-bottom: 0
    }
}

/**************************************************************
HOME
**************************************************************/
.custom-hero{
    height: 350px;
    background-image: url('../img/bg-hero.webp');
}

/**************************************************************
BKND
**************************************************************/
 /* Estilo para el fondo del switch */
 .switch-bg {
    background-color: #d1d5db; /* gris */
    transition: background-color 0.3s ease-in-out;
  }

  input:checked + .switch-bg {
    background-color: #3d71c5; /* azul */
  }

  /* Estilo para el deslizador */
  .switch-thumb {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
  }

  input:checked + .switch-bg .switch-thumb {
    transform: translateX(1.5rem); /* Mueve el deslizador */
  }

  input:checked + .switch-bg.checkbox .switch-thumb {
    transform: translateX(0rem); /* Mueve el deslizador */
  }