/* FONTS */
@font-face {
    font-family: icons-kajuyali;
    src: url("/media/icons-kajuyali.eot?p1nhk4");
    src: url("/media/icons-kajuyali.eot?p1nhk4#iefix") format("embedded-opentype"),
        url("/media/icons-kajuyali.ttf?p1nhk4") format("truetype"),
        url("/media/icons-kajuyali.woff?p1nhk4") format("woff"),
        url("/media/icons-kajuyali.svg?p1nhk4#icons-kajuyali") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block;
    font-display: swap
}
@font-face {
    font-family: lemon-yellow;
    src: url("/media/DK Lemon Yellow Sun.otf");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}
@font-face {
    font-family: Maiandra;
    src: url("/media/Maiandra GD Regular.ttf");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Maiandra;
    src: url("/media/Maiandra GD SemiBold.ttf");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --orange: #FF8200;
    --orange-20: rgba(255, 130, 0, 0.20);
    --yellow: #FFC601;
    --green: #6BA841;
    --green-20: rgba(107, 168, 65, 0.20);
    --green-ocean: #44988D;
    --green-ocean-20: rgba(68, 152, 141, 0.20);
    --magenta: #C62270;
    --magenta-20: rgba(198, 34, 112, 0.20);
    --red: #dc3545;
    --blue-dark: #003D50;
    --blue-dark-20: rgb(0, 61, 80, 0.2);
    --purple: #6F4480;
    --purple-20: rgb(111, 68, 128, 0.2);
    --white: #FFFFFF;
    --color-black: #1F1E1E;
    --gray-light: #F8F8F8;
    --gray-medium: #979797;
    --gray-95: rgba(60, 53, 65, 0.95);
    --gray-80: #635D67;
    --gray-60: #8A868D;
    --gray-50: #9D9AA0;
    --gray-40: #B1AEB3;
    --gray-30: #C5C2C6;
    --gray-20: #e9e9e9;
    --gray-10: #f3f3f3;
    --bs-font-sans-serif: 'Work Sans', sans-serif;
    --lemon-yellow: 'lemon-yellow';
    --work-sans: 'Work Sans';
    --bebas-neue: 'Bebas Neue';
    --maiandra: 'Maiandra';
    --icons-kajuyali: 'icons-kajuyali';
    --header-height: 114px;
    --header-height-mobile: 111px;
    --scrollbar-width: 6px;
    --swiper-pagination-bullet-width: 13px;
    --swiper-pagination-bullet-height: 13px
}

.space-header {
    margin-top: var(--header-height)
}

@media(max-width: 576px) {
    .space-header {
        margin-top: var(--header-height-mobile)
    }
}

.text-elipsis-1 p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.text-elipsis-2 p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.text-elipsis-3 p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.text-elipsis-4 p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
}

.text-elipsis-5 p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
}

.text-elipsis-6 p {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 6;
}

.max-width {
    /*max-width: 1920px;*/
    /*max-width: 1440px;*/
}

img {
    max-width: 100%
}

.title-primary h1,
.title-primary h2,
.title-primary h3,
.title-primary h4,
.title-primary h5,
.title-primary h6 {
    color: var(--font-color);
    font-size: var(--font-size);
    font-weight: 700;
    margin-bottom: 0
}

.title-primary--black {
    --font-color: var(--color-black)
}

.title-primary--white {
    --font-color: var(--white)
}

.title-secondary h2,
.title-secondary h3,
.title-secondary h4,
.title-secondary p {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.3;
    color: var(--blue-dark)
}

@media(min-width: 768px) {
    .title-secondary h2,
    .title-secondary h3,
    .title-secondary h4,
    .title-secondary p {
        font-size: 38px;
        line-height: 48px
    }
}

.title-secondary--black {
    --font-color: var(--color-black)
}

.title-secondary--primary {
    --font-color: var(--blue-dark)
}

.title-secondary--white {
    --font-color: var(--white)
}

.pre-title p {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--orange);
}

.subtitle p {
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    color: #6a6a6a
}

.paragraph--black p {
    color: var(--color-black)
}

.paragraph--white p {
    color: var(--white)
}

.paragraph--blue p {
    color: var(--blue-dark)
}

.bg-orange {
    background-color: var(--orange)
}

.bg-blue-dark {
    background-color: var(--blue-dark)
}

.bg-black {
    background-color: var(--color-black)
}

.bg-gray-light {
    background-color: var(--gray-light)
}

.swiper-primary__navigation .navigation-icon span,
.pagination .navigation-icon span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: inline-block;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--color-black);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--color-black);
    font-size: 17px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.swiper-primary__navigation .navigation-icon:hover span {
    background: var(--yellow);
    border: 0 none
}

.swiper-primary__navigation .navigation-icon:active {
    opacity: .8
}

.swiper-button-lock {
    display: none !important;
}

