@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Outfit:wght@100..900&display=swap');

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Light.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Regular.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Semibold.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Bold.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Medium.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Extralight.woff2') format('woff2'),
        url('../fonts/ClashDisplay-Extralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

input,
select,
textarea {
    background-color: transparent;
    outline: none;
}

button {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

p {
    margin-bottom: 1em;
}

p:last-child,
p:last-of-type {
    margin-bottom: 0 !important;
}

body {
    min-height: 100vh;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;

    background-color: #000E1A;
    font-family: "Outfit", sans-serif;
}

body.home {
    color: #ffffff;
}

body:not(.home) {
    padding-top: 102px;
    background-color: #FFF !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Clash Display';
}

.container {
    max-width: 1430px;
}

.container-sm {
    max-width: 1390px;
}

.container-xs {
    max-width: 1190px;
}

.font-fjalla-one {
    font-family: "Fjalla One", sans-serif;
}

.font-clash {
    font-family: 'Clash Display';
}

.font-outfit {
    font-family: "Outfit", sans-serif;
}

/* Button */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 19.5px;
    border-radius: 40px;
    background-color: #fff;
    color: #000E1A;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background-color: #147FB4;
    color: #fff;
    border-color: #147FB4;
}

.button-secondary {
    background-color: rgba(0, 14, 26, 0.5);
    color: #FFFFFF;
    border-color: #147FB4;
}

.button-secondary:hover {
    background-color: #fff;
    color: #000E1A;
}



.cs-bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.cs-padding {
    padding: 75px 0;
}

/* Color */
.bg-primary {
    background-color: #000E1A !important;
}

.text-blue-light {
    color: #f1faff;
}

.text-blue {
    color: #1881B5;
}

/* Fontsize */
.text-sm {
    font-size: 14px;
}

.text-md {
    font-size: 16px;
}

.text-lg {
    font-size: 20px;
}

.leading-normal {
    line-height: normal;
}

.leading-md {
    line-height: 1.4;
}

.flex-1 {
    flex: 1;
}

.border-blue-light {
    border-color: rgba(112, 179, 213, 0.5);
}

.overflow-hidden {
    overflow: hidden;
}

.rounded {
    border-radius: 10px;
}

.rounded-md {
    border-radius: 20px;
}

.z-99 {
    z-index: 99;
}

.-z-1 {
    z-index: -1;
}

.cs-heading {
    font-size: 30px;
}

.menu-toggle {
    width: 32px;
    height: 32px;
    display: none;
}

.menu-bar {
    position: relative;
}

#menu-main {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu-main>li {
    position: relative;
}

#menu-main>li>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

#menu-main>li.menu-item-has-children>a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease-in-out;
}

#menu-main>li.menu-item-has-children:hover>a::after,
#menu-main>li.menu-item-has-children:focus-within>a::after {
    transform: rotate(225deg);
}

#menu-main .sub-menu {
    list-style: none;
    margin: 0;
    padding: 12px;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: rgba(0, 14, 26, 0.95);
    border: 1px solid rgba(112, 179, 213, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease-in-out;
    z-index: 100;
}

#menu-main .sub-menu a {
    display: block;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.3;
    color: #FFFFFF;
}

#menu-main .sub-menu a:hover,
#menu-main .sub-menu a:focus {
    color: #147FB4;
}

#menu-main>li.menu-item-has-children:hover>.sub-menu,
#menu-main>li.menu-item-has-children:focus-within>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    #menu-main .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 8px 0 0 16px;
    }

    #menu-main>li.menu-item-has-children>a::after {
        display: none;
    }
}

.menu-main ul li a:hover {
    color: #147FB4 !important;
}

header {
    color: #FFF;
    position: fixed;
    transition: all 0.3s ease-in-out;
}

header.sticky {
    padding: 10px 0 !important;
    background-color: #003051;
}

.header-logo a {
    letter-spacing: 0.15em;
    font-size: 24px;
    line-height: normal;
    display: flex;
    align-items: center;
    flex-direction: row
}

.header-logo a img {
    width: 72px;
    height: 72px;
    margin-right: 8px;
}

