@charset "UTF-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }
}

@media (max-width: 575.98px) {
    body {
        font-size: 12px;
    }
}

:root {
    --primary-orange: #f5a623;
    --primary-blue: #273475;
    --dark-blue: #0d2244;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

p:has(br):empty {
    display: none;
}

img {
    max-width: 100%;
}

section {
    scroll-margin-top: 80px;
}

.main-body {
    overflow-x: hidden;
}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: #ffb32f;
    background: linear-gradient(90deg, rgb(255, 179, 47) 0%, rgb(255, 142, 36) 50%, rgb(255, 128, 30) 100%);
    transition: background 0.3s ease;
}

    .header.scrolled {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
    }

.header-logo img {
    max-width: 90px;
}

.header-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.navbar-nav {
    gap: 28px;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-wrapper .nav-item .nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 0;
    padding-right: 0;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

    .header-wrapper .nav-item .nav-link:hover, .header-wrapper .nav-item .nav-link.active {
        border-color: #fff;
        color: #fff;
    }

    .header-wrapper .nav-item .nav-link.active {
        font-weight: 600;
    }

.btn-register {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0 30px;
    border-radius: 35px;
    font-weight: 600;
}

@media only screen and (max-width: 767.98px) {
    .btn-register {
        margin-top: 20px;
    }
}

.btn-register:hover {
    background: var(--dark-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}
/* Hero Section */
.hero-section {
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    background-position: center;
    margin-top: 95px;
}

@media (max-width: 991px) {
    .hero-section {
        margin-top: 85px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        margin-top: 75px;
        padding-top: 50px;
    }
}

.hero-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../../images/banner-gradient.png) no-repeat;
    background-size: cover;
    position: absolute;
    background-position: bottom center;
    top: 0;
    left: 0;
}

.hero-wrapper {
    position: relative;
    z-index: 9;
}

.hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

    .hero-logos img {
        height: 120px;
    }

    .hero-logos .aprc-logo {
        height: 170px;
    }