.input-primary .input {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    width: 100%;
    border-radius: 0;
    outline: 0;
    padding: .5rem 0;
    margin-top: 5px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.input-primary label {
    color: var(--gray-60);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: text;
    position: absolute;
    top: 50%;
    padding: .5rem 0;
    display: block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.input-primary .input:focus+label,
.input-primary .input[data-empty=false]+label {
    font-size: 10px;
    top: 0;
    -webkit-transform: translate(0, -11px);
    transform: translate(0, -11px)
}

.input-primary .invalid-feedback {
    position: absolute;
    right: 0;
    text-align: end;
    bottom: -20px;
    font-size: 12px
}

.input-primary .eye {
    color: var(--gray-50);
    cursor: pointer;
    margin: 0;
    width: auto;
    position: absolute;
    top: 50%;
    right: .5rem;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.input-primary--orange {
    --accent-color: var(--orange)
}

.input-checkbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.input-checkbox-square {
    position: absolute;
    opacity: 0
}

.input-checkbox-square:checked+.input-checkbox-label::after {
    color: #fff
}

.input-checkbox-square:checked+.input-checkbox-label::before {
    opacity: 1;
    background-color: var(--blue-dark);
    border-color: transparent
}

.input-checkbox-label {
    color: #000;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    margin-left: 32px
}

.input-checkbox-label a {
    color: var(--accent-color)
}

.input-checkbox-label::after {
    content: "\e904";
    position: absolute;
    left: 4px;
    font-family: var(--icons-kajuyali);
    font-size: 8px;
    color: transparent;
    cursor: pointer;
    font-weight: 700;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.input-checkbox-label::before {
    opacity: 1;
    content: '';
    display: inline-block;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
    background: 0 0;
    border: 1px solid var(--color-black);
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.input-checkbox .invalid-feedback {
    position: absolute;
    left: 0;
    bottom: -20px
}

.input-checkbox--orange {
    --accent-color: var(--orange)
}

.textarea .input {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    width: 100%;
    border-radius: 0;
    outline: 0;
    padding: .5rem 0;
    margin-top: 5px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.textarea label {
    color: var(--gray-60);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    cursor: text;
    position: absolute;
    top: 50%;
    padding: .5rem 0;
    display: block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.textarea .input:focus {
    border-bottom: 1px solid var(--accent-color)
}

.textarea .input:focus+label,
.textarea .input[data-empty=false]+label {
    font-size: 10px;
    top: 0;
    -webkit-transform: translate(0, -11px);
    transform: translate(0, -11px)
}

.textarea .invalid-feedback {
    position: absolute;
    right: 0;
    text-align: end;
    bottom: -20px;
    font-size: 12px
}

.tag {
    padding: 5px 20px;
    border-radius: 5px;
    background-color: var(--bg-color)
}

.tag p {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0
}

.tag__0 {
    --text-color: var(--orange);
    --bg-color: var(--orange-20)
}

.tag__1 {
    --text-color: var(--green);
    --bg-color: var(--green-20)
}

.tag__2 {
    --text-color: var(--green-ocean);
    --bg-color: var(--green-ocean-20)
}

.tag__3 {
    --text-color: var(--magenta);
    --bg-color: var(--magenta-20)
}

.tag--gray {
    background-color: var(--gray)
}

.tag--red {
    background-color: var(--orange)
}

.header {
    position: fixed;
    top: 0;
    z-index: 1000
}

.header .header-prenavbar {
    height: 34px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background-color: var(--orange)
}

.header .header-content {
    background: var(--header-bg-color);
    z-index: 2;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.header .header-content .container-fluid {
    padding-top: 14px;
    padding-bottom: 13px
}

.header .navbar-collapse {
    -webkit-box-flex: unset;
    -ms-flex-positive: unset;
    flex-grow: unset
}

@media(max-width: 992px) {
    .header .navbar-collapse {
        position: absolute;
        top: var(--header-height-mobile);
        left: 0px;
        width: 100%
    }
    .header .navbar-nav {
        margin: 0 !important;
        background: #f2f2f2;
        padding: 0
    }
}

.header .navbar-toggler {
    padding: 0;
    outline: none;
    box-shadow: none
}

.header .btn {
    padding: 0
}

.header__brand-logo {
    height: 50px;
    width: 70px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

@media screen and (min-width:576px) {
    .header__brand-logo {
        height: 53px;
        width: 110px
    }
}

.header__brand-logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.header__prenav-link a {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.header__prenav-link a::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -.5em;
    left: 0;
    opacity: 0;
    -webkit-transform: translate(0, -2px);
    transform: translate(0, -2px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: var(--white)
}

/*.header__prenav-link a.active,*/
/*.header__prenav-link a:hover {*/
/*    color: var(--white)*/
/*}*/

.header__prenav-link a.active::after,
.header__prenav-link a:hover::after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1
}

.header__nav-link a {
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: 0 0;
    margin: 0;
    padding: 0;
    border: none
}

.header__nav-link a.show,
.header__nav-link a:hover,
.header__nav-link.active a {
    color: var(--yellow);
    text-decoration: none
}

.header__nav-link--cta a {
    background: #fff;
    color: var(--blue-dark) !important;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    padding: .5rem 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center
}

.header__nav-link--cta a .icon {
    font-size: 18px;
    margin-right: .5rem
}

.header__nav-link--cta a:hover {
    background-color: var(--yellow);
    color: #fff !important;
    text-decoration: none
}

.header__nav-dropdown .dropdown-toggle::after {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    content: "\e90e";
    font-family: var(--icons-kajuyali);
    font-size: 8px;
    border: none
}

.header__nav-dropdown .dropdown-toggle.show::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.header__nav-dropdown .dropdown-button {
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: 0 0;
    margin: 0;
    padding: 0;
    text-align: left;
    border: none
}

@media screen and (max-width:992px) {
    .header__nav-link--cta a {
        display: inline-flex !important;
        width: auto !important;
        padding: 0 20px;
        background: var(--blue-dark);
        color: #fff !important;
        height: 42px;
        margin: 20px 18px;
    }
    
    .header__nav-dropdown .dropdown-toggle::after {
        font-size: 10px;
    }

    .header__nav-link a,
    .header__nav-dropdown .dropdown-button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 52px;
        padding-left: 18px;
        padding-right: 30px
    }
    .header__nav-dropdown .dropdown-button.show {
        height: 68px;
        background: var(--blue-dark);
        color: #fff;
        text-decoration: none
    }
}

@media screen and (min-width:992px) {
    .header__nav-link a,
    .header__nav-dropdown .dropdown-button {
        color: var(--white);
        font-size: 16px
    }
}

.header__nav-dropdown .dropdown-button.show,
.header__nav-dropdown .dropdown-button:hover {
    color: var(--yellow);
    text-decoration: none
}

@media (max-width:992px) {
    .header__nav-dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        padding: 0;
        background: transparent;
        border: 0 none
    }
    .header__nav-dropdown .dropdown-button.show,
    .header__nav-link a.show, .header__nav-link a:hover, .header__nav-link.active a {
        color: var(--yellow);
    }
    .header__nav-dropdown .dropdown-menu-link .icon {
        display: none
    }
}

@media screen and (min-width:992px) {
    .header__nav-dropdown .dropdown-menu {
        -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
        border-top: 5px solid var(--yellow);
        margin-top: 25px !important;
        margin-bottom: 1rem !important;
        position: absolute !important;
        min-width: 21rem
    }
}

.header__nav-dropdown .dropdown-menu-link {
    color: var(--color-black)
}

.header__nav-dropdown .dropdown-menu-link a {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: inherit;
    text-decoration: none;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center
}

@media screen and (max-width:992px) {
    .header__nav-dropdown .dropdown-menu-link {
        margin: 0 !important
    }
    .header__nav-dropdown .dropdown-menu-link a {
        padding: 10px 18px;
        font-weight: 400;
        color: var(--blue-dark)
    }
}

.header__nav-dropdown .dropdown-menu-link a:hover {
    color: var(--orange)
}

.header__nav-dropdown .dropdown-menu-link .icon {
    font-size: 18px;
    color: inherit;
    padding-right: .8rem
}

.header__nav-dropdown .dropdown-menu-link .sublink {
    margin-left: 2rem;
    font-size: 12px;
    color: var(--gray-50);
    margin-top: .4rem
}

@media screen and (min-width:768px) {
    .header__nav-dropdown .dropdown-menu-link .sublink {
        font-size: 16px
    }
}

.header__nav-dropdown .dropdown-menu-link .sublink:last-child {
    margin-bottom: 1rem
}

.header__nav-dropdown .dropdown-menu-link:not(:first-child) {
    margin-top: 1rem
}

.header__nav-dropdown .cta-btn {
    background: var(--cta-dropdown-bg)
}

.header__navbar-collapse {
    max-height: calc(100vh - 40px - 32px - 60px);
    overflow-y: auto
}

@media screen and (min-width:992px) {
    .header__navbar-collapse {
        overflow-y: unset
    }
}

.header__navbar-collapse::-webkit-scrollbar {
    width: 0
}

.header__icon-burguer {
    --icon-color: var(--white);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
    display: block
}

.header__icon-burguer .btn-burguer {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 20px
}

.header__icon-burguer .btn-burguer span {
    display: inline-block;
    position: absolute;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: var(--icon-color);
    height: 2px;
    border-radius: 5px;
    right: 0
}

.header__icon-burguer .btn-burguer .a {
    width: 20px;
    top: 0
}

.header__icon-burguer .btn-burguer .b {
    width: 20px;
    top: 50%
}

.header__icon-burguer .btn-burguer .c {
    width: 20px;
    top: 100%
}

.header__icon-burguer .btn-burguer.x .a {
    width: 27px;
    top: 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.header__icon-burguer .btn-burguer.x .b {
    width: 0;
    top: 50%;
    opacity: 0
}

.header__icon-burguer .btn-burguer.x .c {
    width: 27px;
    top: 50%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.header__language .dropdown-toggle::after {
    border-top-color: #fff
}

.header__language .btn p {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
    text-transform: uppercase
}

.header__language .dropdown-menu {
    min-width: 80px;
    right: 0;
    left: auto;
    border: 0 none
}

.header__language .dropdown-item {
    color: #000;
    font-weight: 300;
    margin-bottom: 0;
    text-transform: uppercase
}

.header__language a {
    display: block;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    padding: 5px 10px;
    text-decoration: none;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

@media screen and (min-width:768px) {
    .header__language a {
        font-size: 14px
    }
}

.header__language a.active,
.header__language a:hover {
    color: var(--orange)
}

.header__language:not(:last-child) {
    border-right: 1px solid var(--gray-20)
}

.header.school {
    --header-bg-color: var(--blue-dark);
    --link-hover-color: var(--orange);
    --cta-dropdown-bg: var(--blue-dark)
}

.button-primary {
    position: relative;
    width: auto;
    text-align: center;
    text-decoration: none!important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: 0;
    cursor: pointer;
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    outline: 0;
}

.button-primary p {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0;
}

.button-primary .icon {
    font-size: 10px;
    color: var(--white);
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding-left: 0.625rem;
}

.button-secondary {
    position: relative;
    width: auto;
    text-align: center;
    text-decoration: none !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    outline: 0;
    cursor: pointer;
    padding: .8rem 1.6rem;
    border-radius: 5px;
    outline: 0;
    background-color: transparent;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.button-secondary p {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 0
}

.button-secondary .icon {
    font-size: 10px;
    color: var(--white);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding-left: .625rem
}

.button-secondary:focus {
    outline: 0
}

.button-secondary:hover {
    opacity: .8
}

.button-secondary:hover .icon {
    -webkit-transform: translate(5px, 0);
    transform: translate(5px, 0)
}

.button-secondary:hover {
    background-color: var(--accent-color);
    opacity: 1
}

.link-primary {
    text-decoration: none
}

.link-primary p {
    color: var(--color);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    text-decoration: underline
}

.link-primary .icon {
    color: var(--color);
    font-size: 7px;
    line-height: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.link-primary:not(.arrow-icon) .icon {
    display: none
}

.link-primary:active,
.link-primary:focus,
.link-primary:hover {
    color: var(--color);
    opacity: .8
}

.link-primary:active .icon,
.link-primary:focus .icon,
.link-primary:hover .icon {
    -webkit-transform: translate(3px, -3px);
    transform: translate(3px, -3px)
}

.link-primary--orange {
    --color: var(--orange)
}

.link-primary--yellow {
    --color: var(--yellow)
}

/* BANNER SLIDER */
.header-photo__img {
    pointer-events: none;
    height: 400px;
    width: 100%
}

.header-photo .container {
    z-index: 2
}

@media screen and (min-width:996px) {
    .header-photo .swiper-slide .container,
    .header-photo__img {
        height: 672px;
    }
}

.header-photo__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.header-photo__pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    z-index: 2
}

.header-photo__pagination .swiper-pagination-bullet {
    background: var(--white);
    opacity: 1 !important
}

.header-photo__pagination .swiper-pagination-bullet-active {
    background: var(--orange)
}

.header-photo .wave-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 276px;
    background-image: url("data:image/svg+xml,%3Csvg width='1512' height='275' viewBox='0 0 1512 275' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-14 23.8511C-14 23.8511 391.5 -44.1006 756.5 49.387C1121.5 142.875 1512 167.112 1512 167.112V316H-14V23.8511Z' fill='%23003D50'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 0
}

.header-photo .wave-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg width='1508' height='154' class='wave' viewBox='0 0 1508 154' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M766 17.0401C655 35.2257 596 81.9889 466.5 137.412C362.904 181.749 112.352 194.277 0.0123345 195H1511C1208 154.299 1180 43.8856 1048 17.0401C916 -9.80547 877 -1.14562 766 17.0401Z' fill='%23FFC601'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
    z-index: 0
}

.header-photo__cta .button-primary {
    background: var(--yellow)
}

.header-photo__cta p, .header-photo__cta .icon {
    color: var(--blue-dark)
}

.header-photo .title-secondary h2 {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    line-height: .8;
}

.header-photo .title-secondary h2 strong {
    font-size: .7em;
    color: var(--yellow);
}

.header-photo .paragraph p {
    font-size: 28px;
    line-height: 38px;
}

/* BANNER VIDEO */
.header-video {
    background: -webkit-gradient(linear, left top, left bottom, from(var(--white)), color-stop(30%, var(--white)), color-stop(0, var(--white)), to(var(--white)));
    background: linear-gradient(var(--white) 0, var(--white) 30%, var(--white) 0, var(--white) 100%)
}

.header-video .slide-container {
    height: 66.66667vw
}

@media screen and (min-width:576px) {
    .header-video .slide-container {
        height: 50vw
    }
}

@media screen and (min-width:992px) {
    .header-video .slide-container {
        height: 41.25vw
    }
}

.header-video__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.header-video__placeholder img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.header-video__placeholder::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, #000 0, rgba(0, 0, 0, 0) 100%);
    opacity: .5
}

.header-video__video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.header-video__video iframe,
.header-video__video video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.header-video__play-btn {
    width: 45px;
    height: 45px;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    /*transform: translate(-50%, -50%);*/
    z-index: 5
}

@media screen and (min-width:576px) {
    .header-video__play-btn {
        width: 60px;
        height: 60px
    }
}

@media screen and (min-width:768px) {
    .header-video__play-btn {
        width: 70px;
        height: 70px
    }
}

.header-video__play-btn:active,
.header-video__play-btn:focus,
.header-video__play-btn:hover {
    color: var(--white)
}

.header-video__play-btn .icon {
    font-size: 14px;
    color: inherit
}

@media screen and (min-width:576px) {
    .header-video__play-btn .icon {
        font-size: 20px
    }
}

@media screen and (min-width:768px) {
    .header-video__play-btn .icon {
        font-size: 27px
    }
}

.header-video__info {
    z-index: 1
}

.header-video__info .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: 0 0;
    pointer-events: none
}

.header-video.playing .header-video__info {
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.header-video.playing .header-video__info.showing {
    opacity: 1;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.header-video.playing .header-video__info .overlay {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(transparent));
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0, transparent 100%)
}

/* ICONS */
[class*=" icon-"],
[class^=icon-] {
    font-family: icons-kajuyali !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-quote:before {
    content: "\e92d"
}

.icon-linkedin:before {
    content: "\e92b"
}

.icon-youtube:before {
    content: "\e92c"
}

.icon-kuita-solid:before {
    content: "\e925"
}

.icon-yanawara-solid:before {
    content: "\e926"
}

.icon-yanamak-solid:before {
    content: "\e927"
}

.icon-yubarka-solid:before {
    content: "\e928"
}

.icon-kiribati-solid:before {
    content: "\e929"
}

.icon-colombiaicon:before {
    content: "\e92a"
}

.icon-capacitaciones:before {
    content: "\e90c"
}

.icon-certificados:before {
    content: "\e90d"
}

.icon-chevron-down:before {
    content: "\e90e"
}

.icon-circulares:before {
    content: "\e90f"
}

.icon-como-funciona:before {
    content: "\e910"
}

.icon-equipo:before {
    content: "\e911"
}

.icon-estandares:before {
    content: "\e912"
}

.icon-faq:before {
    content: "\e913"
}

.icon-kiribati:before {
    content: "\e914"
}

.icon-kuita:before {
    content: "\e915"
}

.icon-maestros:before {
    content: "\e916"
}

.icon-map:before {
    content: "\e917"
}

.icon-mensaje:before {
    content: "\e918"
}

.icon-metodologia:before {
    content: "\e919"
}

.icon-mision:before {
    content: "\e91a"
}

.icon-testimonios:before {
    content: "\e91b"
}

.icon-valores:before {
    content: "\e91c"
}

.icon-valores-1:before {
    content: "\e91d"
}

.icon-yanamak:before {
    content: "\e91e"
}

.icon-yubarka:before {
    content: "\e91f"
}

.icon-admision:before {
    content: "\e920"
}

.icon-asesor:before {
    content: "\e921"
}

.icon-aventura:before {
    content: "\e922"
}

.icon-blog:before {
    content: "\e923"
}

.icon-calendario:before {
    content: "\e924"
}

.icon-arrow-left:before {
    content: "\e900"
}

.icon-arrow-right:before {
    content: "\e901"
}

.icon-arrow-up-right:before {
    content: "\e902"
}

.icon-calendar-plus:before {
    content: "\e903"
}

.icon-check:before {
    content: "\e904"
}

.icon-facebook:before {
    content: "\e905"
}

.icon-instagram:before {
    content: "\e906"
}

.icon-minus-circle:before {
    content: "\e907"
}

.icon-pause:before {
    content: "\e908"
}

.icon-play:before {
    content: "\e909"
}

.icon-plus-circle:before {
    content: "\e90a"
}

.icon-twitter:before {
    content: "\e90b"
}

/* MODULE NECKBAND */
.module-neckband--gray {
    background-color: var(--gray-10)
}

.module-neckband__cta .button-primary {
    background: #fff;
    border: 2px solid var(--blue-dark)
}

.module-neckband__cta .button-primary:hover {
    background: var(--blue-dark)
}

.module-neckband__cta .button-primary p,
.module-neckband__cta .button-primary .icon {
    color: var(--blue-dark)
}

.module-neckband__cta .button-primary:hover p,
.module-neckband__cta .button-primary:hover .icon {
    color: #fff
}

.module-neckband__title h2,
.module-neckband__title h3 {
    color: var(--blue-dark);
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 0
}

.module-neckband .paragraph p {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    color: var(--blue-dark)
}

@media screen and (min-width:992px) {
    .module-neckband__title h2,
    .module-neckband__title h3 {
        font-size: 30px
    }
}

/* MODULE 16 */
.module-16 {
    background: var(--blue-dark);
    font-size: 16px
}

.module-16 .title-primary {
    --font-size: 45px
}

.module-16 .col-links {
    width: 100%
}

.module-16 .col-links__texture-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    mix-blend-mode: color-dodge
}

.module-16 .col-links__texture-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.module-16 .col-links__texture-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto;
    -webkit-transform: translate(33%, 0);
    transform: translate(33%, 0);
    z-index: 2
}

.module-16 .col-links__texture-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.module-16 .swiper-info .swiper-slide {
    background: var(--blue-dark)
}

.module-16 .swiper-photo {
    height: 100%
}

.module-16__cta {
    background-color: var(--yellow);
}

.module-16__cta p,
.module-16__cta .icon {
    color: var(--blue-dark);
}

.module-16__img {
    height: 350px;
    width: 100%
}

@media screen and (min-width:1200px) {
    .module-16__img {
        height: 700px;
        border-left: 4px solid var(--yellow);
        border-right: 4px solid var(--yellow)
    }
}

.module-16__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.module-16__pagination {
    height: 75px
}

@media screen and (min-width:1200px) {
    .module-16__pagination {
        height: auto
    }
}

.module-16__pagination .swiper-pagination-bullet {
    --font-size: 45px;
    color: rgba(0, 0, 0, 0.26);
    font-size: var(--font-size);
    font-weight: 800;
    margin-bottom: 0;
    background: transparent;
    height: calc(var(--font-size) + 10px);
    width: auto;
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-bottom: none !important;
    margin: 0 !important;
    border-radius: 0;
    padding: 0 8px
}

.module-16__pagination .swiper-pagination-bullet-active {
    color: var(--yellow) !important;
    --font-size: 65px
}

.module-16__pagination .swiper-pagination-bullet:hover {
    opacity: 1
}

@media screen and (min-width:1200px) {
    .module-16__pagination .swiper-pagination-bullet {
        border-bottom: none;
        width: auto;
        height: calc(var(--font-size) + 1rem);
        --font-size: 65px;
        color: rgba(0, 0, 0, 0.26);
        padding: 0
    }

    .module-16__pagination .swiper-pagination-bullet-active {
        border-bottom: unset;
        font-weight: 700;
        --font-size: 90px
    }
}

/* MODULE 10 */
.module-10__pretitle h2 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--orange)
}

@media(max-width: 500px) {
    .module-10__pretitle h2 {
        font-size: 16px;
        line-height: 1.3;
    }
}

/* MODULE 05 */
.module-05 .swiper-primary__navigation {
    margin-top: -38px;
}

.module-05__pagination .swiper-pagination-bullet {
    background: var(--blue-dark);
    opacity: 1;
}

.module-05__pagination .swiper-pagination-bullet-active {
    background: var(--yellow);
}

.module-05 .module-05-card {
    width: 639px;
    max-width: 100%;
}

.module-05 .module-05-card__title h3 {
    color: var(--blue-dark);
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 0
}

.module-05 .module-05-card__subtitle p {
    color: var(--orange);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 26px;
}

.module-05 .module-05-card__img {
    height: 370px;
}

.module-05 .module-05-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px
}

/* MODULE 06 */
.module-06__next-events-item {
    background: #fff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.05);
    border-radius: 5px
}
.module-06__next-events-item-month-name {
    display: none;
    background: var(--blue-dark);
    overflow: hidden;
    height: 56px;
}
.module-06__next-events-item-month-name p{
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.module-06__next-events-item-month-name .col-date{
    background: transparent!important;
    /*opacity: 0.2;*/
}
.module-06__next-events-item-month-name .col-date::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    top: -50px;
    left: 0;
    background: #C7C7C7;
    opacity: 0.2;
}

.module-06__next-events-item .col-date {
    background-color: #f4f4f4;
    border-radius: 5px 0 0 5px
}

.module-06__next-events-item .col-date p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--blue-dark)
}

.module-06 .module-06__next-events-item .paragraph p {
    min-height: 0;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(0,0,0,.8);
}

.module-06 .card-event {
    border-radius: 5px;
    background-color: var(--gray-10)
}

.module-06 .card-event__img {
    position: relative;
    width: 100%;
    height: 162px;
    z-index: 0;
}

.module-06 .card-event__img img {
    border-radius: 5px;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0)
}

.module-06 .card-event__img::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--duotone-filter);
    mix-blend-mode: multiply;
    z-index: 1;
    border-radius: 5px
}