.header-logo a:hover {
    color: #147FB4;
}

.home-hero {
    padding: 180px 0 118px;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 20, 37, 0.7);
    pointer-events: none;
}

.home-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 14, 26, 0) 0%, #000E1A 100%);
    height: 51%;
}

.home-hero-heading {
    font-size: 70px;
    line-height: 75px;
    max-width: 800px;
}

.home-hero-button {
    background-color: #147FB4;
    border-color: #147FB4;
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    padding: 15px 25px;
    width: 400;
    text-align: center;
    max-width: 100%;
}

.home-hero-button:hover {
    background-color: #fff;
    color: #147FB4;
}

.home-intro-text {
    background: linear-gradient(91.39deg,
            #FFFFFF -0.05%,
            #94C8E2 15.49%,
            #147FB4 100.05%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
}

.home-intro {
    padding-bottom: 100px;
}

.book-box {
    background: linear-gradient(91.38deg, #94C8E2 -33.18%, #147FB4 100.05%);
    padding-bottom: 5px !important;
}

.book-section {
    max-width: 1100px;
    margin: 0 auto;
}

.book-form-wrapper .btn-schedule {
    width: 100%;
    background-color: #000E1A;
    border-color: #000E1A;
    color: #FFFFFF;
}

.book-form-wrapper .col-last {
    min-width: 200px;
}

.home-result-main {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 20px;
    padding: 75px 32px 150px;
}

.home-result-tabs {
    margin-bottom: 40px;
}

.home-result-tabs .tab {
    background: transparent;
    border: 1px solid transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    line-height: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.home-result-tabs .tab:hover {
    background: #FFFFFF33;
    border-color: #FFFFFF33;
}

.home-result-tabs .tab.active {
    background: #FFFFFF33;
    border-color: #FFFFFF33;
}

.home-result-swiper {}

.home-result-swiper .swiper-slide {
    width: 300px;
    filter: blur(1.5px);
}

.home-result-swiper .swiper-slide-active {
    width: 676px;
    filter: blur(0px);
}

.before-after {
    padding: 38px;
}

.before-after .inner {
    display: flex;
    align-items: center;
    min-height: 300px;
    position: relative;
}

.home-result-swiper .before-box {
    width: 89%;
    aspect-ratio: 1;
    position: relative;
}

.home-result-swiper .before-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgb(0, 14, 26, 0.8);
    z-index: 1;
    transform: rotate(-3deg);

}

.home-result-swiper .swiper-slide-prev .before-box::before {
    transform: rotate(3deg);
}

.home-result-swiper .swiper-slide-active .before-box::before {
    display: none;
}

.home-result-swiper .after-box {
    width: auto;
}

.home-result-swiper .swiper-slide-active .before-box,
.home-result-swiper .swiper-slide-active .after-box {
    width: 50%;
    aspect-ratio: 1;
}

.before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 24px 0px #00000040;
    transition: all 0.3s ease-in-out;
}

.home-result-swiper .img-before-img {
    transform: rotate(-3deg);
    margin: 0 0 0 10px;
}

.home-result-swiper .swiper-slide-prev .img-before-img {
    transform: rotate(3deg);
}

.home-result-swiper .swiper-slide-active .img-before-img {
    margin: 0 0 0 20px;
}

.before-after .img-after-img {
    transform: rotate(5deg);
    display: none;
    margin: -20px 0 0 -20px;
}

.result-swiper-content {
    display: none;
}

.home-result-swiper .swiper-slide-active .img-after-img {
    display: block;
}

.home-result-swiper .swiper-slide-active .result-swiper-content {
    display: block;
}

.result-navigation .swiper-button-disabled {
    display: none;
}

.result-button-prev,
.result-button-next {
    width: 64px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #147FB4;
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 10;
}

.result-button-prev {
    left: 9%;
}

.result-button-next {
    right: 9%;
}

.home-resources-section {
    padding-bottom: 75px;
}


.resource-card {
    position: relative;
    display: block;
    height: 275px;
    border-radius: 10px;
    overflow: hidden;
}

.resource-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0, 14, 26, 0.2);
    pointer-events: none;
}

