body {
    font-family: 'Figtree' !important;
    margin: 0 !important;
    background-image: url('../img/BK-escritorio.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    /* #DEE9FA */
    /*color azul de OpenHouse segun gráfica de Jonathan #1a88f8 */
}

@media (max-width: 992px) {
    body {
        background-image: url('../img/BK-movil.jpg');
    }
}

/* Color azul para titulos -------- #062347 */
/* Color amarillo para fondos ----- #FFDB00 */

.row {
    --bs-gutter-x: unset !important;
}

@font-face {
    font-family: 'DIN';
    font-weight: bold;
    src: url("../fonts/DIN_Bold.otf") format("opentype");
}

@font-face {
    font-family: 'DIN bold';
    font-weight: bolder;
    src: url("../fonts/DINCond-Black-Regular.otf");
}

@font-face {
    font-family: 'DIN bolder';
    font-weight: bolder;
    src: url("../fonts/D-DINCondensed-Bold.otf");
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DIN bolder', serif !important;
}

.simpleTitle {
    color: white;
    text-align: center;
}

.campusFlexContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sectionTitle {
    position: relative;
    background-color: #FFDB00;
    color: #062347;
    padding: 5px 10px;
    justify-self: center;
    border: 1px solid #062347;
    border-radius: 5px;
    user-select: none;
}

.sectionTitleHour {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 170px;
    gap: 20px;
}

.titleHourText {
    background-color: #FFDB00;
    color: #062347;
    padding: 2px 10px;
    border-radius: 5px;
    border: 1px solid #062347;
    user-select: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.titleHourText:hover {
    background-color: #062347;
    color: #FFDB00;
    border: 1px solid #FFDB00;
}

.titleHourText svg {
    width: 25px;
    margin-left: 5px;
}

.titleHourText svg path {
    fill: #062347;
    stroke: #062347;
}

.titleHourText:hover>svg path {
    fill: #FFDB00;
    stroke: #FFDB00;
}

.simpleHourText {
    color: white;
}

.textSection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hourContainer {
    text-align: center;
    width: 200px;
}

.hourContainer svg {
    width: 115%;
}

.sectionTitleHour .hourContainer svg path {
    fill: white;
    stroke: white;
}

.sectionTitle:hover>svg path {
    fill: #FFDB00;
    stroke: #FFDB00;
}

.sectionTitle:hover {
    background-color: #062347;
    color: #FFDB00;
    border: 1px solid #FFDB00;
}

.campusSoya .simpleTitle svg path {
    fill: white;
    stroke: white;
}

.sectionTitle:hover>svg path {
    stroke: #FFDB00;
    fill: #FFDB00;
}

.sectionTitle svg path,
.simpleTitle svg path {
    stroke: #062347;
    fill: #062347;
}

.sectionTitle svg,
.simpleTitle svg {
    width: 25px;
    margin-right: 5px;
    padding-bottom: 5px;
}

.floatingImage img {
    width: 400px;
}

.floatingArrow img {
    width: 100px;
}


/* ==================== */
/*    MENU SUPERIOR     */
/* ==================== */

.global-header {
    margin-top: 1%;
}

.header-content {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 10px 16px;
    justify-content: space-between;
    position: relative;
}

.header-logo {
    height: 85px;
    width: auto;
}



nav.menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    top: 100%;
    right: 3.2%;
    max-height: 0;
    width: 0%;
    background-color: #062347;
    border: 1px solid #FFDB00;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding-top: 0;
    transition: max-height 0.4s ease-in-out, width 0.4s ease-in-out;
    z-index: 1000;
    visibility: hidden;
}

nav.menu.active {
    max-height: 500px;
    padding-top: 10px;
    width: 25%;
    visibility: visible;

}

nav.menu a.menu-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 35px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    width: 100%;
    border-radius: 4px;
    transition: background-color 0.3s;
    user-select: none;
}

nav.menu a.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Botón hamburguesa - separado del nav */
.menu-toggle {
    display: block;
    color: #FFDB00;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
}

.menu-toggle i {
    font-size: 50px;
}

