@import './fs-menu.css';


/* Colors */

:root {
    --deep-navy: #0E0A40;
    --light-navy: #15275F;
    --beaufort-blue: #1C347E;
    --indigo: #495D98;
    --periwinkle: #CED6ED;
    --iris: #DCE0EF;
    --cool-ice: #F5F7FE;
    --chalk: #F8FAFF;
    --yellow: #EABD1A;
    --slate: #353639;
    --steel: #696B73;
    --grey: #9EA1AC;
}


.deep-navy {
    color: var(--deep-navy);
}

.light-navy {
    color: var(--light-navy);
}

.beaufort-blue {
    color: var(--beaufort-blue) !important;
}

.indigo {
    color: var(--indigo);
}

.periwinkle {
    color: var(--periwinkle);
}

.iris {
    color: var(--iris);
}

.cool-ice {
    color: var(--cool-ice);
}

.chalk {
    color: var(--chalk);
}

.yellow {
    color: var(--yellow);
}

.slate {
    color: var(--slate);
}

.steel {
    color: var(--steel);
}

.grey {
    color: var(--grey);
}

/* Fonts */

.h1 {
    font-family: "Playfair Display", sans-serif;
    font-size: 7.188rem;
    font-style: normal;
    font-weight: 400;
    line-height: 0.96;
    /* 95.652% */
    text-transform: uppercase;
}

.h2 {
    font-family: "Playfair Display", sans-serif;
    font-size: 5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    /* 100% */
    text-transform: uppercase;
}

.h3 {
    font-family: "Playfair Display", sans-serif !important;
    font-size: 3.625rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1.13 !important;
    text-transform: uppercase !important;
}

.small-h3 {
    font-family: "Playfair Display", sans-serif !important;
    font-size: 3rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1.13 !important;
    text-transform: uppercase !important;
}

.h4 {
    font-family: 'Lato', sans-serif;
    font-size: 3.188rem;
    font-weight: 400;
}

.h5 {
    font-family: 'Lato', sans-serif !important;
    font-size: 1.625rem !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    text-transform: none !important;
}

.h6 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
}

.leading {
    font-family: 'Lato', sans-serif;
    font-size: 1.25;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    /* 150% */
}

.button-font {
    font-family: 'Lato', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.66;
    /* 166.667% */
    text-transform: uppercase;
}

.tag {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.26;
}