.hero-title {
    font-family: "Archivo", sans-serif;
    font-size: 33px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 21px;
    color: var(--primary-blue);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
/* Countdown */
.countdown-wrapper {
    background: #ffb32f;
    background: linear-gradient(90deg, rgb(255, 179, 47) 0%, rgb(255, 142, 36) 50%, rgb(255, 128, 30) 100%);
    border-radius: 15px;
    padding: 20px 35px;
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

    .countdown-wrapper .countdown-box {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

@media (max-width: 576px) {
    .countdown-wrapper .countdown-box {
        gap: 15px;
    }
}

.countdown-item {
    text-align: center;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.countdown-label {
    font-size: 11px;
    color: var(--primary-blue);
    text-transform: uppercase;
}
/* Introduction Section */
.intro-section {
    margin: 125px 0 80px;
    background: var(--white);
}

@media (max-width: 767px) {
    .intro-section {
        margin: 80px 0 50px;
    }

        .intro-section:last-child {
            margin: 50px 0;
        }
}

.about-wrapper:first-child {
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .about-wrapper:first-child {
        margin-bottom: 50px;
    }
}

.intro-section .container {
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
}

    .intro-section .container .intro-content {
        flex: 55% 0 0;
        max-width: 55%;
    }

@media (min-width: 1200px) {
    .intro-section .container .intro-content {
        padding-right: 40px;
    }
}

@media (max-width: 767px) {
    .intro-section .container {
        flex-direction: column;
    }

        .intro-section .container .intro-content {
            flex: 100% 0 0;
            max-width: 100%;
        }
}

@media (min-width: 1200px) {
    .intro-section .about-wrapper:last-child .container .intro-content {
        padding-left: 40px;
        padding-right: 0;
    }
}

.intro-content .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 1px;
}

.intro-content h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.2;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.intro-content p {
    color: var(--primary-blue);
    line-height: 1.5;
    margin-bottom: 20px;
}

.btn-primary-custom {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-primary-custom:hover {
        background: var(--dark-blue);
        color: var(--white);
        transform: translateY(-2px);
    }

.intro-video {
    position: relative;
}

    .intro-video img {
        width: 100%;
        display: block;
        box-shadow: 5px 5px 12px 0px rgba(0, 0, 0, 0.3);
        border-radius: 30px;
    }

    .intro-video .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        color: var(--white);
        display: block;
        width: 100%;
        height: 100%;
    }

        .intro-video .video-overlay .play-btn {
            width: 70px;
            height: 70px;
            border: 5px solid #b2dfff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease-in;
        }

            .intro-video .video-overlay .play-btn i {
                transition: all 0.3s ease-in;
            }

            .intro-video .video-overlay .play-btn i {
                font-size: 28px;
                color: #b2dfff;
            }

        .intro-video .video-overlay:hover .play-btn {
            border-color: var(--primary-orange);
        }

            .intro-video .video-overlay:hover .play-btn i {
                color: var(--primary-orange);
                transform: scale(0.9);
            }

.overview-section {
    background: #ffeeeb;
    padding: 65px 0;
}

    .overview-section .overview-container {
        max-width: 1200px;
        margin: 0 auto;
    }

        .overview-section .overview-container .nav-tabs {
            border: 0;
            margin-bottom: 25px;
        }

            .overview-section .overview-container .nav-tabs .nav-link {
                border: 1px solid #353535;
                border-radius: 25px;
                color: #515151;
                padding: 5px 30px;
                margin-right: 15px;
                font-weight: 600;
            }

@media (max-width: 992px) {
    .overview-section .overview-container .nav-tabs .nav-link {
        padding: 5px 20px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 767.98px) {
    .overview-section .overview-container .nav-tabs .nav-link {
        display: flex;
        justify-content: center;
    }
}

.overview-section .overview-container .nav-tabs .nav-link.active {
    background: #ff8822;
    color: #fff;
    border-color: #ff8822;
}

#horizontalTab p {
    color: #333;
}

.r-tabs .r-tabs-nav {
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.r-tabs .r-tabs-tab {
    flex: 100% 1 1;
    display: block;
    margin: 0;
    list-style: none;
}

    .r-tabs .r-tabs-tab a {
        text-decoration: none;
        color: #515151;
        display: block;
        text-align: center;
        border: 1px solid #515151;
        border-radius: 22px;
        width: 100%;
        padding: 6px 0;
        font-size: 18px;
    }

        .r-tabs .r-tabs-tab a i {
            display: none;
        }

    .r-tabs .r-tabs-tab.r-tabs-state-active a {
        background: #ff8822;
        color: #fff;
        border-color: #ff8822;
        font-weight: 600;
    }

.r-tabs .r-tabs-panel {
    padding: 15px;
    display: none;
}

.r-tabs .r-tabs-accordion-title {
    display: none;
}

.r-tabs .r-tabs-panel.r-tabs-state-active {
    display: block;
}

.tab-content > .tab-pane {
    color: #333;
}

.r-tabs .r-tabs-panel {
    padding: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    height: 0;
    overflow: hidden;
}

    .r-tabs .r-tabs-panel.r-tabs-state-active {
        opacity: 1;
        transform: translateY(0);
        height: auto;
        padding: 30px 35px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.35);
    }

.outside-indicators {
    position: absolute;
    bottom: -40px;
    /* push outside */
    z-index: 9;
}

.carousel-indicators [data-bs-target] {
    background: #000;
    padding: 0;
    border-width: 3px;
    width: 35px;
}

.carousel-control-next, .carousel-control-prev {
    width: 40px;
}

    .carousel-control-next .fa, .carousel-control-prev .fa {
        color: #000;
        font-size: 21px;
    }

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev {
    left: -25px;
}

.programme-wrapper .programme-box {
    border: 1px solid #afafaf;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 12px;
}

    .programme-wrapper .programme-box .programme-header {
        color: #273475;
        font-weight: 600;
        margin-bottom: 5px;
    }

        .programme-wrapper .programme-box .programme-header .fa-regular {
            font-size: 17px;
            padding-right: 3px;
        }

    .programme-wrapper .programme-box .programme-desc {
        font-weight: 600;
        font-size: 18px;
    }

        .programme-wrapper .programme-box .programme-desc p {
            font-weight: 600;
        }

            .programme-wrapper .programme-box .programme-desc p:last-child {
                margin-bottom: 0;
            }

        .programme-wrapper .programme-box .programme-desc i {
            font-size: 11px;
            display: block;
            font-weight: 400;
        }

@media (max-width: 767px) {
    .programme-wrapper .programme-box .programme-desc {
        font-size: 16px;
    }
}

.programme-wrapper .event-box, .programme-wrapper .activity-box {
    border: 1px solid #afafaf;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767.98px) {
    .programme-wrapper .event-box, .programme-wrapper .activity-box {
        padding: 15px 20px;
    }
}

.programme-wrapper .event-box .event-header, .programme-wrapper .activity-box .event-header {
    color: #273475;
    font-weight: 600;
    margin-bottom: 20px;
}

    .programme-wrapper .event-box .event-header .fa-regular, .programme-wrapper .activity-box .event-header .fa-regular {
        font-size: 19px;
        padding-right: 3px;
        vertical-align: middle;
    }

@media (max-width: 767px) {
    .programme-wrapper .event-box .event-header, .programme-wrapper .activity-box .event-header {
        display: flex;
        flex-direction: column;
    }

        .programme-wrapper .event-box .event-header .panel-session, .programme-wrapper .activity-box .event-header .panel-session {
            max-width: 180px;
            text-align: center;
            margin-bottom: 10px;
        }

        .programme-wrapper .event-box .event-header .time-session, .programme-wrapper .activity-box .event-header .time-session {
            margin-right: 0;
            margin-bottom: 10px;
        }
}

.programme-wrapper .event-box .event-desc, .programme-wrapper .activity-box .event-desc {
    font-weight: 600;
    font-size: 18px;
}

    .programme-wrapper .event-box .event-desc p, .programme-wrapper .activity-box .event-desc p {
        font-weight: 600;
    }

        .programme-wrapper .event-box .event-desc p:last-child, .programme-wrapper .activity-box .event-desc p:last-child {
            margin-bottom: 0;
        }

    .programme-wrapper .event-box .event-desc i, .programme-wrapper .activity-box .event-desc i {
        font-size: 11px;
        display: block;
        font-weight: 400;
    }

.event-title h4 {
    margin-bottom: 2px;
}

.activity-title {
    height: 100%;
    border-right: 2px solid #d8d8d8;
    margin-right: 15px;
}

@media only screen and (max-width: 767.98px) {
    .activity-title {
        border: 0;
        margin-right: 0;
    }
}

.panel-session {
    background: #103d72;
    color: #fff;
    padding: 3px 25px;
    border-radius: 24px;
    margin-right: 15px;
    display: inline-block;
    font-size: 14px;
}

.time-session {
    margin-right: 15px;
}

.room-session img {
    width: 18px;
    display: inline-block;
    margin-right: 3px;
}

.speaker-lists {
    height: 100%;
    border-left: 2px solid #d8d8d8;
    padding-left: 40px;
    margin-left: 15px;
}

    .speaker-lists .speaker-list {
        margin-bottom: 50px;
    }

        .speaker-lists .speaker-list:last-child {
            margin-bottom: 0;
        }

@media (max-width: 992px) {
    .speaker-lists .speaker-list h4 {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .speaker-lists {
        border: 0;
        height: auto;
        padding-left: 0;
        margin-left: 0;
    }
}

.speaker-box {
    margin-bottom: 25px;
}

    .speaker-box a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #000;
    }

        .speaker-box a .speaker-img {
            max-width: 92px;
            margin-right: 13px;
        }

        .speaker-box a .speaker-info h6 {
            margin-bottom: 2px;
        }

@media (max-width: 992px) {
    .speaker-box a {
        flex-direction: column;
    }

        .speaker-box a .speaker-img {
            margin: 0 0 15px 0;
        }

        .speaker-box a .speaker-info {
            text-align: center;
        }
}

.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;
        }
}

.modal-title {
    color: #293272;
}

.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;
}

