@charset "UTF-8";
/**
 * Custom CSS
 * 
 * @author @dwengs
 * @copyright 2025, @dwengs
 */


/**
 *
 */
:root {

    --color-deep-blue: #0b5288;
    --color-deep-blue-alt: #e9f6fb;
    --color-turquoise: #14c2c0;
    --color-turquoise-alt: #dcf5f2;
    --color-light-green: #68b845;
    --color-light-green-alt: #daefd1;
    --color-teal-blue: #1e95ab;
    --color-teal-blue-alt: #e7fefd;

    --color-primary: var(--color-deep-blue);
    --color-primary-alt: var(--color-deep-blue-alt);
    --color-secondary: var(--color-turquoise);
    --color-secondary-alt: var(--color-turquoise-alt);
    --color-tertiary: var(--color-light-green);
    --color-tertiary-alt: var(--color-light-green-alt);
}


/**
 *
 */
html, body {
    font-size: 14px;
}


/**
 *
 */
body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


/*
 *
 */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    /* --bs-gutter-x: 0; */
    /* --bs-gutter-y: 0; */
}


/**
 *
 */
.h, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-weight: 800;
    line-height: 1.2;
    --header-multiplier: 1;
}
h1, .h1 {
    font-size: 1.75rem;
    font-size: calc(1.75rem * var(--header-multiplier));
}
h2, .h2 {
    font-size: 1.5rem;
    font-size: calc(1.5rem * var(--header-multiplier));
}
h3, .h3 {
    font-size: 1.375rem;
    font-size: calc(1.375rem * var(--header-multiplier));
}
h4, .h4 {
    font-size: 1.25rem;
    font-size: calc(1.25rem * var(--header-multiplier));
}
h5, .h5 {
    font-size: 1.125rem;
    font-size: calc(1.125rem * var(--header-multiplier));
}
h6, .h6 {
    font-size: 1rem;
    font-size: calc(1rem * var(--header-multiplier));
}


/**
 *
 */
.text-bg-primary {
    background-color: var(--color-primary) !important;
    color: #ffffffdd !important;
}


/**
 *
 */
.headers {
    margin-bottom: 2rem;
}
.headers > .h {
    line-height: 1.2;
}
.headers.headers-line {
    position: relative;
}
.headers.headers-line:after {
    content: "";
    display: block;
    width: 120px;
    border-bottom: 2px solid var(--color-secondary);
    border-radius: 2px;
    padding-bottom: 1rem;
}
.headers.headers-line .h {
    margin: 0;
}
.headers.headers-line.text-center:after {
    margin: auto;
}


/**
 *
 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    height: 44px;
    padding: 0 1.5rem;
    border-radius: 44px;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-secondary);
    --bs-btn-hover-border-color: var(--color-secondary);
    --bs-btn-active-bg: var(--color-secondary);
    --bs-btn-active-border-color: var(--color-secondary);
    --bs-btn-disabled-bg: var(--color-secondary);
    --bs-btn-disabled-border-color: var(--color-secondary);
}
.btn-outline-primary {
    --bs-btn-color: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-active-bg: var(--color-primary);
    --bs-btn-active-border-color: var(--color-primary);
    --bs-btn-disabled-color: var(--color-primary);
    --bs-btn-disabled-border-color: var(--color-primary);
}
.btn i {
    font-size: calc(var(--bs-btn-font-size) * 1);
} 
.btn-outline-primary i {
    color: var(--color-primary);
}
.btn:hover {
    
}
.btn:hover i {
    
}


/**
 *
 */
.color-primary {
    color: var(--color-primary) !important;
}
.color-secondary {
    color: var(--color-secondary) !important;
}
.color-tertiary {
    color: var(--color-tertiary) !important;
}
.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-secondary {
    background-color: var(--color-secondary) !important;
}
.bg-tertiary {
    background-color: var(--color-tertiary) !important;
}


/**
 *
 */
.card {
    border: 0;
    border-radius: 1.25rem;
    box-shadow: 0 0 20px -10px #00000022;
}
.card-body {
    padding: 1.5rem;
}