.large-quote {
    font-family: "Playfair Display", sans-serif;
    font-size: 3.55rem !important;
    font-style: italic !important;
    text-transform: none !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.small-quote {
    font-family: "Playfair Display", sans-serif;
    font-size: 1.6rem !important;
    font-style: italic !important;
    text-transform: none !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.large-date {
    font-size: 3rem;
    font-weight: 400;
    line-height: 0.9;
    font-family: "Playfair Display", sans-serif;
    color: #1C347E;
}

.large-date sup {
    vertical-align: super;
    font-size: 40%;
}

.uppercase {
    text-transform: uppercase;
}

/* Container */

.container {
    margin: auto;
    max-width: 1600px;
    padding: 0px 30px 0px 30px;
}


/* Utilities */

.custom-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Margin */

.m-0 {
    margin: 0px !important;
}


.year-heading {
    margin-bottom: 30px;
}



/* Circle Button Btn */

.ab-flex-50 {
    flex: 0 0 50px !important;
}

.hover-yellow-arrow-btn:hover .arrow-btn-img-container {
    transform: translateX(0%);
    transition: transform 0.3s ease-in-out;
}

.hover-yellow-arrow-btn:hover .inner-container svg {
    color: #fff;
    transition: color 0.3s ease-in-out;
}


.yellow-lb {
    background-color: #EABD1A;
    transition: background 0.3s ease-in-out;
}

.hover-yellow-arrow-btn:hover .yellow-lb {
    background-color: #1C347E;
    transition: background 0.3s ease-in-out;
}

.yellow-db {
    background-color: #EABD1A;
    transition: background 0.3s ease-in-out;
}

.hover-yellow-arrow-btn:hover .yellow-db {
    background-color: #0E0A40 !important;
    transition: background 0.3s ease-in-out;
}


.arrow-btn-wrap {
    height: 50px;
    width: 50px;
    overflow: hidden;
    display: flex;
    position: relative;
    border-radius: 9999px;
    transition: background 0.3s ease-in-out;
}


.arrow-btn-wrap img {
    height: 100%;
    width: 100%;
}


.arrow-btn-img-container {
    height: 100%;
    display: flex;
    width: 100px;
    transform: translateX(-50%);
    transition: transform 0.3s ease-in-out;
}


.inner-container {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.arrow-btn-wrap:hover .arrow-btn-img-container {
    transform: translateX(0%);
    transition: transform 0.3s ease-in-out;
}


/* Underlines */
.centered-underline-hover:hover .centered-underline::after {
    width: 100%;
    transition: width 0.3s ease-in-out;
}

.centered-underline::after {
    content: '';
    position: absolute;
    bottom: 0.5px;
    width: 0%;
    height: 1px;
    background-color: #1C347E;
    transform-origin: center;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.left-underline-hover:hover .left-underline h3::after {
    width: 50%;
    transition: width 0.3s ease-in-out;
}

.left-underline h3::after {
    content: '';
    position: absolute;
    bottom: 0.5px;
    width: 0%;
    height: 1px;
    background-color: #1C347E;
    transform-origin: center;
    transition: width 0.3s ease-in-out;
}

.left-underline h1,
.left-underline h2,
.left-underline h3,
.left-underline h4,
.left-underline h5,
.left-underline h6 {
    display: inline-flex;
    position: relative;
}


/* Info Blocks */

.info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.additional-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-image img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
}

/* Simple Arrow btn */

.blue-arrow svg {
    color: var(--beaufort-blue) !important;
}

.yellow-arrow svg {
    color: var(--yellow) !important;
}


.simple-arrow-hover:hover .simple-arrow-btn-img-container svg {
    transform: translateX(15px);
    transition: transform 0.3s ease-in-out;
}


.simple-arrow-btn-img-container {
    width: 45px;
    display: flex;
    align-items: center;
}

.simple-arrow-btn-img-container svg {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    color: #1C347E;
}

.simple-yellow svg {
    color: #EABD1A;
}

/* Quote Fader */
.quote-fader .quote-wrapper h3 {
    text-align: center;
}

.quote-fader .quote-wrapper span {
    text-align: center;
    font-size: 1.3rem !important;
}


.quote-fader .quote-wrapper {
    min-height: 0px !important;
}

/* Quote Slider */

.quote-wrapper h3 {
    margin-top: 0px !important;
    margin-bottom: 50px !important;
}

.quote-slider-wrapper {
    display: flex;
    gap: 20px;
}

.quote-wrapper {
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qs-nav-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: end;
}


/* Date Slider */

.dates-slider {
    overflow: visible !important;
    padding-bottom: 28px !important;
    border-bottom: solid 1px #495D98;
}


.dates-slider-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 60px;
    padding: 0px 20px 0px 20px;
}

.dates-slider .swiper-slide {
    position: relative;
    overflow: visible;
    height: auto;
}

.dates-slider .swiper-slide img {
    position: absolute;
    bottom: -32.5px;
    left: 50%;
    z-index: 9999;
}

.dates-slider-header h2 {
    text-align: center;
    margin: 0px;
}

.dates-slider-container {
    width: 100%;
    padding: 0px 10px 0px 10px;
}

.date-slide-content {
    background: #F5F7FE;
    border: solid 1px #F5F7FE;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    font-size: 1.2rem;
    border-radius: 8px;
    padding: 40px 40px 60px 40px;
    flex-direction: column;
    z-index: 1;
    min-height: 275px;
    height: 100%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.date-slide-content:hover {
    border: solid 1px #495D98;
    background: transparent;
    transition: all 0.3s ease-in-out;
}


.dates-slider .swiper-slide * {
    text-align: center;
}

.dates-slider .swiper-slide p {
    margin-bottom: 0px;
}


.custom-slider-prev,
.custom-slider-next {
    cursor: pointer;
    position: static !important;
    margin-top: 0px !important;
    height: 6vw !important;
    width: 6vw !important;
    max-height: 90px;
    max-width: 90px;
    min-height: 50px;
    min-width: 50px;
    border-radius: 999px;
    border: solid 1px #1C347E;
    transition: background 0.3s ease-in-out;
}

.dates-slider-next,
.dates-slider-prev {
    min-width: 45px;
    min-height: 45px;
}

.custom-slider-prev:hover,
.custom-slider-next:hover {
    background-color: #1C347E;
    transition: background 0.3s ease-in-out;
}

.custom-slider-prev:hover svg,
.custom-slider-next:hover svg {
    color: white;
    transition: color 0.3s ease-in-out;
}


.custom-slider-prev svg,
.custom-slider-next svg {
    width: 50% !important;
    max-width: 34px;
    color: #1C347E;
    transition: color 0.3s ease-in-out;
}

.custom-slider-prev svg {
    transform-origin: center;
    transform: rotate(180deg);
}

.custom-slider-prev::after,
.custom-slider-next::after {
    content: none !important;
}

.dates-slider .swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.date-slide-content .date {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.date-slide-content .month {
    margin-bottom: 50px !important;
}

/* Our Curriculum Slider Half */

.oc-half-nav {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 25px;
    justify-content: flex-end;
}

.oc-slider-bar-half {
    width: calc(100% - 10px) !important;
    overflow: visible !important;
}

.oc-slider-half {
    overflow: visible !important;
}

.oc-slider-half .swiper-slide {
    visibility: visible !important;
    opacity: 1 !important;
}

.oc-slider-half.swiper-slide-duplicate {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Our Curriculum Slider */

.oc-slider-header {
    display: flex;
}

.w-45 {
    width: 45%;
}

.w-55 {
    width: 55%;
}


.oc-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
}

.oc-head-button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 80px;
    row-gap: 15px;
}

.oc-slider-header {
    margin-bottom: 50px;
}

.nav-btns {
    display: flex;
    gap: 30px;
}



.custom-swiper-style.swiper-pagination-progressbar {
    background: #1C347E !important;
    height: 2px !important;
    position: relative !important;
}

.custom-swiper-style .swiper-pagination-progressbar-fill {
    background: var(--yellow) !important;
}


.oc-slider-bar.swiper-pagination-progressbar {
    width: 50% !important;
}

.curriculum-block:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.cb-img-wrap {
    position: relative;
    aspect-ratio: 2.9 / 3.3;
    background-color: gainsboro;
    overflow: hidden;
}

.cb-img-wrap img {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.cb-content-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    justify-content: space-between;
    align-items: top;
    color: var(--deep-navy);
    padding-top: 20px;
}

.cb-content-wrap .simple-arrow-btn-wrap {
    position: relative;
    top: 8px;
}


/* HTR Repeater */

.htr-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* PDF Repeater */

.pdf-block {
    display: flex;
}

.pdf-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pdf-img-wrap {
    aspect-ratio: 1 / 1;
    width: 120px;
    background-color: var(--periwinkle);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdf-img-wrap img {
    width: 40%;
}

.pdf-content-wrap {
    background-color: var(--cool-ice);
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.bot-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.top-wrap span {
    color: var(--beaufort-blue);
}

.view-download {
    display: flex;
    gap: 40px;
}

.view-download a {
    text-transform: uppercase;
    font-weight: 400;
    color: var(--indigo);
    line-height: 1;
}

/* Dynamic Menu */
.dynamic-menu li a {
    position: relative;
    padding-left: 35px !important;
    transition: all 0.3s ease-in-out;
    width: 100%;
    display: inline-block;
}

.dynamic-menu ul {
    list-style: none;
    padding-left: 0px;
}

.dynamic-menu li a::before {
    content: "";
    display: inline-block;
    width: 16px;
    /* Adjust as needed */
    height: 12px;
    /* Adjust as needed */
    background-image: url('/wp-content/uploads/2025/07/small-arrow-beaufort-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    top: 13px;
    transform: translateY(-50%);
    opacity: 1 !important;
    transition: all 0.3s ease-in-out;
}

.dynamic-menu li a:hover:before {
    left: 7px;
    transition: all 0.3s ease-in-out;
}

.dynamic-menu li a:hover {
    opacity: 0.5 !important;
    transition: all 0.3s ease-in-out;
}

.dynamic-menu li {
    margin-bottom: 1rem;
}

.dynamic-menu li:last-of-type {
    margin-bottom: 0rem;
}

.dynamic-menu-header {
    width: 420px;
    display: block;
    color: #fff !important;
    background-color: var(--deep-navy);
    padding: 20px;
}

@media only screen and (max-width: 1024px) {

    .h1 {
        font-size: 5.75rem !important;
    }

    .h2 {
        font-size: 4rem !important;
    }

    .h3 {
        font-size: 2.9rem !important;
    }

    .small-h3 {
        font-size: 2.4rem !important;
    }

    .h4 {
        font-size: 2.55rem !important;
    }

    .h5 {
        font-size: 1.5rem !important;
    }

    .h6 {
        font-size: 1.3rem !important;
    }

    .large-quote {
        font-size: 2.9rem !important;
    }


    .small-quote {
        font-size: 1.5rem !important;
    }

    .pdf-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bot-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    .quote-slider-wrapper {
        flex-direction: column;
    }

    .quote-slider {
        width: 100%;
    }

    .qs-nav-wrapper {
        justify-content: center;
    }


    .dates-slider-header {
        gap: 30px;
    }

    .nav-btns {
        gap: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .h1 {
        font-size: 4.75rem !important;
    }

    .h2 {
        font-size: 3.3rem !important;
    }

    .h3 {
        font-size: 2.4rem !important;
    }

    .small-h3 {
        font-size: 2rem !important;
    }

    .h4 {
        font-size: 2.1rem !important;
    }

    .h5 {
        font-size: 1.3rem !important;
    }

    .h6 {
        font-size: 1.15rem !important;
    }

    .large-quote {
        font-size: 2.4rem !important;
    }

    .small-quote {
        font-size: 1.2rem !important;
    }

    .w-45 {
        width: 100%;
    }

    .w-55 {
        width: 100%;
    }

    .quote-slider-wrapper {
        gap: 30px;
    }


    .dynamic-menu-header {
        width: 100%;
    }


    .pdf-block {
        flex-direction: column;
    }

    .bot-wrap {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }

    .pdf-content-wrap {
        gap: 10px;
    }

    .pdf-img-wrap {
        width: 100%;
        aspect-ratio: auto;
        min-height: 200px;
    }

    .bot-wrap {
        gap: 30px;
    }

    .pdf-img-wrap img {
        width: 20%;
        max-width: 80px !important;
    }

    .oc-slider-bar.swiper-pagination-progressbar {
        width: 75% !important;
    }

    .oc-slider-header {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 25px;
    }

    .oc-head-button {
        justify-content: center;
        flex-direction: column;
    }

    .oc-nav {
        gap: 20px;
    }

    .dates-slider-header {
        gap: 10px;
        margin-bottom: 30px;
    }


    .container {
        padding: 0px 20px 0px 20px;
    }
}