.module-06 .card-event__date .month {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transform: rotate(-90deg) translateY(8px);
    text-transform: capitalize;
}

.module-06 .card-event__date .day {
    color: var(--white);
    font-size: 78px;
    font-weight: 700;
    line-height: 24px
}

.module-06 .card-event__title h3 {
    color: var(--blue-dark);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 0
}

.module-06 .paragraph p {
    margin: 0;
    min-height: 75px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--gray-80);
}

.module-06__next-events-title h4 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    color: var(--blue-dark)
}

.module-06__cta .button-primary {
    background-color: #fff;
    border: 1px solid #fff
}

.module-06__cta .button-primary:hover {
    background-color: var(--blue-dark);
    border: 1px solid #fff
}

.module-06__cta .button-primary p,
.module-06__cta .button-primary .icon {
    font-weight: 500;
    color: var(--blue-dark)
}

.module-06__cta .button-primary:hover p,
.module-06__cta .button-primary:hover .icon {
    color: #fff
}

.module-06__next-events-item .module-06__cta .button-primary {
    background-color: var(--blue-dark);
    border: 1px solid #fff
}

.module-06__next-events-item .module-06__cta .button-primary:hover {
    background-color: var(--orange);
    border: 1px solid var(--orange);
}

.module-06__next-events-item .module-06__cta .button-primary p,
.module-06__next-events-item .module-06__cta .button-primary .icon {
    color: #fff
}

.module-06__next-events-item .module-06__cta .button-primary:hover p,
.module-06__next-events-item .module-06__cta .button-primary:hover .icon {
    color: #fff
}

.module-06 .card-next-event {
    box-shadow: 0 4px 25px rgba(0, 0, 0, .1);
    border-radius: 6px
}

.module-06 .card-next-event__icon {
    color: var(--gray-medium)
}

.module-06 .card-next-event__icon a {
    color: inherit;
    text-decoration: none
}

.module-06 .card-next-event__icon a .icon {
    color: inherit;
    font-size: 25px
}

.module-06 .card-next-event__date {
    background: var(--accent-color-opacity)
}

.module-06 .card-next-event__date p {
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0
}

.module-06 .card-event_col:nth-child(1) {
    --duotone-filter: var(--orange)
}

.module-06 .card-event_col:nth-child(2) {
    --duotone-filter: var(--blue-dark)
}

.module-06 .card-event_col:nth-child(3) {
    --duotone-filter: var(--yellow)
}

.module-06 .card-event_col:nth-child(4) {
    --duotone-filter: var(--orange)
}

.module-06__recaptcha-disclaimer {
    font-size: 12px;
}

/* MODULE 03 */
.module-03 {
    min-height: 675px;
    color: #1e1e1e
}

.module-03__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 461px;
    pointer-events: none;
    z-index: -1;
}

.module-03__bg.enable-gradient--yes::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.module-03__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-03 .swiper-wrapper {
    align-items: center
}

.module-03 .swiper-slide {
    width: auto !important
}

.module-03 .swiper-slide img {
    max-width: 260px;
    max-height: 80px;
    object-fit: contain;
}

.module-03__cta .button-primary {
    background-color: var(--orange);
    border: 1px solid var(--orange)
}

.module-03__cta .button-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark)
}

.module-03__cta .button-primary p,
.module-03__cta .button-primary .icon {
    color: #fff
}

.module-03__cta .button-primary:hover p,
.module-03__cta .button-primary:hover .icon {
    color: #fff
}

.module-03__cta .button-secondary {
    background-color: var(--yellow)
}

.module-03__cta .button-secondary:hover {
    background: var(--blue-dark)
}

.module-03__cta .button-secondary p,
.module-03__cta .button-secondary .icon {
    color: var(--blue-dark)
}

.module-03__cta .button-secondary:hover p,
.module-03__cta .button-secondary:hover .icon {
    color: #fff
}

.module-03__recaptcha-disclaimer p {
    color: var(--color-black);
    font-size: 9px;
    font-weight: 400;
    margin-bottom: 0
}

.module-03__recaptcha-disclaimer a {
    color: inherit
}

@media (min-width: 1200px) {
    .module-03 .form-container {
        position: absolute;
        top: 40px;
        left: 50%;
        width: 432px;
        transform: translateX(228px);
        z-index: 2
    }
}

@media (min-width: 1200px) {
    .module-03__content {
        height: 616px;
    }
}

.module-03 .form-card {
    border-radius: 5px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, .1);
}

.module-03__form-desc h2,
.module-03__form-desc h3 {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    color: var(--blue-dark)
}

.module-03__form-desc p {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: var(--blue-dark)
}

.module-06 .dropdown-toggle {
    position: relative;
    width: 100%;
    height: 47px;
    background: rgba(194, 194, 194, 1);
    border: 0 none;
    border-radius: 2em;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 40px 8px 20px;
    text-align: left;
    color: #fff;
}

.module-06__search {
    display: flex;
    position: relative;
    height: 47px;
    background: rgba(194, 194, 194, 1);
    border-radius: 2em
}

.module-06__search .icon-search {
    display: block;
    width: 55px;
    height: 47px;
    -webkit-appearance: none;
    background: var(--blue-dark) url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.1527 15.0943H16.0686L15.6844 14.7238C17.0756 13.1102 17.8403 11.05 17.8388 8.91938C17.8388 7.1553 17.3157 5.43083 16.3356 3.96404C15.3555 2.49726 13.9625 1.35404 12.3327 0.678951C10.7029 0.00386463 8.90949 -0.172769 7.1793 0.171387C5.44911 0.515544 3.85983 1.36503 2.61243 2.61243C1.36503 3.85983 0.515544 5.44911 0.171387 7.1793C-0.172769 8.90949 0.00386463 10.7029 0.678951 12.3327C1.35404 13.9625 2.49726 15.3555 3.96404 16.3356C5.43083 17.3157 7.1553 17.8388 8.91938 17.8388C11.1286 17.8388 13.1595 17.0292 14.7238 15.6844L15.0943 16.0686V17.1527L21.9554 24L24 21.9554L17.1527 15.0943ZM8.91938 15.0943C5.50258 15.0943 2.74443 12.3362 2.74443 8.91938C2.74443 5.50258 5.50258 2.74443 8.91938 2.74443C12.3362 2.74443 15.0943 5.50258 15.0943 8.91938C15.0943 12.3362 12.3362 15.0943 8.91938 15.0943Z' fill='white'/%3E%3C/svg%3E%0A") center no-repeat;
    background-size: 18px auto;
    border-radius: 2em 0 0 2em;
    border: 0 none
}

.module-06__search input {
    width: auto;
    background: transparent;
    border: 0 none;
    outline: 0 none !important;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px
}

.module-06__search input::placeholder {
    color: #fff
}

.module-06 .dropdown-toggle {
    position: relative;
    width: 100%;
    height: 47px;
    background: rgba(194, 194, 194, 1);
    border: 0 none;
    border-radius: 2em;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 40px 8px 20px;
    text-align: left;
    color: #fff
}

.module-06 .dropdown-toggle::after {
    position: absolute;
    top: 18px;
    right: 15px;
    content: "\e90e";
    font-family: var(--icons-kajuyali);
    font-size: 8px;
    border: none;
    color: var(--white)
}

.module-06 .dropdown-toggle .dropdown-item {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0
}

/* MODULE 08 */
.module-08--gray {
    background-color: var(--gray-10)
}

.module-08--blue {
    background-color: var(--blue-dark)
}

.module-08--blue .title-secondary h2 {
    color: #fff
}

.module-08 .subtitle p {
    color: var(--orange)
}

.module-08__search {
    display: flex;
    position: relative;
    height: 47px;
    background: rgba(194, 194, 194, 1);
    border-radius: 2em
}

.module-08__search .icon-search {
    display: block;
    width: 55px;
    height: 47px;
    -webkit-appearance: none;
    background: var(--blue-dark) url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.1527 15.0943H16.0686L15.6844 14.7238C17.0756 13.1102 17.8403 11.05 17.8388 8.91938C17.8388 7.1553 17.3157 5.43083 16.3356 3.96404C15.3555 2.49726 13.9625 1.35404 12.3327 0.678951C10.7029 0.00386463 8.90949 -0.172769 7.1793 0.171387C5.44911 0.515544 3.85983 1.36503 2.61243 2.61243C1.36503 3.85983 0.515544 5.44911 0.171387 7.1793C-0.172769 8.90949 0.00386463 10.7029 0.678951 12.3327C1.35404 13.9625 2.49726 15.3555 3.96404 16.3356C5.43083 17.3157 7.1553 17.8388 8.91938 17.8388C11.1286 17.8388 13.1595 17.0292 14.7238 15.6844L15.0943 16.0686V17.1527L21.9554 24L24 21.9554L17.1527 15.0943ZM8.91938 15.0943C5.50258 15.0943 2.74443 12.3362 2.74443 8.91938C2.74443 5.50258 5.50258 2.74443 8.91938 2.74443C12.3362 2.74443 15.0943 5.50258 15.0943 8.91938C15.0943 12.3362 12.3362 15.0943 8.91938 15.0943Z' fill='white'/%3E%3C/svg%3E%0A") center no-repeat;
    background-size: 18px auto;
    border-radius: 2em 0 0 2em;
    border: 0 none;
    position: absolute;
    top: 0;
    left: 0;
}

