/* =====================================================
   FLYTOUCH HOMEPAGE
   SECTION 01 - HERO
===================================================== */

:root {
    --fth-red: #d83b3b;
    --fth-red-dark: #bd2929;
    --fth-navy: #10283c;
    --fth-dark: #172331;
    --fth-text: #415161;
    --fth-muted: #72808d;
    --fth-light: #f7f9fc;
    --fth-border: #e4e9ee;
}


/* ================= HERO ================= */

.fth-hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0 90px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(216, 59, 59, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 5% 90%,
            rgba(16, 40, 60, 0.07),
            transparent 28%
        ),
        #ffffff;
}


/* subtle background grid */

.fth-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .30;

    background-image:

        linear-gradient(
            rgba(16, 40, 60, .035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(16, 40, 60, .035) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}


/* decorative circles */

.fth-hero-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.fth-shape-one {

    width: 300px;
    height: 300px;

    right: -120px;
    top: 80px;

    border: 1px solid rgba(216,59,59,.14);

}


.fth-shape-two {

    width: 220px;
    height: 220px;

    left: -110px;
    bottom: -100px;

    background: rgba(216,59,59,.035);

}



/* ================= EYEBROW ================= */

.fth-eyebrow {

    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    border: 1px solid var(--fth-border);

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    color: var(--fth-navy);

    background: rgba(255,255,255,.75);

    box-shadow: 0 5px 20px rgba(20,42,60,.05);

}


.fth-eyebrow-dot {

    width: 8px;
    height: 8px;

    margin-right: 9px;

    border-radius: 50%;

    background: var(--fth-red);

    box-shadow:
        0 0 0 5px rgba(216,59,59,.10);

}



/* ================= TITLE ================= */

.fth-hero-title {
    max-width: 760px;
    margin: 24px 0 22px;

    color: var(--fth-navy);

    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
}


/* Actual H1 but keep it in same flow */
.fth-inline-h1 {
    display: inline;

    margin: 0;
    padding: 0;

    font: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}


/* Text after H1 looks exactly the same */
.fth-heading-rest {
    display: inline;

    font: inherit;
    color: inherit;
}


/* Changing word */
.fth-changing-wrap {
    display: inline-block;

    color: var(--fth-red);
}


#fthChangingText {
    display: inline-block;

    min-width: 215px;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.fth-changing-wrap {

    display: inline-block;

    color: var(--fth-red);

    position: relative;

}


#fthChangingText {

    display: inline-block;

    min-width: 215px;

    transition:
        opacity .25s ease,
        transform .25s ease;

}



/* ================= PARAGRAPH ================= */

.fth-hero-text {

    max-width: 720px;

    margin-bottom: 13px;

    color: var(--fth-text);

    font-size: 16px;

    line-height: 1.2;

}



/* ================= BUTTONS ================= */

.fth-btn-primary {

    padding: 13px 22px;

    border-radius: 9px;

    color: #fff !important;

    background: var(--fth-red);

    border: 1px solid var(--fth-red);

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 12px 28px rgba(216,59,59,.22);

    transition: .25s ease;

}


.fth-btn-primary:hover {

    color: #fff;

    background: var(--fth-red-dark);

    border-color: var(--fth-red-dark);

    transform: translateY(-2px);

    box-shadow:
        0 16px 36px rgba(216,59,59,.28);

}



.fth-btn-secondary {

    padding: 13px 22px;

    border-radius: 9px;

    background: #fff;

    border: 1px solid var(--fth-border);

    color: var(--fth-navy);

    font-size: 14px;

    font-weight: 700;

    transition: .25s ease;

}


.fth-btn-secondary:hover {

    color: var(--fth-navy);

    border-color: #cbd3da;

    transform: translateY(-2px);

}



/* ================= STATS ================= */

.fth-hero-stats {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--fth-border);
}


.fth-stat {
    position: relative;
    padding: 4px 6px;
}


.fth-stat strong {
    display: block;
    margin-bottom: 2px;

    color: var(--fth-navy);

    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}


.fth-stat span {
    display: block;

    color: var(--fth-muted);

    font-size: 9px;
    line-height: 1.3;

    white-space: nowrap;
}

/* ================= FORM AREA ================= */

.fth-form-area {

    position: relative;

    padding: 18px 15px;

}


.fth-form-card {

    position: relative;

    z-index: 3;

    padding: 30px;

    border-radius: 22px;

    background: #fff;

    border: 1px solid var(--fth-border);

    box-shadow:
        0 25px 70px rgba(24,44,61,.13);

}


.fth-form-header {

    margin-bottom: 22px;

}


.fth-form-small {

    color: var(--fth-red);

    font-size: 10px;

    letter-spacing: 1.3px;

    font-weight: 800;

}


.fth-form-header h2 {

    margin: 6px 0 8px;

    color: var(--fth-navy);

    font-size: 26px;

    font-weight: 800;

}


.fth-form-header p {

    margin: 0;

    color: var(--fth-muted);

    font-size: 13px;

    line-height: 1.6;

}



/* form */

.fth-form-card label {

    margin-bottom: 6px;

    color: #52616e;

    font-size: 11px;

    font-weight: 700;

}


.fth-form-card .form-control {

    min-height: 43px;

    border-radius: 8px;

    border: 1px solid #dde3e8;

    font-size: 13px;

    box-shadow: none;

    transition: .2s ease;

}


.fth-form-card textarea.form-control {

    min-height: 70px;

}


.fth-form-card .form-control:focus {

    border-color: rgba(216,59,59,.55);

    box-shadow:
        0 0 0 3px rgba(216,59,59,.07);

}


.fth-form-submit {

    padding: 13px;

    border-radius: 9px;

    background: var(--fth-navy);

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    transition: .25s ease;

}


.fth-form-submit:hover {

    color: #fff;

    background: #173a55;

    transform: translateY(-1px);

}



/* privacy */

.fth-form-trust {

    display: flex;

    align-items: flex-start;

    margin-top: 15px;

    color: #81909c;

    font-size: 10px;

    line-height: 1.5;

}


.fth-form-trust i {

    margin-right: 7px;

    margin-top: 2px;

    color: #339768;

}



.fth-form-response {

    margin-top: 10px;

    font-size: 12px;

}



/* ================= FLOATING CARDS ================= */

.fth-floating-badge {

    position: absolute;

    z-index: 5;

    align-items: center;

    min-width: 180px;

    padding: 11px 14px;

    border-radius: 13px;

    background: rgba(255,255,255,.96);

    border: 1px solid var(--fth-border);

    box-shadow:
        0 12px 35px rgba(20,40,60,.10);

}


.fth-floating-badge strong {

    display: block;

    color: var(--fth-navy);

    font-size: 12px;

}


.fth-floating-badge small {

    display: block;

    color: var(--fth-muted);

    font-size: 10px;

}


.fth-floating-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 36px;
    height: 36px;

    margin-right: 10px;

    border-radius: 10px;

    background: rgba(216,59,59,.09);

    color: var(--fth-red);

}


.fth-badge-top {

    right: -35px;
    top: -8px;

    animation:
        fthFloat 4s ease-in-out infinite;

}


.fth-badge-bottom {

    left: -45px;
    bottom: -12px;

    animation:
        fthFloat 5s ease-in-out infinite reverse;

}


@keyframes fthFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}



/* ================= FLIGHT ROUTE ================= */

.fth-flight-route {

    position: absolute;

    z-index: 1;

    left: 0;
    right: 0;

    bottom: 20px;

    height: 40px;

    pointer-events: none;

}


.fth-flight-line {

    position: absolute;

    left: 5%;
    right: 5%;

    top: 20px;

    height: 1px;

    border-top: 1px dashed rgba(216,59,59,.19);

}


.fth-flight-plane {

    position: absolute;

    left: 6%;

    top: 3px;

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--fth-red);

    font-size: 22px;

    transform:
        translateX(-50%)
        rotate(5deg);

    transition: left .1s linear;

}



/* ================= REVEAL ANIMATION ================= */

/* Default: content always visible */
.fth-reveal {
    opacity: 1;
    transform: none;
}


