@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

:root {
    --color-magenta:#ff034b;
    --color-rosa: #ffa9c2;
    --color-negro: #000000;
    --color-blanco: #ffffff;
    --color-gris-100: #151515;
    --color-gris-500: #5b5b5b;
    --color-gris-600: #c5c5c5;
    --color-gris-700: #bfbfbf;
    --color-gris-800: #eeeeee;
    --color-gris-900: #f2f2f2;

    --font-family-default: 'Poppins', Helvetica, Arial, sans-serif;
    --font-family-icomoon: 'icomoon' !important;
    --font-default: 16px;
    --font-size-h1: 4rem;
    --font-size-h2: 3rem;
    --font-size-h3: 2.5rem;
    --font-size-h4: 2rem;
    --font-size-h5: 1.75rem;
    --font-size-h6: 1.5rem;
    --font-size-h7: 1.25rem;

    --font-size-sm: .9rem;
    --font-size-rg: 1rem;
    --font-size-md: 1.25rem;
    --font-size-lg: 1.5rem;

    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

body {
    font-family: var(--font-family-default);
    color: var(--color-negro);
    font-size: var(--font-default);
    font-weight: var(--font-regular);
}

h1{
    font-weight: var(--font-semibold);
}

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

.text-regular{
    font-weight: var(--font-regular);
}

.text-medium{
    font-weight: var(--font-medium);
}

.text-semibold{
    font-weight: var(--font-semibold);
}

.text-bold{
    font-weight: var(--font-bold);
}

.title-border{
    position: relative;
    display: block;
    width: 50%;
    border: 3px solid var(--color-negro);
    border-radius: 360px;
    float: left;
}

.title-border::before{
    content: '';
    display: block;
    position: absolute;
    top: -6px;
    right: -5px;
    width: 13px;
    height: 13px;
    border-radius: 360px;
    background-color: var(--color-magenta);
}

/* bootstrap custom */

.container {
    max-width: 1200px;
    margin: 0 auto; /* Centra el contenido */
}

.custom-row {
    display: flex;
    justify-content: space-between; /* Distribuye el espacio de manera uniforme */
    gap: 10px; /* Espacio exacto de 10px entre columnas */
    align-items: stretch; 
}

.custom-col {
    /*flex: 1; /* Hace que todas las columnas sean del mismo ancho */
    display: flex;
    flex: 0 0 calc(100% / 6 - 10px); /* 6 por fila menos el gap */
    max-width: calc(100% / 6 - 10px);
}

/* ≤ 1080px → 6 por fila */
@media (max-width: 1119px) {
    .custom-col {
        flex: 0 0 calc(100% / 3 - 10px);
        max-width: calc(100% / 3 - 10px);
    }
}

/* ≤ 768px → 3 por fila */
@media (max-width: 649px) {
    .custom-col {
        flex: 0 0 calc(100% / 2 - 10px);
        max-width: calc(100% / 2 - 10px);
    }
}

/* ≤ 500px → 2 por fila */
@media (max-width: 439px) {
    .custom-col {
        flex: 0 0 calc(100% / 1 - 10px);
        max-width: calc(100% / 1 - 10px);
    }
}


.custom-col .card {
    height: 100%;
    width: 100%;
}

.z-index-1{
    z-index: 1;
}

a{
    color: var(--color-negro);
    text-decoration: none;
}

a:hover{
    color: var(--color-magenta);
    text-decoration: underline;
}

/* Form */
input, input:focus, select, select:focus, textarea{
    appearance: none; /* Elimina el estilo nativo (en la mayoría de los navegadores) */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--color-blanco);
    border-radius: 12px !important;
    border: 1px solid var(--color-gris-700) !important;
    outline: unset !important;
    box-shadow: unset !important;
}

input, select{
    height: 60px !important;
}