/*
 *
 */
.form-control {
    
}
textarea.form-control {
    
}
.form-control::placeholder {
    
}
label.form-check-label {
    
}


/**
 *
 */
.topbar {
    position: absolute;
    width: 100%;
    z-index: 17;
    top: 12px;
}
.topbar-socials {

}
.topbar-socials ul {

}
.topbar-socials ul li {

}
.topbar-socials ul li a {
    display: flex;
    width: 24px;
    height: 22px;
    background-color: var(--color-teal-blue);
    background-color: #ffffff30;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 4px;
}
.topbar-languages {

}
.topbar-languages img {
    height: 16px;
    border-radius: 4px;
}


/**
 *
 */
.navbar {
    position: absolute;
    z-index: 16;
    width: 100%;
    padding: 16px;
}
.navbar-brand img {
    width: 106px;
}
.navbar-nav {
    gap: 0.25rem;
}
.nav-link {
    font-size: 0.875rem;
    color: #ffffffee;
    font-weight: 450;
    padding: 0.5rem 0.5rem !important;
    border-radius: 14px;
}
.nav-link:focus,
.nav-link:hover,
.nav-link.active,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    /* color: var(--color-primary); */
    background-color: #0b88418f;
    color: #fff !important;
    /* border-radius: 14px; */
}
.navbar-toggler {
    border: none;
    margin-right: -1rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* */
.offcanvas {
    background-color: var(--color-primary);
}
.offcanvas-header img {
    width: 106px;
}
.offcanvas-tools {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.offcanvas-tools .btn {
    background-color: var(--color-secondary);
}
.offcanvas-body {
    text-align: center;
}
.offcanvas-body .dropdown-menu {
    position: relative !important;
    transform: unset !important;
    margin-top: 5px !important;
}
.offcanvas-body .nav-link {
    font-size: 1rem;
}
.offcanvas-header .btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
}


/**
 *
 */
.dropdown-toggle::after {
    border: 1px solid #ffffff99;
    width: 5px;
    height: 5px;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    margin: 0 0 0 5px;
}
.dropdown-menu {
    background: #0b88418f;
    border: 0;
    border-radius: 16px 16px;
}
.dropdown-menu li {
}
.dropdown-menu li a {
    font-size: 0.8125rem;
    padding: 5px 16px !important;
    white-space: nowrap;
}
.dropdown-menu li a.nav-link:hover,
.dropdown-menu li a.nav-link.active {
    background-color: transparent;
}


/**
 *
 */
.carousel-item img {
    height: 70vh;
    max-height: 760px;
    object-fit: cover;
}
.carousel-item:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, #21232da1 30%, #2c374759 100%);
}
.carousel-captions {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 15;
    padding-top: 30vh;
}
.carousel-captions .h1 {
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
}
.carousel-captions .h4 {
    font-weight: 450;
    font-size: 1.125rem;
    color: var(--color-light-green);
    margin-bottom: 1rem;
}
.carousel-captions p {
    font-size: 1rem;
    color: #ffffffdd;
}


/**
 *
 */
.separator {
    height: 30vh;
    background-size: auto;
    background-position: 0 40%;
    /* filter: brightness(0.4); */
    display: flex;
    align-items: flex-end;
    position: relative;
    padding-bottom: 16px;
}
.separator-content {
}
.separator .container {
    position: relative;
}
.separator:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000008f;
}
.separator-caption {
}
.separator-caption .h {
    padding: 0 20%;
}
.separator-caption p {
    color: #ffffffbb;
    margin-bottom: 36px;
    font-size: 0.9375rem;
}
.separator-caption .nav-breadcrumb {
    display: flex;
    justify-content: center;
    font-size: 0.875rem;
}
.breadcrumb {
}
.breadcrumb li a {
    color: #ffffffbb;
}
.breadcrumb li {
    
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff60;
}
.breadcrumb li.active span {
    color: var(--color-tertiary);
}


/**
 *
 */