.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;
    }
/* Accordion responsive breakpoint */
@media only screen and (max-width: 767.98px) {
    .r-tabs .r-tabs-nav, .r-tabs .r-tabs-panel {
        display: none;
    }

    .rtabs .r-tabs-panel.r-tabs-state-active {
        display: block;
    }

    .r-tabs .r-tabs-accordion-title {
        display: block;
        background: #fefefe;
        border: 1px solid #353535;
        position: relative;
    }

        .r-tabs .r-tabs-accordion-title i {
            display: inline-block;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .r-tabs .r-tabs-accordion-title a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            padding: 8px 20px;
            display: block;
        }

        .r-tabs .r-tabs-accordion-title.r-tabs-state-active {
            background: #ff8822;
            border-color: #ff8822;
        }

            .r-tabs .r-tabs-accordion-title.r-tabs-state-active a {
                color: #fff;
            }

                .r-tabs .r-tabs-accordion-title.r-tabs-state-active a i:before {
                    content: "\f077";
                }

    .r-tabs .r-tabs-panel.r-tabs-state-active {
        border-radius: 0;
    }
}

.content-section {
    margin-top: 95px;
}

@media only screen and (max-width: 991.98px) {
    .content-section {
        margin-top: 85px;
    }
}

@media only screen and (max-width: 767.98px) {
    .content-section {
        margin-top: 75px;
    }
}

.content-section .content-wrapper {
    padding: 20px 20px 50px;
    max-width: 520px;
    margin: 0 auto;
}