.resource-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 127, 180, 0.55) 0%, rgba(20, 127, 180, 0) 100%);
    pointer-events: none;
}

.resource-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resource-overlay h3 {
    max-width: 80%;
}

.resource-arrow {
    width: 64px;
    height: 40px;
    border-radius: 40px;
    background: #001425;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    transition: all 0.3s ease;
}

.resource-arrow img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.resource-card:hover .resource-arrow {
    background: #147FB4;
    transform: translateX(4px);
}

.home-about-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 127, 180, 0.55) 0%, rgba(20, 127, 180, 0) 100%);
    pointer-events: none;
}

.home-about-section-reverse .home-about-img::before {
    background: linear-gradient(180deg, rgba(20, 127, 180, 0) 48.23%, rgba(20, 127, 180, 0.55) 100%);
}

.video-hero-section {
    background: #06131d;
}

.video-hero-swiper {
    position: relative;
}

.video-slide {
    position: relative;
    height: 434px;
    border-radius: 20px;
    overflow: hidden;
}

.video-slide .video-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.video-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.video-overlay-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 16px;
}


.play-video-btn {
    padding: 7px 19.5px;
}

.video-nav {
    width: 64px;
    height: 40px;
    border-radius: 40px;
    background: #000E1A;
    position: absolute;
    bottom: 40px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-nav:hover {
    background: #147FB4;
}

.video-nav-prev {
    left: 40px;
}

.video-nav-next {
    right: 40px;
}

.social-box {
    min-height: 275px;
}

.home-contact-section iframe {
    min-height: 320px;
}


body:not(.home) header {
    padding: 15px 0 !important;
    background-color: #003051;
}

#page-content {
    min-height: 30vh;
    background: #FFF;
}

footer .menu-bar .sub-menu {
    display: none;
}

footer {
    color: #FFF;
    background: #000d1a;
}


#fortris-page-builder .container {
    max-width: 1180px;;
}

#fortris-page-builder h2 {
    color: #003051;
    font-size: 33px !important;
    font-family: "Fjalla One", sans-serif; margin-bottom: 20px !important;
}

#fortris-page-builder h3 {
    color: #003051;
    font-size: 25px !important;
    font-family: "Fjalla One", sans-serif; margin-bottom: 20px !important;
}

#fortris-page-builder ul,
#fortris-page-builder p {
    font-size: 18px; line-height: 1.5; margin-bottom: 20px !important;
}

#fortris-page-builder ul {
    margin-bottom: 40px !important;
}



body #fortris-page-builder #callout {
    max-width: 900px;
    margin: 0 auto;
    background: #003051;
    color: #FFF;
    padding: 10px 30px 30px;
    border-radius: 30px;;
}

body #fortris-page-builder #callout p {
    font-size: 28px;
    line-height: 1.4;
    font-family: "Fjalla One", sans-serif;
    letter-spacing: 1px;    
}

body #fortris-page-builder #callout .sep {
    width: 60px;
    height: 3px;
    background: #CAB481;
    margin: 40px auto;
}


#fortris-page-builder #hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 37, 0.2);
    pointer-events: none;
}

#fortris-page-builder #hero h1 {
    font-family: "Fjalla One", sans-serif;
    font-size: 60px;
    position: relative;
    z-index: 10;
    text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.35);
}

#fortris-page-builder #hero img.small {
    max-height: 22vw !important;
}

#fortris-page-builder #hero img.medium {
    max-height: 32vw !important;
}

#fortris-page-builder #hero img.large {
    max-height: 42vw !important;
}




.home-blog {
    padding: 75px 0;
}

.home-blog .blog-main-content {
    padding: 40px 33px 40px 40px;
}

.home-blog .blog-main-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.home-blog h3 {
    color: #FFF;
    font-size: 28px;
}

.home-blog p {
    color: #C1E0EF;
}

.blog-main-img img {
    border-radius: 20px;
    aspect-ratio: 16/9;
    object-fit: cover;
}