.module-08__search input {
    width: auto;
    background: transparent;
    border: 0 none;
    outline: 0 none !important;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px 8px 60px;
}

.module-08__search input::placeholder {
    color: #fff
}

.module-08 .dropdown-toggle {
    position: relative;
    width: 100%;
    height: 47px;
    background: rgba(194, 194, 194, 1);
    border: 0 none;
    border-radius: 2em;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 40px 8px 20px;
    text-align: left;
    color: #fff
}

.module-08 .dropdown-toggle::after {
    position: absolute;
    top: 18px;
    right: 15px;
    content: "\e90e";
    font-family: var(--icons-kajuyali);
    font-size: 8px;
    border: none;
    color: var(--white)
}

.module-08 .dropdown-toggle .dropdown-item {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0
}

.module-08__cta .button-primary {
    background: #fff;
    border: 2px solid var(--blue-dark)
}

.module-08__cta .button-primary:hover {
    background: var(--blue-dark)
}

.module-08__cta .button-primary p,
.module-08__cta .button-primary .icon {
    color: var(--blue-dark)
}

.module-08__cta .button-primary:hover p,
.module-08__cta .button-primary:hover .icon {
    color: #fff
}

.module-08 .card-new-small__img {
    height: 311px
}

.module-08 .card-new-small__img img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (min-width:1200px) {
    /*.module-08 .grid-container {
        display: grid;
        grid-gap: 40px;
        grid-template-columns: 1fr 1.4fr 1fr;
        grid-template-areas: 's1 b s3' 's2 b s4'
    }*/

    .module-08 .card-new-small:nth-child(4n+2) {
        grid-area: s1
    }

    .module-08 .card-new-small:nth-child(4n+3) {
        grid-area: s2
    }

    .module-08 .card-new-small:nth-child(4n+4) {
        grid-area: s3
    }

    .module-08 .card-new-small:nth-child(4n+5) {
        grid-area: s4
    }
    
    .module-08 .card-new-big {
        grid-area: b
    }
}

.module-08 .card-new-big__img {
    height: 311px
}

@media (min-width: 992px) {
    .module-08 .card-new-big__img {
        height: 489px
    }
}

.module-08 .card-new-big__img img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.module-08 .title-secondary h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500
}

.module-08--blue .title-secondary h3,
.module-08--blue .paragraph p {
    color: #fff
}

.module-08 .link-primary p,
.module-08 .link-primary .icon {
    --color: var(--orange)
}

.module-08--blue .link-primary p,
.module-08--blue .link-primary .icon {
    --color: #fff
}

.module-08 .pagination .navigation-icon {
    text-decoration: none
}
.module-08 .pagination .navigation-icon.arrow-disable {
    opacity: .5;
    pointer-events: none
}

.module-08 .pagination .navigation-icon span {
    background-color: #fff;
    border: 1px solid var(--blue-dark);
    color: var(--blue-dark)
}

.module-08 .pagination .navigation-icon:hover span {
    background-color: var(--yellow);
}

/* MODULE 19 */
.module-19 .map-slide__silueta {
    height: 350px
}

.module-19 .map-slide__map {
    position: relative;
    height: 380px
}

@media screen and (min-width:992px) {
    .module-19,
    .module-19__bg,
    .module-19 .map-slide__map,
    .module-19 .map-slide__silueta {
        height: 576px;
    }
}

.module-19 .card-info {
    min-height: 340px;
    margin: 0 20px 30px;
    padding: 25px;
    background: #fff;
    box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

@media screen and (min-width:992px) {
    .module-19 .card-info {
        padding: 29px 50px 0 30px
    }
}

.module-19 .swiper-slide:not(.swiper-slide-active) {
    visibility: hidden !important
}

.module-19 .swiper-primary__navigation .navigation-icon span {
    background: var(--yellow);
    border: 0 none;
}

.module-19 .swiper-primary__navigation .navigation-icon:hover span {
    background: var(--blue-dark);
    color: #fff
}

.module-19 .module-19__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@media(min-width: 992px) {
    .module-19 .module-19__bg {
        width: 80%
    }
}

.module-19 .map-slide__map:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-dark);
    mix-blend-mode: screen;
}

.module-19 .map-slide__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-19 .map-slide__silueta img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.module-19-content {
    position: relative;
    z-index: 2;
}

.module-19__navigation {
    position: absolute;
    bottom: 15px;
    right: 0;
    z-index: 2;
    width: 100%;
    justify-content: center;
    display: flex;
}

@media(min-width: 992px) {
    .module-19__navigation {
        bottom: 35px;
    }
}

.module-19 .button-primary {
    background: #fff;
    border: 2px solid var(--blue-dark);
}

.module-19 .button-primary p,
.module-19 .button-primary .icon {
    color: var(--blue-dark)
}

.module-19 .button-primary:hover {
    background: var(--blue-dark)
}

.module-19 .button-primary:hover p,
.module-19 .button-primary:hover .icon {
    color: #fff
}

/* MODULE 20 */
.module-20__pagination .swiper-pagination-bullet {
    opacity: 1;
    background: #fff
}

.module-20__pagination .swiper-pagination-bullet-active {
    background: var(--yellow)
}

.module-20 .swiper-slide {
    width: 424px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.module-20 .card-review {
    position: relative;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(0, 61, 80, 0.1);
    width: 100%;
    color: var(--gray-30)
}

.module-20 .card-review.with-picture {
    margin-top: 86px !important;
    padding-top: 80px !important
}

.module-20 .card-review .picture {
    position: absolute;
    top: -105px;
    left: 50%;
    transform: translateX(-50%);
}

.module-20 .swiper-slide:not(.swiper-slide-active) .card-review .picture {
    filter: saturate(0);
    opacity: .8
}

.module-20 .card-review__icon .icon {
    font-size: 45px
}

.module-20 .swiper-slide-active .card-review__icon .icon {
    color: var(--orange)
}

.module-20 .card-review__name h4 {
    color: var(--gray-30);
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 0
}

.module-20 .swiper-slide-active .card-review__name h4 {
    color: var(--blue-dark);
}

.module-20 .card-review__name::after {
    content: "";
    width: 140px;
    height: 3px;
    background-color: var(--gray-30);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.module-20 .swiper-slide-active .card-review__name::after {
    background-color: var(--orange);
}

.module-20 .paragraph p {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    font-style: italic;
    color: var(--gray-30)
}

.module-20 .swiper-slide-active .paragraph p {
    color: var(--blue-dark)
}

.module-20 .swiper-primary__navigation .navigation-icon span {
    background: var(--blue-dark);
    color: #fff
}

.module-20 .swiper-primary__navigation .navigation-icon:hover span {
    background: var(--yellow);
    color: var(--blue-dark)
}

@media(min-width: 768px) {
    .module-20 .paragraph p {
        font-size: 20px;
        line-height: 28px;
    }
}

/* MODULE 04 */
.module-04__content {
    background: var(--yellow)
}

.module-04 .title-secondary h2 {
    color: var(--orange);
}

.module-04__desc p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #000
}

.module-04 .swiper-slide {
    width: auto !important
}

.module-04 .swiper-primary__navigation {
    margin-top: -38px;
}

.module-04__pagination .swiper-pagination-bullet-active {
    background: var(--yellow);
}

.module-04__card {
    width: 360px;
    background: #fff;
    border-radius: 5px;
    font-weight: 500;
    color: #1e1e1e
}

@media(min-width: 1200px) {
    .module-04__card .paragraph {
        min-height: 128px
    }
}

.module-04__card-img {
    width: 100%;
    height: 225px;
    border-radius: 5px 5px 0 0;
    overflow: hidden
}

.module-04__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.module-04__card-title h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    color: var(--blue-dark)
}

/* MODULE 15 */
.module-15 {
    background: #f3f3f3
}

.module-15__pretitle h2 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--orange)
}

.module-15__img {
    height: 688px;
}

@media(max-width: 500px) {
    .module-15__img {
        height: 450px;
    }
}

.module-15__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.module-15__pagination {
    width: 100%;
    position: absolute;
    bottom: 35px;
    left: 0;
    text-align: center;
    z-index: 2
}

.module-15__pagination .swiper-pagination-clickable .swiper-pagination-bullet {
    background: #fff;
    opacity: 1
}

.module-15__pagination .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: var(--yellow)
}

.module-15__cta .button-primary {
    background: var(--yellow);
    border: 2px solid var(--yellow);
}

.module-15__cta .button-primary:hover {
    background: var(--blue-dark)
    border-color: var(--blue-dark);
}

.module-15__cta .button-primary p,
.module-15__cta .button-primary .icon {
    color: var(--blue-dark)
}

.module-15__cta .button-primary:hover p,
.module-15__cta .button-primary:hover .icon {
    color: #fff
}

/* MODULE 17 */
.module-17 {
    background-position: top center;
    background-size: cover;
}

.module-17 .swiper-slide {
    width: auto
}

.module-17 .swiper-primary__navigation .navigation-icon span {
    background-color: #fff;
    border: 1px solid #fff;
    color: var(--blue-dark)
}

.module-17 .swiper-primary__navigation .navigation-icon:hover span {
    background-color: var(--yellow)
}

.module-17 .item-swiper {
    padding: 0 15px;
    border-radius: 5px
}

.module-17 .item-swiper__img {
    height: 255px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden
}

.module-17 .item-swiper__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.module-17 .item-swiper__title {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: start
}

.module-17 .item-swiper__title p {
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 700;
}

.module-17 .item-swiper .item-swiper-content {
    border-radius: 0 0 5px 5px;
    min-height: 175px
}

.module-17 .item-swiper__desc {
    min-height: 88px
}

.module-17__swiper {
    max-width: 1170px;
    z-index: 0
}

.module-17__nav {
    z-index: 5;
    --bg-color: var(--blue-dark)
}

@media screen and (min-width:1200px) {
    .module-17-navigation {
        position: absolute;
        bottom: 260px;
        left: 50%;
        max-width: 1320px;
        transform: translateX(-50%)
    }
}

.module-17 .title-primary h4 {
    font-size: 35px
}

@media screen and (min-width:768px) {
    .module-17 .title-primary h4 {
        font-size: 50px
    }
}

/* MODULE 11 */
.module-11 .card-module-11 .card-module-11-container {
    background: var(--background-color);
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
    border-radius: 5px
}

.module-11 .card-module-11__title h2,
.module-11 .card-module-11__title h3,
.module-11 .card-module-11__title h4,
.module-11 .card-module-11__title h5,
.module-11 .card-module-11__title h6 {
    color: var(--title-color);
    font-size: 26px
}

.module-11 .card-module-11__desc p {
    color: var(--text-color)
}

.module-11 .card-module-11__img img {
    width: 124px;
    height: 124px;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover
}

.module-11 .card-module-11:nth-child(4n+1),
.module-11 .card-module-11:nth-child(4n+3) {
    --title-color: var(--blue-dark);
    --text-color: var(--blue-dark);
    --background-color: var(--bg-first-card)
}

.module-11 .card-module-11:nth-child(4n+2),
.module-11 .card-module-11:nth-child(4n+4) {
    --title-color: var(--orange);
    --text-color: var(--color-black);
    --background-color: var(--bg-second-card)
}

.module-11__title h2,
.module-11__title h3,
.module-11__title h4,
.module-11__title h5,
.module-11__title h6 {
    --font-size: 30px;
    font-weight: 800;
    color: var(--blue-dark)
}