input::placeholder, 
textarea::placeholder {
  color: var(--color-gris-600) !important;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-icon {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px; /* espacio para la flecha */
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    padding: 10px 15px;
    background: none;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    pointer-events: none;
    font-size: 16px;
    color: var(--color-gris-500);    
}

.select-wrapper.open .select-icon {
    transform: translateY(-50%) rotate(180deg);
}

input.error, textarea.error, select.error{
    border: 1px solid var(--color-magenta) !important;
    color: var(--color-magenta) !important;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: 0 0 0px 1000px white inset !important; /* blanco o el color de fondo que uses */
  transition: background-color 9999s ease-in-out 0s;
  -webkit-text-fill-color: inherit !important;
}

.msg-error{
    padding: 20px;
    background-color: var(--color-magenta);
    border-radius: 12px;
    color: var(--color-blanco);
    text-align: center;
}

/* buttons */
.btn{
    border-radius: 360px;
    transition: transform 0.2s ease-in-out;
}

.btn:hover{
    transform: scale(1.1);
}

.btn{
    font-size: var(--font-default);
    font-weight: 500;
    padding: .75rem 1.5rem;
}

.btn-lg {
    padding: 1rem 1.5rem;
}

.btn-md {
    padding: .75rem 1.5rem;
}

.btn-xs {
    padding: .5rem 1.5rem;
}

.btn-primary, .btn-primary:hover{
    background-color: var(--color-magenta);
    border-color: var(--color-magenta);
    color: var(--color-blanco) !important;
    text-decoration: none !important;
}

.btn-secondary{
    background-color: var(--color-negro) !important;
    border-color: var(--color-negro) !important;
}

.btn-secondary:hover{
    background-color: var(--color-magenta) !important;
    border-color: var(--color-magenta) !important;
}

.btn-circle{
    display: flex;
    justify-content: center; 
    align-items: center;   
    width: 60px;
    height: 60px;
    border-radius: 360px;
    font-size: 2rem;
    color: var(--color-blanco);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.btn-circle:hover{
    color: var(--color-blanco);
    text-decoration: none;
    transform: scale(1.1);
}

.btn-float-footer{  
    position: absolute;
    right: 30px;
    top: 45px;
}

.btn-float-h50{
    position: absolute;
    left: 50%;
    margin-left: -30px;
    transition: transform 0.3s ease;
}

.btn-float-h50:hover {
  transform: translateY(15px);
}

.btn:focus, .btn:active, .btn:focus-visible{
    background-color: var(--color-negro) !important;
    border-color: var(--color-negro) !important;
    box-shadow: unset !important;
}

.btn-icon-file{
    display: inline-block;
    text-decoration: none;
    color: var(--color-negro);
    font-size: 2.5rem;
    transition: transform 0.2s ease-in-out;
}

.btn-icon-file:hover{
    text-decoration: none;
    color: var(--color-magenta);
    transform: scale(1.1);
}

.btn, .btn-circle{
    box-shadow: none !important;
    border: none !important;
}



/* Logo */

.logo{
    background-image: url(../images/kopernicus.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 300px;
    height: 59px;
    text-indent: -100000px;
    /*background-color: aquamarine;*/
}


/* Navegador */

.navbar{
    /*background-color: bisque;*/
    /*height: 200px;*/
    padding: 1.75rem 0;
    background: linear-gradient(180deg, white, transparent);
    background-position: top;
}

.nav-item{
    /*background-color: yellow;*/
    margin-left: 1rem;
}

.nav-item a{
    position: relative;
    color: var(--color-negro);
    text-decoration: none;
    font-weight: var(--font-medium);
}

.nav-item a::before{
    display: none;
    content: '\e90e';
    position: absolute;
    font-family: var(--font-family-icomoon);
    font-size: .6rem;
    color: var(--color-magenta);
    left: 50%;
    margin-left: -.3rem;
    bottom: -1.25rem;
}

.nav-item a:hover{
    color: var(--color-magenta);
}

.nav-item a:hover::before{
    display: block;
}

.navbar.fixed-top {
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

.navbar.fixed-top.scrolled {
    background-color: var(--color-blanco);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.05); 
}

/* Footer */

footer{
    background-color: var(--color-gris-100);
    font-size: var(--font-size-sm);
    color: var(--color-blanco);
    padding: 7rem 0;
}

footer h4{
    margin-bottom: 1.5rem;
}

footer ul{
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul li{
    display: block;
    position: relative;
    padding-left: 1rem;
    margin-bottom: .5rem;
}

footer ul li::before{
    display: block;
    content: '\e90e';
    position: absolute;
    font-family: var(--font-family-icomoon);
    font-size: .35rem;
    color: var(--color-magenta);
    top: .55rem;
    left: 0;
}

footer ul li a{
    color: var(--color-blanco);
    text-decoration: none;
}

footer ul li a:hover{
    text-decoration: underline;
    color: var(--color-blanco);
    font-weight: 500;
}

footer .copy{
    padding-right: 100px;
}

footer .copy, footer .copy a, footer .copy a:hover{
    color: var(--color-gris-500);
}

footer .copy a{
    text-decoration: underline;
}

footer .copy img{
    max-height: 44px;
    float: left;
    margin-right: 1rem;
}



/* Slider */

.carousel-custom{
    /*background: linear-gradient(180deg, #e5e5e5, #ffffff);*/
    height: 85vh;
    /*
    min-height: 960px;
    max-height: 960px;
    */
}

.carousel-custom .carousel-indicators{
    bottom: 22.5vh;
    align-items: center;
}

.carousel-custom .carousel-indicators li {
    width: 16px;
    height: 8px;
    margin-right: 5px;
    margin-left: 5px;
    background-color: var(--color-negro);
    border-radius: 360px !important;
    border-top: unset;
    border-bottom: unset;
    opacity: 1;
    background-color: var(--color-negro);
}

.carousel-custom .carousel-indicators .active {
    height: 16px;
    background-color: var(--color-magenta);
}

.carousel-custom .carousel-inner{
    height: 100%;
}

.carousel-custom .carousel-item{
    height: 100%;
    background: linear-gradient(0deg, white, transparent);
    background-size: 100% 125%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.carousel-custom .carousel-item .carousel-item-content{
    background-repeat: no-repeat;
    height: 100%;
}

.carousel-custom .carousel-item:nth-child(1) .carousel-item-content{
    background-position: calc(50% + 360px) 14vh;
    background-size: auto 45%;
}

.carousel-custom .carousel-item:nth-child(2) .carousel-item-content{
    background-position: calc(50% + 360px) 12vh;
    background-size: auto 47.5%;
}

.carousel-custom .carousel-item:nth-child(3) .carousel-item-content{
    background-position: calc(50% + 360px) 11vh;
    background-size: auto 52.5%;
}

.carousel-custom .carousel-item .carousel-item-content .container{
    margin-top: -15.5vh;
}

.carousel-custom .carousel-item .carousel-item-content .carousel-item-content-resplandor-izq{
    height: 100%;
    /*background: linear-gradient(90deg, white, transparent);*/
    background-size: 10% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position: 0;
}

.carousel-custom .carousel-item .carousel-item-content .carousel-item-content-resplandor-der{
    height: 100%;
    /*background: linear-gradient(-90deg, white, transparent);*/
    background-size: 10% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-position: right;
}

.carousel-custom .carousel-item .carousel-item-content h1{
    color: var(--color-negro);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
}

.carousel-custom-style-2, .carousel-custom-style-3{
    height: 70vh;
    background-image: url(../images/kopernicus-background.png);
    min-height: 860px;
    max-height: 860px;
}

.carousel-custom-style-2 .carousel-item-content-resplandor-izq, .carousel-custom-style-2 .carousel-item-content-resplandor-der, 
.carousel-custom-style-3 .carousel-item-content-resplandor-izq, .carousel-custom-style-3 .carousel-item-content-resplandor-der{
    background: unset !important;
}

.carousel-custom-style-2 .carousel-item .container .row, .carousel-custom-style-3 .carousel-item .container .row{
    background-color: rgba(255, 255, 255, .75);
    border-radius: 30px;
    padding: 30px 30px 50px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
}

.carousel-custom-style-2 .carousel-item .container .row img{
    position: absolute;
    width: 100%;
    max-width: 680px;
    top: -45%;
    right: 0;
}

.carousel-custom-style-2 h1{
    display: flex;
    align-items: center;
    color: var(--color-negro);
}

.carousel-custom-style-2 h1 i{
    color: var(--color-blanco);
    background-color: var(--color-magenta);
    border-radius: 12px;
    padding: .75rem;
    float: left;
    margin-right: 1rem;
}

.carousel-custom-style-2 .carousel-item .container .row .btn-float-h50{
    bottom: -80px;
}

.carousel-custom-style-3 h1{
    display: flex;
    align-items: center;
    color: var(--color-negro);
}

.carousel-custom-style-3 h1 i{
    color: var(--color-magenta);
    float: left;
    margin-right: 1rem;
}

.carousel-custom-style-3 .carousel-item .container .row .btn-float-h50{
    bottom: -50px;
}

.carousel-custom-style-3 .carousel-item .container .row img{
    position: absolute;
    width: 100%;
    top: -15%;
    left: 50%;
    margin-left: -145px;
}

.carousel-custom-style-3 .carousel-item .carousel-item-content .row .col-left{
    padding-right: 15% !important;
}

.carousel-custom-style-3 .carousel-item .carousel-item-content .row .col-right{
    padding-left: 15% !important;
}

/* Fuerza que el slide anterior desaparezca antes de que el nuevo aparezca */
.carousel-fade .carousel-item.active.carousel-item-left,
.carousel-fade .carousel-item.active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}



@media (max-height: 1080px) {

    .carousel-custom .carousel-item:nth-child(1) .carousel-item-content{
        background-position: calc(50% + 360px) 14vh;
        background-size: auto 45%;
    }
    
    .carousel-custom .carousel-item:nth-child(2) .carousel-item-content{
        background-position: calc(50% + 360px) 12vh;
        background-size: auto 47.5%;
    }
    
    .carousel-custom .carousel-item:nth-child(3) .carousel-item-content{
        background-position: calc(50% + 360px) 11vh;
        background-size: auto 52.5%;
    }
}


/* Slider */

.slider-bck{
    height: 100%;
    background: linear-gradient(0deg, white, transparent);
    background-size: 100% 75%;
    background-repeat: no-repeat;
    background-position: bottom;
}

.brand-carousel img {
    max-width: 263px; /* Ancho máximo */
    max-height: 118px; /* Alto máximo */
    height: auto; /* Mantiene la proporción */
    margin: 0 auto; /* Centra la imagen */
}

.service-carousel{
    width: 340px !important;
    /*background-color: black;*/
    margin: 0 auto;
}

.service-carousel .owl-stage{
    padding: 10px 0;
    margin-bottom: -5px;
}

/* Card */

.card{
    border: 2px solid var(--color-magenta);
    border-radius: 24px;
    color: var(--color-negro);
    text-decoration: none;
}

.card .card-body p{
    margin-bottom: 0;
    line-height: 1.25rem;
}

.card .card-body .card-title{
    margin-top: .25rem;
}

.card .card-body i.card-icon{
    font-size: 3rem;
    color: var(--color-magenta);
    padding-bottom: 5rem;
}

.card .card-body .card-link{
    display: inline-block;
    font-size: 1.5rem;
    color: var(--color-magenta);
    transition: transform 0.3s ease;
    float: right;
}

a.card{
    transition: transform 0.2s ease-in-out;
}

a.card:hover{
    cursor: pointer;
    text-decoration: none;
    transform: scale(1.05);
    background-color: var(--color-magenta);
}

a.card:hover, a.card:hover i.card-icon, a.card:hover .card-link{
    color: var(--color-blanco);
}

a.card:hover .card-body .card-link{
    transform: translateX(15px);
}

/*banners*/
.linea-servicios{
    background-color: var(--color-gris-900);
}

.linea-servicios .cinta{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
}

.linea-servicios .personaje{
    position: absolute;
    bottom: -22px;
    right: 8%;
}

.linea-servicios .servicios{
    /*padding: 30px 0 35px;*/
}

.linea-servicios .servicios a{
    display: inline-flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 5px;
    font-size: 1.75rem;
    color: var(--color-blanco);
    border-radius: 8px;
    background-color: var(--color-magenta);
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.linea-servicios .servicios a:hover{
    color: var(--color-blanco);
    text-decoration: none;
    transform: scale(1.1);
}

/* Listas */
.lista-custom-1 {
    list-style: none; /* Quitamos los bullets originales */
    padding-left: 0;
}

.lista-custom-1 li {
    position: relative;
    padding-left: 1.5em; /* Espacio para el ícono */
    margin-bottom: .5rem;
}

.lista-custom-1 li::before {
    content: '\e907'; /* Código unicode del ícono */
    font-family: var(--font-family-icomoon); /* Nombre de la fuente */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.05em;
    color: var(--color-magenta); /* o el color que quieras */
}

.lista-custom-2 {
    list-style: none; /* Quitamos los bullets originales */
    padding-left: 0;
}

.lista-custom-2 li {
    position: relative;
    padding-left: 1.5em; /* Espacio para el ícono */
    margin-bottom: .5rem;
}

.lista-custom-2 li::before {
    content: '\e90e'; /* Código unicode del ícono */
    font-family: var(--font-family-icomoon); /* Nombre de la fuente */
    position: absolute;
    left: 0;
    top: .45rem;
    font-size: .45em;
    color: var(--color-magenta); /* o el color que quieras */
}

/* Animaciones*/

.floating-img {
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}
  
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Profile */
.profile-card {
    text-align: center;
    margin-bottom: 30px;
}

.profile-img {
    width: 100%;
    max-width: 260px;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
}

.social-icons a{
    display: inline-block;
    color: var(--color-negro);
    font-size: 2.5rem;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
}

.social-icons a:hover{
    color: var(--color-magenta);
    text-decoration: none;
    transform: scale(1.1);
}

/* modal */
.modal-custom button.close{
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--color-negro);
    opacity: 1;
    color: var(--color-blanco);
    border-radius: 12px;
    font-size: 1rem;
    top: -35px;
    right: -35px;
    transition: transform 0.2s ease-in-out;
}

.modal-custom button.close:not(:disabled):not(.disabled):focus, .modal-custom button.close:not(:disabled):not(.disabled):hover {
    background-color: var(--color-magenta) !important;
    transform: scale(1.1);
    opacity: 1 !important;
}

.modal-custom .modal-content {
    background-color: var(--color-blanco);
    border: 2px solid var(--color-gris-600);
    border-radius: 24px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85vh;
    object-fit: cover;
    filter: grayscale(75%);
    z-index: -1;
    background-color: var(--color-blanco);
}


@media (max-width: 1091px) {
    .carousel-custom-style-3 .carousel-item .container .row img {
        top: -10% !important;
    }
}

@media (max-width: 991px) {

    .navbar-collapse{
        padding-top: 30px;
    }

    .navbar.fixed-top{
        background: var(--color-blanco);
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding: 15px 30px 30px;
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1); 
    }

    .nav-item {
        margin-left: 0;
        border-bottom: 1px solid var(--color-gris-800);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: 1px solid var(--color-blanco);
    }

    .nav-item a:hover {
        position: relative;
        border-bottom: 1px solid var(--color-magenta);
    }

    .nav-item a::before {
        left: unset;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        bottom: unset;
    }

    .nav-link {
        padding: .75rem 1rem;
    }

    .carousel-custom-style-2 .carousel-item .container .row img {
        width: 120%;
        top: -25%;
        left: 1.5%;
    }
}

@media (min-width: 768px) {
    .container-princ{
        margin-top: -22vh !important;
    }

    .container-princ-style3{
        margin-top: -27vh !important;
    }

    .container-princ {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {

    #kps-background{
        position: relative;
    }

    .video-background{
        height: 100%;
    }

    .carousel-custom-style-3 .carousel-item .carousel-item-content .row .col-left{
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .carousel-custom-style-3 .carousel-item .carousel-item-content .row .col-right{
        padding-left: unset !important;
    }

    .carousel-custom-style-2 .carousel-item .container .row, .carousel-custom-style-3 .carousel-item .container .row{
        text-align: center;
    }

    .carousel-custom-style-3 .carousel-item .container .row {
        padding: 80px 30px 50px;
    }

    .carousel-custom-style-3 h1, .carousel-custom-style-2 h1{
        display: unset;
    }

    .carousel-custom-style-2 h1 i {
        float: unset;
        margin-right: unset;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -70px;
    }

    .carousel-custom-style-2, .carousel-custom-style-3 {
        min-height: unset;
        max-height: unset;
    }

    .carousel-custom-style-2 .carousel-item .container .row img {
        position: unset;
        width: 200%;
        max-width: 100%;
        margin-left: -10%;
        margin-top: -350px;
        margin-bottom: 0px;
    }

    .carousel-custom-style-3 .carousel-item .container .row img {
        position: unset;
        width: 200%;
        max-width: 80%;
        margin-left: unset;
        margin-top: -20vh;
        margin-bottom: 0px;
    }

    .carousel-custom {
        height: unset;
    }

    #kps-background .carousel-custom {
        height: 100%;
    }

    h1{
        font-size: 2rem;
    }

    .carousel-custom-style-3 h1 i{
        display: none;
    }

    h2{
        font-size: 1.5rem;
    }

    h3{
        font-size: 1.25rem;
    }

    #kps-background .carousel-custom .carousel-item .col-12{
        text-align: center;
    }

    #kps-background .carousel-custom .carousel-item .carousel-item-content .container {
        margin-top: 30vh;
    }

    #kps-background .carousel-custom .carousel-item:nth-child(1) .carousel-item-content {
        background-position: center 14vh;
        background-size: auto 40%;
    }

    #kps-background .carousel-custom .carousel-item:nth-child(2) .carousel-item-content {
        background-position: center 12vh;
        background-size: auto 40%;
    }

    #kps-background .carousel-custom .carousel-item:nth-child(3) .carousel-item-content {
        background-position: center 11vh;
        background-size: auto 40%;
    }

    #kps-background .carousel-custom .carousel-item .carousel-item-content .container {
        padding: 0 15px; 
    }

    .carousel-custom-style-2 .carousel-item .carousel-item-content .container {
        margin-top: 325px;
        padding: 0 50px 85px;
    }

    .carousel-custom-style-3 .carousel-item .carousel-item-content .container {
        margin-top: 150px;
        padding: 0 50px 85px;
    }

    .carousel-item-content-resplandor-der .container .row{
        margin-top: 12vh;
    }

    .carousel-item-content-resplandor-der .container .row .order-1{
        padding: 0;
        text-align: center;
    }

    .carousel-custom .carousel-indicators {
        bottom: 0;
    }

    .container-princ {
        margin-top: 0;
        padding: 0 40px;
    }

    .container-princ-style3 {
        margin-top: -80px;
        padding: 0 40px;
    }

    .carousel-custom-style-3 .carousel-item .container .row .btn-float-h50 {
        bottom: -35px;
    }

    footer{
        padding: 70px 20px;
    }

    footer .container .row .col-12{
        padding-top: 20px;
    }

    .modal-dialog {
        margin: 2rem;
    }

    .modal-content .modal-body .d-inline-flex{
        flex-direction: column;
    }

    .modal-content .modal-body .d-inline-flex .profile-img{
        margin: 0 0 30px;
    }

    .modal-content .modal-body h3, .modal-content .modal-body h5, .modal-content .modal-body .social-icons{
        text-align: center;
    }

}

