*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --ff: "DM Sans", sans-serif;
    --ff-serif: "DM Serif Display", serif;

    --f48: 48px;
    --f32: 32px;
    --f24: 24px;
    --f22: 22px;
    --f16: 16px;

    --azul: #2b4dc5;
    --azul2: #D5DBF3;
    --negro: #000000;
    --blanco: #FFFFFF;
    --gris1: #353535;
    --gris2: #777777;
    --gris3: #e8e8e8;
    --gris4: #F8F8F8;

}

.ff{
    font-family: var(--ff);
}

.ff-serif{
    font-family: var(--ff-serif);
}

.f48{
    font-size: var(--f48);
}

.f32{
    font-size: var(--f32)
}

.f24{
    font-size: var(--f24);
}

.f22{
    font-size: var(--f22);
}

.f16{
    font-size: var(--f16);
}

.azul{
    color: var(--azul);
}

.azul2{
    color: var(--azul2);
}

.blanco{
    color: var(--blanco);
}

.negro{
    color: var(--negro);
}

.gris1{
    color: var(--gris1);
}

.gris2{
    color: var(--gris2);
}

.gris3{
    color: var(--gris3);
}

.gris4{
    color: var(--gris4);
}

.lh-100{
    line-height: 100%;
}

.lh-110{
    line-height: 110%;
}

.lh-120{
    line-height: 120%;
}

.lh-130{
    line-height: 130%;
}

.lh-140{
    line-height: 140%;
}

.h-150{
    height: 150px !important;
}
a{
    color:black;
    text-decoration: none;
}
.boton-negro{
    padding: 10px 40px;
    background-color: var(--gris1);
    border-radius: 10px;
    text-decoration: none;
}

.boton-blanco{
    padding: 10px 40px;
    background-color: var(--blanco);
    border-radius: 10px;
    text-decoration: none;
}

.boton-azul{
    padding: 10px 40px;
    background-color: var(--azul);
    border-radius: 10px;
    text-decoration: none;
}

.cursor{
    cursor: pointer;
}

.fit{
    max-width: fit-content;
}

.bg-blanco {
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-azul2{
    background-color: var(--azul2);
}

.border-r10{
    border-radius: 10px;
}

.bg-interesado{
    background-image: url(../img/img4.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Underline Reveal */
.hvr-underline-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}
  .hvr-underline-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blanco);
    height: 1px;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
  .hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Grow Shadow */
.hvr-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}
  .hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.card-c1{
    background-image: url(../img/carousel1/img1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 800px;
    width: 100%;
    position: relative;
}


.carousel1 .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 99999;
    height: 10px;
    position: absolute;
    bottom: 32px;
}

.carousel1 .slick-dots li {
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s; /* Transición suave para el cambio de ancho */
}

.carousel1 .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.carousel1 .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 6px;
    content: '';
    text-align: center;
    opacity: .25;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    border-radius: 4px;
    transition: width 0.3s, opacity 0.3s; /* Transición suave para el cambio de ancho y opacidad */
}

.carousel1 .slick-dots li.slick-active {
    width: 60px; /* Ancho del punto activo */
}

.carousel1 .slick-dots li.slick-active button:before {
    opacity: .75;
    color: white;
    width: 60px; /* Ancho del contenido antes del punto activo */
}



.bg-tab1{
    background-image: url(../img/tab1/img1.png);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 520px;
}

.puntos{
    width: 21px;
    height: 21px;
}

.carousel3 .slick-track{
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .card-c1{
        height: 100dvh;
    }
    .carousel1 .slick-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        z-index: 99999;
        height: 10px;
    }
}

.carousel3 .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 99999;
    height: 10px;
}

.carousel3 .slick-dots li {
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 6px;
    padding: 0;
    cursor: pointer;
    transition: width 0.3s; /* Transición suave para el cambio de ancho */
}

.carousel3 .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.carousel3 .slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 6px;
    content: '';
    text-align: center;
    opacity: .25;
    color: var(--azul);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--azul);
    border-radius: 4px;
    transition: width 0.3s, opacity 0.3s; /* Transición suave para el cambio de ancho y opacidad */
}

.carousel3 .slick-dots li.slick-active {
    width: 60px; /* Ancho del punto activo */
}

.carousel3 .slick-dots li.slick-active button:before {
    opacity: .75;
    color: white;
    width: 60px; /* Ancho del contenido antes del punto activo */
}
.offcanvas {
    width: 580px !important;
    height: 820px;
}

.btn-enviar {
    width: 128px;
    border-bottom: 1px solid black;
    border-radius: 0;
    color: var(--color-5);
    font-size: var(--fs-16);
}

.btn-enviar:hover {
    background-color: black;
    color: white !important;
    border-radius: 5px;
}
.banderas{
    max-width: 25px;
}