@media screen and (min-width:992px) {
    .module-11 .card-module-11:nth-child(4n+1),
    .module-11 .card-module-11:nth-child(4n+4) {
        --title-color: var(--blue-dark);
        --text-color: var(--blue-dark);
        --background-color: var(--bg-first-card)
    }
    .module-11 .card-module-11:nth-child(4n+2),
    .module-11 .card-module-11:nth-child(4n+3) {
        --title-color: var(--orange);
        --text-color: var(--color-black);
        --background-color: var(--bg-second-card)
    }
    .module-11__title h2,
    .module-11__title h3,
    .module-11__title h4,
    .module-11__title h5,
    .module-11__title h6 {
        --font-size: 45px
    }
    .module-11 .card-module-11__title h2,
    .module-11 .card-module-11__title h3,
    .module-11 .card-module-11__title h4,
    .module-11 .card-module-11__title h5,
    .module-11 .card-module-11__title h6 {
        color: var(--title-color);
        font-size: 32px
    }
}

.module-11.school {
    --bg-first-card: var(--yellow);
    --bg-second-card: var(--white)
}

/* MODULE 13 */
.module-13 {
    background: linear-gradient(180deg, #01546D 0%, #003D50 100%);
}

.module-13--gray {
    background: #f3f3f3;
}

.module-13 .title-secondary h2 {
    color: #fff
}

.module-13--gray .title-secondary h2 {
    color: var(--blue-dark)
}

.module-13__desc p {
    color: #fff
}

.module-13__desc strong {
    font-size: 20px;
    color: var(--yellow)
}

.module-13--gray .module-13__desc,
.module-13--gray .module-13__desc p {
    color: var(--blue-dark)
}

.module-13--gray .module-13__desc strong {
    color: var(--orange)
}

.module-13__img img {
    max-width: 100%
}

.module-13__cta .button-primary {
    background: transparent;
    border: 2px solid var(--yellow);
}

.module-13__cta .button-primary:hover {
    background: var(--yellow)
}

.module-13__cta .button-primary p,
.module-13__cta .button-primary .icon {
    color: var(--yellow);
}

.module-13__cta .button-primary:hover p,
.module-13__cta .button-primary:hover .icon {
    color: var(--blue-dark);
}

.module-13--gray .module-13__cta .button-primary {
    background: #fff;
    border: 2px solid var(--blue-dark);
}

.module-13--gray .module-13__cta .button-primary:hover {
    background: var(--blue-dark)
}

.module-13--gray .module-13__cta .button-primary p,
.module-13--gray .module-13__cta .button-primary .icon {
    color: var(--blue-dark)
}

.module-13--gray .module-13__cta .button-primary:hover p,
.module-13--gray .module-13__cta .button-primary:hover .icon {
    color: #fff
}

/* MODULE 14 */
.module-14__img {
    height: 250px
}

@media(min-width: 1200px) {
    .module-14,
    .module-14__content,
    .module-14__img,
    .module-14 .swiper-slide .row {
        height: 546px
    }
    .module-14__swiper-container {
        position: absolute !important
    }
    .module-14__video {
        height: 100% !important
    }
}

.module-14__video {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    z-index: 10;
    padding: 0;
    background: #000
}

.module-14__video video {
    width: 100%;
    height: 100%;
}

.module-14__video .close-video {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255,255,255,.3);
    transition: .5s;
    cursor: pointer;
    z-index: 2;
}

.module-14__video .close-video::after {
    transform: rotate(-45deg);
}

.module-14__video .close-video::before {
    transform: rotate(45deg);
}

.module-14__video .close-video::after,
.module-14__video .close-video::before {
    content: "";
    position: absolute;
    top: 50%;
    left: auto;
    right: auto;
    background-color: #fff;
    height: 2px;
    width: 20px;
    transition: transform .5s,-webkit-transform .5s;
}

.module-14__content {
    background: rgb(0 61 80 / 80%);
    color: #fff;
    z-index: 2;
}

.module-14--blue .module-14__content {
    background: rgb(0 61 80 / 80%);
}

.module-14--black .module-14__content {
    background: rgb(30 30 30 / 80%);
}

.module-14--yellow .module-14__content {
    background: rgb(255 198 1 / 80%);
    color: var(--blue-dark)
}

.module-14--yellow .pre-title p {
    color: #1e1e1e;
}

.module-14 .title-secondary h2,
.module-14 .title-secondary h3 {
    color: #fff
}

.module-14--yellow .title-secondary h2,
.module-14--yellow .title-secondary h3 {
    color: var(--blue-dark)
}

.module-14__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.module-14__cta .button-primary {
    background: transparent;
    border: 2px solid #fff;
}

.module-14__cta .button-primary:hover {
    background: #fff
}

.module-14__cta .button-primary:hover p,
.module-14__cta .button-primary:hover .icon {
    color: var(--blue-dark)
}

.module-14__pagination {
    position: absolute;
    bottom: 60px;
    right: 90px;
    z-index: 2
}

@media(max-width: 500px) {
    .module-14__pagination {
        bottom: 20px;
        right: 20px
    }
}

.module-14__pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 1 !important
}

.module-14__pagination .swiper-pagination-bullet-active {
    background: var(--yellow)
}

/* MODULE 12 */
.module-12 .card-module-12 {
    height: calc(100vw * 1.88)
}


@media screen and (min-width:576px) {
    .module-12 .card-module-12 {
        height: calc(50vw * 1.88)
    }
}

@media screen and (min-width:992px) {
    .module-12 .card-module-12 {
        height: calc(25vw * 1.88)
    }
}

.module-12 .card-module-12__title h2,
.module-12 .card-module-12__title h3,
.module-12 .card-module-12__title h4,
.module-12 .card-module-12__title h5,
.module-12 .card-module-12__title h6 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase
}

@media screen and (min-width:992px) {
    .module-12 .card-module-12__title h2,
    .module-12 .card-module-12__title h3,
    .module-12 .card-module-12__title h4,
    .module-12 .card-module-12__title h5,
    .module-12 .card-module-12__title h6 {
        font-size: 32px
    }
}

.module-12 .card-module-12__img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0
}

.module-12 .card-module-12__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-filter: saturate(1);
    filter: saturate(1)
}

.module-12 .card-module-12__img::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 150, 197, 0) 32.63%, rgba(0, 61, 80, 0.91) 84.32%);
    display: block
}



.module-12 .card-module-12__cta .button-primary {
    background: var(--yellow)
}

@media screen and (min-width:576px) {
    .module-12 .card-module-12 .hidden-content {
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        overflow: hidden;
        max-height: 0
    }

    .module-12 .card-module-12:hover .hidden-content {
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        max-height: 250px
    }
}

.module-12__title h2,
.module-12__title h3,
.module-12__title h4,
.module-12__title h5,
.module-12__title h6 {
    --font-color: var(--blue-dark);
    --font-size: 32px;
    font-weight: 800
}

@media screen and (min-width:992px) {
    .module-12__title h2,
    .module-12__title h3,
    .module-12__title h4,
    .module-12__title h5,
    .module-12__title h6 {
        font-size: 50px
    }
}

/* MODULE 07 */
.module-07__pagination .swiper-pagination-bullet-active {
    background: var(--accent-color)
}

.module-07 .swiper-slide:nth-child(even) .module-07-card {
    --img-height: 260px;
    --overlay-color: transparent;
    background-color: #fff
}

@media (min-width: 992px) {
    .module-07 .swiper-slide:nth-child(even) .module-07-card {
        --img-height: 280px
    }
}

.module-07 .swiper-slide:nth-child(even) .module-07-card .square-ratio {
    opacity: 1
}

.module-07 .swiper-slide:nth-child(even) .module-07-card .vertical-ratio {
    opacity: 0
}

.module-07 .swiper-slide:nth-child(even) .module-07-card .module-07-card__desc span {
    opacity: 1
}

.module-07 .swiper-slide:nth-child(even) .module-07-card .desc-title h2,
.module-07 .swiper-slide:nth-child(even) .module-07-card .desc-title h3,
.module-07 .swiper-slide:nth-child(even) .module-07-card .desc-title h4,
.module-07 .swiper-slide:nth-child(even) .module-07-card .desc-title h5,
.module-07 .swiper-slide:nth-child(even) .module-07-card .desc-title h6 {
    color: var(--color-black)
}

.module-07 .swiper-slide:nth-child(even) .module-07-card .desc-paragraph {
    height: 108px;
    margin-top: 1rem;
    opacity: 1
}

.module-07 .module-07-card {
    --card-height: calc(var(--card-width) * 1.54);
    --img-height: var(--card-height);
    --card-width: 90vw;
    border-radius: 5px;
    width: var(--card-width);
    height: var(--card-height)
}

@media screen and (min-width:375px) {
    .module-07 .module-07-card {
        --card-width: 290px
    }
}

@media screen and (min-width:576px) {
    .module-07 .module-07-card {
        --card-width: 295px
    }
}

@media screen and (min-width:768px) {
    .module-07 .module-07-card {
        --card-width: 305px
    }
}

@media screen and (min-width:992px) {
    .module-07 .module-07-card {
        --card-width: 299px
    }
}

@media screen and (min-width:1025px) {
    .module-07 .module-07-card {
        --card-width: 309px
    }
}

.module-07 .module-07-card__img {
    height: var(--img-height);
    width: var(--card-width);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    --overlay-color: transparent
}

.module-07 .module-07-card__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px
}