@media only screen and (max-width: 991.98px) {
    .content-section .content-wrapper .slide {
        padding: 0 20px;
    }
}

.content-section .content-wrapper h2 {
    line-height: 1.2;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-blue);
    font-size: 48px;
    margin-bottom: 25px;
    text-align: center;
}

.media-slider {
    position: relative;
    margin-top: 50px;
}

.carousel-shell {
    position: relative;
    padding-inline: 72px;
    /* 👈 this is the gap */
    padding-bottom: 48px;
}

    .carousel-shell .external-pagination {
        position: absolute;
        bottom: 8px;
        /* sits in reserved space */
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

        .carousel-shell .external-pagination .swiper-pagination-bullet {
            background: #bbb;
            opacity: 1;
            height: 15px;
            width: 15px;
        }

        .carousel-shell .external-pagination .swiper-pagination-bullet-active {
            background: var(--primary-blue);
        }

.mySwiper {
    overflow: hidden;
}

.swiper-slide {
    height: auto;
    position: relative;
}

    .swiper-slide a {
        display: block;
        overflow: hidden;
        border-radius: 6px;
        position: relative;
    }

        .swiper-slide a img {
            width: 100%;
            object-fit: cover;
            transition: all 0.45s ease;
        }

        .swiper-slide a:hover img {
            transform: scale(1.05);
        }

    .swiper-slide.video-slide a:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        -webkit-font-smoothing: antialiased;
        display: var(--fa-display, inline-block);
        font-style: normal;
        font-variant: normal;
        line-height: 1;
        text-rendering: auto;
        content: "\f04b";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.85);
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 2.7;
        border-radius: 50%;
        color: var(--primary-blue);
        font-size: 18px;
        z-index: 9;
        transition: all 0.25s ease;
    }

    .swiper-slide.video-slide a:hover:before {
        background-color: var(--primary-blue);
        color: #fff;
    }

.swiper-button-prev, .swiper-button-next {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev {
    left: -56px;
    /* 👈 fill left gap */
}

.swiper-button-next {
    right: -56px;
    /* 👈 fill right gap */
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: 0;
    background: linear-gradient(90deg, rgb(255, 179, 47) 0%, rgb(255, 142, 36) 50%, rgb(255, 128, 30) 100%);
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
}

    .slider-nav:hover {
        background: var(--primary-blue);
    }

    .slider-nav.prev {
        left: 8px;
    }

    .slider-nav.next {
        right: 8px;
    }

.resource-wrapper {
    margin: 65px 0 25px;
}

.post-wrapper {
    max-width: 1000px;
    margin: 20px auto;
}

    .post-wrapper .post-box {
        margin-bottom: 35px;
    }

@media only screen and (max-width: 767.98px) {
    .post-wrapper .post-box {
        margin-bottom: 20px;
    }
}

.post-wrapper .post-box a {
    display: block;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .post-wrapper .post-box a .post-thumbnail {
        aspect-ratio: 8/5;
        overflow: hidden;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

        .post-wrapper .post-box a .post-thumbnail img {
            max-width: 100%;
            object-fit: cover;
            transition: all 0.45s ease;
        }

    .post-wrapper .post-box a .post-desc {
        padding: 15px 20px;
        color: var(--primary-blue);
        transition: all 0.25s ease;
    }

@media only screen and (max-width: 767.98px) {
    .post-wrapper .post-box a .post-desc {
        padding: 8px 12px;
    }
}

.post-wrapper .post-box a .post-desc h6 {
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0;
}

.post-wrapper .post-box a:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-wrapper .post-box a:hover .post-desc {
    background: var(--primary-blue);
    color: #fff;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.single-post-wrapper {
    max-width: 1000px;
    margin: 40px auto 20px;
}
/* Footer */
footer {
    background: #ffeeeb;
    padding: 20px 20px 0;
}

    footer .top-footer {
        background: linear-gradient(90deg, rgb(255, 179, 47) 0%, rgb(255, 142, 36) 50%, rgb(255, 128, 30) 100%);
        background: url(../../images/footer-bg.jpg) no-repeat;
        background-size: cover;
        border-radius: 20px;
        padding: 65px;
        margin-bottom: 25px;
    }

@media only screen and (max-width: 767.98px) {
    footer .top-footer {
        padding: 40px 30px 30px;
    }
}

@media only screen and (max-width: 567.98px) {
    footer .top-footer {
        padding: 30px 5px 20px;
    }
}

footer .top-footer .row {
    justify-content: space-between;
    text-align: center;
}

@media only screen and (max-width: 767.98px) {
    footer .top-footer .row {
        flex-direction: column;
        align-items: center;
    }
}

footer .top-footer .footer-box {
    max-width: 450px;
}

@media only screen and (max-width: 991.98px) {
    footer .top-footer .footer-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto 30px;
        text-align: center;
    }
}

@media only screen and (max-width: 767.98px) {
    footer .top-footer .footer-box {
        margin: 0 auto 25px;
    }
}

footer .top-footer .footer-box a {
    display: block;
}

footer .top-footer .footer-box img {
    max-width: 100%;
}

footer .top-footer .footer-contact a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    display: inline-block;
}

@media only screen and (max-width: 767.98px) {
    footer .top-footer .footer-contact a {
        font-size: 14px;
    }
}

footer .social-media {
    text-align: left;
    margin-top: 20px;
}

    footer .social-media li {
        margin-left: 8px;
    }

@media (max-width: 992px) {
    footer .social-media li {
        margin-left: 4px;
    }
}

@media only screen and (max-width: 567.98px) {
    footer .social-media li {
        margin-left: 0;
    }
}

footer .social-media a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #233068;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 0;
    line-height: 3.2;
    font-size: 16px;
    transition: all 0.2s ease;
}

    footer .social-media a i {
        color: #1639ed;
        font-size: 15px;
        transition: all 0.2s ease;
    }

    footer .social-media a:hover {
        background-color: #233068;
    }

        footer .social-media a:hover i {
            color: #fff;
        }