/* Menu responsive */
@media (max-width: 768px) {

    .header-content {
        justify-content: space-between;
        max-width: 100%;
    }

    nav.menu {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        max-height: 0;
        width: 100%;
        background-color: #274292;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        padding-top: 0;
        transition: max-height 0.4s ease;
        z-index: 1000;

    }

    nav.menu.active {
        max-height: 500px;
        padding-top: 10px;
        width: 100%;
    }

    nav.menu a.menu-item {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    nav.menu a.menu-item:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
    }

    .header-logo {
        height: 70px;
    }

    .menu-toggle i {
        font-size: 40px;
    }
}


/* ==================== */
/*  FIN MENU SUPERIOR   */
/* ==================== */


/*------------------------------------------------------------------------- */


/* ==================== */
/*   Botón Scroll up    */
/* ==================== */

.ScrollUpbtn {
    display: none;
}

.ScrollUpbtn {

    background-color: #2FACE3;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 7vh;
    right: 15px;
    transition: background-color .3s;
    z-index: 1000;

}

.ScrollUpbtn::after {
    content: "\2191";
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

.ScrollUpbtn:hover {
    cursor: pointer;
    background-color: #333;
}

.show_on {
    display: inline-block;
}

.show_off {
    display: none;
}

/* ==================== */
/* Fin Botón Scroll up  */
/* ==================== */


/*------------------------------------------------------------------------- */


/* ==================== */
/*      Sección 1       */
/* ==================== */

.seccion1 {
    display: flex;
    justify-content: center;
    padding: 0% 0px 1% 0px;
    position: relative;
}

.banner img {
    max-width: 100%;
}

.btnRegistrar {
    position: absolute;
    top: 5px;
    right: 11vw;
    animation: destacar 1.2s ease-in-out infinite;
}

@keyframes destacar {
    from {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    to {
        transform: scale(1);
    }
}

.btnRegistrar a {
    padding: 10px 15px;
    background-color: #FFDB00;
    text-decoration: none;
    color: #062347;
    border-radius: 50%;
    font-family: DIN;
}


.floatingTitle {
    position: absolute;
    text-align: left;
    top: 250px;
    right: 9vw;
    color: white;
    display: none;
}

.floatingIcon {
    width: 75px;
    height: auto;
}

.ondulado1 {
    position: absolute;
    bottom: 0;
    left: 19.5%;
    transform: rotate(10deg);
}

.ondulado2 {
    position: absolute;
    top: 100px;
    right: 20%;
    transform: rotate(-30deg);
}



@media (max-width: 992px) {
    .floatingTitle {
        display: none;
    }

    .seccion1 {
        padding: 9% 0px 5% 0px;
    }

    .ondulado1 {
        left: 0.5%;
    }

    .ondulado2 {
        top: 116px;
        right: 0;
    }

    .btnRegistrar {
        top: 5px;
        right: 11vw;
    }

    .btnRegistrar a {
        padding: 10px 6px;
        background-color: #FFDB00;
        text-decoration: none;
        color: #062347;
        border-radius: 50%;
        font-family: DIN;
        font-size: 14px;
    }

}

@media (max-width: 515px) {
    .seccion1 {
        padding: 9% 0px 7% 0px;
    }
}


/* ==================== */
/*     FIN Sección 1    */
/* ==================== */


/*------------------------------------------------------------------------- */

/* ==================== */
/*    Sección Agenda    */
/* ==================== */

.flechaContainer {
    position: relative;
}

.formaLateral {
    position: absolute;
    top: 15%;
    left: 0;
    width: 11vw;
}


.seccionAgenda {
    position: relative;

}

.agenda {
    margin-top: 110px;
}

.absoluteImage1,
.absoluteImage2,
.absoluteImage3 {
    z-index: 10;
}

.absoluteImage1 {
    position: absolute;
    top: 0;
    left: 0%;
}

.absoluteImage2 {
    position: absolute;
    top: 0;
    right: 0%;
}

.absoluteImage3 {
    position: absolute;
    top: -40%;
    right: -3%;
}

.agenda fieldset {
    border: 1px solid #FFDB00;
    color: white;
    padding: 10px;
    border-radius: 5px;
    width: 50%;
    margin: 0 auto;
}

.agenda fieldset legend {
    background-color: #062347;
    color: white;
    padding: 10px 15px 0px 15px;
    text-align: center;
    font-family: 'DIN bolder', serif;
    border: 1px solid #FFDB00;
    border-radius: 5px;
    float: unset;
    width: fit-content;
    margin: 0 auto;
    transform: rotate(-2.5deg);
}

.bloqueDia legend h3 {
    margin-bottom: 0px;
}

.agenda fieldset legend img {
    width: 25px;
    margin-right: 5px;
    padding-bottom: 5px;
}

.agenda fieldset ul {
    justify-items: center;
    margin: 3% 0px;
    padding: 2% 0px;
}

.agenda fieldset p {
    text-align: center;
    font-family: 'Figtree';
    font-size: 18px;
    margin: 10px 0px;
}

.agenda fieldset ul li {
    text-align: center;
    font-family: DIN;
}

.agenda fieldset ul li::marker {
    color: #FFDB00;
    border: 5px solid black
}

.relativeImagesContainer {
    display: none;
}

@media (max-width: 1200px) {

    .absoluteImage1,
    .absoluteImage2,
    .absoluteImage3 {
        display: none;
    }

    .agenda fieldset {
        width: 100%;
    }

    .agenda {
        margin-top: 30px;
    }

    .formaLateral {
        display: none;
    }

    .relativeImagesContainer {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .relativeImagesContainer img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 991px) {
    .agenda fieldset ul {
        margin: 15px;
        padding: unset;
    }

    .agenda fieldset p {
        margin: 0px 0px;
    }
}


/* ==================== */
/*  FIN Sección Agenda  */
/* ==================== */

/*------------------------------------------------------------------------- */

/* ==================== */
/*      Sección 2       */
/* ==================== */
.seccion2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.proximoOH {
    width: 29%;
    text-align: center;
    align-content: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.proximoOH h3 {
    color: white;
}

.coverTimer {
    border: 1px solid #FFDB00;
    border-radius: 5px;
}

.coverTimer legend {
    background-color: #FFDB00;
    color: #062347;
    padding: 5px 16px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid black;
    float: unset;
    width: auto;
    margin: 0 auto;
}

.coverTimer legend h3{
    margin-bottom: 0;
}

.coverTimer legend:hover {
    background-color: #062347;
    color: #FFDB00;
    border: 1px solid #FFDB00;
}

.proximoOH h2 {
    background-color: #FFDB00;
    color: #062347;
    border: 1px solid #062347;
    border-radius: 5px;
    padding: 15px;
}

.proximoOH h2:hover {
    background-color: #062347;
    color: #FFDB00;
    border: 1px solid #FFDB00;
}

.timer {
    align-content: center;
    text-align: center;
    height: 100%;
}

.timer .syotimer-cell {
    margin: 0px 20px;
    display: inline-block;
}

.timer .syotimer-cell {
    min-width: 80px;
    font-family: DIN;
    text-align: center;
    position: relative;
    font-weight: bold;
    color: white;
    background-color: #062347;
    /* border: 2px solid #274292; */
    margin-bottom: 8px;
    border-radius: 10%;
    box-shadow: 3.5px 6.062px 0px 0px rgba(0, 0, 0, 0.1);
}

.timer .syotimer-cell .syotimer-cell__value {
    font-size: 35px;
}

.timer .syotimer-cell .syotimer-cell__unit {
    text-align: center;
}

@media screen and (max-width: 991px){
    .sectionTitleHour {
        gap: 0;
    }
}

@media screen and (max-width: 930px) {
    .proximoOH {
        width: 100%;
    }
}

/* ==================== */
/*     FIN Sección 2    */
/* ==================== */


/*------------------------------------------------------------------------- */


/* ==================== */
/*      Sección 3       */
/* ==================== */
.seccion3 {
    overflow: hidden;
    background-image: url('../img/udb-de-fondo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 1%;
}

.seccion3 .floatingImage img {
    width: 350px;
}

.seccion3 .absoluteImage3 {
    right: 0%;
}

.fecha {
    /*flex: 0 0 50%;  grow shrink basis */
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    border-radius: 40px;
    padding: 5px;
    width: 450px;
}

.fecha .contenedorFlechacorta {
    display: none;
}

.campusSoya {
    text-align: center;
}

.responsiveContainer {
    position: relative;
}

.responsiveContainer .responsiveImage {
    display: none;
}

.soya-group,
.ac-group {
    display: inline-block;
}

.campusSoya h2,
.campusAC h2 {
    position: relative;
    
}

.flechacurva1 {
    position: absolute;
    left: 18%;
    bottom: -19px;
}

.campusAC {
    text-align: center;
    margin-bottom: 5%;
    position: relative;
}

.oneColumn {
    display: flex;
    justify-content: center;
}

.twoColumn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

/* .bloqueDia {
    display: flex;
    flex-direction: row;
    place-items: center;
    justify-content: space-evenly;
} */

.bloqueDia {
    border: 1px solid #FFDB00;
    background-color: #062347;
    border-radius: 10px;
    width: 320px;
}

.bloqueDia legend {
    background-color: #062347;
    color: #FFDB00;
    padding: 5px 16px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #FFDB00;
    float: unset;
    width: auto;
    margin: 0 auto;
    transform: rotate(-2.5deg);
}

.bloqueDia legend:hover {
    background-color: #FFDB00;
    color: #062347;
    border: 1px solid #062347;
}

.icon {
    font-size: 65px;
    width: 35%;
    text-align: center;
}

.day {
    width: 65%;
    text-align: center;
}

.bloqueTitulo {
    place-content: center;
    text-align: center;
    height: 100%;
    color: white;
    padding: 0px 15px;
}

@media (max-width: 991px) {

    .seccion3 {
        margin-top: 5%;
    }

    .flechacurva1 {
        display: none;
    }

    .responsiveContainer {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }

    .responsiveContainer .responsiveImage {
        display: block;
    }

    .responsiveImage img {
        max-width: 100%;
        height: auto;
    }

    .fecha fieldset {
        position: relative;
    }

    .fecha .contenedorFlechacorta {
        display: block;
        position: absolute;
        left: 0;
        bottom: -30px;
    }

    .fecha .contenedorFlechacorta img {
        width: 30px;
        transform: rotate(60deg);
    }
}

/* ==================== */
/*     FIN Sección 3    */
/* ==================== */


/*------------------------------------------------------------------------- */

/* ==================== */
/*      Sección 4       */
/* ==================== */

.seccion4 {
    margin-bottom: 3%;
    position: relative;
}

.formaLateralInveresa {
    position: absolute;
    top: 20%;
    right: 0;
    width: 11vw;
    transform: rotateY(180deg);
}

.ondulado3 {
    position: absolute;
    top: 5%;
    left: 0%;
    transform: rotate(15deg);
}

.ondulado4 {
    position: absolute;
    top: 5%;
    right: 0%;
    transform: rotate(-45deg);
}

.error-list {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    text-align: justify;
    padding-top: 1em;
    border-radius: 5px;
    display: none;
}

.optionsMenu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
    column-gap: 8%;
    row-gap: 45px;
    margin-top: 5%;

}

.optionsMenu .options svg {
    width: 70px;
}

.optionsMenu .options svg path {
    fill: #FFDB00;
    stroke: #FFDB00;
}

.optionsMenu .options:hover>svg path {
    fill: #062347;
    stroke: #062347;
}

.optionsMenu .options {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #062347;
    padding: 15px;
    border: 1px solid #FFDB00;
    text-align: center;
    color: white;
    border-radius: 5px;
    width: 190px;
    height: 185px;

}

.optionsMenu .options:hover {
    background-color: #FFDB00;
    color: #062347;
    border: 1px solid #062347;
}

.optionsMenu .options img:hover {
    color: #062347;
}

.optionsMenu .options:last-child {
    background-color: unset;
    border: unset;
    text-align: left;
}

.optionsMenu .options:last-child:hover {
    transform: scale(1.1);
    transition: transform .3s ease-in-out;
    color: white
}

.OHanterior {
    padding: 25px;
    width: 100%;
    height: auto;
}

.OHcontent {
    display: flex;
    flex-direction: row;

}

.OHanterior .galeria {
    width: 70%;
    position: relative;
    height: 800px;
    display: none;
}

.OHanterior .video {
    width: 70%;
    position: relative;
    height: auto;
    display: none;
    justify-content: center;
    align-items: center;
}

.show {
    display: flex !important;
    transition: display 1s ease-in;
}

.OHanterior .video iframe {
    /* width: 70%; */
    /* height: 100%; */
    border-radius: 20px;
}

.OHanterior .changeButtons {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    position: relative;
}

.flechacurva2 {
    position: absolute;
    left: -40px;
    top: 17%;
    transform: rotate(70deg);
}

.OHanterior .changeButtons .videoButton {
    transform: rotate(-5deg);
    z-index: 1;
}

.OHanterior .changeButtons .galeriaButton {
    z-index: 2;
}

.OHanterior .changeButtons .videoButton,
.OHanterior .changeButtons .galeriaButton {
    cursor: pointer;
    width: 200px;
    height: 75px;
    background-color: #FFDB00;
    border: 1px solid #062347;
    border-radius: 5px;
    margin-top: 5px;
}

.OHanterior .changeButtons .videoButton:hover,
.OHanterior .changeButtons .galeriaButton:hover {
    background-color: #062347;
    color: #FFDB00;
    border: 1px solid #062347;
}

.OHanterior .changeButtons .changeButtonTitle:hover>svg path {
    stroke: #FFDB00;
    fill: #FFDB00;
}

.OHanterior .changeButtons .changeButtonTitle svg {
    width: 40px;
    margin-right: 5px;
    padding-bottom: 5px;
}

.OHanterior .changeButtons .changeButtonTitle svg path {
    stroke: #062347;
    fill: #062347;
}

.OHanterior .changeButtons .changeButtonTitle:hover {
    color: #FFDB00;
}

.OHanterior .changeButtons .changeButtonTitle {
    color: #062347;
    padding: 5px 10px;
    border-radius: 5px;
    width: inherit;
    height: inherit;
    text-align: center;
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
    font-size: 3.6em;
    user-select: none;
}

.seccion4 .box {
    position: absolute;
    /* width: 470px;
    height: 350px; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.seccion4 .titleContainer {
    margin: 40px auto 40px auto;
}

.seccion4 .box img {
    width: 100%;
    height: auto;
}

.seccion4 .box:hover {
    transform: scale(1.1) translateY(-10px);
    z-index: 10 !important;
}

.seccion4 .box:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 2;
}

.seccion4 .box:nth-child(2) {
    top: 25%;
    left: 15%;
    z-index: 3;
}

.seccion4 .box:nth-child(3) {
    top: 49%;
    left: 0;
    z-index: 1;
}

/* .seccion4 .on{
    display: block;
} */

.seccion4 .off {
    display: none;
}

@media (max-width: 992px) {

    .flechacurva2 {
        right: 0;
        left: unset;
        top: 0;
        transform: rotate(130deg);
    }

    .OHanterior .video {
        width: 100%;
    }

    .OHanterior .video iframe {
        /* width: 100%;
        height: 70%; */
        border-radius: 20px;
    }

    .seccion4 .box {
        /* position: relative; */
        width: 100%;
        max-width: none;
        height: auto;
        margin: 10px auto;
        /* left: auto !important;
        top: auto !important;
        transform: none !important;
        z-index: auto !important; */
        transition: box-shadow 0.3s ease;
    }

    .seccion4 .titleContainer {
        margin: 40px auto 0px auto;

    }

    .optionsMenu {
        row-gap: 20px;
    }

    .seccion4 .box:hover {
        transform: none;
        z-index: auto;
    }

    .seccion4 .box img {
        width: 100%;
        height: auto;
    }


    .OHanterior,
    .OHanterior .galeria,
    .OHanterior .changeButtons {
        height: auto;
        width: 100%;
        align-items: center;
    }

    .OHanterior .galeria {
        flex-direction: column;
        height: 130vw;
    }

    .OHcontent {
        flex-direction: column;
        align-items: center;
    }

    .seccion4 .box:nth-child(1) {
        top: 0;
        left: 0;
        z-index: 2;
    }

    .seccion4 .box:nth-child(2) {
        top: 25%;
        left: 15%;
        z-index: 3;
    }

    .seccion4 .box:nth-child(3) {
        bottom: 1%;
        left: 0;
        z-index: 1;
    }
}

@media (max-width: 469px) {
    .flechacurva2 {
        display: none;
    }
}


/* ==================== */
/*     FIN Sección 4    */
/* ==================== */


/*------------------------------------------------------------------------- */


/* ==================== */
/*      Sección 5       */
/* ==================== */

.seccion5 {
    position: relative;
}

.seccion5 h2 {
    margin-top: 5%;
    margin-bottom: 4%;
}

.flechalarga1 {
    position: absolute;
    top: 0;
    left: 22%;
}

.seccion5 div h2 {
    text-align: center;
    color: #fff;
}

.experiencias {
    position: relative;
    width: 100%;

}

.review {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: 1px solid black;
    border-radius: 5px;
    width: 90% !important;
    justify-content: flex-end;
    background-color: #062347;
}

.reviewHead {
    display: flex;
    flex-direction: row;
    padding: 20px 0px 20px 20px;
    width: 100%;
}

.reviewPhoto {
    margin: 0 auto;
    position: relative;
    width: 150px;
}

.reviewPhoto img {
    width: 150px;
    position: absolute;
    bottom: -14px;
    right: -25px;
}

.reviewInfo {
    align-content: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding-left: 0px;
}

.reviewInfo h4 {
    color: #FFDB00;
    font-family: DIN;
}

.reviewBody {
    font-size: 20px;
    padding: 0 20px 20px 20px;
    color: white;
}

.reviewBody h5 {
    text-align: center;
}

.seccion5 .swiper-wrapper {
    transition-timing-function: linear !important;
    overflow: visible;
}

.seccion5 .swiper {
    padding: 85px 0 10px 0 !important;
}

.seccion5 .swiper-slide {
    justify-items: center;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 991px) {
    .flechalarga1 {
        display: none;
    }
}

@media (max-width: 930px) {
    .experiencias {
        height: auto;
        min-height: unset;
        width: 100%;
    }
}

@media (max-width: 500px) {

    .swiper {
        padding: 81px 0 0 0 !important;
    }

    .reviewHead {
        margin-top: 50px;
        flex-direction: column;
    }

    .reviewPhoto img {
        right: 0;
    }

    .reviewInfo {
        padding-left: 0px;
        margin: 30px auto 0px auto;
    }

}


/* ==================== */
/*     FIN Sección 5    */
/* ==================== */


/*------------------------------------------------------------------------- */


/* ==================== */
/*      Sección 7       */
/* ==================== */


.seccion7 {
    margin-bottom: 5%;
    margin-top: 2%;
    position: relative;
}

.seccion7 .container {
    position: relative;
}

.ondulado5 {
    position: absolute;
    bottom: -5%;
    left: 5%;
    transform: rotate(10deg);
}

.ondulado6 {
    position: absolute;
    top: 0;
    right: 10%;
    transform: rotate(-40deg);
}

.titleContainer {
    position: relative;
    width: 75%;
    margin: 0px auto 40px auto;
    z-index: 2;
    user-select: none;
    display: flex;
    justify-content: center;
}

.titleContainer h2 {
    font-family: DIN;
    width: auto;
    color: white;
    justify-self: center;
    user-select: none;
}

.titleContainer .littleTitle {
    background-color: #FFDB00;
    color: #062347;
    padding: 0px 5px;
    border-radius: 5px;
    border: 1px solid #062347;
    user-select: none;
}

.titleContainer .littleTitle:hover {
    background-color: #062347;
    color: #FFDB00;
    border: 1px solid #FFDB00;
}

.titleContainer .floatTitle {
    position: absolute;
    left: -50px;
    top: -20px;
    user-select: none;
}

.form {
    width: 65%;
    background-color: #0623474a;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form label {
    color: white;
}

.form select{
    font-family: 'Figtree' !important;
}

.form select option{
    font-family: 'Figtree' !important;
}

.registrarme {
    position: absolute;
    right: -20px;
    bottom: -20px;
}

.registrarme input {
    font-family: DIN;
    background-color: #FFDB00;
    color: #062347;
    border-radius: 5px;
    padding: 10px 20px;
    border: 1px solid #062347;
    transition: transform 0.05s ease-in-out;
}

.registrarme input:active {
    transform: scale(0.9);
    background-color: #062347;
    color: #FFDB00;
    border: 1px solid #FFDB00;
}

.form form {
    padding: 30px;
}

.form h2 {
    text-align: center;
    width: auto;
    padding: 30px 0;
    border-radius: 10px;
    color: white;
    background-color: #062347;
}

.form-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

.form-group {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    margin-bottom: 1em;
}



@media screen and (max-width: 992px) {

    .form {
        width: 100%;
    }

    .ondulado6 {
        right: 0;
        top: 50px;
    }

    .seccion7 .titleContainer {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        width: 100%;
        align-items: center;
    }


    .seccion7 .titleContainer .floatTitle {
        position: relative;
        left: unset;
        top: unset;
        width: 45%;
    }

}

@media screen and (max-width: 521px) {

    .ondulado5,
    .ondulado6 {
        display: none;
    }
}


/* ==================== */
/*     FIN Sección 7    */
/* ==================== */


/* ==================== */
/*      Sección 8       */
/* ==================== */

.mapsContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0px;
    width: 70%;
    margin: 0 auto;
}

.address {
    width: 30%;
    background-color: #fff;
    border-right: 1pt solid #b6b6b6;
    height: auto;
}

#mapCampusSoya,
#mapCampusAC {
    display: flex;
    border-bottom: 1px solid #b6b6b6;
    cursor: pointer;
    /* flex-direction: row;
    flex-wrap: nowrap; */
}

#mapCampusSoya:hover,
#mapCampusAC:hover {
    background-color: #e4e4e4;
}

.mapsContainer .activeMap {
    background-color: #e4e4e4;
}

.activeMap .icon {
    color: #2FACE3;
    border-left: 10px solid #2FACE3;
    transition: 0.1s ease-in-out;
}

.direccion {
    margin: 15px 5px 10px 0px;
}

.mapsContainer .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    padding: 10px;
    text-align: center;
}

.map {
    width: 70%;
}

.map iframe {
    max-width: 100%;
}

@media screen and (max-width: 990px) {
    .address {
        width: 100%;
    }

    .map {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .mapsContainer {
        width: 100%;
    }
}


/* ==================== */
/*     FIN Sección 8    */
/* ==================== */

/* ------------------------------------------------- */

/* ==================== */
/*         Footer       */
/* ==================== */

footer {
    padding: 60px 0px 0px 0px;
    margin-top: 60px;
    background-color: #062347;
    border-top: 1px solid #A0A0A0;
}

.footer-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 30px 10px;
}

/********************Seccion logos***************************/
.footer-logos {
    display: flex;
    flex-direction: column;
    margin-right: 11px;
    width: 30%;
    color: white;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.footer-logos .udb-logo {
    width: 150px;
}

.footer-logos .socialmedia {
    display: flex;
    flex-direction: column;
}

.footer-logos .socialmedia .socialmediaText {
    text-align: center;
}

.footer-logos .socialmedia .social-icons img {
    width: 20px;
}

.footer-logos .whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logos .whatsapp img {
    width: 20px;
}


/**********************Seccion links************************/
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.footer-links li {
    margin-top: 25px;
}

.footer-links li a {
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    color: #A0A0A0;
}

/********************Seccion addresses*********************/
.footer-addresses {
    display: flex;
    text-align: justify;
    color: #A0A0A0;
    width: 30%;
}

.footer-addresses a {
    color: #A0A0A0;
}

@media (max-width: 992px) {

    .footer-logos {
        width: 50%;
    }

    .footer-links {
        width: 50%;
    }

    .footer-addresses {
        display: none;
    }

}

/**************** Footer segunda linea **********************/

.footer-icon-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;

}

.footer-icon-container .footer-icon {
    display: flex;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
}

.footer-icon-container .footer-icon img {
    width: 30px;
}

@media (max-width: 992px) {

    .footer-icon-container {
        display: none;
    }

}

/**************** Footer tercera linea **********************/

.footer-rights {
    background-color: #020E1C;
    padding: 25px 0px;
    text-align: center;
    width: 100%;
}

.footer-rights small {
    color: #A0A0A0;
}

/* ==================== */
/*      Fin Footer      */
/* ==================== */