@media (max-width: 708px) {
    .linea-servicios .personaje{
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .modal-dialog {
        max-width: 90%;
    }
}

@media (max-width: 575px) {
    
    .carousel-custom-style-2 .carousel-item .container .row img {
        max-width: 115%;
    }

    .carousel-item-content-resplandor-der .container .row {
        margin-top: 10vh;
    }

    #kps-background .carousel-custom .carousel-item:nth-child(1) .carousel-item-content {
        background-position: center 16vh;
        background-size: auto 30%;
    }

    #kps-background .carousel-custom .carousel-item:nth-child(2) .carousel-item-content {
        background-position: center 15vh;
        background-size: auto 35%;
    }

    #kps-background .carousel-custom .carousel-item:nth-child(3) .carousel-item-content {
        background-position: center 14vh;
        background-size: auto 35%;
    }

    .container-princ {
        margin-top: -90px;
    }
}

@media (max-width: 430px) {
    .navbar .logo{
        margin: 0 auto;
    }
}

@media (max-height: 932px) {
    #kps-background {
        height: 100vh;
    }

    #kps-background .carousel-custom {
        height: 100%;
    }

    .video-background {
        height: 100vh;
    }

    .container-princ {
        margin-top: 0px;
    }
}

@media (min-height: 933px) {
    #kps-background {
        height: 85vh;
    }

    #kps-background .carousel-custom {
        height: 100%;
    }

    .video-background {
        height: 85vh;
    }

    .container-princ {
        margin-top: 0px;
    }
}

@media (max-width: 767px) {
    div.flyer-h{
        display: none;
    }
    div.flyer-v{
        display: block;
    }
    img.evento{
        margin-top: -5rem;
    }
}

@media (min-width: 768px) {
    div.flyer-h{
        display: block;
    }
    div.flyer-v{
        display: none;
    }
    img.evento{
        margin-top: -60rem;
        position: relative;
        z-index: 1;
    }
}