.module-07 .module-07-card__img .square-ratio {
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.module-07 .module-07-card__img .vertical-ratio {
    opacity: 1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.module-07 .module-07-card__img.vertical-img::after{
    content: '';
    background-color:#003d50;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .45;
    border-radius: 5px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.module-07 .module-07-card__desc {
    position: absolute;
    bottom: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.module-07 .module-07-card__desc .desc-title h2,
.module-07 .module-07-card__desc .desc-title h3,
.module-07 .module-07-card__desc .desc-title h4,
.module-07 .module-07-card__desc .desc-title h5,
.module-07 .module-07-card__desc .desc-title h6 {
    color: var(--white);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 18px
}

.module-07 .module-07-card__desc .desc-paragraph {
    opacity: 0;
    height: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-top: 0
}

.module-07 .module-07-card__border span {
    width: 116px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0
}

.module-07 .swiper-slide {
    width: auto
}

.module-07.camp {
    --accent-color: var(--orange);
    --duotone-first: var(--color-black);
    --duotone-second: var(--orange);
    --duotone-third: var(--green);
    --duotone-fourth: var(--yellow)
}

.module-07.school {
    --accent-color: var(--blue-dark);
    --duotone-first: var(--color-black);
    --duotone-second: var(--orange);
    --duotone-third: var(--blue-dark);
    --duotone-fourth: var(--yellow)
}

.module-07.xcorp {
    --accent-color: var(--orange);
    --duotone-first: var(--color-black);
    --duotone-second: var(--orange);
    --duotone-third: var(--color-black);
    --duotone-fourth: var(--yellow)
}

.module-07.apie {
    --accent-color: var(--orange);
    --duotone-first: var(--purple);
    --duotone-second: var(--purple);
    --duotone-third: var(--purple);
    --duotone-fourth: var(--purple)
}

/* MODULE 09 */
.module-09 {
    --accent-color: var(--blue-dark)
}

.module-09 .card-collapse {
    --btn-size: 22px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.module-09 .card-collapse__btn {
    display: inline-block;
    width: var(--btn-size);
    height: var(--btn-size);
    position: absolute;
    right: 1.5rem;
    top: 40px;
    transform: translate(0, -50%);
    border: 1px solid var(--color-black);
    border-radius: 50%;
    transition: all .3s ease-in-out
}

.module-09 .card-collapse__btn .icon-cross-animated {
    --background-color: var(--color-black);
    --size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.module-09 .card-collapse__btn .icon-cross-animated::after,
.module-09 .card-collapse__btn .icon-cross-animated::before {
    content: '';
    display: inline-block;
    width: var(--size);
    height: 2px;
    background: var(--background-color);
    position: absolute
}

.module-09 .card-collapse__btn .icon-cross-animated::before {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.module-09 .card-collapse__btn.collapsed .icon-cross-animated::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.module-09 .card-collapse__btn:not(.collapsed) {
    border-color: var(--orange)
}

.module-09 .card-collapse__btn:not(.collapsed) .icon-cross-animated {
    --background-color: var(--orange)
}

.module-09 .card-collapse__title h4 {
    margin: 0;
    font-size: 20px;
    color: var(--blue-dark);
    font-weight: 700
}

.module-09 .card-collapse .card-collapse-container {
    background: var(--white);
    box-shadow: 0 4px 25px rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out
}

.module-09 .card-collapse :not(.collapsed)+.card-collapse-container .card-collapse__title {
    transition: all .3s ease-in-out
}

.module-09 .card-collapse :not(.collapsed)+.card-collapse-container .card-collapse__title h4 {
    color: var(--orange)
}

.module-09 .card-collapse:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, .1)
}

.module-09 .card-collapse:hover .card-collapse__title h2,
.module-09 .card-collapse:hover .card-collapse__title h3,
.module-09 .card-collapse:hover .card-collapse__title h4,
.module-09 .card-collapse:hover .card-collapse__title h5,
.module-09 .card-collapse:hover .card-collapse__title h6 {
    color: var(--accent-color)
}

/* MODULE MAP */
.module-map {
    position: relative;
}

.module-map__img {
    position: absolute;
    pointer-events: none;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 2
}

.module-map iframe {
    max-width: 100%;
}

/* MODULE 13 UNIVERSE */
.module-13-universe {
    overflow: hidden
}

.module-13-universe__img {
    max-height: 725px;
    padding-top: auto
}

@media screen and (min-width:992px) {
    .module-13-universe__img {
        height: 100%;
        max-height: unset
    }
}

.module-13-universe__img .image {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 33vh
}

@media screen and (min-width:992px) {
    .module-13-universe__img .image {
        max-height: 725px
    }
}

.module-13-universe__img .logo {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 25vh
}

.module-13-universe__title h2,
.module-13-universe__title h3,
.module-13-universe__title h4,
.module-13-universe__title h5,
.module-13-universe__title h6 {
    font-weight: 800;
    font-size: 30px
}

@media screen and (min-width:992px) {
    .module-13-universe__title h2,
    .module-13-universe__title h3,
    .module-13-universe__title h4,
    .module-13-universe__title h5,
    .module-13-universe__title h6 {
        font-size: 45px
    }
}

.module-13-universe .title-secondary h2,
.module-13-universe .title-secondary h3,
.module-13-universe .title-secondary h4,
.module-13-universe .title-secondary h5,
.module-13-universe .title-secondary h6 {
    font-size: 18px
}

.module-13-universe p {
    font-size: 18px
}

.module-13-universe__cta .button-secondary {
    padding-left: 0;
    padding-right: 0
}

.module-13-universe__cta .button-secondary p,
.module-13-universe__cta .button-secondary span {
    color: var(--color-black) !important;
    -webkit-transition: .3s;
    transition: .3s
}

.module-13-universe__cta .button-secondary:hover p {
    text-decoration: underline;
    font-weight: 700
}

.module-13-universe__pagination {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 1
}

.module-13-universe__pagination .swiper-pagination-bullet {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    background-color: #fff;
    opacity: 1 !important
}

.module-13-universe__pagination .swiper-pagination-bullet-active {
    background-color: var(--purple);
    border: 1px solid #fff
}

.module-13-universe__orange {
    background-color: var(--orange) !important
}

.module-13-universe__orange .button-primary {
    background-color: var(--purple) !important
}

.module-13-universe__orange .button-primary:hover {
    background: var(--orange)
}

.module-13-universe.universe {
    --title-weight: 400;
    background: radial-gradient(50% 50% at 50% 50%, #ffa600 0, #ff8201 100%)
}

.module-13-universe.universe .texture {
    position: absolute;
    mix-blend-mode: color-dodge;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 100%
}

@media screen and (min-width:992px) {
    .module-13-universe.universe .texture {
        height: 100%;
        left: 50%;
        width: 50%
    }
}

.module-13-universe.universe .button-secondary p,
.module-13-universe.universe .button-secondary span {
    color: var(--yellow) !important
}

.module-13-universe.universe.kuita {
    background: #f3912d
}

.module-13-universe.universe.kiribati {
    background: #55aa2b
}

.module-13-universe.universe.yubarka {
    background: #009a8d
}

.module-13-universe.universe.yanamak {
    background: #c6ba00
}

.module-13-universe.destiny {
    --title-weight: 400;
    background-image: url(/media/mapa-background.jpg);
    background-repeat: no-repeat;
    background-size: cover
}

.module-13-universe.destiny .texture {
    position: absolute;
    mix-blend-mode: color-dodge;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 100%
}

@media screen and (min-width:992px) {
    .module-13-universe.destiny .texture {
        height: 100%;
        left: 50%;
        width: 50%
    }
}

.module-13-universe.destiny .button-secondary p,
.module-13-universe.destiny .button-secondary span {
    color: var(--color-black) !important
}

.module-13-universe.destiny.kuita {
    background: #f3912d
}

.module-13-universe.destiny.kiribati {
    background: #55aa2b
}

.module-13-universe.destiny.yubarka {
    background: #009a8d
}

.module-13-universe.destiny.yanamak {
    background: #c6ba00
}

.module-13-universe.destiny .module-13-universe-kajuyali-gray {
    display: none
}

@media screen and (min-width:992px) {
    .module-13-universe.destiny .module-13-universe-kajuyali-gray {
        display: block
    }
}

.module-13-universe.school {
    --title-weight: 700;
    background: radial-gradient(50% 50% at 50% 50%, #003d50 0, #00232e 100%)
}

.module-13-universe.school .texture {
    position: absolute;
    mix-blend-mode: overlay;
    left: 50%;
    right: 0;
    width: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%
}

.module-13-universe.school .illustration {
    position: absolute;
    height: 75%;
    max-width: 45%;
    left: 50%;
    bottom: 10%;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -o-object-fit: contain;
    object-fit: contain
}

.module-13-universe.xcorp {
    --title-weight: 700;
    background: var(--color-black)
}

.module-13-universe.xcorp .image {
    -o-object-position: bottom;
    object-position: bottom
}

.module-13-universe.xcorp .texture {
    position: absolute;
    left: 20%;
    right: 0;
    width: 80%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%
}

.module-13-universe.apie {
    background: var(--purple);
    --title-weight: 700;
    color: #fff
}

.module-13-universe.apie .image {
    -o-object-fit: cover;
    object-fit: cover
}

.module-13-universe.apie .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 80%;
    mix-blend-mode: overlay;
    -o-object-fit: contain;
    object-fit: contain
}

.module-13-universe.apie .button-primary {
    background: var(--orange)
}

.module-13-universe.apie .button-primary:hover {
    background: var(--purple)
}

.module-13-universe-space-top {
    margin-top: auto
}

@media screen and (min-width:992px) {
    .module-13-universe-space-top {
        margin-top: 35px
    }
}

/* MODULE 18 */
.module-18 hr {
    background-color: var(--blue-dark);
    opacity: 1
}

.module-18 .swiper-slide {
    width: auto
}

.module-18 .swiper-primary__navigation .navigation-icon .icon {
    background-color: var(--blue-dark);
    color: #fff
}

.module-18 .swiper-primary__navigation .navigation-icon .icon:hover {
    background-color: #fff;
    border: 1px solid var(--blue-dark);
    color: var(--blue-dark)
}

.module-18 .card-module-18 {
    --insignia-size: 70px;
    --width: 100%;
    width: var(--width);
    margin-top: calc(var(--insignia-size)/2)
}

@media screen and (min-width:576px) {
    .module-18 .card-module-18 {
        --insignia-size: 100px
    }
}

/*@media screen and (min-width:375px) {*/
/*    .module-18 .card-module-18 {*/
/*        --width: 300px*/
/*    }*/
/*}*/

@media screen and (min-width:576px) {
    .module-18 .card-module-18 {
        --width: 100%
    }
}

@media screen and (min-width:768px) {
    .module-18 .card-module-18 {
        --width: 268px;
    }
}
@media screen and (min-width:992px) {
    .module-18 .card-module-18 {
        --width: 400px;
    }
}
@media screen and (min-width:1200px) {
    .module-18 .card-module-18 {
        --width: 365px;
    }
}
@media screen and (min-width:1400px) {
    .module-18 .card-module-18 {
        --width: 400px;
    }
}

.module-18 .card-module-18__img {
    height: 255px;
    width: 100%
}

.module-18 .card-module-18__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px
}

.module-18 .card-module-18__insignia {
    position: absolute;
    top: 0;
    right: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: var(--insignia-size);
    height: var(--insignia-size)
}

.module-18 .card-module-18__insignia img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.module-18 .card-module-18 .link-primary {
    color: var(--blue-dark)
}

.module-18__subtitle p {
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0
}

.module-18__nav {
    --bg-color: var(--navigation-color)
}

.module-18 {
    --accent-color: var(--blue-dark);
    --navigation-color: var(--blue-dark);
    --link-color: var(--blue-dark);
    --subtitle-color: var(--blue-dark)
}

.module-18__title-img {
    text-align: right;
}

.module-18 .title-primary h3 {
    color: var(--blue-dark);
    font-weight: 400;
    font-size: 45px
}

.module-18 .title-secondary h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--blue-dark)
}

/* INTERNA BLOG */
.interna-blog .container {
    max-width: 1100px;
}

.interna-blog .title-primary h2 {
    --font-color: var(--blue-dark);
    --font-size: 30px;
    font-weight: 700
}

.interna-blog .title-secondary h2,
.interna-blog .title-secondary h3,
.interna-blog .title-secondary h4,
.interna-blog .title-secondary h5 {
    --font-color: var(--color-black);
    --font-size: 16px;
    font-weight: 700
}

.interna-blog blockquote {
    position: relative;
    text-align: center;
    color: var(--orange);
    font-weight: 400;
    font-size: 20px;
    font-style: italic
}

.interna-blog blockquote:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -22px;
    width: 30px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.39127 21.44C3.8446 21.44 2.56457 20.88 1.55124 19.76C0.537906 18.64 0.03125 17.2 0.03125 15.44C0.03125 13.0933 0.64458 10.8267 1.87125 8.64C3.09791 6.45334 4.72458 4.58667 6.75125 3.04C8.83125 1.44 11.0979 0.426668 13.5513 0L15.2313 3.84C13.1513 4 11.3913 4.53333 9.95126 5.44C8.5646 6.29333 7.47126 7.28 6.67126 8.4C5.87126 9.46667 5.31124 10.4533 4.99124 11.36L5.15125 11.52C5.25791 11.4667 5.47126 11.4133 5.79126 11.36C6.16459 11.2533 6.53792 11.2 6.91125 11.2C8.29792 11.2 9.31126 11.6267 9.95126 12.48C10.6446 13.3333 10.9912 14.32 10.9912 15.44C10.9912 17.1467 10.4579 18.5867 9.39127 19.76C8.37793 20.88 7.0446 21.44 5.39127 21.44ZM20.1113 21.44C18.5646 21.44 17.2846 20.88 16.2712 19.76C15.2579 18.64 14.7513 17.2 14.7513 15.44C14.7513 13.0933 15.3646 10.8267 16.5912 8.64C17.8179 6.45334 19.4446 4.58667 21.4713 3.04C23.5513 1.44 25.8179 0.426668 28.2712 0L29.9513 3.84C27.8713 4 26.1113 4.53333 24.6713 5.44C23.2846 6.29333 22.1913 7.28 21.3913 8.4C20.5913 9.46667 20.0312 10.4533 19.7112 11.36L19.8712 11.52C19.9779 11.4667 20.1913 11.4133 20.5113 11.36C20.8846 11.2533 21.2579 11.2 21.6313 11.2C23.0179 11.2 24.0313 11.6267 24.6713 12.48C25.3646 13.3333 25.7112 14.32 25.7112 15.44C25.7112 17.1467 25.1779 18.5867 24.1113 19.76C23.0979 20.88 21.7646 21.44 20.1113 21.44Z' fill='%23FF8200'/%3E%3C/svg%3E");
}

.interna-blog blockquote:after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -22px;
    width: 30px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.6107 -6.15037e-05C26.1574 -6.13685e-05 27.4374 0.55994 28.4507 1.67994C29.464 2.79994 29.9707 4.23994 29.9707 5.99994C29.9707 8.34661 29.3574 10.6133 28.1307 12.7999C26.904 14.9866 25.2774 16.8533 23.2507 18.3999C21.1707 19.9999 18.904 21.0133 16.4507 21.4399L14.7707 17.5999C16.8507 17.4399 18.6107 16.9066 20.0507 15.9999C21.4374 15.1466 22.5307 14.1599 23.3307 13.0399C24.1307 11.9733 24.6907 10.9866 25.0107 10.0799L24.8507 9.91994C24.744 9.97327 24.5307 10.0266 24.2107 10.0799C23.8374 10.1866 23.464 10.2399 23.0907 10.2399C21.704 10.2399 20.6907 9.81327 20.0507 8.95994C19.3574 8.1066 19.0107 7.11994 19.0107 5.99994C19.0107 4.29327 19.544 2.85327 20.6107 1.67994C21.624 0.55994 22.9574 -6.16483e-05 24.6107 -6.15037e-05ZM9.89069 -6.27906e-05C11.4374 -6.26554e-05 12.7174 0.559939 13.7307 1.67994C14.744 2.79994 15.2507 4.23994 15.2507 5.99994C15.2507 8.3466 14.6374 10.6133 13.4107 12.7999C12.184 14.9866 10.5574 16.8533 8.5307 18.3999C6.4507 19.9999 4.18404 21.0133 1.73071 21.4399L0.05069 17.5999C2.13069 17.4399 3.89069 16.9066 5.33069 15.9999C6.71735 15.1466 7.81069 14.1599 8.61069 13.0399C9.41069 11.9733 9.97071 10.9866 10.2907 10.0799L10.1307 9.91994C10.024 9.97327 9.81069 10.0266 9.49069 10.0799C9.11736 10.1866 8.74403 10.2399 8.3707 10.2399C6.98403 10.2399 5.97069 9.81327 5.33069 8.95994C4.63736 8.1066 4.29071 7.11994 4.29071 5.99994C4.29071 4.29327 4.82402 2.85327 5.89069 1.67994C6.90402 0.559938 8.23735 -6.29351e-05 9.89069 -6.27906e-05Z' fill='%23FF8200'/%3E%3C/svg%3E%0A");
}

.interna-blog__img img {
    max-width: 100%
}

.interna-blog__list ul {
    padding: 0;
    list-style: none
}

.interna-blog__list ul li {
    position: relative;
    margin-bottom: 22px;
    padding-left: 40px;
    font-size: 16px;
    font-weight: 700
}

.interna-blog__list ul li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    background-color: var(--orange);
    width: 16px;
    height: 16px
}