/* Only hide elements when JS is confirmed working */
html.fth-js .fth-reveal {
    opacity: 0;
    transform: translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


html.fth-js .fth-reveal.fth-visible {
    opacity: 1;
    margin-top:10px;
    transform: translateY(0);
}



/* ================= RESPONSIVE ================= */

@media (max-width: 1199px) {

    .fth-hero-title {

        font-size: 48px;

    }

}


@media (max-width: 991px) {

    .fth-hero {

        padding:
            55px 0 65px;

    }


    .fth-hero-title {

        font-size: 44px;

    }


    .fth-form-area {

        max-width: 600px;

        margin: auto;

    }

}


@media (max-width: 767px) {

    .fth-hero {

     
     padding: 55px 0px 15px;

    }


    .fth-hero-title {

        font-size: 37px;

        line-height: 1.12;

        letter-spacing: -1px;

    }


    #fthChangingText {

        min-width: 140px;

    }


    .fth-hero-text {

        font-size: 14px;

        line-height: 1.7;

    }


    .fth-form-card {

        padding: 22px;

    }


    .fth-form-header h2 {

        font-size: 23px;

    }

 .fth-hero-stats {
        margin-top: 18px;
        padding-top: 12px;
    }


    .fth-hero-stats > div {
        margin-bottom: 7px;
        padding-left: 4px;
        padding-right: 4px;
    }


    .fth-stat {
        min-height: 54px;

        padding: 8px 7px;

        background: #ffffff;

        border: 1px solid #edf0f3;

        border-radius: 8px;
    }


    .fth-stat strong {
        font-size: 15px;
        margin-bottom: 1px;
    }


    .fth-stat span {
        font-size: 8px;
        white-space: normal;
    }

}

}


@media (max-width: 480px) {

    .fth-hero-title {

        font-size: 33px;

    }


    .fth-btn-primary,
    .fth-btn-secondary {

        width: 100%;

        margin-right: 0 !important;

    }

}


/* =====================================================
   SECTION 02 - ABOUT FLYTOUCH OVERSEAS
===================================================== */

.fth-about-section {
    position: relative;
    overflow: hidden;

    padding: 35px 0 70px;

    background: #f8fafc;

    border-top: 1px solid #edf1f4;
}


/* =====================================================
   SECTION LABEL
===================================================== */