.badge-custom {
    text-transform: uppercase;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 650;
    padding: 8px 1.5rem 7px;
    border-radius: 20px;
    display: inline-flex;
    margin-bottom: 1rem;
}


/**
 *
 */
.text-default {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-weight: 450;
}
.text-default h1,
.text-default h2,
.text-default h3,
.text-default h4,
.text-default h5,
.text-default h6,
.text-default strong {
    color: #333;
}
.text-default h1,
.text-default h2,
.text-default h3,
.text-default h4,
.text-default h5,
.text-default h6 {
    margin-bottom: 1rem !important;
}
.img-float-right {
    max-width: 100%;
    margin: 0 0 1rem 0;
    float: unset;
    display: block;
}


/**
 *
 */
.section-home {
    margin: 0vh;
    padding: 10vh 0;
}


/**
 * Swiper
 */
.swiper-reviews {
    padding: 30px 15px;
}


/**
 *
 */
.section-dialogue {
    background-color: var(--color-deep-blue-alt);
}
.card-dialogue img {
    width: 64px;
    background-color: var(--color-deep-blue-alt);
    padding: 10px;
    border-radius: 1rem;
    margin-bottom: 20px;
}
.card-dialogue .card-body {
    padding: 2rem;
}
.card-dialogue .text-default {
    font-size: 0.9375rem;
}
.card.card-dialogue-news {
    box-shadow: 0 0 20px -15px;
}
.card.card-dialogue-news .card-img {
    height: 300px;
    object-fit: cover;
    object-position: 0 0;
}


/**
 *
 */
.card.card-gysu-timeline {
    box-shadow: none;
    background-color: var(--color-deep-blue-alt);
}
.card.card-gysu-timeline .card-body {
    padding: 2rem;
}
.card.card-gysu-timeline .card-icon {
    display: flex;
    width: 100%;
    max-width: 80px;
    aspect-ratio: 1;
    background-color: var(--color-secondary-alt);
    background-color: #7cc0b7;
    color: #fff;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}
.card.card-gysu-timeline .card-icon i {
    font-size: 2rem;
}
.card.card-gysu-timeline .badge-custom {
    font-size: 0.675rem;
    padding: 5px 16px;
    text-transform: none;
    background-color: var(--color-secondary-alt);
    background-color: #7cc0b7;
}
.card.card-gysu-timeline .text-default {
    font-size: 0.9375rem;
}
.gysu-timeline .row:nth-child(even) {
    flex-direction: row-reverse;
}
.gysu-timeline-line {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gysu-timeline-line:before {
    content: "";
    display: block;
    height: 100%;
    width: 5px;
    background-color: var(--color-deep-blue-alt);
}
.gysu-timeline-line:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--color-primary);
    border-radius: 50%;
    outline: 8px solid #fff;
    margin-left: -10px;
}


/**
 *
 */
.section-pilot {
    background-color: var(--color-turquoise-alt);
}
.card-pilot {
    overflow: hidden;
}
.card-pilot img {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    height: 30vh;
    max-height: 270px;
    object-fit: cover;
}
.card-pilot > .badge-custom {
    position: absolute;
    margin: 1rem;
}
.card-pilot .text-default {
    font-size: 1rem;
}


/**
 *
 */
.card.card-review {
    box-shadow: 0 0 20px -10px #00000060;
    border-radius: 1.75rem;
}
.card.card-review .text-default {
    font-size: 0.875rem;
    color: #777;
}
.card.card-review .review-footer {
}
.card.card-review .review-footer img {
    border-radius: 50%;
    border: 7px solid #eee;
    max-height: 48px;
    max-width: 48px;
}
.card.card-review .review-footer .h {
    font-size: 1rem;
}
.card.card-review .review-footer p {
    font-size: 0.8125rem;
    color: #999;
}
.card.card-review .card-body {
    padding: 2rem;
}


/**
 *
 */