.interna-blog .secondary-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--blue-dark)
}

/* MODULE FOUNDER */
.module-founder p {
    font-size: 18px
}

.module-founder .swiper-slide {
    height: auto;
    opacity: 0 !important
}

.module-founder .swiper-slide-active {
    opacity: 1 !important
}

@media screen and (min-width:992px) {
    .module-founder .map-slide {
        min-height: 700px
    }
}

@media screen and (min-width:1200px) {
    .module-founder .map-slide {
        max-height: 625px
    }
}

.module-founder .map-slide__map img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.module-founder .map-slide .card-info {
    z-index: 1
}

.module-founder .map-slide .card-info__title h2,
.module-founder .map-slide .card-info__title h3,
.module-founder .map-slide .card-info__title h4,
.module-founder .map-slide .card-info__title h5,
.module-founder .map-slide .card-info__title h6 {
    font-weight: var(--card-info-title-font-weight)
}

.module-founder-content {
    position: relative;
    z-index: 2
}

.module-founder__bg {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

.module-founder__navigation {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5
}

@media screen and (min-width:992px) {
    .module-founder__navigation {
        top: 50%;
        bottom: auto;
        -webkit-transform: translate(calc(-50% - 35px), -50%) rotate(90deg);
        transform: translate(calc(-50% - 35px), -50%) rotate(90deg)
    }
}

.module-founder__navigation .navigation-icon {
    --bg-color: rgba(0, 0, 0, 0.1)
}

/* .module-founder__navigation .navigation-icon--left {
    -webkit-transform: translate(-75%, 0);
    transform: translate(-75%, 0)
}

.module-founder__navigation .navigation-icon--right {
    -webkit-transform: translate(75%, 0);
    transform: translate(75%, 0)
}

@media screen and (min-width:992px) {
    .module-founder__navigation .navigation-icon--left {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    .module-founder__navigation .navigation-icon--right {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }
} */

.module-founder-card__cta .button-primary {
    background-color: var(--purple) !important
}

.module-founder-card__cta .button-primary:hover {
    background-color: var(--orange) !important
}

.module-founder.school {
    --cta-color: var(--blue-dark);
    --card-info-title-font-weight: 700;
    --slide-color: var(--orange)
}

.module-founder.school .map-slide.kuita {
    --slide-color: var(--orange)
}

.module-founder.school .map-slide.yubarka {
    --slide-color: var(--green-ocean)
}

.module-founder.school .map-slide.kiribati {
    --slide-color: var(--green)
}

.module-founder.school .map-slide.yanamak {
    --slide-color: #B7AD01
}

.module-founder {
    --accent-color: var(--orange);
    overflow: hidden;
    height: 70vh;
    padding-bottom: 50px;
    background-color: var(--blue-dark);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}

@media screen and (min-width:992px) {
    .module-founder {
        height: 60vh;
        padding-bottom: 0
    }

    .module-founder .map-slide__map {
        height: 100%
    }
}

.module-founder-card__title h2,
.module-founder-card__title h3,
.module-founder-card__title h4,
.module-founder-card__title h5,
.module-founder-card__title h6 {
    color: var(--purple);
    font-family: var(--lemon-yellow);
    font-weight: 400;
    font-size: 45px
}

.module-founder-card__cta .button-primary {
    background-color: var(--green-light)
}

.module-founder .swiper-primary__navigation .navigation-icon span {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white)
}

.module-founder .swiper-primary__navigation .navigation-icon:hover span {
    background: var(--white);
    color: var(--orange)
}

/* MODULE PARTNERS */
.module-partners {
    --bg-content: #989898;
    background-color: var(--bg-content);
    min-height: 580px;
    overflow: hidden;
    --accent-color: var(--green)
}

.module-partners .title-secondary h2,
.module-partners .title-secondary h3,
.module-partners .title-secondary h4,
.module-partners .title-secondary h5,
.module-partners .title-secondary h6 {
    font-size: 18px;
    color: #fff
}

.module-partners p {
    font-size: 18px
}