.fth-section-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 15px;

    color: var(--fth-red, #d83b3b);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.fth-section-label span {
    width: 28px;
    height: 2px;

    margin-right: 10px;

    border-radius: 20px;

    background: var(--fth-red, #d83b3b);
}


/* =====================================================
   ABOUT HEADING
===================================================== */

.fth-section-title {
    max-width: 720px;

    margin: 0 0 24px;

    color: var(--fth-navy, #10283c);

    font-size: 40px;
    line-height: 1.16;

    letter-spacing: -1.3px;

    font-weight: 800;
}


.fth-section-title span {
    color: var(--fth-red, #d83b3b);
}


/* =====================================================
   ABOUT TEXT
===================================================== */

.fth-about-content p {
    margin-bottom: 16px;

    color: var(--fth-text, #415161);

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   OFFICE IMAGE
===================================================== */

.fth-about-office {
    position: relative;

    max-width: 500px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    border: 1px solid #e5eaee;

    box-shadow:
        0 22px 55px
        rgba(16, 40, 60, .13);
}


.fth-about-office picture {
    display: block;
    overflow: hidden;
}


.fth-about-office-img {
    display: block;

    width: 100%;
    height: 455px;

    object-fit: cover;
    object-position: center;

    transition:
        transform .7s ease;
}


/* subtle image hover */

.fth-about-office:hover
.fth-about-office-img {
    transform: scale(1.035);
}


/* =====================================================
   TOP FLOATING OFFICE BADGE
===================================================== */

.fth-office-floating {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    display: flex;
    align-items: center;

    padding: 10px 13px;

    border-radius: 13px;

    background:
        rgba(255,255,255,.94);

    border:
        1px solid rgba(255,255,255,.85);

    box-shadow:
        0 10px 30px
        rgba(15,35,50,.13);

    backdrop-filter: blur(10px);

    animation:
        fthOfficeBadgeFloat
        4s ease-in-out infinite;
}


@keyframes fthOfficeBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


.fth-office-floating-icon {
    flex: 0 0 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    margin-right: 10px;

    border-radius: 9px;

    color: var(--fth-red, #d83b3b);

    background:
        rgba(216,59,59,.10);
}


.fth-office-floating-icon i {
    font-size: 14px;
}


.fth-office-floating strong {
    display: block;

    margin-bottom: 1px;

    color: var(--fth-navy, #10283c);

    font-size: 12px;
    line-height: 1.25;

    font-weight: 800;
}


.fth-office-floating small {
    display: block;

    color: #778590;

    font-size: 9px;
}


/* =====================================================
   OFFICE BOTTOM OVERLAY
===================================================== */

.fth-office-bottom {
    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 15px;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;

    border-radius: 13px;

    background:
        rgba(12,36,54,.89);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 28px
        rgba(0,0,0,.15);
}


.fth-office-bottom strong {
    display: block;

    margin-bottom: 2px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;
}


.fth-office-bottom span {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;

    background: transparent !important;

    color: #c8d5df !important;

    font-size: 9px;

    font-weight: 400;

    letter-spacing: 0 !important;
}


.fth-office-bottom i {
    margin-left: 12px;

    color: #ff7771;

    font-size: 20px;
}


/* =====================================================
   TRUST CARDS
===================================================== */

.fth-about-trust-row {
    margin-top: 48px;
    padding-top: 24px;

    border-top:
        1px solid #e3e9ed;
}


.fth-about-trust {
    display: flex;

    align-items: center;

    min-height: 66px;
    gap:10px;

    padding: 11px 12px;

    border-radius: 13px;

    background: #ffffff;

    border: 1px solid #e6ebef;

    box-shadow:
        0 6px 20px
        rgba(16,40,60,.045);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.fth-about-trust:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(216,59,59,.25);

    box-shadow:
        0 13px 30px
        rgba(16,40,60,.08);
}


/* icon square */

.fth-trust-icon {
    flex: 0 0 38px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 38px !important;
    height: 38px !important;

    margin: 0 9px 0 0 !important;

    border-radius: 10px;

    background:
        rgba(216,59,59,.09) !important;

    color:
        var(--fth-red, #d83b3b) !important;
}


.fth-trust-icon i {
    color:
        var(--fth-red, #d83b3b);

    font-size: 14px;
}


/* trust text */

.fth-trust-text {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background:
        transparent !important;

    color:
        var(--fth-navy, #10283c) !important;

    font-size: 12px;

    line-height: 1.35;

    font-weight: 700;

    letter-spacing: 0 !important;
}


/* =====================================================
   SCROLL ANIMATION
===================================================== */

/*
Content remains visible even if JS fails.
This prevents the blank page issue.
*/

.fth-scroll-reveal {
    opacity: 1;

    transform: none;
}


/* only hide when javascript is confirmed running */

html.fth-js
.fth-scroll-reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


html.fth-js
.fth-scroll-reveal.fth-scroll-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .fth-about-section {
        padding:
            70px 0 58px;
    }


    .fth-section-title {
        font-size: 35px;
    }


    .fth-about-office {
        max-width: 620px;

        margin-left: auto;
        margin-right: auto;
    }


    .fth-about-office-img {
        height: 430px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .fth-about-section {
        padding:
            10px 0 10x;
    }


    .fth-section-label {
        margin-bottom: 12px;

        font-size: 9px;
    }


    .fth-section-title {
        margin-bottom: 19px;

        font-size: 29px;

        line-height: 1.2;

        letter-spacing: -.7px;
    }


    .fth-about-content p {
        margin-bottom: 13px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* office */

    .fth-about-office {
        max-width: 100%;

        margin-top: 4px;

        border-radius: 16px;
    }


    .fth-about-office-img {
        height: 300px;
    }


    /* floating top badge */

    .fth-office-floating {
        top: 11px;
        left: 11px;

        padding: 7px 9px;

        border-radius: 10px;
    }


    .fth-office-floating-icon {
        flex: 0 0 30px;

        width: 30px;
        height: 30px;

        margin-right: 7px;
    }


    .fth-office-floating strong {
        font-size: 10px;
    }


    .fth-office-floating small {
        font-size: 8px;
    }


    /* office bottom */

    .fth-office-bottom {
        left: 10px;
        right: 10px;
        bottom: 10px;

        padding: 10px 11px;

        border-radius: 10px;
    }


    .fth-office-bottom strong {
        font-size: 11px;
    }


    .fth-office-bottom span {
        font-size: 8px;
    }


    .fth-office-bottom i {
        font-size: 16px;
    }


    /* trust cards */

    .fth-about-trust-row {
        margin-top: 30px;

        padding-top: 18px;
    }


    .fth-about-trust-row > div {
        padding-left: 4px;
        padding-right: 4px;

        margin-bottom: 8px !important;
    }


    .fth-about-trust {
        min-height: 55px;

        padding: 7px;

        border-radius: 9px;
    }


    .fth-trust-icon {
        flex: 0 0 30px;

        width: 30px !important;
        height: 30px !important;

        margin-right: 6px !important;

        border-radius: 8px;
    }


    .fth-trust-icon i {
        font-size: 11px;
    }


    .fth-trust-text {
        font-size: 8px;

        line-height: 1.25;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 390px) {

    .fth-section-title {
        font-size: 27px;
    }


    .fth-about-office-img {
        height: 270px;
    }


    .fth-trust-text {
        font-size: 7.5px;
    }

}


/* =====================================================
   REDUCED MOTION ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .fth-office-floating {
        animation: none;
    }


    .fth-about-office-img,
    .fth-about-trust,
    .fth-scroll-reveal {
        transition: none !important;

        transform: none !important;
    }

}

/* =====================================================
   SECTION 03 - VISA SERVICES BY CATEGORY
===================================================== */

.fth-services-section {
    position: relative;

    padding: 15px 0 15px;

    background: #ffffff;
}


/* =====================================================
   SECTION TITLE
===================================================== */

.fth-services-title {
    margin: 0;

    color: var(--fth-navy, #10283c);

    font-size: 41px;
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.4px;
}


.fth-services-title span {
    color: var(--fth-red, #d83b3b);
}


.fth-services-intro {
    max-width: 800px;

    margin: 18px auto 0;

    color: var(--fth-text, #415161);

    font-size: 15px;
    line-height: 1.75;
}


/* =====================================================
   GRID
===================================================== */

.fth-services-grid {
    margin-top: 52px;
}




/* =====================================================
   VISA SERVICES SECTION
===================================================== */

.fth-services-section {
    position: relative;

    padding: 20px 0 20px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcfd 100%
        );
}


/* INTRO */

.fth-services-intro {
    max-width: 850px;

    margin: 16px auto 0;

    color: #687985;

    font-size: 14px;

    line-height: 1.75;
}



/* =====================================================
   SERVICE CARD
===================================================== */

.fth-service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 100%;

    padding: 24px;

    overflow: hidden;

    border: 1px solid #e5eaee;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 6px 22px rgba(16, 40, 60, .035);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.fth-service-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(216, 59, 59, .25);

    box-shadow:
        0 16px 38px
        rgba(16, 40, 60, .08);
}



/* SUBTLE DECORATION */

.fth-service-card::after {
    content: "";

    position: absolute;

    top: -38px;
    right: -38px;

    width: 90px;
    height: 90px;

    border-radius: 50%;

    background:
        rgba(216, 59, 59, .055);

    pointer-events: none;
}



/* =====================================================
   TOP NUMBER + ICON
===================================================== */

.fth-service-top {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}


.fth-service-number {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #abb8c2 !important;

    font-size: 10px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1px !important;
}


.fth-service-icon {
    position: relative;

    z-index: 2;

    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 44px !important;
    height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border-radius: 11px;

    background:
        rgba(216, 59, 59, .09) !important;

    color:
        #d83b3b !important;

    font-size: 15px;
}



/* =====================================================
   TITLE
===================================================== */

.fth-service-card h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 12px;

    color: #10283c;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 800;
}



/* =====================================================
   DESCRIPTION
===================================================== */

.fth-service-desc {
    position: relative;

    z-index: 2;

    
    margin: 0;

    color: #687985;

    font-size: 12px;

    line-height: 1.7;
}



/* =====================================================
   DETAILS - ALWAYS VISIBLE
===================================================== */

.fth-service-details {
    position: relative;

    z-index: 2;

    display: flex !important;

    flex-direction: column;

    flex: 1;

    height: auto !important;

    max-height: none !important;

    margin-top: 17px;

    padding-top: 17px;

    overflow: visible !important;

    opacity: 1 !important;

    visibility: visible !important;

    transform: none !important;

    border-top:
        1px solid #edf0f2;
}



/* =====================================================
   SERVICE POINTS
===================================================== */

.fth-service-points {
    margin: 0 0 18px;

    padding: 0;

    list-style: none;
}


.fth-service-points li {
    display: flex;

    align-items: flex-start;

    margin-bottom: 9px;

    padding: 0;

    color: #566874;

    font-size: 11px;

    line-height: 1.5;
}


.fth-service-points li:last-child {
    margin-bottom: 0;
}


.fth-service-points li i {
    flex: 0 0 16px;

    margin-top: 3px;

    color: #d83b3b;

    font-size: 9px;
}


.fth-service-points li span {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: inherit !important;

    font-size: inherit !important;

    line-height: inherit !important;

    letter-spacing: 0 !important;
}



/* =====================================================
   CARD CTA
===================================================== */

.fth-service-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: auto;

    padding: 11px 14px;

    border-radius: 9px;

    background: #f5f7f9;

    color: #10283c !important;

    font-size: 10.5px;

    line-height: 1.3;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.fth-service-cta span {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: inherit !important;

    font-size: inherit !important;

    letter-spacing: 0 !important;
}


.fth-service-cta i {
    margin-left: 10px;

    color: #d83b3b;

    font-size: 9px;

    transition: transform .25s ease;
}


.fth-service-cta:hover {
    background: #10283c;

    color: #ffffff !important;
}


.fth-service-cta:hover i {
    color: #ffffff;

    transform: translateX(3px);
}



/* =====================================================
   HELP / UNSURE CARD
===================================================== */

.fth-service-help-card {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 100%;

    padding: 25px;

    overflow: hidden;

    border-radius: 16px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(216, 59, 59, .35),
            transparent 33%
        ),
        linear-gradient(
            135deg,
            #10283c,
            #173b58
        );

    box-shadow:
        0 16px 35px
        rgba(16, 40, 60, .13);
}


.fth-service-help-card::after {
    content: "\f072";

    position: absolute;

    right: -10px;
    bottom: -25px;

    font-family: FontAwesome;

    color:
        rgba(255, 255, 255, .045);

    font-size: 115px;

    transform: rotate(-18deg);

    pointer-events: none;
}



/* HELP ICON */

.fth-help-icon {
    position: relative;

    z-index: 2;

    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 46px !important;
    height: 46px !important;

    margin: 0 0 18px !important;

    padding: 0 !important;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .12) !important;

    color:
        #ffffff !important;

    font-size: 16px;
}



/* HELP SMALL */

.fth-help-small {
    position: relative;

    z-index: 2;

    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 0 8px !important;

    padding: 0 !important;

    background: transparent !important;

    color: #ff7771 !important;

    font-size: 8px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 1.5px !important;
}



/* HELP TITLE */

.fth-service-help-card h3 {
    position: relative;

    z-index: 2;

    margin: 0 0 13px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 800;
}



/* HELP TEXT */

.fth-service-help-card p {
    position: relative;

    z-index: 2;

    margin: 0 0 25px;

    color: #c5d2dc;

    font-size: 11.5px;

    line-height: 1.75;
}



/* HELP BUTTON */

.fth-help-btn {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 12px 14px;

    border-radius: 9px;

    background: #d83b3b;

    color: #ffffff !important;

    font-size: 10.5px;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        background .25s ease,
        transform .25s ease;
}


.fth-help-btn span {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: inherit !important;

    font-size: inherit !important;

    letter-spacing: 0 !important;
}


.fth-help-btn i {
    margin-left: 10px;

    font-size: 9px;

    transition: transform .25s ease;
}


.fth-help-btn:hover {
    background: #ffffff;

    color: #10283c !important;
}


.fth-help-btn:hover i {
    transform: translateX(3px);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .fth-service-desc {
        min-height: 0;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .fth-services-section {
        padding: 52px 0 40px;
    }


    .fth-services-intro {
        font-size: 12px;

        line-height: 1.7;
    }


    .fth-services-grid > div {
        margin-bottom: 12px !important;
    }


    .fth-service-card,
    .fth-service-help-card {
        padding: 18px;

        border-radius: 13px;
    }


    .fth-service-top {
        margin-bottom: 13px;
    }


    .fth-service-icon {
        width: 38px !important;
        height: 38px !important;

        font-size: 13px;
    }


    .fth-service-card h3 {
        margin-bottom: 8px;

        font-size: 14px;
    }


    .fth-service-desc {
        min-height: 0;

        font-size: 10.5px;
    }


    .fth-service-details {
        margin-top: 13px;

        padding-top: 13px;
    }


    .fth-service-points {
        margin-bottom: 14px;
    }


    .fth-service-points li {
        margin-bottom: 7px;

        font-size: 9.5px;
    }


    .fth-service-cta,
    .fth-help-btn {
        padding: 10px 12px;

        font-size: 9px;
    }


    .fth-service-help-card h3 {
        font-size: 15px;
    }


    .fth-service-help-card p {
        font-size: 10px;
    }

}




/* =====================================================
   SECTION 04 - DESTINATIONS
===================================================== */

.fth-destinations {
    position: relative;
    overflow: hidden;

    padding: 15px 0 15px;

    background:
        radial-gradient(
            circle at 92% 8%,
            rgba(216,59,59,.055),
            transparent 25%
        ),
        #ffffff;
}


/* HEADING */

.fth-destination-title {
    margin: 0;

    color: var(--fth-navy, #10283c);

    font-size: 40px;
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.2px;
}


.fth-destination-title span {
    color: var(--fth-red, #d83b3b);
}


.fth-destination-intro {
    max-width: 820px;

    margin: 17px auto 0;

    color: #647481;

    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   FEATURED TITLE
===================================================== */

.fth-featured-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    margin: 38px 0 25px;

    color: var(--fth-navy, #10283c);

    font-size: 10px;

    letter-spacing: 1.3px;
}


.fth-featured-heading span {
    width: 55px !important;
    height: 1px !important;

    margin: 0 11px !important;

    background:
        rgba(216,59,59,.35) !important;
}


/* =====================================================
   COUNTRY CARD
===================================================== */

.fth-destination-card {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 120px;

    padding: 15px 9px;

    overflow: hidden;

    border-radius: 14px;

    border: 1px solid #e6ebef;

    background: #ffffff;

    color:
        var(--fth-navy, #10283c) !important;

    text-align: center;

    text-decoration: none !important;

    box-shadow:
        0 6px 18px
        rgba(16,40,60,.045);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}


/* top red line */

.fth-destination-card::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 0;

    width: 0;
    height: 3px;

    background:
        var(--fth-red, #d83b3b);

    transform:
        translateX(-50%);

    transition:
        width .28s ease;
}


.fth-destination-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(216,59,59,.25);

    box-shadow:
        0 15px 32px
        rgba(16,40,60,.10);
}


.fth-destination-card:hover::before {
    width: 55%;
}


/* =====================================================
   FLAG
===================================================== */

.fth-flag-wrap {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 10px;

    padding: 7px;

    border-radius: 50%;

    background: #f7f9fb;

    border: 1px solid #edf0f3;

    transition:
        transform .3s ease;
}


.fth-flag-wrap img {
    width: 31px;
    height: 31px;

    border-radius: 50%;

    object-fit: cover;

    box-shadow:
        0 2px 7px
        rgba(0,0,0,.10);
}


.fth-destination-card:hover
.fth-flag-wrap {
    transform:
        scale(1.08);
}


/* country name */

.fth-destination-card strong {
    color:
        var(--fth-navy, #10283c);

    font-size: 10px;

    line-height: 1.3;

    font-weight: 800;
}


/* small arrow */

.fth-country-arrow {
    position: absolute;

    right: 9px;
    bottom: 8px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 21px !important;
    height: 21px !important;

    margin: 0 !important;

    border-radius: 50%;

    background:
        #f4f6f8 !important;

    color:
        #a3adb5 !important;

    opacity: 0;

    font-size: 7px;

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.fth-destination-card:hover
.fth-country-arrow {
    opacity: 1;

    transform:
        translateX(2px);

    color:
        var(--fth-red, #d83b3b) !important;
}


/* =====================================================
   VIEW ALL BUTTON
===================================================== */

.fth-view-countries {
    padding: 9px 18px;

    border: 1px solid #dfe5e9;

    border-radius: 30px;

    background: #ffffff;

    color:
        var(--fth-navy, #10283c);

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 5px 16px
        rgba(16,40,60,.04);

    transition: .25s ease;
}


.fth-view-countries:hover {
    color: #ffffff;

    background:
        var(--fth-navy, #10283c);

    border-color:
        var(--fth-navy, #10283c);
}


/* =====================================================
   OTHER DESTINATION CTA
===================================================== */

.fth-other-destination {
    margin-top: 40px;

    padding: 24px 28px;

    border-radius: 19px;

    border: 1px solid #ece7df;

    background:
        linear-gradient(
            120deg,
            #fffaf4,
            #ffffff
        );

    box-shadow:
        0 10px 30px
        rgba(16,40,60,.045);
}


.fth-other-globe {
    flex: 0 0 65px;

    align-items: center;
    justify-content: center;

    width: 65px;
    height: 65px;

    margin-right: 18px;

    border-radius: 50%;

    color:
        var(--fth-red, #d83b3b);

    background:
        rgba(216,59,59,.08);

    font-size: 28px;
}


.fth-other-small {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin-bottom: 4px !important;

    background: transparent !important;

    color:
        var(--fth-red, #d83b3b) !important;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px !important;
}


.fth-other-destination h3 {
    margin: 0 0 5px;

    color:
        var(--fth-navy, #10283c);

    font-size: 19px;

    font-weight: 800;
}


.fth-other-destination p {
    max-width: 680px;

    margin: 0;

    color: #70808c;

    font-size: 11px;

    line-height: 1.65;
}


/* =====================================================
   BOTTOM TRUST
===================================================== */

.fth-destination-trust {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
}


.fth-destination-trust span {
    display: inline-flex !important;

    align-items: center;

    width: auto !important;
    height: auto !important;

    padding: 7px 10px !important;

    border: 1px solid #e6ebef;

    border-radius: 30px;

    background:
        #f8fafc !important;

    color:
        #657481 !important;

    font-size: 10px;
    
    gap:8px;

    font-weight: 700;

    letter-spacing: 0 !important;
}


.fth-destination-trust i {
    margin-right: 5px;

    color:
        var(--fth-red, #d83b3b);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .fth-destinations {
        padding:
            10px 0 10px;
    }


    .fth-destination-title {
        font-size: 29px;
    }


    .fth-destination-intro {
        font-size: 13px;

        line-height: 1.7;
    }


    .fth-featured-heading {
        margin:
            28px 0 18px;
    }


    .fth-featured-heading span {
        width: 30px !important;
    }


    .fth-destination-grid > div {
        padding-left: 5px;
        padding-right: 5px;

        margin-bottom: 10px !important;
    }


    .fth-destination-card {
        min-height: 100px;

        padding: 11px 6px;

        border-radius: 11px;
    }


    .fth-flag-wrap {
        width: 40px;
        height: 40px;

        margin-bottom: 7px;

        padding: 5px;
    }


    .fth-flag-wrap img {
        width: 27px;
        height: 27px;
    }


    .fth-destination-card strong {
        font-size: 8px;
    }


    .fth-country-arrow {
        display: none !important;
    }


    .fth-other-destination {
        margin-top: 28px;

        padding: 19px 16px;

        text-align: center;
    }


    .fth-other-destination h3 {
        font-size: 17px;
    }


    .fth-destination-trust {
        gap: 5px;
    }


    .fth-destination-trust span {
        padding:
            5px 7px !important;

        font-size: 7px;
    }

}


/* =====================================================
   SECTION 05 - ADDITIONAL VISA SUPPORT
===================================================== */

.fth-support-section {
    position: relative;

    padding: 15px 0 15px;

    background: #f8fafc;
}


/* =====================================================
   HEADING
===================================================== */

.fth-support-title {
    margin: 0;

    color: var(--fth-navy, #10283c);

    font-size: 40px;
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.2px;
}


.fth-support-title span {
    color: var(--fth-red, #d83b3b);
}


.fth-support-intro {
    max-width: 820px;

    margin: 17px auto 0;

    color: #657481;

    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   CARD
===================================================== */

.fth-support-card {
    --mouse-x: 50%;
    --mouse-y: 50%;

    position: relative;

    height: 100%;

    overflow: hidden;

    padding: 23px 23px 70px;

    border: 1px solid #e4e9ed;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 8px 24px rgba(16,40,60,.045);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}


/* mouse light effect */

.fth-support-card::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0;

    background:
        radial-gradient(
            250px circle
            at var(--mouse-x)
            var(--mouse-y),
            rgba(216,59,59,.07),
            transparent 60%
        );

    transition:
        opacity .25s ease;
}


.fth-support-card:hover::before {
    opacity: 1;
}


.fth-support-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(216,59,59,.22);

    box-shadow:
        0 18px 38px
        rgba(16,40,60,.09);
}


/* =====================================================
   CARD TOP
===================================================== */

.fth-support-card-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 17px;
}


.fth-support-icon {
    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 48px !important;
    height: 48px !important;

    margin: 0 !important;

    border-radius: 14px;

    background:
        rgba(216,59,59,.08) !important;

    color:
        var(--fth-red, #d83b3b) !important;
}


.fth-support-icon i {
    font-size: 18px;
}


.fth-support-number {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;

    background: transparent !important;

    color: #c4ccd3 !important;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px !important;
}


/* =====================================================
   TEXT
===================================================== */

.fth-support-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 9px;

    color:
        var(--fth-navy, #10283c);

    font-size: 17px;
    line-height: 1.3;

    font-weight: 800;
}


.fth-support-description {
    position: relative;
    z-index: 2;

    min-height: 82px;

    margin-bottom: 15px;

    color: #6b7a86;

    font-size: 11px;
    line-height: 1.65;
}


/* =====================================================
   INCLUDES
===================================================== */

.fth-includes-label {
    margin-bottom: 6px;

    color:
        var(--fth-red, #d83b3b);

    font-size: 9px;

    font-weight: 800;
}


.fth-support-list {
    position: relative;
    z-index: 2;

    list-style: none;

    padding: 0;
    margin: 0;
}


.fth-support-list li {
    position: relative;

    padding:
        3px 0 3px 18px;

    color: #53636f;

    font-size: 10px;

    line-height: 1.4;
}


.fth-support-list li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 3px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 12px;
    height: 12px;

    border: 1px solid
        var(--fth-red, #d83b3b);

    border-radius: 50%;

    color:
        var(--fth-red, #d83b3b);

    font-size: 7px;

    font-weight: 800;
}


/* =====================================================
   CARD CTA
===================================================== */

.fth-support-cta {
    position: absolute;

    z-index: 3;

    left: 15px;
    right: 15px;
    bottom: 15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 39px;

    padding:
        9px 10px 9px 14px;

    border-radius: 8px;

    background:
        var(--fth-navy, #10283c);

    color: #ffffff !important;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        background .25s ease,
        transform .25s ease;
}


.fth-support-cta i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 23px;
    height: 23px;

    margin-left: 8px;

    border-radius: 50%;

    color: #ffffff;

    background:
        var(--fth-red, #d83b3b);

    font-size: 8px;

    transition:
        transform .25s ease;
}


.fth-support-cta:hover {
    background: #173a55;
}


.fth-support-cta:hover i {
    transform: translateX(3px);
}


/* =====================================================
   TRUST ROW
===================================================== */

.fth-support-trust-row {
    margin-top: 12px;
}


.fth-support-trust {
    display: flex;

    align-items: center;

    min-height: 74px;

    padding: 11px 14px;

    border-radius: 13px;

    border: 1px solid #e5eaee;

    background: #ffffff;

    box-shadow:
        0 5px 18px
        rgba(16,40,60,.035);
}


.fth-support-trust > span {
    flex: 0 0 42px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 42px !important;
    height: 42px !important;

    margin: 0 11px 0 0 !important;

    border-radius: 50%;

    background:
        var(--fth-navy, #10283c) !important;

    color: #ffffff !important;
}


.fth-support-trust > span i {
    color:
        #ff716d;

    font-size: 15px;
}


.fth-support-trust strong {
    color:
        var(--fth-navy, #10283c);

    font-size: 10px;

    line-height: 1.4;

    font-weight: 800;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.fth-support-bottom {
    position: relative;

    overflow: hidden;

    margin-top: 16px;

    padding: 25px 28px;

    border-radius: 18px;

    background:

        radial-gradient(
            circle at 90% 20%,
            rgba(216,59,59,.30),
            transparent 25%
        ),

        linear-gradient(
            130deg,
            #0c2438,
            #123a59
        );

    box-shadow:
        0 18px 45px
        rgba(16,40,60,.18);
}


.fth-support-bottom::after {
    content: "\f072";

    position: absolute;

    right: 30px;
    bottom: -24px;

    color:
        rgba(255,255,255,.055);

    font-family: FontAwesome;

    font-size: 120px;

    transform:
        rotate(-18deg);

    pointer-events: none;
}


.fth-support-bottom-icon {
    flex: 0 0 62px;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    margin-right: 17px;

    border-radius: 50%;

    border: 2px solid
        rgba(255,255,255,.17);

    color: #ff7771;

    background:
        rgba(255,255,255,.07);

    font-size: 25px;
}


.fth-support-small {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 0 3px !important;

    background:
        transparent !important;

    color:
        #ff7771 !important;

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1.2px !important;
}


.fth-support-bottom h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;
}


.fth-support-bottom p {
    max-width: 650px;

    margin: 0;

    color: #b9c8d3;

    font-size: 10px;

    line-height: 1.6;
}


.fth-support-main-btn {
    position: relative;
    z-index: 3;

    display: inline-flex;

    align-items: center;

    padding: 12px 16px;

    border-radius: 9px;

    background:
        var(--fth-red, #d83b3b);

    color: #ffffff !important;

    font-size: 10px;

    font-weight: 800;

    text-decoration: none !important;

    box-shadow:
        0 10px 25px
        rgba(216,59,59,.26);

    transition:
        transform .25s ease,
        background .25s ease;
}


.fth-support-main-btn i {
    margin-left: 9px;
}


.fth-support-main-btn:hover {
    transform: translateY(-2px);

    background: #bf2e2e;
}


/* =====================================================
   JS REVEAL
===================================================== */

.fth-support-card {
    opacity: 1;
}


html.fth-js
.fth-support-card {
    opacity: 0;

    transform:
        translateY(20px);
}


html.fth-js
.fth-support-card.fth-support-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .fth-support-section {
        padding:
            70px 0 58px;
    }


    .fth-support-title {
        font-size: 35px;
    }


    .fth-support-description {
        min-height: 70px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .fth-support-section {
        padding:
            10px 0 10px;
    }


    .fth-support-title {
        font-size: 29px;

        line-height: 1.2;
    }


    .fth-support-intro {
        font-size: 13px;
    }


    .fth-support-card {
        padding:
            18px 18px 66px;

        border-radius: 13px;
    }


    .fth-support-description {
        min-height: auto;

        font-size: 11px;
    }


    .fth-support-card h3 {
        font-size: 16px;
    }


    .fth-support-icon {
        width: 41px !important;
        height: 41px !important;
    }


    .fth-support-trust-row > div {
        padding-left: 4px;
        padding-right: 4px;
    }


    .fth-support-trust {
        min-height: 59px;

        padding: 7px;
    }


    .fth-support-trust > span {
        flex: 0 0 31px;

        width: 31px !important;
        height: 31px !important;

        margin-right: 6px !important;
    }


    .fth-support-trust > span i {
        font-size: 11px;
    }


    .fth-support-trust strong {
        font-size: 8px;
    }


    .fth-support-bottom {
        margin-top: 8px;

        padding: 21px 17px;

        text-align: center;
    }


    .fth-support-bottom h3 {
        font-size: 18px;
    }


    .fth-support-bottom p {
        font-size: 9px;
    }

}
/* =====================================================
   SECTION 06 - PAN INDIA ASSISTANCE
===================================================== */

.fth-india-section {
    padding: 15px 0 15px;
    background: #ffffff;
}


/* HEADING */

.fth-india-title {
    margin: 0;

    color: var(--fth-navy, #10283c);

    font-size: 40px;
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1.2px;
}


.fth-india-title span {
    color: var(--fth-red, #d83b3b);
}


.fth-india-intro {
    max-width: 820px;

    margin: 17px auto 0;

    color: #657481;

    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   COVERAGE PANEL
===================================================== */

.fth-india-coverage {
    height: 100%;

    padding: 27px;

    border: 1px solid #e5eaee;

    border-radius: 18px;

    background: #f9fbfc;

    box-shadow:
        0 9px 28px
        rgba(16,40,60,.045);
}


.fth-india-coverage h3 {
    margin-bottom: 3px;

    color: var(--fth-navy, #10283c);

    font-size: 20px;

    font-weight: 800;
}


.fth-india-coverage > div > p {
    margin: 0;

    color: #7a8792;

    font-size: 10px;
}


/* =====================================================
   REGION CARDS
===================================================== */

.fth-region-card {
    width: 100%;

    display: flex;

    align-items: flex-start;

    margin-bottom: 13px;

    padding: 13px;

    border: 1px solid #e5eaee;

    border-radius: 13px;

    background: #ffffff;

    text-align: left;

    outline: none !important;

    cursor: pointer;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.fth-region-card:hover,
.fth-region-card.active {
    transform: translateY(-3px);

    border-color:
        rgba(216,59,59,.28);

    box-shadow:
        0 10px 24px
        rgba(16,40,60,.08);
}


.fth-region-icon {
    flex: 0 0 34px;

    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 34px !important;
    height: 34px !important;

    margin: 0 9px 0 0 !important;

    border-radius: 50%;

    background:
        rgba(216,59,59,.09) !important;

    color:
        var(--fth-red, #d83b3b) !important;
}


.fth-region-card strong {
    display: block;

    margin-bottom: 5px;

    color: var(--fth-navy, #10283c);

    font-size: 10px;

    font-weight: 800;
}


.fth-region-card ul {
    padding-left: 13px;

    margin: 0;
}


.fth-region-card li {
    margin-bottom: 2px;

    color: #70808b;

    font-size: 8px;

    line-height: 1.35;
}


/* =====================================================
   INDIA MAP
===================================================== */
.fth-india-map-wrap {
    position: relative;

    width: 100%;
    max-width: 390px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


.fth-india-map {
    position: relative;
    z-index: 2;

    width: 100% !important;
    max-width: 390px !important;
    height: auto !important;

    display: block;

    object-fit: contain;

    margin: 0 auto;

    transition:
        transform .4s ease,
        filter .4s ease;
}

.fth-india-map.fth-map-active {
    transform:
        scale(1.045);

    filter:
        drop-shadow(
            0 14px 18px
            rgba(216,59,59,.16)
        );
}


.fth-map-pulse {
    position: absolute;

    z-index: 1;

    left: 50%;
    top: 50%;

    width: 130px;
    height: 130px;

    border-radius: 50%;

    background:
        rgba(216,59,59,.055);

    transform:
        translate(-50%, -50%);

    opacity: 0;

    transition:
        opacity .3s ease,
        transform .4s ease;
}


.fth-map-pulse.active {
    opacity: 1;

    transform:
        translate(-50%, -50%)
        scale(1.2);
}


/* =====================================================
   OFFICES PANEL
===================================================== */

.fth-offices-panel {
    height: 100%;

    padding: 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #f7f9fb,
            #eef3f7
        );

    border: 1px solid #e5eaee;
}


.fth-office-small {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin-bottom: 4px !important;

    background: transparent !important;

    color:
        var(--fth-red, #d83b3b) !important;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px !important;
}


.fth-offices-panel > div > h3 {
    margin-bottom: 7px;

    color: var(--fth-navy, #10283c);

    font-size: 20px;

    font-weight: 800;
}


.fth-offices-panel > div > p {
    margin: 0;

    color: #71808c;

    font-size: 10px;

    line-height: 1.6;
}


/* OFFICE CARD */

.fth-office-card {
    overflow: hidden;

    border-radius: 13px;

    background: #ffffff;

    border: 1px solid #e3e8ec;

    box-shadow:
        0 7px 20px
        rgba(16,40,60,.045);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.fth-office-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 13px 28px
        rgba(16,40,60,.09);
}


.fth-office-image {
    position: relative;

    height: 120px;

    overflow: hidden;
}


.fth-office-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .5s ease;
}


.fth-office-card:hover
.fth-office-image img {
    transform: scale(1.04);
}


.fth-office-image > span {
    position: absolute;

    left: 10px;
    bottom: 10px;

    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;

    padding: 5px 8px !important;

    border-radius: 20px;

    background:
        rgba(16,40,60,.88) !important;

    color: #ffffff !important;

    font-size: 7px;

    font-weight: 700;
}


.fth-office-info {
    padding: 13px;
}


.fth-office-info h4 {
    margin-bottom: 6px;

    color: var(--fth-navy, #10283c);

    font-size: 12px;

    font-weight: 800;
}


.fth-office-info h4 i {
    margin-right: 5px;

    color: var(--fth-red, #d83b3b);
}


.fth-office-info p {
    margin-bottom: 7px;

    color: #6f7e89;

    font-size: 9px;

    line-height: 1.5;
}


.fth-office-info a,
.fth-office-info > span {
    display: inline !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;

    background: transparent !important;

    color:
        var(--fth-navy, #10283c) !important;

    font-size: 8px;

    font-weight: 700;

    text-decoration: none !important;
}


/* =====================================================
   CITY CTA
===================================================== */

.fth-city-cta {
    margin-top: 22px;

    padding: 22px 27px;

    border: 1px solid #ece7df;

    border-radius: 17px;

    background:
        linear-gradient(
            120deg,
            #fffaf4,
            #ffffff
        );
}


.fth-city-icon {
    flex: 0 0 58px;

    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-right: 16px;

    border-radius: 50%;

    background:
        rgba(216,59,59,.08);

    color:
        var(--fth-red, #d83b3b);

    font-size: 24px;
}


.fth-city-small {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 0 3px !important;

    background: transparent !important;

    color:
        var(--fth-red, #d83b3b) !important;

    font-size: 8px;

    font-weight: 800;

    letter-spacing:
        1px !important;
}


.fth-city-cta h3 {
    margin: 0 0 4px;

    color:
        var(--fth-navy, #10283c);

    font-size: 18px;

    font-weight: 800;
}


.fth-city-cta p {
    margin: 0;

    color: #71808c;

    font-size: 10px;
}


.fth-city-btn {
    display: inline-flex;

    align-items: center;

    padding: 11px 15px;

    border-radius: 8px;

    background:
        var(--fth-red, #d83b3b);

    color: #ffffff !important;

    font-size: 9px;

    font-weight: 800;

    text-decoration: none !important;

    transition:
        transform .25s ease,
        background .25s ease;
}


.fth-city-btn i {
    margin-left: 8px;
}


.fth-city-btn:hover {
    transform: translateY(-2px);

    background: #bd2f2f;
}


/* =====================================================
   TRUST STRIP
===================================================== */

.fth-india-trust-row {
    margin-top: 13px;

    padding: 13px 8px;

    border-radius: 14px;

    background:
        var(--fth-navy, #10283c);
}


.fth-india-trust {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    color: #ffffff;
}


.fth-india-trust i {
    margin-right: 9px;

    color: #ff716d;

    font-size: 18px;
}


.fth-india-trust strong {
    display: block;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.2;
}


.fth-india-trust span {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 2px 0 0 !important;

    background:
        transparent !important;

    color:
        #afbfcb !important;

    font-size: 7px;

    letter-spacing:
        0 !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .fth-india-section {
        padding:
            10px 0 10px;
    }


    .fth-india-title {
        font-size: 29px;
    }


    .fth-india-intro {
        font-size: 13px;
    }


    .fth-india-coverage {
        padding: 18px 14px;
    }


    .fth-region-card {
        padding: 10px;

        margin-bottom: 9px;
    }


    .fth-region-icon {
        flex: 0 0 30px;

        width: 30px !important;
        height: 30px !important;

        margin-right: 7px !important;
    }


    .fth-region-card strong {
        font-size: 9px;
    }


    .fth-region-card li {
        font-size: 7.5px;
    }


    .fth-india-map-wrap {
        max-width: 260px;
        margin: 15px auto;
    }

 .fth-india-map {
        max-width: 260px !important;
    }

    .fth-offices-panel {
        padding: 17px;
    }


    .fth-city-cta {
        padding: 18px 15px;

        text-align: center;
    }


    .fth-india-trust-row {
        padding: 8px 4px;
    }


    .fth-india-trust {
        justify-content: flex-start;

        padding: 5px;
    }


    .fth-india-trust i {
        margin-right: 6px;

        font-size: 14px;
    }

}

/* =====================================================
   PROCESS SECTION - ONLY UNIQUE STYLING
===================================================== */

.fth-process-section {
    padding: 15px 0 15px;
    background: #f8fafc;
}


.fth-process-intro {
    max-width: 700px;
    margin: 16px auto 0;

    color: #687782;

    font-size: 14px;
    line-height: 1.7;
}


.fth-process-wrap {
    position: relative;
    padding-top: 35px;
}


/* ==============================================
   PROCESS CARD
============================================== */

.fth-process-card {
    position: relative;

    height: 100%;
  

    padding: 48px 18px 22px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e5eaee;

    border-radius: 16px;

    box-shadow:
        0 8px 24px rgba(16,40,60,.045);

    transition: .3s ease;
}


.fth-process-card:hover,
.fth-process-card.active {
    transform: translateY(-5px);

    border-color:
        rgba(216,59,59,.30);

    box-shadow:
        0 16px 35px rgba(16,40,60,.09);
}


/* ICON */

.fth-process-icon {
    position: absolute;

    left: 50%;
    top: 0;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--fth-navy, #10283c);

    color: #ffffff;

    border: 4px solid #f8fafc;

    box-shadow:
        0 0 0 2px rgba(216,59,59,.22);

    transform:
        translate(-50%, -50%);

    transition: .3s ease;
}


.fth-process-card.active
.fth-process-icon {
    background:
        var(--fth-red, #d83b3b);

    transform:
        translate(-50%, -50%)
        scale(1.07);
}


.fth-process-icon i {
    font-size: 19px;
}


/* STEP */

.fth-process-step {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 0 8px !important;

    background:
        transparent !important;

    color:
        var(--fth-red, #d83b3b) !important;

    font-size: 10px;

    font-weight: 800;

    letter-spacing:
        1px !important;
}


.fth-process-card h3 {
    margin: 0 0 12px;

    color:
        var(--fth-navy, #10283c);

    font-size: 21px;

    font-weight: 800;
}


.fth-process-card p {
    margin: 0;

    color: #6b7985;

    font-size: 12px;

    line-height: 1.65;
}


/* ==============================================
   PLANE ROUTE
============================================== */

.fth-process-route {
    position: absolute;

    z-index: 5;

    top: 26px;
    left: 12%;
    right: 12%;

    height: 30px;

    pointer-events: none;
}


.fth-process-line {
    position: absolute;

    top: 14px;
    left: 0;
    right: 0;

    height: 2px;

    background:
        repeating-linear-gradient(
            90deg,
            #d8dfe5 0,
            #d8dfe5 8px,
            transparent 8px,
            transparent 14px
        );
}


.fth-process-line-fill {
    width: 0;
    height: 2px;

    background:
        var(--fth-red, #d83b3b);
}


.fth-process-plane {
    position: absolute;

    top: 0;
    left: 0;

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--fth-red, #d83b3b);

    color: #ffffff;

    font-size: 11px;

    transform:
        translateX(-50%);

    box-shadow:
        0 8px 18px rgba(216,59,59,.28);
}


/* MOBILE */

@media (max-width: 767px) {

    .fth-process-section {
        padding: 10px 0 10px;
    }


    .fth-process-intro {
        font-size: 13px;
    }


    .fth-process-wrap {
        padding-top: 15px;
    }


    .fth-process-wrap > .row > div {
        padding-left: 5px;
        padding-right: 5px;
    }


    .fth-process-card {
        min-height: 190px;

        padding:
            38px 10px 16px;

        border-radius: 12px;
    }


    .fth-process-icon {
        width: 46px;
        height: 46px;
    }


    .fth-process-icon i {
        font-size: 15px;
    }


    .fth-process-card h3 {
        font-size: 13px;
    }


    .fth-process-card p {
        font-size: 8px;
    }

}

/* =====================================================
   SECTION 08 - MESSAGE FROM DIRECTOR
===================================================== */


/* =====================================================
   SECTION BACKGROUND
===================================================== */

.fth-director-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(216, 59, 59, .08),
            transparent 27%
        ),
        radial-gradient(
            circle at 95% 80%,
            rgba(16, 40, 60, .08),
            transparent 30%
        ),
        #f5f7fa;
}


/* Decorative circle */

.fth-director-section::before {
    content: "";

    position: absolute;

    left: -150px;
    bottom: -160px;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    border:
        1px solid rgba(216, 59, 59, .11);

    pointer-events: none;
}



/* =====================================================
   MAIN CARD
===================================================== */

.fth-director-box {
    position: relative;
    overflow: hidden;

    padding:
        48px 50px 0;

    border-radius: 22px;

    border:
        1px solid #e3e8ed;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(216, 59, 59, .08),
            transparent 31%
        ),
        linear-gradient(
            120deg,
            #ffffff 0%,
            #ffffff 52%,
            #eef3f7 100%
        );

    box-shadow:
        0 22px 60px
        rgba(16, 40, 60, .12);
}



/* Decorative dots */

.fth-director-box::after {
    content: "";

    position: absolute;

    top: 35px;
    right: 40px;

    width: 60px;
    height: 60px;

    opacity: .23;

    background-image:
        radial-gradient(
            var(--fth-red, #d83b3b) 2px,
            transparent 2px
        );

    background-size:
        10px 10px;

    pointer-events: none;
}



/* =====================================================
   QUOTE
===================================================== */

.fth-director-quote {
    position: relative;

    max-width: 520px;

    padding-left: 32px;
}


.fth-director-quote > i {
    position: absolute;

    left: 0;
    top: 3px;

    color:
        rgba(216, 59, 59, .30);

    font-size: 21px;
}


.fth-director-quote p {
    margin: 0;

    color: #536471;

    font-size: 15px;

    line-height: 1.8;
}



/* =====================================================
   DIRECTOR DETAILS
===================================================== */

.fth-director-name {
    margin: 0 0 2px;

    color:
        var(--fth-navy, #10283c);

    font-size: 18px;

    font-weight: 800;
}


.fth-director-role {
    color: #697985;

    font-size: 11px;
}


.fth-director-since {
    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;

    padding:
        4px 9px !important;

    border-radius: 5px;

    background:
        var(--fth-red, #d83b3b) !important;

    color: #ffffff !important;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0 !important;
}



/* =====================================================
   DIRECTOR IMAGE
===================================================== */

.fth-director-photo {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: flex-end;
    justify-content: center;
}


.fth-director-photo img {
    position: relative;

    z-index: 3;

    display: block;

    max-height: 440px;

    width: auto;

    object-fit: contain;

    object-position: bottom center;
}



/* Background shape behind director */

.fth-director-circle {
    position: absolute;

    z-index: 1;

    right: 25px;
    bottom: -30px;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(216, 59, 59, .13),
            rgba(16, 40, 60, .06)
        );
}



/* Extra right-side shape */

.fth-director-photo::after {
    content: "";

    position: absolute;

    z-index: 1;

    right: -40px;
    top: 15px;

    width: 110px;
    height: 330px;

    border-radius:
        80px 0 0 80px;

    background:
        linear-gradient(
            180deg,
            var(--fth-red, #d83b3b),
            #ad2929
        );

    opacity: .92;

    transform:
        rotate(-8deg);
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .fth-director-box {
        padding:
            40px 35px 0;
    }


    .fth-director-photo {
        min-height: 380px;
    }


    .fth-director-photo img {
        max-height: 380px;
    }


    .fth-director-circle {
        width: 300px;
        height: 300px;

        right: 50%;

        transform:
            translateX(50%);
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .fth-director-section {
        padding-top:
            42px !important;

        padding-bottom:
            42px !important;
    }


    .fth-director-box {
        padding:
            28px 20px 0;

        border-radius: 16px;
    }


    .fth-director-quote {
        padding-left: 25px;
    }


    .fth-director-quote > i {
        font-size: 16px;
    }


    .fth-director-quote p {
        font-size: 13px;

        line-height: 1.7;
    }


    .fth-director-name {
        font-size: 16px;
    }


    .fth-director-role {
        font-size: 9px;
    }


    .fth-director-photo {
        min-height: 310px;

        margin-top: 15px;
    }


    .fth-director-photo img {
        max-height: 310px;
    }


    .fth-director-circle {
        width: 250px;
        height: 250px;

        right: 50%;
        bottom: -15px;

        transform:
            translateX(50%);
    }


    .fth-director-photo::after {
        right: -45px;
        display:none;
        width: 85px;
        height: 250px;
    }


    .fth-director-box::after {
        width: 45px;
        height: 45px;

        right: 15px;
        top: 18px;

        background-size:
            8px 8px;
    }

}

/* =====================================================
   SECTION 09 - FINAL CONSULTATION CTA
===================================================== */

.fth-final-cta-section {
    position: relative;
    overflow: hidden;

    background: #f8fafc;
}


/* MAIN CTA BOX */

.fth-final-cta-box {
    position: relative;
    overflow: hidden;

    padding: 55px 45px 35px;

    border-radius: 24px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(216,59,59,.20),
            transparent 28%
        ),
        radial-gradient(
            circle at 5% 100%,
            rgba(255,255,255,.08),
            transparent 30%
        ),
        linear-gradient(
            130deg,
            #10283c,
            #173b58
        );

    box-shadow:
        0 22px 55px rgba(16,40,60,.17);
}


/* override shared heading colors inside dark CTA */

.fth-final-cta-box .fth-section-label {
    color: #ff807b;
}


.fth-final-cta-box .fth-section-label span {
    background: #ff807b;
}


.fth-final-cta-box .fth-section-title {
    max-width: 850px;

    margin-left: auto;
    margin-right: auto;

    color: #ffffff;
}


.fth-final-cta-box .fth-section-title span {
    color: #ff7771;
}


/* DESCRIPTION */

.fth-final-cta-text {
    max-width: 800px;

    margin: 0 auto;

    color: #c5d2dc;

    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   TRUST LINE
===================================================== */

.fth-final-trust-row {
    padding-top: 22px;

    border-top:
        1px solid rgba(255,255,255,.11);
}


.fth-final-trust {
    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 7px 8px;

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;
}


.fth-final-trust i {
    margin-right: 7px;

    color: #ff7771;

    font-size: 13px;
}


.fth-final-trust span {
    display: inline !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #d7e1e8 !important;

    font-size: 13px;

    letter-spacing: 0 !important;
}


/* subtle decoration */

.fth-final-cta-box::after {
    content: "\f072";

    position: absolute;

    right: 30px;
    bottom: -40px;

    color:
        rgba(255,255,255,.045);

    font-family: FontAwesome;

    font-size: 150px;

    transform:
        rotate(-18deg);

    pointer-events: none;
}


/* MOBILE */

@media (max-width: 767px) {

    .fth-final-cta-section {
        padding-top:
            42px !important;

        padding-bottom:
            42px !important;
    }


    .fth-final-cta-box {
        padding:
            35px 18px 22px;

        border-radius: 17px;
    }


    .fth-final-cta-text {
        font-size: 13px;
        line-height: 1.7;
    }


    .fth-final-cta-box
    .fth-btn-primary,
    .fth-final-cta-box
    .fth-btn-secondary {
        width: 100%;

        margin-right: 0 !important;
    }


    .fth-final-trust-row > div {
        padding-left: 4px;
        padding-right: 4px;
    }


    .fth-final-trust {
        min-height: 38px;

        padding: 5px;

        justify-content: flex-start;
    }


    .fth-final-trust i {
        font-size: 11px;
        margin-right: 5px;
    }


    .fth-final-trust span {
        font-size: 7.5px;
    }

}

/* =====================================================
   FAQ
===================================================== */

.fth-faq-section {
    padding: 80px 0 70px;
    background: #ffffff;
}

.fth-faq-intro {
    max-width: 800px;
    margin: 15px auto 0;

    color: #687782;

    font-size: 14px;
    line-height: 1.75;
}


/* FAQ ITEM */

#visa-faq .ftfaq-item {
    margin-bottom: 10px;

    overflow: hidden;

    border: 1px solid #e4e9ed;
    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(16,40,60,.04);
}


/* QUESTION */

#visa-faq .ftfaq-question {
    width: 100% !important;

    display: flex !important;
    align-items: center !important;

    min-height: 62px;

    padding: 13px 16px !important;

    margin: 0 !important;

    border: 0 !important;
    outline: 0 !important;

    background: #ffffff !important;

    text-align: left !important;

    cursor: pointer;
}


/* NUMBER */

#visa-faq .ftfaq-number {
    flex: 0 0 36px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 36px !important;
    height: 36px !important;

    margin: 0 12px 0 0 !important;

    border-radius: 8px;

    background:
        rgba(216,59,59,.09) !important;

    color:
        #d83b3b !important;

    font-size: 9px !important;
    font-weight: 800;
}


/* QUESTION TEXT */

#visa-faq .ftfaq-title {
    flex: 1;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #10283c !important;

    font-size: 13px !important;
    line-height: 1.45 !important;

    font-weight: 800 !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* PLUS */

#visa-faq .ftfaq-icon {
    flex: 0 0 29px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 29px !important;
    height: 29px !important;

    margin-left: 10px !important;

    border-radius: 50%;

    background:
        #f3f6f8 !important;

    color:
        #d83b3b !important;

    transition: .3s ease;
}


#visa-faq .ftfaq-icon i {
    font-size: 9px;
}


/* ACTIVE */

#visa-faq .ftfaq-item.active {
    border-color:
        rgba(216,59,59,.28);

    box-shadow:
        0 10px 25px rgba(16,40,60,.07);
}


#visa-faq .ftfaq-item.active .ftfaq-number,
#visa-faq .ftfaq-item.active .ftfaq-icon {
    background:
        #d83b3b !important;

    color:
        #ffffff !important;
}


#visa-faq .ftfaq-item.active
.ftfaq-icon {
    transform: rotate(45deg);
}


/* ANSWER */

#visa-faq .ftfaq-answer {
    display: none;

    border-top:
        1px solid #edf1f3;

    background: #ffffff;
}


#visa-faq .ftfaq-item.active
.ftfaq-answer {
    display: block;
    padding:10px;
}


#visa-faq .ftfaq-answer p {
    margin: 0;

    padding:
        16px 64px 18px;

    color:
        #63727e !important;

    font-size: 12px;

    line-height: 1.75;
}


/* MOBILE */

@media (max-width: 767px) {

    .fth-faq-section {
        padding: 10px 0 10px;
    }


    .fth-faq-intro {
        font-size: 13px;
    }


    #visa-faq .ftfaq-question {
        min-height: 54px;

        padding:
            10px 9px !important;
    }


    #visa-faq .ftfaq-number {
        flex: 0 0 29px;

        width: 29px !important;
        height: 29px !important;

        margin-right: 8px !important;

        font-size: 7px !important;
    }


    #visa-faq .ftfaq-title {
        font-size:
            10.5px !important;
    }


    #visa-faq .ftfaq-icon {
        flex: 0 0 26px;

        width: 26px !important;
        height: 26px !important;

        margin-left: 5px !important;
    }


    #visa-faq .ftfaq-answer p {
        padding:
            13px 46px 15px;

        font-size: 10px;
    }

}


/* =====================================================
   RECENT VISA SUCCESS SLIDER
===================================================== */

#visaSuccessCarousel {
    position: relative;
    margin-top: 10px;
}


/* spacing between visa images */

#visaSuccessCarousel .carousel-item .row {
    margin-left: -8px;
    margin-right: -8px;
}


#visaSuccessCarousel .carousel-item [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}


/* VISA IMAGE */

#visaSuccessCarousel img {
    display: block;

    width: 100%;
    height: 380px;

    padding: 10px;

    object-fit: contain;

    background: #ffffff;

    border: 1px solid #e5eaee;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(16, 40, 60, .08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* hover */

#visaSuccessCarousel img:hover {
    transform: translateY(-5px);

    box-shadow:
        0 16px 35px rgba(16, 40, 60, .13);
}


/* smoother bootstrap slide */

#visaSuccessCarousel .carousel-item {
    transition:
        transform .75s ease-in-out;
}


/* prevent ugly flash between slides */

#visaSuccessCarousel .carousel-inner {
    overflow: hidden;

    padding:
        8px 4px 18px;
}


/* =====================================================
   OPTIONAL SMALL PROGRESS DOTS
===================================================== */

.visa-success-progress {
    display: flex;

    justify-content: center;

    gap: 6px;

    margin-top: 12px;
}


.visa-success-progress span {
    width: 7px !important;
    height: 7px !important;

    margin: 0 !important;

    border-radius: 50%;

    background:
        #dfe5e9 !important;

    transition:
        width .3s ease,
        background .3s ease;
}


.visa-success-progress span.active {
    width: 22px !important;

    border-radius: 10px;

    background:
        var(--fth-red, #d83b3b) !important;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    #visaSuccessCarousel img {
        height: 430px;

        padding: 8px;
    }


    #visaSuccessCarousel .carousel-inner {
        padding-bottom: 10px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    #visaSuccessCarousel img {
        height: 380px;
    }

}