.section-datas {
    background-color: var(--color-teal-blue);
}
.section-datas .headers.headers-line,
.section-datas .headers.headers-line .h,
.section-datas .headers.headers-line+.text-default {
    color: #fff;
}
.section-datas .headers.headers-line+.text-default {
    color: #ffffffcc;
}
.card.card-data {
    background-color: #ffffff10;
    text-align: center;
}
.card.card-data .h {
    color: #fff;
}
.card.card-data .text-default {
    color: #ffffffcc;
    font-size: 0.9375rem;
}
.card.card-data h3 {
    font-size: 3.25rem;
}
.card.card-data .card-body {
    padding: 2rem;
}


/**
 *
 */
.card.card-partner {
    box-shadow: 0 0 30px -10px #00000020;
    /* border-radius: 1.75rem; */
}
.card.card-partner img {
    max-height: 90px;
    max-width: 100%;
}
.card.card-partner .card-body {
    text-align: center;
    padding: 1rem;
}


/**
 *
 */
.list-contact-page {

}
.list-contact-page li {

}
.list-contact-page li i {
    color: var(--color-primary);
    width: 26px;
}


/**
 *
 */
footer {
    background-color: var(--color-primary);
}
.footer-content {
    padding: 6vh 0;
}
.footer-content-column {
    color: #ffffffcc;
}
.footer-content-column-about {
    
}
.footer-content-column-about .footer-content-logo {
    margin-bottom: 1rem;
}
.footer-content-column-about .footer-content-logo img {
    height: 108px;
}
.footer-content-column-about .text-default {
    color: #ffffffcc;
    font-size: 1rem;
}
.footer-content-column-about .footer-socials {
    
}
.footer-content-column-about .footer-socials ul {
    
}
.footer-content-column-about .footer-socials ul li {
    
}
.footer-content-column-about .footer-socials ul li a {
    display: flex;
    background-color: #ffffff20;
    color: #ffffffdd;
    width: 40px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.footer-content-column .headers {
    color: #fff;
}
.footer-copyright {
    font-size: 0.8125rem;
    color: #ffffff66;
}
.footer-copyright .container {
    position: relative;
    padding-top: 24px;
    padding-bottom: 24px;
}
.footer-copyright .container:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    width: calc(100% - calc(calc(var(--bs-gutter-x) * .5) * 2));
    border-top: 1px solid #ffffff30;
}
.footer-copyright a i {
    color: var(--color-tertiary);
    font-size: 0.75rem;
    margin: 0 2px;
}


/**
 *
 */
.grecaptcha-badge {
    display: none;
}


/**
 *      sm >= 576px
 */
@media (min-width: 576px){
    html, body {
        font-size: 15px;
    }
}


/**
 *      md >= 768px
 */
@media (min-width: 768px){
    html, body {
        font-size: 16px;
    }
    .h, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
        --header-multiplier: 1;
    }
    .carousel-item img {
        height: 85vh;
    }
    .carousel-captions {
        padding-top: 20vh;
    }
    .card.card-gysu-timeline .card-icon i {
        font-size: 1rem;
    }
    .navbar-brand img {
        width: 136px;
    }
    .img-float-right {
        max-width: 20vw;
        float: right;
        margin: 0 0 36px 36px;
    }
    .separator {
        height: 40vh;
    }
    .text-default {
        font-size: 1.125rem;
    }
}


/**
 *      lg >= 992px
 */
@media (min-width: 992px){
    .h, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
        --header-multiplier: 1.125;
    }
    .carousel-captions .container {
        /* position: relative; */
        padding-right: calc(1320px / 2.65);
    }
    .carousel-captions .h1 {
        font-size: 3rem;
    }
    .carousel-captions .h4 {
        font-size: 1.5rem;
    }
    .carousel-captions p {
        font-size: 1.125rem;
    }
}


/**
 *      xl >= 1200px
 */
@media (min-width: 1200px){
    .h, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
        --header-multiplier: 1.125;
    }
    .carousel-captions .h1 {
        font-size: 4rem;
    }
    .carousel-captions .h4 {
        font-size: 1.75rem;
    }
}


/**
 *      xxl >= 1400px
 */
@media (min-width: 1400px){
    .container {
        max-width: 1220px;
    }
    .h, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
        --header-multiplier: 1.25;
    }
}