@media screen and (min-width:992px) {
    .module-partners-image-right .module-partners-image {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .module-partners-image-right .module-partners-content {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

@media screen and (min-width:992px) {
    .module-partners-image-left .module-partners-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .module-partners-image-left .module-partners-content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

.module-partners-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    height: 350px
}

.module-partners-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (min-width:992px) {
    .module-partners-image {
        height: 580px
    }
}

.module-partners-content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.module-partners-content__cta .button-primary {
    background-color: var(--yellow);
    color: #003D50;
    display: flex;
}
.module-partners-content__cta:hover .button-primary {
    background-color: #003D50;
    color: #FFFFFF;
}

.module-partners-content__cta .button-primary p{
    color: #003D50;
}
.module-partners-content__cta .button-primary .icon{
    color: #003D50;
}
.module-partners-content__cta:hover .button-primary p{
    color: #FFFFFF;
}
.module-partners-content__cta:hover .button-primary .icon{
    color: #FFFFFF;
}

.module-partners.section-xcorp {
    --bg-content: #1D1D1D
}

.module-partners.section-school {
    --bg-content: var(--blue-dark)
}

.module-partners.section-apie {
    --bg-content: var(--purple)
}

.module-partners.section-camp {
    --bg-content: var(--orange)
}

.module-partners.section-fundacion {
    --bg-content: var(--white)
}

.module-partners.section-fundacion .title-secondary h2 {
    color: var(--color-black) !important
}

/* FOOTER */
.footer {
    background-color: var(--gray-light);
    border-top: 10px solid var(--orange)
}

.footer .bg-black {
    background-color: var(--purple) !important
}

.footer .paragraph p {
    font-size: 14px
}

.footer__nav-title a {
    color: var(--orange) !important;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.footer__nav-title a.disabled {
    pointer-events: none
}

.footer__nav-link a {
    color: rgba(31, 30, 30, 1);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
    padding: 4px 1rem;
    position: relative;
    text-decoration: none
}

.footer__nav-link a.active,
.footer__nav-link a:hover {
    color: var(--color-black);
    text-decoration: underline
}

.footer .collapse-toggle~.collapse:not(.show) {
    display: block
}

.footer .nav-link.collapsed .icon {
    display: none
}

.footer .icon-arrow-down:before {
    content: "\e90e";
    font-family: var(--icons-kajuyali);
    font-size: 10px
}

@media screen and (max-width: 767px) {
    .footer .collapse-toggle~.collapse:not(.show) {
        display: none
    }

    .footer .collapse-toggle {
        padding: 10px 0
    }

    .footer .nav-link {
        display: contents;
        pointer-events: initial;
    }

    .footer .nav-link.collapsed .icon {
        display: inline-block
    }
}

.footer .collapse-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer__disclaimer-link a {
    color: var(--white);
    font-size: 12px;
    margin-bottom: 0;
    position: relative;
    text-decoration: none
}

.footer__disclaimer-link a.active,
.footer__disclaimer-link a:hover {
    color: var(--yellow);
    font-weight: bold
}

.footer__social a {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: var(--color-black);
    text-decoration: none
}

.footer__social a:active,
.footer__social a:focus,
.footer__social a:hover {
    background-color: var(--yellow)
}

.footer__social a .icon {
    font-size: 12px;
    color: inherit
}

.footer__social.facebook a {
    background-image: url('/media/facebook_blue.svg');
}

.footer__social.facebook:hover a {
    background-image: url('/media/facebook_hover.svg');
}

.footer__social.linkedin a {
    background-image: url('/media/linkedin_blue.svg');
}

.footer__social.linkedin:hover a {
    background-image: url('/media/linkedin_hover.svg');
}

.footer__social.instagram a {
    background-image: url('/media/instagram_blue.svg');
}

.footer__social.instagram:hover a {
    background-image: url('/media/instagram_hover.svg');
}

.footer__social.youtube a {
    background-image: url('/media/youtube_blue.svg');
}

.footer__social.youtube:hover a {
    background-image: url('/media/youtube_hover.svg');
}

.footer__logo-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 90px;
    height: 40px;*/
    position: relative;
}

.footer__logo-partner-clicktag{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer__logo-partner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all .3s ease;
    filter: saturate(0);
    opacity: .6
}

.footer__logo-partner:hover img {
    filter: none;
    opacity: 1
}

.footer__separator hr {
    background: var(--white);
    opacity: .2
}

.footer__copyright p {
    color: var(--gray-50);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0
}

.footer__bbt img {
    -webkit-filter: saturate(0) brightness(5);
    filter: saturate(0) brightness(5);
    opacity: .5
}

.footer-xpr-main span {
    width: 13px;
    height: 24px;
    -o-object-fit: contain;
    object-fit: contain
}

.footer-xpr-main__bbt img {
    width: 80px;
    height: 15px;
    object-fit: contain;
}

.footer-xpr-main__xpr img {
    width: 83px;
    height: 15px;
    object-fit: contain
}

.footer-xpr__logo {
    width: 250px;
    height: 15px;
    -o-object-fit: contain;
    object-fit: contain
}

.footer__item .nav-link {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase
}

.footer__item .nav-link:hover::after {
    content: "";
    display: block;
    position: relative;
    height: 3px;
    width: auto;
    background: #fff
}

.footer__item .active::after {
    content: "";
    display: block;
    position: relative;
    height: 3px;
    width: auto;
    background: #fff
}

.footer__logo a {
    text-decoration: none
}

.footer__logo img {
    width: 100px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    -webkit-filter: brightness(100);
    filter: brightness(100)
}

@media screen and (min-width:768px) {
    .footer__logo img {
        margin: 0 0
    }
}

/* WHATSAPP */
.whatsapp-link {
    position: fixed;
    z-index: 990;
    bottom: 5rem;
    right: 1rem;
    -webkit-transform: translate(0, 50%);
    transform: translate(0, 50%);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    --size: 60px
}

.whatsapp-link img {
    width: var(--size);
    height: var(--size);
    -o-object-fit: contain;
    object-fit: contain
}

@media screen and (min-width:576px) {
    .whatsapp-link {
        --size: 80px
    }
}

/* CUSTOM PADDINGS */
.m-6 {
    margin: 6rem !important
}

@media screen and (min-width:576px) {
    .m-sm-6 {
        margin: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .m-md-6 {
        margin: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .m-lg-6 {
        margin: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .m-xl-6 {
        margin: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .m-xxl-6 {
        margin: 6rem !important
    }
}

.my-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important
}

@media screen and (min-width:576px) {
    .my-sm-6 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .my-md-6 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .my-lg-6 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .my-xl-6 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .my-xxl-6 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
}

.mx-6 {
    margin-left: 6rem !important;
    margin-right: 6rem !important
}

@media screen and (min-width:576px) {
    .mx-sm-6 {
        margin-left: 6rem !important;
        margin-right: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .mx-md-6 {
        margin-left: 6rem !important;
        margin-right: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .mx-lg-6 {
        margin-left: 6rem !important;
        margin-right: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .mx-xl-6 {
        margin-left: 6rem !important;
        margin-right: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .mx-xxl-6 {
        margin-left: 6rem !important;
        margin-right: 6rem !important
    }
}

.mt-6 {
    margin-top: 6rem !important
}

@media screen and (min-width:576px) {
    .mt-sm-6 {
        margin-top: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .mt-md-6 {
        margin-top: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .mt-lg-6 {
        margin-top: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .mt-xl-6 {
        margin-top: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .mt-xxl-6 {
        margin-top: 6rem !important
    }
}

.mb-6 {
    margin-bottom: 6rem !important
}

@media screen and (min-width:576px) {
    .mb-sm-6 {
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .mb-md-6 {
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .mb-lg-6 {
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .mb-xl-6 {
        margin-bottom: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .mb-xxl-6 {
        margin-bottom: 6rem !important
    }
}

.ms-6 {
    margin-left: 6rem !important
}

@media screen and (min-width:576px) {
    .ms-sm-6 {
        margin-left: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .ms-md-6 {
        margin-left: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .ms-lg-6 {
        margin-left: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .ms-xl-6 {
        margin-left: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .ms-xxl-6 {
        margin-left: 6rem !important
    }
}

.me-6 {
    margin-right: 6rem !important
}

@media screen and (min-width:576px) {
    .me-sm-6 {
        margin-right: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .me-md-6 {
        margin-right: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .me-lg-6 {
        margin-right: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .me-xl-6 {
        margin-right: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .me-xxl-6 {
        margin-right: 6rem !important
    }
}

.p-6 {
    padding: 6rem !important
}

@media screen and (min-width:576px) {
    .p-sm-6 {
        padding: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .p-md-6 {
        padding: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .p-lg-6 {
        padding: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .p-xl-6 {
        padding: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .p-xxl-6 {
        padding: 6rem !important
    }
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
}

@media screen and (min-width:576px) {
    .py-sm-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .py-md-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .py-lg-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .py-xl-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .py-xxl-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
}

.px-6 {
    padding-left: 6rem !important;
    padding-right: 6rem !important
}

@media screen and (min-width:576px) {
    .px-sm-6 {
        padding-left: 6rem !important;
        padding-right: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .px-md-6 {
        padding-left: 6rem !important;
        padding-right: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .px-lg-6 {
        padding-left: 6rem !important;
        padding-right: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .px-xl-6 {
        padding-left: 6rem !important;
        padding-right: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .px-xxl-6 {
        padding-left: 6rem !important;
        padding-right: 6rem !important
    }
}

.pt-6 {
    padding-top: 6rem !important
}

@media screen and (min-width:576px) {
    .pt-sm-6 {
        padding-top: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .pt-md-6 {
        padding-top: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .pt-lg-6 {
        padding-top: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .pt-xl-6 {
        padding-top: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .pt-xxl-6 {
        padding-top: 6rem !important
    }
}

.pb-6 {
    padding-bottom: 6rem !important
}

@media screen and (min-width:576px) {
    .pb-sm-6 {
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .pb-md-6 {
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .pb-lg-6 {
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .pb-xl-6 {
        padding-bottom: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .pb-xxl-6 {
        padding-bottom: 6rem !important
    }
}

.ps-6 {
    padding-left: 6rem !important
}

@media screen and (min-width:576px) {
    .ps-sm-6 {
        padding-left: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .ps-md-6 {
        padding-left: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .ps-lg-6 {
        padding-left: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .ps-xl-6 {
        padding-left: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .ps-xxl-6 {
        padding-left: 6rem !important
    }
}

.pe-6 {
    padding-right: 6rem !important
}

@media screen and (min-width:576px) {
    .pe-sm-6 {
        padding-right: 6rem !important
    }
}

@media screen and (min-width:768px) {
    .pe-md-6 {
        padding-right: 6rem !important
    }
}

@media screen and (min-width:992px) {
    .pe-lg-6 {
        padding-right: 6rem !important
    }
}

@media screen and (min-width:1200px) {
    .pe-xl-6 {
        padding-right: 6rem !important
    }
}

@media screen and (min-width:1400px) {
    .pe-xxl-6 {
        padding-right: 6rem !important
    }
}

.modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff8200'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    opacity: 1;
}

.modal .modal-info {
    border-left: 50px solid var(--blue-dark);
    background: #f8f8f8
}

.modal .modal-body {
    padding: 1rem 2rem;
    font-size: 16px;
    color: #1f1e1e
}

.modal .title-primary h4 {
    margin-bottom: 10px;
    font-size: 30px;
    color: var(--blue-dark)
}

/* MODULE 404 */
.module-404 {
    background: #fff;
}

.module-404__title h2,
.module-404__title h3,
.module-404__title h4,
.module-404__title h5,
.module-404__title h6 {
    color: var(--orange);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 0;
    text-transform: uppercase;
    line-height: 42px
}

@media screen and (min-width:768px) {

    .module-404__title h2,
    .module-404__title h3,
    .module-404__title h4,
    .module-404__title h5,
    .module-404__title h6 {
        font-size: 52px;
        line-height: 62px
    }
}

.module-404__button .button-secondary {
    background-color: var(--blue-dark)
}

.module-404__img img {
    width: 279px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain
}

@media screen and (min-width:768px) {
    .module-404__img img {
        width: 328px;
        height: 375px
    }
}

@media screen and (min-width:992px) {
    .module-404__img img {
        width: 428px;
        height: 375px
    }
}

@media screen and (min-width:1200px) {
    .module-404__img img {
        width: 459px;
        height: 439px
    }
}

@media screen and (min-width:1400px) {
    .module-404__img img {
        width: 647px;
        height: 532px
    }
}

#CookiebotWidget .CookiebotWidget-logo svg circle {
    fill: var(--blue-dark) !important
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change {
    background-color: var(--blue-dark) !important;
    border-color: var(--blue-dark) !important
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li.CookiebotWidget-approved svg {
    fill: var(--blue-dark) !important
}

#CookiebotWidget .CookiebotWidget-consent-details button {
    color: var(--blue-dark) !important
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw {
    border-color: var(--blue-dark) !important
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
    background-color: var(--blue-dark) !important;
    border-color: var(--blue-dark) !important
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    border-color: var(--blue-dark) !important
}


#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a {
    color: var(--blue-dark) !important
}

.module-12 .card-module-12__img:hover img{
    -webkit-filter: saturate(0);
    filter: saturate(0);
}

/* MODULE 25 */
.module-25--gray {
    background: var(--gray-10)
}

.module-25__cta .button-primary {
    background: #fff;
    border: 2px solid var(--blue-dark)
}

.module-25__cta .button-primary:hover {
    background: var(--blue-dark)
}

.module-25__cta .button-primary p {
    color: var(--blue-dark)
}

.module-25__cta .button-primary .icon {
    color: var(--orange)
}

.module-25__cta .button-primary:hover p,
.module-25__cta .button-primary:hover .icon {
    color: #fff
}

.module-25__item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #6a6a6a
}

.module-25__item img {
    filter: grayscale(100%);
}

.module-25__item h3 {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
}

.module-25__item:hover {
    color: var(--blue-dark)
}

.module-25__item:hover:after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
}

.module-25__item:hover img {
    filter: none;
}

@media(min-width: 768px) {
    .module-25__item {
        min-height: 290px;
    }
    .module-25__item h3 {
        min-height: 60px;
        font-size: 20px;
        line-height: 1.5
    }
}

/* MODULE 26 */
.module-26--gray {
    background: var(--gray-10);
}

.module-26__title h2 {
    font-weight: 700;
    color: var(--blue-dark)
}

.module-26__cta .button-primary {
    background: #fff;
    border: 2px solid var(--blue-dark);
}

.module-26__cta .button-primary:hover {
    background: var(--blue-dark)
}

.module-26__cta .button-primary p,
.module-26__cta .button-primary .icon {
    color: var(--blue-dark)
}

.module-26__cta .button-primary:hover p,
.module-26__cta .button-primary:hover .icon {
    color: #fff
}

.flip-card {
    background-color: transparent;
    width: 100%;
    max-width: 196px;
    height: 188px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

.flip-card-front {
    border-radius: 50%;
    overflow: hidden;
}

.flip-card-back {
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    transform: rotateY(180deg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 15px;
    font-weight: 500;
    color: #fff
}

.flip-card-back img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .3;
    z-index: 0;
}

.flip-card-back div {
    position: relative;
    padding: 10px 20px;
    z-index: 1;
}

.flip-card-back h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--yellow)
}

@media(min-width: 768px) {
    .flip-card {
        height: 196px;
    }
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item a {
    text-decoration: none;
    color: var(--blue-dark);
}

.breadcrumb-item.home a {
    color: var(--blue-dark);
}

.breadcrumb-item+.breadcrumb-item::before {
    font-weight: 700;
    color: var(--blue-dark);
}

.breadcrumb .breadcrumb-item:last-child a,
.breadcrumb-item.active {
    color: var(--orange);
}

/* MODULE 27 */
.module-27 .title-secondary h2 {
    color: var(--orange);
}

.module-27 .paragraph strong {
    font-size: 20px
}

.module-27__cta .button-primary {
    background: #fff;
    border: 2px solid var(--blue-dark);
}

.module-27__cta .button-primary:hover {
    background: var(--blue-dark)
}

.module-27__cta .button-primary p,
.module-27__cta .button-primary .icon {
    color: var(--blue-dark)
}

.module-27__cta .button-primary:hover p,
.module-27__cta .button-primary:hover .icon {
    color: #fff
}

@media(min-width: 1200px) {
    .module-27__img {
        display: inline-block;
        position: relative;
        width: 542px;
        height: 578px;
        max-width: 100%;
        padding: 33px 33px 69px;
        background: #fff;
        box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.2)
    }
}

.module-27__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.module-27__img.img0 {
    position: absolute;
    top: 0;
    left: 35px;
    z-index: -1;
    transform: rotate(-6deg);
}

.module-27__img.img1 {
    position: absolute;
    top: 45px;
    left: 16px;
    z-index: -2;
    transform: rotate(-14deg);
}

/* MODULO 28 */
.module-28 {
    background: #E0F8FF;
}

.module-28 .btn-tag {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 291px;
    height: 136px;
    padding: 0 26px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 68px;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--blue-dark);
}

@media(max-width: 500px) {
    .module-28 .btn-tag {
        width: 100%;
        border-radius: 50px;
        font-size: 18px;
    }
}

.module-28 .btn-tag--selected {
    background: var(--blue-dark);
    color: #fff;
}

.module-28 .btn-tag--selected img {
    filter: brightness(100);
}

/* MODULE 29 */
.module-29 .contact-info .item {
    background: #fff;
    transition: all .3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px
}

.module-29 .contact-info .item--title h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--blue-dark)
}

.module-29 .contact-info .item--content {
    font-size: 13px;
    line-height: 20px;
    color: var(--blue-dark)
}

@media(min-width: 1200px) {
    .module-29 .contact-info .item {
        width: 200px;
        height: 240px;
        overflow: hidden;
        cursor: pointer
    }

    .module-29 .contact-info .item.active {
        width: 424px;
        transition: 0 none;
        cursor: default
    }

    .module-29 .contact-info .item:not(.active) .item--title h3 {
        color: #6a6a6a
    }

    .module-29 .contact-info .item:not(.active) .item--content {
        display: none
    }

    .module-29 .contact-info .item:not(.active) .item--icon {
        filter: saturate(0);
        opacity: .8
    }
}

li.pagination-item a{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Maiandra;
    font-weight: 600;
    text-decoration: none;
    color: #000000;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #FFFFFF;
}
li.pagination-item:hover a{
    background-color: #D9D9D9;
}
li.pagination-item.active a{
    background-color: #D9D9D9;
}
.academic-calendar{
    height: 500px;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #FF8200;
}


.academic-calendar:-webkit-scrollbar{
    width: 8px;
    background-color: #FF8200;
    border-radius: 16px;
}
.academic-calendar:-webkit-scrollbar-track{
    background-color: #FF8200;
    border-radius: 16px;
}
.academic-calendar:-webkit-scrollbar-thumb{
    background-color: #FFF;
}

/* webkit browsers */
.academic-calendar::-webkit-scrollbar{
    width: 8px;
    background-color: #FF8200;
    border-radius: 16px;
}
.academic-calendar::-webkit-scrollbar-track{
    background-color: #FFF;
}
.academic-calendar::-webkit-scrollbar-thumb{
    background-color: #FF8200;
    border-radius: 16px;
    
}
