@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 300;
    font-display: block;
    src: url("../webfonts/fa-light-300.woff2") format("woff2"), url("../webfonts/fa-light-300.ttf") format("truetype");
}

@font-face {
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype");
}

.far,
.fa-regular {
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}

.fal,
.fa-light {
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
    color: #333;
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 12px;
    }
}

.page-wrapper {
    overflow: hidden;
}

.md-container {
    max-width: 900px;
    padding: 0 20px;
}

.xl-container {
    max-width: 1500px;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

h1,
h2,
h3,
h4 {
    color: #293272;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h3 {
    font-size: 28px;
}

.color-999 {
    color: #999;
}

a:hover {
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bold-numbers li::marker {
    font-weight: bold;
}

.btn {
    padding: 8px 25px;
    font-weight: 700;
}

.btn-primary {
    border-radius: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(180deg, #1559EA 0%, #293272 100%);
    box-shadow: 4px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, -4px -4px 4px 0px rgba(0, 0, 0, 0.15) inset;
}

    .btn-primary:hover {
        background: linear-gradient(180deg, #293272 0%, #293272 100%);
        box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.15) inset, 0px 0px 4px 0px rgba(0, 0, 0, 0.15) inset;
    }

.btn-secondary {
    background-color: #fff;
    border: 1px solid #1559EA;
    color: #1559EA;
    border-radius: 40px;
}

    .btn-secondary:hover {
        background: #1559EA;
        color: #fff;
    }

.long-btn {
    max-width: 320px;
    width: 100%;
    padding: 12px 25px;
}

.full-btn {
    width: 100%;
    padding: 12px 25px;
}

.form-control,
.form-select {
    background-color: #F9F9F9;
    border-color: #ddd;
    padding: 15px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    color: #333;
    font-weight: 600;
}

    .form-label .compulsory-input {
        color: #CF1717;
    }

.modal-header .btn-close {
    background: none;
    opacity: 1;
}

    .modal-header .btn-close i {
        font-size: 20px;
    }

        .modal-header .btn-close i::before {
            color: #293272;
        }

.modal-footer .btn i {
    padding-right: 8px;
}

.offcanvas-backdrop {
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.7);
}

    .offcanvas-backdrop.show {
        opacity: 1;
    }

.splash-wrapper {
    background: linear-gradient(107deg, #E5EFFF 0%, #FFF6ED 100.97%);
    background-size: cover;
    min-height: 100vh;
}

    .splash-wrapper .splash-header,
    .splash-wrapper .lang-switcher {
        padding: 25px 30px;
        display: flex;
        justify-content: flex-end;
    }

@media (max-width: 767.98px) {
    .splash-wrapper .splash-header,
    .splash-wrapper .lang-switcher {
        justify-content: center;
    }
}

.splash-wrapper .splash-header .dropdown-toggle,
.splash-wrapper .lang-switcher .dropdown-toggle {
    color: #293272;
    font-weight: 700;
    border: 1px solid #fff;
    border-radius: 32px;
    padding: 8px 15px;
}

    .splash-wrapper .splash-header .dropdown-toggle:after,
    .splash-wrapper .lang-switcher .dropdown-toggle:after {
        display: none;
    }

    .splash-wrapper .splash-header .dropdown-toggle i,
    .splash-wrapper .lang-switcher .dropdown-toggle i {
        position: relative;
        left: 5px;
        transform: rotate(0);
        transition: all 0.2s ease;
    }

    .splash-wrapper .splash-header .dropdown-toggle.show i,
    .splash-wrapper .lang-switcher .dropdown-toggle.show i {
        transform: rotate(180deg);
        transition: all 0.2s ease;
    }

.splash-wrapper .splash-header .dropdown-menu,
.splash-wrapper .lang-switcher .dropdown-menu {
    padding: 0;
    text-align: center;
    overflow: hidden;
}

.splash-wrapper .splash-header .dropdown-item:hover,
.splash-wrapper .lang-switcher .dropdown-item:hover {
    background: #293272;
    color: #fff;
}

.splash-wrapper .splash-header .current .dropdown-item,
.splash-wrapper .lang-switcher .current .dropdown-item {
    background: #293272;
    color: #fff;
}

.splash-wrapper .top-splash {
    text-align: center;
    padding: 20px 0 0;
}

    .splash-wrapper .top-splash .splash-logo {
        margin-bottom: 45px;
    }

@media (max-width: 767.98px) {
    .splash-wrapper .top-splash .splash-logo {
        width: 165px;
    }
}

.splash-wrapper .top-splash h3 {
    margin-bottom: 0;
}

.splash-wrapper .top-splash h1 {
    margin-bottom: 25px;
}

.splash-wrapper .top-splash p {
    color: #666;
}

.splash-wrapper .splash-body {
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
}

    .splash-wrapper .splash-body .splash-box {
        flex: 50% 0 0;
        background: linear-gradient(180deg, #FFF 80%, rgb(243, 246, 255) 100%), linear-gradient(180deg, rgb(22, 47, 130) 80%, #293272 100%);
    }

        .splash-wrapper .splash-body .splash-box a {
            display: block;
            text-align: center;
            padding: 35px 0;
            text-decoration: none;
            height: 100%;
        }

            .splash-wrapper .splash-body .splash-box a svg {
                margin-bottom: 15px;
            }

            .splash-wrapper .splash-body .splash-box a p {
                font-size: 18px;
                color: #293272;
            }

@media (max-width: 767.98px) {
    .splash-wrapper .splash-body .splash-box a p {
        font-size: 14px;
    }
}

.splash-wrapper .splash-body .splash-box a .btn {
    padding: 8px 25px;
    font-weight: 700;
}

    .splash-wrapper .splash-body .splash-box a .btn i {
        padding-left: 4px;
    }

@media (max-width: 767.98px) {
    .splash-wrapper .splash-body .splash-box a .btn {
        width: 100%;
        max-width: 210px;
    }
}

.splash-wrapper .splash-body .splash-box a:hover {
    background: #293272;
    color: #fff;
}

    .splash-wrapper .splash-body .splash-box a:hover h3,
    .splash-wrapper .splash-body .splash-box a:hover p {
        color: #fff;
    }

    .splash-wrapper .splash-body .splash-box a:hover stop:first-child {
        stop-color: #F89420;
    }

    .splash-wrapper .splash-body .splash-box a:hover stop:last-child {
        stop-color: #F33454;
    }

    .splash-wrapper .splash-body .splash-box a:hover .btn {
        border-color: #fff;
        background: #fff;
        color: #1559EA;
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }

.splash-wrapper .splash-body .splash-box:first-child {
    border-right: 1px solid #eee;
}

@media (max-width: 767.98px) {
    .splash-wrapper .splash-body {
        flex-direction: column;
        background: none;
    }

        .splash-wrapper .splash-body .splash-box a {
            display: flex;
            gap: 10px;
            padding: 20px;
        }

            .splash-wrapper .splash-body .splash-box a svg {
                width: 95px;
                margin-right: 15px;
            }

            .splash-wrapper .splash-body .splash-box a p {
                margin-bottom: 10px;
            }

            .splash-wrapper .splash-body .splash-box a .splash-card-content {
                text-align: left;
            }
}

.splash-wrapper .bottom-splash {
    padding: 35px 0;
    overflow: hidden;
}

    .splash-wrapper .bottom-splash .item-wrapper {
        border-radius: 15px;
        box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        /* keep content like images inside rounded box */
        margin: 12px;
    }

        .splash-wrapper .bottom-splash .item-wrapper .item a {
            display: block;
            text-align: center;
            text-decoration: none;
        }

            .splash-wrapper .bottom-splash .item-wrapper .item a img {
                align-self: stretch;
                aspect-ratio: 162/91;
            }

            .splash-wrapper .bottom-splash .item-wrapper .item a .splash-card-title {
                background: #fff;
                padding: 15px 0;
                color: #293272;
                font-weight: 700;
                transition: all 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
            }

@media (max-width: 91199.98px) {
    .splash-wrapper .bottom-splash .item-wrapper .item a .splash-card-title {
        font-size: 14px;
    }
}

.splash-wrapper .bottom-splash .item-wrapper:hover {
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
}

    .splash-wrapper .bottom-splash .item-wrapper:hover .item .splash-card-title {
        background: #293272;
        color: #fff;
    }

.splash-wrapper .splash-follow {
    text-align: center;
    padding: 30px 0;
}

    .splash-wrapper .splash-follow h6 {
        color: #333;
        margin-bottom: 15px;
    }

    .splash-wrapper .splash-follow ul {
        margin: 0;
        padding: 0;
    }

        .splash-wrapper .splash-follow ul li a {
            font-size: 24px;
            color: #293272;
        }

.splash-wrapper .splash-footer {
    padding: 20px 0 30px;
    border-top: 1px solid #999;
    text-align: center;
}

    .splash-wrapper .splash-footer p {
        font-size: 14px;
        color: #999;
    }

.header-wrapper {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991.98px) {
    .header-wrapper {
        padding: 10px 0;
    }
}

@media (min-width: 1200px) {
    .header-wrapper {
        padding: 15px;
    }
}

.left-header img {
    width: 110px;
}

@media (max-width: 767.98px) {
    .left-header img {
        width: 80px;
    }
}

.right-header {
    display: flex;
    gap: 25px;
    align-items: center;
}

@media (max-width: 767.98px) {
    .right-header {
        gap: 15px;
    }
}

.right-header .switch-site-switcher .dropdown-toggle,
.right-header .lang-switcher .dropdown-toggle {
    font-weight: 700;
    border: 1px solid #fff;
    border-radius: 32px;
    padding: 6px 15px;
}

    .right-header .switch-site-switcher .dropdown-toggle:after,
    .right-header .lang-switcher .dropdown-toggle:after {
        display: none;
    }

    .right-header .switch-site-switcher .dropdown-toggle i,
    .right-header .lang-switcher .dropdown-toggle i {
        position: relative;
        left: 5px;
        transform: rotate(0);
        transition: all 0.2s ease;
    }

    .right-header .switch-site-switcher .dropdown-toggle.show i,
    .right-header .lang-switcher .dropdown-toggle.show i {
        transform: rotate(180deg);
        transition: all 0.2s ease;
    }

.right-header .switch-site-switcher .dropdown-item:hover,
.right-header .lang-switcher .dropdown-item:hover {
    background: #293272;
    color: #fff;
}

.right-header .switch-site-switcher .current .dropdown-item,
.right-header .lang-switcher .current .dropdown-item {
    background: #293272;
    color: #fff;
}

.right-header .lang-switcher .dropdown-toggle {
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    color: #293272;
    padding: 7px 20px;
    font-size: 14px;
}

.right-header .switch-site-switcher .dropdown-toggle {
    background: #293272;
    color: #fff;
    border: 2px solid #fff;
    font-size: 14px;
}

@media (min-width: 992px) {
    .right-header .switch-site-switcher .dropdown-toggle {
        display: none;
    }
}

@media (min-width: 992px) {
    .right-header .switch-site-switcher .dropdown-menu {
        display: flex;
        position: relative;
        min-width: 0;
        padding: 5px;
        border-radius: 40px;
        background: #F3F6FF;
        border: 0;
    }

        .right-header .switch-site-switcher .dropdown-menu .dropdown-item {
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.4;
        }
}

.cd-search .form {
    font-size: 26px;
    padding: 0 100px;
    position: relative;
    top: 25%;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width: 767.98px) {
    .cd-search .form {
        padding: 0 30px;
    }

        .cd-search .form .close-btn {
            right: 30px;
            bottom: 6px;
        }
}

.cd-search-trigger,
.cd-nav-trigger {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    color: #293272;
    z-index: 3;
    font-size: 28px;
}

@media (max-width: 767.98px) {
    .cd-search-trigger,
    .cd-nav-trigger {
        font-size: 21px;
    }
}

.cd-search-trigger::before, .cd-search-trigger::after {
    /* search icon */
    content: "";
    position: absolute;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.cd-search-trigger span {
    /* container for the X icon */
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

    .cd-search-trigger span::before, .cd-search-trigger span::after {
        /* close icon */
        content: "";
        position: absolute;
        display: inline-block;
        height: 3px;
        width: 22px;
        top: 50%;
        margin-top: -2px;
        left: 50%;
        margin-left: -11px;
        background: #2e3233;
        opacity: 0;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
        -moz-transition: opacity 0.3s, -moz-transform 0.3s;
        transition: opacity 0.3s, transform 0.3s;
    }

    .cd-search-trigger span::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .cd-search-trigger span::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.cd-search-trigger.search-is-visible::before, .cd-search-trigger.search-is-visible::after {
    /* hide search icon */
    opacity: 0;
}

.cd-search-trigger.search-is-visible span::before, .cd-search-trigger.search-is-visible span::after {
    /* show close icon */
    opacity: 1;
}

.cd-search-trigger.search-is-visible span::before {
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.cd-search-trigger.search-is-visible span::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cd-header-buttons {
    position: absolute;
    display: inline-block;
    top: 2px;
    right: 0;
    z-index: 10;
}

    .cd-header-buttons li {
        display: inline-block;
    }

.cd-search {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #eee;
    top: 0;
    left: 0;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

    .cd-search form {
        height: 100%;
        width: 100%;
    }

    .cd-search input {
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: #eee;
        height: 80px;
        width: 100%;
        font-size: 26px;
        padding: 0;
        padding-right: 40px;
        box-shadow: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -o-appearance: none;
        appearance: none;
        border-bottom: 1px solid #999;
    }

        .cd-search input::-webkit-input-placeholder, .cd-search input::-moz-placeholder, .cd-search input:-moz-placeholder, .cd-search input:-ms-input-placeholder {
            color: #555;
        }

@media (max-width: 767.98px) {
    .cd-search input {
        font-size: 16px;
        height: 50px;
    }
}

.cd-search input:focus {
    outline: none;
    border: 0;
    border-bottom: 1px solid #999;
    box-shadow: none;
}

.cd-search .close-btn {
    position: absolute;
    bottom: 25px;
    right: 100px;
    color: #293272;
}

.cd-search.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-search h2 {
    font-size: 24px;
    text-transform: uppercase;
    color: #333;
    font-weight: normal;
}

.main-nav-wrapper .main-nav-trigger {
    color: #293272;
    font-size: 24px;
}

.main-nav-wrapper .offcanvas {
    width: 500px;
    height: 100vh;
}

@media (max-width: 767.98px) {
    .main-nav-wrapper .offcanvas {
        width: 320px;
    }
}

.main-nav-wrapper .offcanvas .offcanvas-header {
    justify-content: space-between;
    padding: 25px 40px;
}

@media (max-width: 767.98px) {
    .main-nav-wrapper .offcanvas .offcanvas-header {
        padding: 15px 15px;
    }
}

.main-nav-wrapper .offcanvas .offcanvas-header .dropdown-toggle {
    color: #293272;
    font-weight: 600;
    border: 0;
}

    .main-nav-wrapper .offcanvas .offcanvas-header .dropdown-toggle i {
        padding-left: 4px;
    }

    .main-nav-wrapper .offcanvas .offcanvas-header .dropdown-toggle:after {
        display: none;
    }

.main-nav-wrapper .offcanvas .offcanvas-header .dropdown-menu li.current .dropdown-item, .main-nav-wrapper .offcanvas .offcanvas-header .dropdown-menu li:hover .dropdown-item {
    background: #293272;
    color: #fff;
}

.main-nav-wrapper .offcanvas .btn-dismiss {
    background: none;
    border: 0;
    font-size: 28px;
    color: #293272;
}

.site-indicator-wrapper {
    padding: 0 30px;
}

@media (max-width: 767.98px) {
    .site-indicator-wrapper {
        padding: 0 20px;
    }
}

.site-indicator-wrapper .site-indicator {
    padding: 4px;
    background: #F3F6FF;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
}

    .site-indicator-wrapper .site-indicator .indicator {
        padding: 10px 35px;
        color: #666666;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 700;
        flex: 50% 0 0;
        text-align: center;
    }

        .site-indicator-wrapper .site-indicator .indicator.active {
            color: #fff;
            background: #293272;
            border-radius: 40px;
        }

@media (max-width: 767.98px) {
    .site-indicator-wrapper .site-indicator .indicator {
        font-size: 15px;
        padding: 8px 20px;
    }
}

.main-nav {
    padding: 10px 40px;
}

@media (max-width: 767.98px) {
    .main-nav {
        padding: 0 20px;
    }
}

.main-nav .nav-item > a {
    display: block;
    color: #293272;
    font-weight: 600;
    padding: 10px 0;
    text-decoration: none;
}

.main-nav .nav-item .nav-toggle {
    font-weight: 600;
    color: #293272;
    background: none;
    border: 0;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

    .main-nav .nav-item .nav-toggle:after {
        content: "\f078";
        font-family: "Font Awesome 6 Pro";
        font-weight: 400;
        margin-left: auto;
        width: 24px;
        height: 24px;
        position: absolute;
        right: 0;
        top: 8px;
        transition: all 0.3s ease;
    }

    .main-nav .nav-item .nav-toggle.collapsed:after {
        transform: rotate(-90deg);
        transition: all 0.3s ease;
    }

.main-nav .nav-item .submenu-body {
    background: #F7F8FC;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 15px;
}

@media (max-width: 767.98px) {
    .main-nav .nav-item .submenu-body {
        margin-top: 0;
    }
}

.main-nav .nav-item .submenu-body ul {
    padding-bottom: 0;
    margin-bottom: 0;
}

    .main-nav .nav-item .submenu-body ul li {
        padding-bottom: 12px;
    }

        .main-nav .nav-item .submenu-body ul li:last-child {
            padding-bottom: 0;
        }

        .main-nav .nav-item .submenu-body ul li a {
            text-decoration: none;
            color: #293272;
            font-weight: 700;
            display: block;
        }

.bottom-nav {
    padding: 15px 20px;
    margin-bottom: 50px;
}

    .bottom-nav .bottom-nav-item {
        border-radius: 12px;
        background: linear-gradient(107deg, #293272 0%, #1559EA 100.97%);
        margin-bottom: 10px;
        font-weight: 600;
    }

        .bottom-nav .bottom-nav-item a {
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
            text-decoration: none;
        }

@media (max-width: 767.98px) {
    .bottom-nav .bottom-nav-item a {
        padding: 10px 15px;
    }
}

.bottom-nav .bottom-nav-item a i {
    color: #FF7C00;
}

.mainSwiper .mainBanner {
    background-size: cover;
    height: 0;
    padding-bottom: 56%;
    position: relative;
}

@media (max-width: 500.98px) {
    .mainSwiper .mainBanner {
        padding-bottom: 125%;
    }
}

.mainSwiper .mainBanner img {
    width: 100%;
}

.mainSwiper .mainCaption {
    position: absolute;
    left: 30px;
    bottom: 4%;
    transform: translate(-30%, -50%);
    transition: all 0.45s ease-in-out;
    width: 100%;
    opacity: 0;
}

@media (max-width: 767.98px) {
    .mainSwiper .mainCaption {
        text-align: center;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 500.98px) {
    .mainSwiper .mainCaption {
        bottom: 10%;
    }
}

.mainSwiper .mainCaption h2 {
    color: #fff;
    font-size: 72px;
    line-height: 1;
    margin-bottom: 50px;
}

@media (max-width: 1299.98px) {
    .mainSwiper .mainCaption h2 {
        font-size: 58px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1199.98px) {
    .mainSwiper .mainCaption h2 {
        font-size: 48px;
        margin-bottom: 30px;
    }
}

@media (max-width: 991.98px) {
    .mainSwiper .mainCaption h2 {
        font-size: 38px;
        line-height: 1.25;
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .mainSwiper .mainCaption h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.mainSwiper .swiper-pagination {
    text-align: start;
    padding-left: 32px;
    bottom: 70px;
}

@media (max-width: 500.98px) {
    .mainSwiper .swiper-pagination {
        padding-left: 0;
    }
}

.mainSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    height: 5px;
}

    .mainSwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #F89420;
    }

@media (max-width: 1199.98px) {
    .mainSwiper .swiper-pagination {
        bottom: 35px;
    }
}

@media (max-width: 767.98px) {
    .mainSwiper .swiper-pagination {
        text-align: center;
        bottom: 25px;
    }
}

.mainSwiper .swiper-action {
    position: absolute;
    bottom: 40px;
    width: 50px;
    left: 50%;
    z-index: 99;
    text-align: center;
    transform: translateX(-50%);
}

@media (max-width: 1199.98px) {
    .mainSwiper .swiper-action {
        bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .mainSwiper .swiper-action {
        display: none;
    }
}

.mainSwiper .swiper-action a {
    text-decoration: none;
}

    .mainSwiper .swiper-action a i {
        display: block;
        font-size: 28px;
        color: #fff;
    }

        .mainSwiper .swiper-action a i.fa-arrow-down {
            font-size: 18px;
            margin-top: 10px;
            color: #FF7C00;
            animation: fadeInDownOut 2.5s ease-in-out infinite;
        }

@keyframes fadeInDownOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.mainSwiper .swiper-slide-fully-visible .mainCaption {
    opacity: 1;
    transform: translate(0, -50%);
}

@media (max-width: 767.98px) {
    .mainSwiper .swiper-slide-fully-visible .mainCaption {
        transform: translate(-50%, -50%);
    }

        .mainSwiper .swiper-slide-fully-visible .mainCaption .btn {
            font-size: 14px;
        }
}

.home .header {
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 9;
    background: transparent;
    box-shadow: none;
    transition: all 0.25s ease;
}

    .home .header.sticky {
        transform: translateY(0%);
        background: #fff;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    }

        .home .header.sticky .cd-search-trigger,
        .home .header.sticky .cd-nav-trigger,
        .home .header.sticky .main-nav-trigger,
        .home .header.sticky .right-header .lang-switcher .dropdown-toggle {
            color: #293272;
        }

    .home .header.hidden {
        transform: translateY(-100%);
    }

    .home .header .cd-search-trigger,
    .home .header .main-nav-trigger {
        color: #fff;
    }

    .home .header .right-header .lang-switcher .dropdown-toggle {
        color: #fff;
    }

.header {
    width: 100%;
    background: transparent;
    transform: translateY(0%);
    background: #fff;
    position: relative;
    z-index: 99;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

    .header.sticky {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9;
    }

        .header.sticky .cd-search-trigger,
        .header.sticky .cd-nav-trigger,
        .header.sticky .main-nav-trigger,
        .header.sticky .right-header .lang-switcher .dropdown-toggle {
            color: #293272;
        }

    .header.hidden {
        transform: translateY(-100%);
    }

.home-wrapper {
    background: url(../images/home-section-bg.jpg) no-repeat;
    background-size: cover;
    padding: 65px 0;
    background-position: bottom center;
}

.quick-links-section {
    padding: 60px 0;
    overflow: hidden;
}

    .quick-links-section .quick-links-wrapper h3 {
        margin-bottom: 20px;
    }

    .quick-links-section .quick-links-wrapper .quickLink-box {
        border-radius: 18px;
        position: relative;
        overflow: hidden;
        display: block;
    }

        .quick-links-section .quick-links-wrapper .quickLink-box .quick-card-title {
            position: absolute;
            bottom: 25px;
            width: 100%;
            left: 0;
            color: #fff;
            text-align: center;
            font-weight: 700;
            font-size: 21px;
            z-index: 101;
            transition: bottom 0.2s ease-in 0s, font-size 0.12s ease-in 0.15s;
        }

        .quick-links-section .quick-links-wrapper .quickLink-box:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
            transition: all 0.3s ease;
        }

        .quick-links-section .quick-links-wrapper .quickLink-box:hover .quick-card-title {
            bottom: 50%;
            transform: translateY(50%);
            font-size: 24px;
        }

        .quick-links-section .quick-links-wrapper .quickLink-box:hover:after {
            opacity: 0;
        }

footer {
    background: #0C1736;
}

    footer .top-footer {
        padding: 40px;
    }

        footer .top-footer .footer-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

@media (max-width: 767.98px) {
    footer .top-footer .footer-wrapper {
        flex-direction: column;
        gap: 25px;
    }
}

footer .top-footer .footer-wrapper .left-footer a {
    display: inline-block;
    padding-right: 18px;
}

    footer .top-footer .footer-wrapper .left-footer a:first-child {
        border-right: 1px solid #ddd;
        margin-right: 15px;
    }

        footer .top-footer .footer-wrapper .left-footer a:first-child img {
            width: 100px;
        }

footer .top-footer .footer-wrapper .right-footer {
    display: flex;
    align-items: center;
}

    footer .top-footer .footer-wrapper .right-footer span {
        padding-right: 10px;
        color: #fff;
        font-weight: 700;
    }

    footer .top-footer .footer-wrapper .right-footer .follow-social-wrapper a {
        color: #fff;
        font-size: 32px;
        display: inline-block;
        padding-left: 10px;
    }

footer .bottom-footer {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    footer .bottom-footer .copyright {
        font-size: 11px;
        color: #999999;
    }

.general-body {
    background: #fff url(../images/Page-BG-C-Desktop.jpg) no-repeat;
    background-size: 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #fff;
}

@media (max-width: 767.98px) {
    .general-body {
        background-image: url(../images/Page-BG-C-Mobile.jpg);
        background-position: center top -10px;
        background-size: 100%;
    }
}

.industry-site .general-body {
    background-image: url(../images/Page-BG-M-Desktop.jpg);
}

@media (max-width: 767.98px) {
    .industry-site {
        background-image: url(../images/Page-BG-M-Mobile.jpg);
        background-position: center top -10px;
        background-size: 100%;
    }
}

.breadcrumb-wrapper {
    padding: 25px 0;
}

    .breadcrumb-wrapper .breadcrumb {
        margin-bottom: 0;
    }

@media (min-width: 1200px) {
    .breadcrumb-wrapper {
        padding: 25px 15px;
    }
}

@media (max-width: 767.98px) {
    .breadcrumb-wrapper {
        padding-top: 15px;
    }
}

.breadcrumb-wrapper .breadcrumb-item a {
    text-decoration: none;
    color: #999999;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .breadcrumb-wrapper .breadcrumb-item a {
        font-size: 12px;
    }
}

.breadcrumb-wrapper .breadcrumb-item a:hover {
    color: #000;
}

.breadcrumb-wrapper .breadcrumb-item.active {
    font-size: 14px;
    color: #333;
    padding-top: 1px;
}

@media (max-width: 767.98px) {
    .breadcrumb-wrapper .breadcrumb-item.active {
        font-size: 12px;
        padding-top: 0;
    }
}

.title-section {
    padding: 50px 0 40px;
    text-align: center;
}

    .title-section h1 {
        color: #293272;
        font-size: 48px;
        position: relative;
        padding-bottom: 25px;
    }

        .title-section h1:after {
            content: "";
            width: 80px;
            height: 4px;
            background: #F89420;
            position: absolute;
            display: block;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
        }

        .title-section h1 + p {
            margin-top: 30px;
        }

    .title-section .sub-title {
        padding-top: 30px;
        color: #293272;
        font-size: 20px;
        font-weight: 700;
    }

@media (max-width: 991.98px) {
    .title-section {
        padding: 30px 0;
    }

        .title-section h1 {
            font-size: 36px;
        }

            .title-section h1:after {
                bottom: 0;
            }
}

@media (max-width: 767.98px) {
    .title-section {
        padding: 25px 0;
    }

        .title-section h1 {
            font-size: 32px;
        }

            .title-section h1:after {
                bottom: 0;
            }
}

.type-label {
    display: inline-block;
    background: #F67416;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 6px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
}

.single-post-header {
    padding: 50px 0 40px;
}

    .single-post-header h1 {
        color: #293272;
        font-size: 48px;
        position: relative;
        padding-bottom: 15px;
        color: #333;
        margin-bottom: 30px;
    }

        .single-post-header h1:after {
            content: "";
            width: 80px;
            height: 4px;
            background: #F89420;
            position: absolute;
            display: block;
            bottom: -10px;
            left: 0;
        }

@media (max-width: 991.98px) {
    .single-post-header h1 {
        padding: 30px 0;
    }

        .single-post-header h1 h1 {
            font-size: 36px;
        }

            .single-post-header h1 h1:after {
                bottom: 0;
            }
}

@media (max-width: 767.98px) {
    .single-post-header h1 {
        padding: 25px 0;
    }

        .single-post-header h1 h1 {
            font-size: 32px;
        }

            .single-post-header h1 h1:after {
                bottom: 0;
            }
}

.library-search-section .library-search {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

    .library-search-section .library-search .input-group .form-control {
        border-radius: 40px !important;
        border: 2px solid #1559EA;
        background: #F9F9F9;
        padding: 12px 20px;
    }

    .library-search-section .library-search .input-group .search-btn {
        background: none;
        border: 0;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

.btn-group {
    text-align: center;
}

    .btn-group ul li {
        margin-right: 2px;
    }

        .btn-group ul li a {
            border-radius: 40px;
            border: 2px solid transparent;
            background: none;
            box-shadow: none;
            padding: 10px 15px;
            display: inline-block;
            color: #1559EA;
            text-decoration: none;
            font-weight: 700;
        }

            .btn-group ul li a:hover {
                color: #000;
            }

        .btn-group ul li.active a {
            color: #fff;
            padding: 10px 25px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            background: linear-gradient(180deg, #F89420 0%, #F33454 100%);
            box-shadow: 4px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, -4px -4px 4px 0px rgba(0, 0, 0, 0.15) inset;
        }

.library-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 0 20px;
}

    .library-tools .library-type ul {
        display: flex;
        position: relative;
        min-width: 0;
        padding: 5px;
        border-radius: 40px;
        background: #F3F6FF;
        border: 0;
    }

        .library-tools .library-type ul li .type-nav {
            border-radius: 40px;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.4;
            display: block;
            width: 100%;
            padding: 8px 15px;
            text-decoration: none;
            color: #666;
        }

        .library-tools .library-type ul li.current .type-nav {
            background: #fff;
            color: #FF7C00;
        }

@media (max-width: 991.98px) {
    .library-tools {
        flex-direction: column;
    }
}

@media (max-width: 375.98px) {
    .library-tools .library-type ul li .type-nav {
        font-size: 11px;
    }
}

.library-listing-section {
    padding-bottom: 50px;
}

.library-box a,
.download-box a {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 18px;
    border: 1px solid #DDD;
    background: linear-gradient(180deg, #FFF 80%, #F3F6FF 100%);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}

    .library-box a .library-cat-label,
    .download-box a .library-cat-label {
        display: inline-block;
        background: #F67416;
        color: #fff;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 5px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .library-box a h5,
    .download-box a h5 {
        color: #293272;
        font-weight: 700;
        font-family: "Inter", sans-serif;
        font-size: 16px;
        margin-bottom: 10px;
    }

@media (max-width: 767.98px) {
    .library-box a h5,
    .download-box a h5 {
        font-size: 16px;
    }
}

.library-box a h5 .library-label,
.download-box a h5 .library-label {
    border-radius: 4px;
    background: #FFF6EB;
    color: #B63C0B;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 6px;
    text-transform: uppercase;
    margin-left: -4px;
}

@media (max-width: 767.98px) {
    .library-box a h5 .library-label,
    .download-box a h5 .library-label {
        margin-left: 0;
    }
}

.library-box a .library-date,
.download-box a .library-date {
    color: #999999;
    font-size: 12px;
}

.library-box a .library-download-box,
.download-box a .library-download-box {
    border-radius: 50%;
    background: linear-gradient(180deg, #1559EA 0%, #293272 100%);
    width: 45px;
    height: 45px;
    text-align: center;
    box-shadow: 4px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, -4px -4px 4px 0px rgba(0, 0, 0, 0.15) inset;
    font-size: 24px;
    color: #fff;
    line-height: 1.9;
}

@media (max-width: 767.98px) {
    .library-box a .library-download-box,
    .download-box a .library-download-box {
        flex: 45px 0 0;
        width: 45px;
        margin-left: 10px;
    }
}

@media (max-width: 767.98px) {
    .library-box a,
    .download-box a {
        padding: 15px;
        align-items: center;
    }
}

.library-box a:hover,
.download-box a:hover {
    box-shadow: 0px 0 2px 0px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #F3F6FF 80%, #F3F6FF 100%);
    border-color: #ccc;
}

.download-group {
    margin-bottom: 25px;
}

    .download-group .download-box a {
        margin-bottom: 0;
        border-radius: 0;
    }

    .download-group .download-box:first-child a {
        border-top-left-radius: 18px;
        border-top-right-radius: 18px;
    }

    .download-group .download-box:last-child a {
        border-bottom-right-radius: 18px;
        border-bottom-left-radius: 18px;
    }

    .download-group .download-box.child-box .library-info {
        padding-left: 20px;
        border-left: 2px solid #F89420;
    }

    .download-group .download-box.child-box h5 {
        font-weight: 400;
        font-family: "Inter", sans-serif;
        font-size: 16px;
    }

.pagination-wrapper {
    margin-top: 40px;
}

    .pagination-wrapper .pagination {
        justify-content: center;
    }

        .pagination-wrapper .pagination .page-item {
            padding: 0 3px;
        }

            .pagination-wrapper .pagination .page-item .page-link {
                border: 0;
                color: #333;
                background: #fff;
                width: 24px;
                height: 24px;
                padding: 6px;
                border-radius: 4px;
                display: block;
                text-align: center;
                box-sizing: content-box;
            }

            .pagination-wrapper .pagination .page-item.active .page-link, .pagination-wrapper .pagination .page-item:hover .page-link {
                background: #293272;
                color: #fff;
            }

.media-type-section {
    position: relative;
    z-index: 9;
}

.media-type-wrapper {
    margin-bottom: 30px;
}

    .media-type-wrapper .dropdown {
        display: block;
    }

    .media-type-wrapper .dropdown-toggle {
        background: #fff;
        border-radius: 18px;
        width: 100%;
        text-align: left;
        position: relative;
        border: 2px solid #FF7C00;
        color: #293272;
    }

        .media-type-wrapper .dropdown-toggle i {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
        }

        .media-type-wrapper .dropdown-toggle:after {
            display: none;
        }

        .media-type-wrapper .dropdown-toggle.show, .media-type-wrapper .dropdown-toggle:first-child:active {
            background: #F3F6FF;
            color: #293272;
        }

@media (max-width: 767.98px) {
    .media-type-wrapper .dropdown-menu {
        width: 100%;
    }

        .media-type-wrapper .dropdown-menu .current {
            background: #293272;
        }

            .media-type-wrapper .dropdown-menu .current a {
                color: #fff;
            }
}

@media (min-width: 768px) {
    .media-type-wrapper .dropdown-toggle {
        display: none;
    }

    .media-type-wrapper .dropdown-menu {
        display: flex;
        position: relative;
        background: none;
        border: 0;
        gap: 10px;
    }

        .media-type-wrapper .dropdown-menu li {
            flex: 1 0 0;
            display: flex;
            align-items: center;
        }

            .media-type-wrapper .dropdown-menu li a {
                text-align: center;
                display: block;
                font-weight: 600;
                color: #999999;
                width: 100%;
                border: 2px solid rgba(0, 0, 0, 0.1);
                border-radius: 16px;
                padding: 15px 25px;
            }

            .media-type-wrapper .dropdown-menu li.current a, .media-type-wrapper .dropdown-menu li.active a, .media-type-wrapper .dropdown-menu li:hover a {
                border-color: #FF7C00;
                color: #FF7C00;
            }
}

.sp-nav-wrapper {
    margin-bottom: 30px;
}

    .sp-nav-wrapper .dropdown {
        display: block;
    }

    .sp-nav-wrapper .dropdown-toggle {
        background: #fff;
        border-radius: 18px;
        width: 100%;
        text-align: left;
        position: relative;
        border: 2px solid #FF7C00;
        color: #293272;
    }

        .sp-nav-wrapper .dropdown-toggle i {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
        }

        .sp-nav-wrapper .dropdown-toggle:after {
            display: none;
        }

        .sp-nav-wrapper .dropdown-toggle.show, .sp-nav-wrapper .dropdown-toggle:first-child:active {
            background: #F3F6FF;
            color: #293272;
        }

@media (max-width: 767.98px) {
    .sp-nav-wrapper .dropdown-menu {
        width: 100%;
    }

        .sp-nav-wrapper .dropdown-menu .current {
            background: #293272;
        }

            .sp-nav-wrapper .dropdown-menu .current a {
                color: #fff;
            }
}

@media (min-width: 768px) {
    .sp-nav-wrapper .dropdown-toggle {
        display: none;
    }

    .sp-nav-wrapper .dropdown-menu {
        display: flex;
        position: relative;
        background: none;
        border: 0;
        gap: 10px;
    }

        .sp-nav-wrapper .dropdown-menu li {
            flex: 1 0 0;
            display: flex;
            align-items: center;
            border: 2px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
        }

            .sp-nav-wrapper .dropdown-menu li a {
                text-align: center;
                display: block;
                font-weight: 600;
                color: #999999;
                width: 100%;
                padding: 10px;
                font-size: 12px;
            }

            .sp-nav-wrapper .dropdown-menu li.current, .sp-nav-wrapper .dropdown-menu li.active, .sp-nav-wrapper .dropdown-menu li:hover {
                border-color: #FF7C00;
            }

                .sp-nav-wrapper .dropdown-menu li.current a, .sp-nav-wrapper .dropdown-menu li.active a, .sp-nav-wrapper .dropdown-menu li:hover a {
                    color: #FF7C00;
                }
}

@media (min-width: 992px) {
    .sp-nav-wrapper .dropdown-menu li a {
        padding: 15px 25px;
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .sp-nav-wrapper .dropdown-menu li a {
        font-size: 16px;
    }
}

.sp-nav-wrapper .nav-link {
    cursor: pointer;
}

@media (max-width: 767.78px) {
    .sp-nav-wrapper .nav-link {
        color: #212529;
    }

        .sp-nav-wrapper .nav-link.active {
            color: #fff;
            background: #293272;
        }
}

@media (min-width: 768px) {
    .sp-nav-wrapper .nav-link.active {
        border-color: #FF7C00;
        color: #FF7C00;
    }
}

.ad-cat-wrapper {
    display: flex;
    justify-content: space-around;
    margin-bottom: 25px;
}

.grid-section {
    padding-bottom: 50px;
}

.grid-wrapper .media-card {
    display: block;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
}

    .grid-wrapper .media-card .thumbBg {
        aspect-ratio: 10/5;
        overflow: hidden;
        position: relative;
    }

        .grid-wrapper .media-card .thumbBg img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

        .grid-wrapper .media-card .thumbBg .type-icon {
            position: absolute;
            bottom: 20px;
            right: 15px;
            line-height: 2.1;
            font-size: 21px;
            width: 42px;
            height: 42px;
            color: #fff;
            border-radius: 50%;
            text-align: center;
            transition: all 0.3s ease;
            background: linear-gradient(180deg, rgb(95, 30, 149) 0%, #3A2FB2 100%);
            box-shadow: 4px 4px 4px 0px rgba(255, 255, 255, 0.15) inset, -4px -4px 4px 0px rgba(0, 0, 0, 0.15) inset;
        }

    .grid-wrapper .media-card .ads-body {
        padding: 15px;
    }

        .grid-wrapper .media-card .ads-body h4 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 5px;
        }

        .grid-wrapper .media-card .ads-body .ads-date {
            color: #999999;
            font-size: 12px;
            margin-top: 15px;
        }

    .grid-wrapper .media-card:hover {
        box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
    }

        .grid-wrapper .media-card:hover .thumbBg .type-icon {
            color: #000;
        }

.form-btn-wrapper {
    text-align: center;
    margin: 15px 0 35px;
}

    .form-btn-wrapper .btn {
        margin: 0 auto;
        font-size: 18px;
    }

.feedback-section {
    padding: 40px;
}

@media (max-width: 575.98px) {
    .feedback-section {
        padding: 0;
        margin-bottom: 25px;
    }
}

.feedback-section .feedback-wrapper {
    border-radius: 20px;
    background: rgb(248, 250, 252);
    padding: 25px;
}

    .feedback-section .feedback-wrapper p {
        font-size: 12px;
    }

    .feedback-section .feedback-wrapper .btn {
        font-size: 14px;
        padding: 12px;
    }

.contact-detail-section {
    background: #F7F8FC;
    padding: 50px 0;
}

    .contact-detail-section .contact-detail-box {
        background: #fff;
        border-radius: 40px;
        padding: 30px 20px;
        height: 100%;
        display: flex;
        gap: 10px;
    }

        .contact-detail-section .contact-detail-box .contact-icon span {
            display: block;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            color: #fff;
            background: var(--Fire-BG, linear-gradient(180deg, #F89420 0%, rgb(243, 52, 84) 100%));
            text-align: center;
            font-size: 21px;
            line-height: 2;
        }

        .contact-detail-section .contact-detail-box .contact-content ul li {
            padding-bottom: 8px;
        }

        .contact-detail-section .contact-detail-box .contact-content h6 {
            color: #000;
        }

.career-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

    .career-wrapper .career-banner img {
        width: 100%;
        align-self: stretch;
        aspect-ratio: 162/91;
        object-fit: cover;
    }

    .career-wrapper .career-body {
        padding: 40px;
        text-align: center;
        background: #fff;
    }

.internal-links-wrapper {
    border-bottom: 4px solid #E5E7EB;
    margin-bottom: 40px;
}

    .internal-links-wrapper .internal-link {
        text-align: center;
    }

        .internal-links-wrapper .internal-link a {
            display: block;
            font-size: 18px;
            color: rgb(102, 102, 102);
            padding: 20px;
            text-decoration: none;
            position: relative;
            font-weight: 700;
        }

@media (max-width: 767.98px) {
    .internal-links-wrapper .internal-link a {
        font-size: 14px;
    }
}

.internal-links-wrapper .internal-link a:after {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background: #FF7C00;
    bottom: -4px;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: all 0.25s ease;
}

.internal-links-wrapper .internal-link a:hover {
    color: #293272;
}

    .internal-links-wrapper .internal-link a:hover:after {
        opacity: 1;
    }

.notes-alert {
    border-radius: 12px;
    background: #FEFCE7;
    border: 0;
}

    .notes-alert i {
        margin: 2px 8px 0 0;
        color: rgb(217, 165, 8);
        font-size: 20px;
    }

    .notes-alert .alert-content b {
        color: rgb(115, 67, 12);
    }

    .notes-alert .alert-content p {
        margin-bottom: 0;
        color: rgb(115, 67, 12);
    }

.scholarship-wrapper > h3 {
    text-align: center;
    margin-bottom: 35px;
}

@media (max-width: 767.98px) {
    .scholarship-wrapper > h3 {
        margin-bottom: 20px;
    }
}

.scholarship-program-box {
    padding: 40px;
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
}

@media (max-width: 767.98px) {
    .scholarship-program-box {
        flex-direction: column;
        padding: 20px;
    }
}

.scholarship-program-box .program-icon {
    min-width: 200px;
}

@media (max-width: 991.98px) {
    .scholarship-program-box .program-icon {
        min-width: 120px;
        width: 120px;
        text-align: center;
        margin: 0 auto;
    }
}

.scholarship-program-box h6 {
    font-size: 24px;
    margin-bottom: 25px;
}

.scholarship-program-box .button-group a {
    margin-right: 15px;
}

.scholarship-program-box.application-open {
    border-radius: 20px;
    border: 2px solid #293272;
    background: #FFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
}

.scholarship-program-box.application-closed {
    border-radius: 20px;
    border: 2px solid #F89420;
    background: #FFF;
    box-shadow: 0px 0px 40px 0px var(--state-alpha-dark-020, rgba(0, 0, 0, 0.2));
}

.scholarship-program-box .program-body p a {
    color: #1559EA;
}

    .scholarship-program-box .program-body p a:hover {
        color: #333;
    }

.scholarship-program-box .program-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .scholarship-program-box .program-body h6 {
        text-align: center;
    }

    .scholarship-program-box .program-body .button-group {
        text-align: center;
    }

        .scholarship-program-box .program-body .button-group a {
            width: 100%;
            max-width: 320px;
            margin: 0 auto 10px;
        }
}

.alert-box {
    padding: 40px;
    display: flex;
    gap: 35px;
    margin-bottom: 50px;
    border-radius: 20px;
    background: linear-gradient(180deg, #F6F9FF 84.4%, #DCEBFE 100%);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
    color: #293272;
}

    .alert-box a {
        color: #293272;
    }

        .alert-box a:hover {
            color: #000;
        }

@media (max-width: 767.98px) {
    .alert-box {
        flex-direction: column;
        padding: 20px;
    }
}

.alert-box .program-icon {
    min-width: 60px;
}

@media (max-width: 991.98px) {
    .alert-box .program-icon {
        min-width: 120px;
        width: 120px;
        text-align: center;
        margin: 0 auto;
    }
}

.alert-box h6 {
    font-size: 24px;
    margin-bottom: 25px;
}

.alert-box .button-group a {
    margin-right: 15px;
}

.alert-box .program-body p a {
    color: #1559EA;
}

    .alert-box .program-body p a:hover {
        color: #333;
    }

.alert-box .program-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .alert-box .program-body h6 {
        text-align: center;
    }

    .alert-box .program-body .button-group {
        text-align: center;
    }

        .alert-box .program-body .button-group a {
            width: 100%;
            max-width: 320px;
            margin: 0 auto 10px;
        }
}

.note-box {
    padding: 20px;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #FFF 80%, #F3F6FF 100%);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
    color: #333;
    border: 1px solid #EEE;
    box-shadow: 0px 4px 20px 0px var(--state-alpha-dark-010, rgba(0, 0, 0, 0.1));
}

@media (max-width: 767.98px) {
    .note-box {
        flex-direction: column;
        padding: 20px;
    }
}

.note-box .program-icon {
    min-width: 40px;
}

@media (max-width: 991.98px) {
    .note-box .program-icon {
        min-width: 120px;
        width: 120px;
        text-align: center;
        margin: 0 auto;
    }
}

.note-box h6 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
}

.note-box .button-group a {
    margin-right: 15px;
}

.note-box .program-body p a {
    color: #1559EA;
}

    .note-box .program-body p a:hover {
        color: #333;
    }

.note-box .program-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .note-box .program-body h6 {
        text-align: center;
    }

    .note-box .program-body .button-group {
        text-align: center;
    }

        .note-box .program-body .button-group a {
            width: 100%;
            max-width: 320px;
            margin: 0 auto 10px;
        }
}

.note-box + h4 {
    margin-top: 50px;
}

#philosophy .scholarship-body {
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #DDD;
    background: #F7F8FC;
    margin-bottom: 40px;
    /* Shadow/shadow-lg */
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
}

    #philosophy .scholarship-body .philosophy-banner img {
        width: 100%;
    }

#philosophy .scholarship-info-wrapper {
    padding: 50px 0;
}

    #philosophy .scholarship-info-wrapper .info-header {
        padding: 0 20px;
    }

        #philosophy .scholarship-info-wrapper .info-header h3 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 25px;
        }

@media (max-width: 767.98px) {
    #philosophy .scholarship-info-wrapper .info-header h3 {
        font-size: 24px;
    }
}

#philosophy .scholarship-info-wrapper .info-header h5 {
    font-size: 18px;
    color: #333;
}

@media (max-width: 767.98px) {
    #philosophy .scholarship-info-wrapper .info-header h5 {
        font-size: 14px;
    }
}

.accordion .accordion-item {
    border-radius: 12px;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid #fff;
    transition: all 0.25s ease;
}

    .accordion .accordion-item.shown {
        border: 3px solid #3479E9;
    }

    .accordion .accordion-item .accordion-button:not(.collapsed) {
        background: #fff;
        box-shadow: none;
        color: #333;
        font-size: 18px;
    }

    .accordion .accordion-item .accordion-body {
        padding-top: 5px;
    }

        .accordion .accordion-item .accordion-body h6 {
            color: #333;
        }

.whistleblowing-header .title-wrapper {
    text-align: center;
    margin-top: 45px;
}

    .whistleblowing-header .title-wrapper h4 {
        font-size: 28px;
        position: relative;
        padding-bottom: 25px;
        color: #3A2FB2;
        font-weight: 700;
    }

        .whistleblowing-header .title-wrapper h4:after {
            content: "";
            width: 80px;
            height: 4px;
            background: #F89420;
            position: absolute;
            display: block;
            bottom: 0px;
            left: 50%;
            transform: translateX(-50%);
        }

    .whistleblowing-header .title-wrapper h3 {
        padding-top: 10px;
        color: #333;
        font-size: 32px;
        font-weight: 700;
    }

.whistleblowing-body {
    margin: 35px 0 60px;
}

.whistleblowing-card {
    border-radius: 20px;
    background: #FFF;
    height: 100% !important;
    padding: 35px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199.98px) {
    .whistleblowing-card {
        padding: 25px;
    }
}

@media (max-width: 991.98px) {
    .whistleblowing-card {
        padding: 15px;
    }
}

@media (max-width: 767.98px) {
    .whistleblowing-card {
        margin-bottom: 30px;
        height: auto;
    }
}

.whistleblowing-card .step-wrapper {
    display: flex;
    justify-content: center;
}

    .whistleblowing-card .step-wrapper span {
        display: block;
        text-align: center;
        font-size: 45px;
        font-weight: 700;
        line-height: 2.2;
        width: 100px;
        height: 100px;
        color: #fff;
        border: 3px solid #fff;
        border-radius: 50%;
        background: var(--Fire-BG, linear-gradient(180deg, #F89420 0%, #F33454 100%));
        margin-bottom: 30px;
        /* Shadow/shadow-md */
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    }

@media (max-width: 1199.98px) {
    .whistleblowing-card .step-wrapper span {
        width: 80px;
        height: 80px;
        font-size: 36px;
        line-height: 2.1;
    }
}

.whistleblowing-card .whistleblowing-content li {
    padding-bottom: 8px;
}

.whistleblowing-step.step2 {
    background: #F7F8FC;
    padding: 60px 0;
}

@media (max-width: 991.98px) {
    .whistleblowing-step.step2 {
        padding: 20px 0;
    }
}

@media (max-width: 767.98px) {
    .whistleblowing-step.step2 {
        padding: 10px 0;
    }
}

.whistleblowing-step.step2 .whistleblowing-card {
    height: auto;
    margin-bottom: 25px;
}

.whistleblowing-step .step2-header {
    text-align: center;
}

    .whistleblowing-step .step2-header img {
        padding-bottom: 20px;
    }

@media (max-width: 991.98px) {
    .whistleblowing-step .step2-header img {
        max-width: 80px;
    }
}

.whistleblowing-step .step2-header h4 {
    font-size: 24px;
    position: relative;
    padding-bottom: 25px;
    color: #3A2FB2;
    font-weight: 700;
    margin-bottom: 25px;
}

@media (max-width: 991.98px) {
    .whistleblowing-step .step2-header h4 {
        font-size: 18px;
    }
}

.whistleblowing-step .step2-header h4:after {
    content: "";
    width: 80px;
    height: 4px;
    background: #F89420;
    position: absolute;
    display: block;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.about-section {
    border-radius: 40px;
    padding: 40px;
    background: linear-gradient(107deg, #E5EFFF 0%, #FFF6ED 100.97%);
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 20px 15px;
        border-radius: 20px;
    }
}

.about-section .protect-item {
    border-radius: 20px;
    border: 1px solid #FFF;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    padding: 20px;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.about-section .item-content span {
    font-weight: 700;
}

.item-number {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 1.7;
    flex: 48px 0 0;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    border: 4px solid #FFF;
    background: linear-gradient(180deg, #F89420 0%, #F33454 100%);
    /* Shadow/shadow-md */
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}

.mandate-section {
    padding: 60px 0;
    background: url(../images/bg-mandate.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}

    .mandate-section .title-wrapper {
        text-align: center;
        margin-bottom: 40px;
    }

        .mandate-section .title-wrapper h3 {
            color: #F89420;
            font-size: 42px;
            margin-bottom: 15px;
        }

    .mandate-section p {
        font-size: 18px;
        color: #fff;
        text-align: center;
    }

    .mandate-section .mandate-wrapper .col-md-6 {
        margin-bottom: 20px;
    }

    .mandate-section .mandate-item {
        height: 100%;
    }

    .mandate-section .mandate-item-wrapper {
        border-radius: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        backdrop-filter: blur(50px);
        color: #eee;
        display: flex;
        gap: 10px;
        height: 100%;
        align-items: center;
    }

.vision-mission-wrapper .vision-mission-box {
    text-align: center;
    padding: 60px 40px;
}

    .vision-mission-wrapper .vision-mission-box img {
        width: 100px;
        margin-bottom: 15px;
    }

    .vision-mission-wrapper .vision-mission-box .vision-mission-content h4 {
        font-size: 32px;
        font-weight: 700;
        color: #293272;
        position: relative;
        margin-bottom: 35px;
    }

        .vision-mission-wrapper .vision-mission-box .vision-mission-content h4:after {
            content: "";
            width: 80px;
            height: 4px;
            background: #F89420;
            position: absolute;
            display: block;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
        }

    .vision-mission-wrapper .vision-mission-box .vision-mission-content p {
        font-size: 18px;
        color: #333333;
    }

@media (max-width: 991.98px) {
    .vision-mission-wrapper .vision-mission-box .vision-mission-content p {
        font-size: 16px;
    }
}

.vision-mission-wrapper .col-md-6:last-child .vision-mission-box {
    box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
}

.corporate-values-section {
    padding: 80px;
    background: #E5EFFF;
}

@media (max-width: 767.98px) {
    .corporate-values-section {
        padding: 50px 0 30px;
    }
}

.corporate-values-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

.corporate-values-section .value-box {
    position: relative;
    background: #E5EFFF;
    /* Solid background */
    display: block;
    text-align: center;
}

@media (max-width: 767.98px) {
    .corporate-values-section .value-box {
        margin-bottom: 25px;
    }
}

.corporate-values-section .value-box .letter {
    font-family: "Archivo", sans-serif;
    font-size: 190px;
    font-weight: 700;
    color: transparent;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    z-index: 2;
    line-height: 1;
    display: inline-block;
    margin-bottom: 15px;
}

    .corporate-values-section .value-box .letter:after {
        content: "";
        width: 80px;
        height: 4px;
        background: #F89420;
        position: absolute;
        display: block;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

@media (max-width: 991.98px) {
    .corporate-values-section .value-box .letter {
        font-size: 125px;
    }
}

@media (max-width: 767.98px) {
    .corporate-values-section .value-box .letter {
        font-size: 150px;
    }
}

.corporate-values-section .value-box .letter.G-letter {
    background-image: url("../images/mask-bg-G.jpg");
}

.corporate-values-section .value-box .letter.R-letter {
    background-image: url("../images/mask-bg-R.jpg");
}

.corporate-values-section .value-box .letter.E-letter {
    background-image: url("../images/mask-bg-E.jpg");
}

.corporate-values-section .value-box .letter.A-letter {
    background-image: url("../images/mask-bg-A.jpg");
}

.corporate-values-section .value-box .letter.T-letter {
    background-image: url("../images/mask-bg-T.jpg");
}

.corporate-values-section .value-box .value-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .corporate-values-section .value-box .value-text {
        font-size: 15px;
    }
}

.memberships-wrapper {
    text-align: center;
    padding: 60px 0 50px;
}

@media (max-width: 767.98px) {
    .memberships-wrapper {
        padding: 30px 0;
    }
}

.memberships-wrapper h3 {
    margin-bottom: 25px;
}

.memberships-wrapper ul {
    margin: 0;
    padding: 0;
}

.memberships-wrapper li.list-inline-item {
    padding: 0 20px;
    margin: 0 0 20px;
    vertical-align: middle;
}

    .memberships-wrapper li.list-inline-item img {
        max-width: 160px;
    }

.people-section {
    margin: 30px 0 50px;
}

    .people-section .people-box a {
        display: block;
        text-decoration: none;
        margin-bottom: 20px;
        border-radius: 20px;
        overflow: hidden;
        background: #FFF;
        box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    }

        .people-section .people-box a:hover {
            box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.15);
        }

        .people-section .people-box a .people-photo {
            background: url(../images/profile-bg.jpg) no-repeat;
            background-size: cover;
        }

            .people-section .people-box a .people-photo img {
                width: 100%;
            }

        .people-section .people-box a .people-meta {
            padding: 20px;
            min-height: 110px;
        }

@media (max-width: 991.98px) {
    .people-section .people-box a .people-meta {
        padding: 15px;
        min-height: 95px;
    }
}

@media (max-width: 767.98px) {
    .people-section .people-box a .people-meta {
        min-height: 0;
    }
}

.people-section .people-box a .people-meta h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

@media (max-width: 991.98px) {
    .people-section .people-box a .people-meta h4 {
        font-size: 14px;
    }
}

.people-section .people-box a .people-meta span {
    color: #666;
    display: block;
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .people-section .people-box a .people-meta span {
        font-size: 12px;
    }
}

.people-section .people-box.lg-people-box {
    min-height: 0;
    margin-bottom: 0;
}

    .people-section .people-box.lg-people-box .people-photo img {
        aspect-ratio: 1/1.17;
        object-fit: cover;
    }

@media (max-width: 1399.98px) {
    .people-section .people-box.lg-people-box .people-photo img {
        aspect-ratio: 1/1.2;
    }
}

@media (max-width: 1199.98px) {
    .people-section .people-box.lg-people-box .people-photo img {
        aspect-ratio: 1/1.23;
    }
}

@media (max-width: 991.98px) {
    .people-section .people-box.lg-people-box .people-photo img {
        aspect-ratio: 1/1.27;
    }
}

.people-section .people-box.lg-people-box .people-meta h4 {
    font-size: 24px;
}

.people-modal .people-photo {
    background: url(../images/profile-bg.jpg) no-repeat;
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
}

    .people-modal .people-photo img {
        width: 100%;
    }

.people-modal .modal-body .people-header {
    margin-bottom: 20px;
}

    .people-modal .modal-body .people-header h3 {
        font-size: 28px;
        margin-bottom: 0;
    }

@media (max-width: 767.98px) {
    .people-modal .modal-body .people-header h3 {
        margin-top: 15px;
    }
}

.people-modal .modal-body .people-header .position {
    color: #666;
}

.people-modal .modal-body .people-content b {
    display: block;
}

@media (max-width: 991.98px) {
    .people-modal .modal-body {
        font-size: 14px;
    }

        .people-modal .modal-body .people-header h3 {
            font-size: 18px;
        }

        .people-modal .modal-body .people-header .position {
            font-size: 14px;
        }
}

.faq-wrapper {
    padding: 50px 0;
}

    .faq-wrapper h3 {
        text-align: center;
        margin-bottom: 35px;
    }

.sp-tagline-section {
    text-align: center;
    margin-bottom: 50px;
}

    .sp-tagline-section .sp-tagline-header h4 {
        color: #F89420;
        font-weight: 700;
        font-size: 26px;
        margin-bottom: 5px;
    }

.report-section {
    margin-bottom: 80px;
}

.report-box {
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

    .report-box h5 {
        font-size: 26px;
        color: #293272;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .report-box h6 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.single-post-content figure img {
    border-radius: 15px;
    margin-bottom: 25px;
}

.single-post-content figure figcaption {
    font-size: 14px;
    color: #999;
    margin-top: -20px;
}

.single-post-content p {
    margin-bottom: 25px;
}

.single-post-content h6 {
    margin: 30px 0;
}

.related-post-wrapper {
    margin: 50px 0;
}

    .related-post-wrapper h3 {
        text-align: center;
        font-size: 26px;
        color: #000;
        margin-bottom: 25px;
    }

    .related-post-wrapper .media-card h4 {
        text-align: left;
    }

.I-home-section {
    width: 100%;
    padding: 0 40px 40px;
    position: relative;
    background: #fff;
}

    .I-home-section .I-home-wrapper {
        position: relative;
        border-radius: 40px;
        overflow: hidden;
    }

    .I-home-section .swiper {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

        .I-home-section .swiper .swiper-bg {
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center bottom;
        }

    .I-home-section .tagline-body {
        padding: 210px 0 40px;
        position: relative;
        z-index: 9;
    }

        .I-home-section .tagline-body .top-tagline {
            text-align: center;
        }

            .I-home-section .tagline-body .top-tagline h4 {
                font-size: 36px;
                font-weight: 700;
                color: #fff;
                line-height: 1;
            }

            .I-home-section .tagline-body .top-tagline h2 {
                font-size: 80px;
                font-weight: 700;
                color: #fff;
                line-height: 1;
                position: relative;
                padding-bottom: 35px;
                margin-bottom: 45px;
            }

                .I-home-section .tagline-body .top-tagline h2:after {
                    content: "";
                    width: 80px;
                    height: 4px;
                    background: #F89420;
                    position: absolute;
                    display: block;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                }

        .I-home-section .tagline-body .bottom-tagline {
            margin-top: 120px;
        }

            .I-home-section .tagline-body .bottom-tagline h6 {
                text-align: center;
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 25px;
                color: #fff;
            }

            .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link {
                display: block;
                text-decoration: none;
                color: #fff;
                font-size: 18px;
                display: flex;
                align-items: center;
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(18px);
                padding: 15px 20px;
            }

                .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link span {
                    font-size: 22px;
                    display: inline-block;
                    border: 2px solid #F89420;
                    border-radius: 50%;
                    text-align: center;
                    line-height: 2;
                    width: 48px;
                    height: 48px;
                    margin-right: 10px;
                    color: #F89420;
                }

@media (max-width: 1299.98px) {
    .I-home-section .tagline-body {
        padding: 180px 0 40px;
    }

        .I-home-section .tagline-body .top-tagline h4 {
            font-size: 28px;
        }

        .I-home-section .tagline-body .top-tagline h2 {
            font-size: 65px;
            padding-bottom: 35px;
            margin-bottom: 45px;
        }

        .I-home-section .tagline-body .bottom-tagline {
            margin-top: 100px;
        }

            .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link {
                font-size: 16px;
                padding: 8px 15px;
            }
}

@media (max-width: 1199.98px) {
    .I-home-section .tagline-body {
        padding: 150px 0 40px;
    }

        .I-home-section .tagline-body .top-tagline h4 {
            font-size: 24px;
        }

        .I-home-section .tagline-body .top-tagline h2 {
            font-size: 60px;
            padding-bottom: 35px;
            margin-bottom: 45px;
        }

        .I-home-section .tagline-body .bottom-tagline {
            margin-top: 80px;
        }
}

@media (max-width: 1199.98px) {
    .I-home-section .tagline-body .top-tagline h4 {
        font-size: 21px;
    }

    .I-home-section .tagline-body .top-tagline h2 {
        font-size: 50px;
        padding-bottom: 25px;
        margin-bottom: 25px;
    }

    .I-home-section .tagline-body .bottom-tagline h6 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link {
        font-size: 14px;
        padding: 8px 12px;
    }

        .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link span {
            font-size: 18px;
            width: 40px;
            height: 40px;
        }
}

@media (max-width: 991.98px) {
    .I-home-section .tagline-body {
        padding: 120px 0 30px;
    }

        .I-home-section .tagline-body .top-tagline h4 {
            font-size: 18px;
        }

        .I-home-section .tagline-body .top-tagline h2 {
            font-size: 42px;
            padding-bottom: 25px;
            margin-bottom: 25px;
        }

        .I-home-section .tagline-body .bottom-tagline h6 {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link {
            font-size: 13px;
            padding: 8px 12px;
            line-height: 1.4;
        }

            .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link span {
                font-size: 16px;
                width: 34px;
                height: 34px;
                margin-right: 5px;
                flex: 34px 0 0;
            }
}

@media (max-width: 575.98px) {
    .I-home-section .tagline-body {
        padding: 60px 0 20px;
    }

        .I-home-section .tagline-body .top-tagline h4 {
            padding: 0 20px;
        }

        .I-home-section .tagline-body .top-tagline h2 {
            margin-bottom: 20px;
            padding: 0 20px 20px 20px;
        }

        .I-home-section .tagline-body .bottom-tagline h6 {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link {
            font-size: 13px;
            padding: 8px 12px;
            line-height: 1.4;
            flex-direction: column;
            text-align: center;
            min-height: 93px;
            justify-content: center;
        }

            .I-home-section .tagline-body .bottom-tagline .quick-access-wrapper .quick-access-link span {
                margin-right: 0;
                margin-bottom: 5px;
            }
}

.jumbotron {
    border-radius: 20px;
    border: 1px solid #EEE;
    background: linear-gradient(180deg, #FFF 80%, #F3F6FF 100%);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 35px;
}

    .jumbotron p {
        font-size: 24px;
        letter-spacing: -0.24px;
    }

    .jumbotron small {
        font-size: 14px;
        color: #999;
    }

.general-section .md-container ul + h4,
.general-section .md-container ol + h4,
.general-section .md-container img + h4 {
    margin-top: 50px;
}

.general-section .md-container img + p {
    margin-top: 35px;
}

.sp-breadcrumb-section {
    background: #E4570C;
}

    .sp-breadcrumb-section .breadcrumb-wrapper .breadcrumb-item a {
        color: #BBBBBB;
    }

    .sp-breadcrumb-section .breadcrumb-wrapper .breadcrumb-item:before {
        color: #BBBBBB;
    }

    .sp-breadcrumb-section .breadcrumb-wrapper .breadcrumb-item.active {
        color: #fff;
    }

.sp-title-section {
    background: #E4570C;
    backdrop-filter: blur(20px);
    padding: 180px 0 160px;
    position: relative;
}

    .sp-title-section:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        padding-bottom: 13%;
        background: linear-gradient(180deg, #E4570C 0%, rgba(228, 87, 12, 0.5) 30%, #FFF 100%);
        display: block;
        /* Frost/frost-lg */
        backdrop-filter: blur(30px);
        z-index: -1;
    }

    .sp-title-section:after {
        content: "";
        display: block;
        position: absolute;
        bottom: -2px;
        z-index: 0;
        height: 2px;
        width: 100%;
        background: #fff;
    }

    .sp-title-section.title-section h1,
    .sp-title-section.title-section p {
        color: #fff;
        font-weight: 700;
    }

.sp-section {
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(248, 148, 32, 0.15) 100%);
}

.sp-box {
    padding: 35px 0;
}

    .sp-box h4 {
        position: relative;
        padding-bottom: 20px;
    }

        .sp-box h4:after {
            content: "";
            width: 80px;
            height: 4px;
            background: #F89420;
            position: absolute;
            display: block;
            bottom: 0;
            left: 0;
        }

@media (max-width: 767.98px) {
    .sp-box h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.sp-box .note-box {
    padding: 40px;
}

    .sp-box .note-box i {
        font-size: 60px;
        color: #F89420;
        margin-right: 10px;
    }

    .sp-box .note-box .program-icon {
        min-width: 54px;
    }

    .sp-box .note-box p {
        min-height: 48px;
    }

@media (max-width: 767.98px) {
    .sp-box .note-box {
        text-align: center;
    }
}

.listing-content {
    padding: 0 15px;
}

    .listing-content .table-responsive {
        margin-bottom: 30px;
        border-radius: 20px;
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    }

        .listing-content .table-responsive .table {
            border-radius: 20px;
            border: 1px solid #EEE;
            overflow: hidden;
            margin-bottom: 0;
        }

            .listing-content .table-responsive .table tr:first-child td {
                border-bottom: 1px solid #EEE;
                background: linear-gradient(107deg, #293272 0%, #1559EA 100.97%) !important;
                overflow: hidden;
            }

                .listing-content .table-responsive .table tr:first-child td h4 {
                    color: #fff !important;
                    margin: 15px 0 !important;
                    text-align: left !important;
                    padding-left: 15px;
                    line-height: 1 !important;
                }

@media (max-width: 991.98px) {
    .listing-content .table-responsive .table tr:first-child td h4 {
        font-size: 18px !important;
        padding: 0;
    }

        .listing-content .table-responsive .table tr:first-child td h4 b {
            font-size: 18px !important;
        }
}

.listing-content .table-responsive .table tr td {
    text-align: left !important;
    padding: 10px 15px !important;
    color: #333 !important;
    width: auto !important;
}

    .listing-content .table-responsive .table tr td:first-child {
        width: 450px !important;
        min-width: 450px;
    }

@media (max-width: 991.98px) {
    .listing-content .table-responsive .table tr td:first-child {
        width: 260px !important;
        min-width: 260px;
    }
}

@media (max-width: 767.98px) {
    .listing-content .table-responsive .table tr td:first-child {
        width: 100% !important;
        min-width: 400px;
    }
}

@media (max-width: 767.98px) {
    .listing-content .table-responsive .table tr td {
        width: 100% !important;
        min-width: 400px;
    }
}

.listing-content .table-responsive .table tr td div {
    text-align: left !important;
    color: #333 !important;
}

.listing-content .table-responsive .table tr td a {
    text-decoration: none;
    color: #FF7C00;
}

.listing-content .table-responsive .table tr td strong {
    font-weight: 400 !important;
}

.listing-content .table-responsive .table tr td h4 {
    font-size: 16px !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
    color: #333 !important;
}

.listing-content .table-responsive .table tr td div:empty {
    height: 9 !important;
    display: none !important;
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 21px;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding: 0 25px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }

    .lang-switcher {
        display: none;
    }

    .library-cat,
    .ad-cat-wrapper {
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        text-align: center;
    }

        .library-cat .btn-group ul li a,
        .ad-cat-wrapper .btn-group ul li a {
            padding: 6px;
        }

        .library-cat .btn-group ul li.active a,
        .ad-cat-wrapper .btn-group ul li.active a {
            padding: 6px 15px;
        }

    .library-type ul li .type-nav {
        font-size: 14px;
    }
}

/*# sourceMappingURL=styles.css.map */