footer .footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    footer .footer-wrapper {
        justify-content: center;
    }
}

footer .footer-wrapper .aprc-logo {
    margin-right: 15px;
    flex: 100px 0 0;
    max-width: 100px;
}

footer .bottom-footer {
    color: #233068;
}

    footer .bottom-footer ul li {
        line-height: 1;
    }

        footer .bottom-footer ul li:first-child {
            padding-right: 10px;
            margin-right: 8px;
            border-right: 1px solid #233068;
        }

        footer .bottom-footer ul li a {
            color: #233068;
            text-decoration: none;
            line-height: 1;
        }

@media only screen and (max-width: 567.98px) {
    footer .bottom-footer .row {
        flex-direction: column;
        justify-self: center;
    }

        footer .bottom-footer .row ul {
            margin-top: 15px;
        }
}

@media (max-width: 1199px) {
    .intro-section .container {
        align-items: flex-start;
        gap: 40px;
    }
}
/* Responsive */
@media (max-width: 992px) {
    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 17px;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

        .header-nav.active {
            display: flex;
        }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .countdown-wrapper {
        padding: 20px 30px;
        gap: 15px;
    }

    .countdown-number {
        font-size: 28px;
    }

    .intro-content h2 {
        font-size: 32px;
    }

    .hero-logos .aprc-logo {
        height: 100px;
    }

    .header {
        padding: 10px 0;
    }

    .r-tabs .r-tabs-tab a {
        font-size: 14px;
    }

    .navbar-toggler {
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        border: 0;
    }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler .navbar-toggler-icon {
            width: 2em;
            height: 2em;
        }
}

@media (max-width: 767px) {
    .header {
        padding: 0;
    }

    .header-logo {
        display: none;
    }

    .hero-title {
        font-size: 26px;
    }

    .header-wrapper .navbar-nav {
        gap: 10px;
        align-items: flex-start;
    }

        .header-wrapper .navbar-nav .nav-link {
            color: #000;
        }

            .header-wrapper .navbar-nav .nav-link.active {
                color: #ffb32f;
                border-color: #ffb32f;
            }

        .header-wrapper .navbar-nav .nav-item.btn-register .nav-link {
            color: #fff;
            text-decoration: none;
        }

        .header-wrapper .navbar-nav .nav-item.btn-register.active {
            color: #ffb32f;
            border: 0;
        }

    .mobile-logo {
        max-width: 95px;
    }

    footer .top-footer .footer-box img {
        max-width: 400px;
        width: 100%;
    }

    .overview-section {
        padding: 40px 0;
    }

        .overview-section .overview-container .nav-tabs {
            justify-content: center;
        }
}

@media (max-width: 576px) {
    .countdown-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        border-radius: 0;
    }

    .countdown-item {
        width: 65px;
        height: 65px;
    }

    .countdown-label {
        font-size: 9px;
        font-weight: 600;
    }

    .hero-logos {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
}

@media (min-width: 577px) and (max-width: 991.98px) {
    .hero-wrapper {
        margin-bottom: 50px;
    }
}

@media (max-width: 400px) {
    .countdown-wrapper {
        gap: 5px;
        padding: 20px 15px;
    }
}
/*# sourceMappingURL=styles.css.map */
