/* =========================================================
   MEFTAL-SPAS ABOUT PAGE
   ALL STYLES ARE SCOPED TO .meftal-about-page
   ========================================================= */


/* =========================================================
   PAGE ROOT
   ========================================================= */

.meftal-about-page {
    --meftal-about-red: #ed1c24;
    --meftal-about-dark-blue: #071d56;
    --meftal-about-blue: #0b2d75;
    --meftal-about-light-grey: #eeeeee;
    --meftal-about-border-grey: #d7d7d7;
    --meftal-about-text: #111111;
    --meftal-about-muted: #626262;
    --meftal-about-white: #ffffff;

    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;

    overflow-x: hidden;

    background: #ffffff;
    color: var(--meftal-about-text);

    box-sizing: border-box;
}


/* =========================================================
   BOX SIZING
   ========================================================= */

.meftal-about-page *,
.meftal-about-page *::before,
.meftal-about-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   SHARED SECTION HEADING
   ========================================================= */

.meftal-about-page .meftal-about-section-title {
    margin: 0;
    padding: 0;

    color: #111111;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.2;

    text-align: center;
}

.meftal-about-page .meftal-about-section-title sup {
    position: relative;

    top: -0.25em;

    margin-left: 1px;

    font-size: 0.48em;
    line-height: 0;
}


/* =========================================================
   HERO
   ========================================================= */

.meftal-about-page .meftal-about-hero {
    position: relative;

    width: 100%;
    height: 365px;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background: #122b72;
}


/* Hero background */

.meftal-about-page .meftal-about-hero-background {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100%;
    height: 100%;
}

.meftal-about-page .meftal-about-hero-background-image {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center center;
}


/* Hero content */

.meftal-about-page .meftal-about-hero-content {
position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(1180px, 100%);
    height: 100%;
    margin: 0 auto;
    padding: 40px 0px;
    pointer-events: none;
    width: 96%;
    max-width: 1386px !important;
}


/* Hero title */

.meftal-about-page .meftal-about-hero-title {
    margin: 0 0 12px;

    color: #ffffff;

    font-weight: 700;

}


/* Hero description */

.meftal-about-page .meftal-about-hero-description {
    width: 390px;
    max-width: 40%;

    margin: 0;

    color: #ffffff;

}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.meftal-about-page .meftal-about-intro {
    width: 100%;

    margin: 0;
    padding:
        68px
        20px
        72px;

    background: #ffffff;
}

.meftal-about-page .meftal-about-intro-inner {
    width: min(760px, 100%);

    margin: 0 auto;

    text-align: center;
}

.meftal-about-page .meftal-about-intro-title {
    margin:
        0
        auto
        18px;

    color: #111111;



    font-size: 27px;
    font-weight: 700;

    line-height: 1.27;
}

.meftal-about-page .meftal-about-intro-text {
    width: min(730px, 100%);

    margin: 0 auto;

    color: #333333;



    font-size: 13px;
    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   MEFTAL-SPAS JOURNEY
   ========================================================= */

.meftal-about-page .meftal-about-journey {
    width: 100%;

    background: #ffffff;
}


/* =========================================================
   JOURNEY HEADING
   ========================================================= */

.meftal-about-page .meftal-about-journey-heading {
    width: 100%;

    margin: 0 0 24px;

    text-align: center;
}


/* =========================================================
   TIMELINE VIEWPORT
   ========================================================= */

.meftal-about-page .meftal-about-timeline-shell {
    width: 100%;

    margin: 0 auto;

    overflow: hidden;
}


/* =========================================================
   HORIZONTAL SCROLL TRACK
   ========================================================= */

.meftal-about-page .meftal-about-timeline-track {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    margin: 0;

    /*
     * IMPORTANT:
     * This creates the initial space before
     * the first card so the first card starts
     * around the center of the viewport.
     */
    padding: 0;

    cursor: grab;

    user-select: none;
    -webkit-user-select: none;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    scroll-behavior: smooth;

    overscroll-behavior-x: contain;

    /*
     * Native carousel-style snapping, CENTER mode
     * (matches the Owl Carousel "center" behaviour):
     * JS still drives programmatic moves (points, arrows),
     * but this guarantees a manual drag/swipe/wheel scroll
     * always comes to rest with a card centered in the
     * viewport, including the very first and very last card.
     */
    scroll-snap-type: x mandatory;
}


/* Hide scrollbar */

.meftal-about-page
.meftal-about-timeline-track::-webkit-scrollbar {
    display: none;

    width: 0;
    height: 0;
}


/* Dragging */

.meftal-about-page
.meftal-about-timeline-track.meftal-about-timeline-is-dragging {
    cursor: grabbing;

    scroll-behavior: auto;

    /* Disable snap while actively dragging so it doesn't fight the pointer */
    scroll-snap-type: none;
}


/* =========================================================
   CARD ROW
   ========================================================= */

.meftal-about-page .meftal-about-timeline-cards {
    display: flex;

    align-items: stretch;

    /*
     * Left/right padding is calculated and set dynamically
     * in JS (updateSidePadding) so that EVERY card, including
     * the very first and very last, can be scrolled all the
     * way to dead-center in the viewport — matching the Owl
     * Carousel "center" demo. The amount needed depends on
     * viewport width and on how wide the active card is
     * (which itself changes on tablet/mobile breakpoints).
     */
    padding-left: 0;
    padding-right: 0;

    width: max-content;

    margin: 0;
}


/* =========================================================
   ALL CARDS
   EXACT SAME WIDTH + HEIGHT
   ========================================================= */

.meftal-about-page .meftal-about-timeline-card,
.meftal-about-page .meftal-about-timeline-card-active {

    /*
     * EVERY CARD = 550px
     */
    flex: 0 0 916px;

    width: 916px;
    min-width: 916px;
    max-width: 916px;


    /*
     * EVERY CARD = 245px
     */
    height: 460px;
    min-height: 460px;
    max-height: 460px;


    box-sizing: border-box;

    margin: 0;

    padding:
        65px
        34px
        30px;

    overflow: hidden;

    border: 0;

    background: #eeeeee;

    transition:
        background-color 180ms ease;

    /* Carousel snap point: center of the viewport */
    scroll-snap-align: center;
    scroll-snap-stop: always;
}


/* =========================================================
   GAP BETWEEN CARDS
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-card
+ .meftal-about-timeline-card {

    margin-left: 18px;
}


/* =========================================================
   ACTIVE CARD
   ONLY COLOR CHANGES
   WIDTH NEVER CHANGES
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-card-active {

    flex: 0 0 916px;

    width: 916px;
    min-width: 916px;
    max-width: 916px;

    height: 460px;
    min-height: 460px;
    max-height: 460px;

    background: #ed1c24;
}


/* =========================================================
   CARD YEAR
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-card-year {

    margin: 0 0 14px;

    color: #b9b9b9;



    font-size: 58px;

    font-weight: 300;

    line-height: 1;

    white-space: nowrap;
}


/* Active year */

.meftal-about-page
.meftal-about-timeline-card-active
.meftal-about-timeline-card-year {

    color: #ffffff;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-card-text {

    width: 100%;

    max-width: 430px;

    margin: 0;

    padding: 0;

    color: #bdbdbd;


    font-size: 12px;

    font-weight: 400;

    line-height: 1.5;
}


/* Active description */

.meftal-about-page
.meftal-about-timeline-card-active
.meftal-about-timeline-card-text {

    color: #ffffff;
}


/* =========================================================
   TIMELINE NAVIGATION
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-navigation {
    position: relative;

    width: calc(100% - 0px);

    height: 38px;

    margin: 24px auto;

    padding: 0;     max-width: 700px;
    margin: 0 auto; margin-top:60px;
}


/* =========================================================
   TIMELINE POINTS
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-points {
    position: relative;

    z-index: 3;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    width: 100%;

    height: 20px;

    margin: 0;

    padding: 0;
}


/* =========================================================
   POINT WRAPPER
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-point-wrapper {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    width: 10px;

    min-width: 10px;

    margin: 0;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    appearance: none;

    -webkit-appearance: none;
}


/* =========================================================
   POINT
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-point {
    display: block;

    width: 10px;

    height: 10px;

    flex: 0 0 10px;

    margin: 0 0 7px;

    box-sizing: border-box;

    border: 1px solid #999999;

    border-radius: 50%;

    background: #ffffff;
}


/* =========================================================
   ACTIVE POINT
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-point-wrapper-active
.meftal-about-timeline-point {
    border-color: #ed1c24;

    background: #ed1c24;

    transform: scale(1.15);
}


/* =========================================================
   BASE LINE
   EXACTLY FROM FIRST DOT CENTER
   TO LAST DOT CENTER
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-line {
    position: absolute;

    z-index: 1;

    /*
     * Center of the 10px dot
     */
    top: 5px;

    left: 5px;

    right: 5px;

    width: auto;

    height: 1px;

    margin: 0;

    padding: 0;

    background: #999999;
}


/* =========================================================
   RED PROGRESS
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-progress {
    position: absolute;

    z-index: 2;

    top: 0px;

    left: 5px;

    width: 0;

    height: 1px;

    margin: 0;

    padding: 0;

    background: #ed1c24;

    transition:
        width 250ms ease;
}


/* =========================================================
   LABEL
   ========================================================= */

.meftal-about-page
.meftal-about-timeline-label {
    display: block;

    margin: 0;

    padding: 0;

    color: #555555;


    font-size: 9px;

    font-weight: 400;

    line-height: 1;

    white-space: nowrap;
}

/* =========================================================
   GROWTH STORY
   ========================================================= */

.meftal-about-page .meftal-about-growth {
    width: 100%;
    background: #ffffff;
}


/* Growth heading */

.meftal-about-page .meftal-about-growth-heading {
    width: min(700px, 100%);

    margin:
        0
        auto
        22px;

    padding:
        0
        20px;

    text-align: center;
}


/* Growth description */

.meftal-about-page .meftal-about-growth-description {
    margin:
        14px
        auto
        0;

    color: #555555;



    font-size: 12px;
    font-weight: 400;

    line-height: 1.55;
}


/* =========================================================
   GROWTH IMAGE
   ========================================================= */

.meftal-about-page .meftal-about-growth-chart {
    width: 100%;

    margin: 0;
    padding: 5% 0;

    overflow: hidden;

    background: #eeeeee url("../../assets/img/square.png") repeat center center;
}


.meftal-about-page .meftal-about-growth-image {
    display: block;

    width: 100%;
    max-width: 658px;
    height: auto;

    margin: 0 auto;
    padding: 0;

    object-fit: contain;
}


/* =========================================================
   ACHIEVEMENTS
   ========================================================= */

.meftal-about-page .meftal-about-achievements {
    width: 100%;

    background: #ffffff;
}


.meftal-about-page .meftal-about-achievements-heading {
    width: min(750px, 100%);

    margin:
        0
        auto
        25px;

    text-align: center;
}


.meftal-about-page .meftal-about-achievements-description {
    margin:
        14px
        auto
        0;

    color: #555555;



    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   ACHIEVEMENT GRID
   ========================================================= */

.meftal-about-page .meftal-about-achievements-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
    width: 90%;
    margin: 0 auto;
    max-width: 1366px !important;
}


/* =========================================================
   ACHIEVEMENT CARD
   ========================================================= */

.meftal-about-page .meftal-about-achievement-card {
    position: relative;

    width: 100%;
    min-height: 315px;

    overflow: hidden;

    border-radius: 9px;

    background-color: #071a50;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.14);
}


/* Card images */

.meftal-about-page .meftal-about-achievement-card-one {
    background-image:
        url("../../assets/img/about_us_01.png");
}

.meftal-about-page .meftal-about-achievement-card-two {
    background-image:
        url("../../assets/img/about_us_02.png");
}

.meftal-about-page .meftal-about-achievement-card-three {
    background-image:
        url("../../assets/img/about_us_03.png");
}


/* =========================================================
   ACHIEVEMENT OVERLAY
   ========================================================= */

.meftal-about-page .meftal-about-achievement-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(4, 22, 70, 0.73) 0%,
            rgba(5, 24, 72, 0.88) 45%,
            rgba(3, 16, 53, 0.92) 100%
        );
}


/* =========================================================
   ACHIEVEMENT CONTENT
   ========================================================= */

.meftal-about-page .meftal-about-achievement-content {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;

    width: 100%;
    min-height: 615px;

    margin: 0;
    padding:11% 8%;
}


/* Brand */

.meftal-about-page .meftal-about-achievement-brand {
    margin:
        0
        0
        12px;

    color: #ed1c24;



    font-size: 16px;
    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
}


/* Main achievement */

.meftal-about-page .meftal-about-achievement-main {
    display: flex;
    flex-direction: column;

    margin:
        0
        0
        12px;
}


.meftal-about-page .meftal-about-achievement-number {
    color: #ffffff;



    font-size: 29px;
    font-weight: 700;

    line-height: 1.08;
}


.meftal-about-page .meftal-about-achievement-highlight {
    color: #ffffff;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.08;
}


/* Supporting text */

.meftal-about-page .meftal-about-achievement-support {
    margin: 0;

    color: #ffffff;

}


/* Source */

.meftal-about-page .meftal-about-achievement-source {
    margin:
        auto
        0
        0;

    color: #fff;

}


@media (max-width: 1699px) {
.meftal-about-page .meftal-about-hero-content {

    max-width: 970px !important;
}
}


/* =========================================================
   TABLET
   768px - 1024px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    /* Hero */

    .meftal-about-page .meftal-about-hero {
        height: 320px;
    }

    .meftal-about-page .meftal-about-hero-content {
        padding-left: 35px;
    }

    .meftal-about-page .meftal-about-hero-title {
        font-size: 32px;
    }

    .meftal-about-page .meftal-about-hero-description {
        width: 330px;
        max-width: 42%;


    }


    /* Introduction */

    .meftal-about-page .meftal-about-intro {
        padding-top: 60px;
        padding-bottom: 65px;
    }


    /* Headings */

    .meftal-about-page .meftal-about-section-title {
        font-size: 25px;
    }


    /* Timeline */

     .meftal-about-page
    .meftal-about-timeline-shell {
        width: calc(100% - 50px);
    }


    .meftal-about-page
    .meftal-about-timeline-card {
        flex-basis: 300px;

        width: 300px;
        min-width: 300px;
        max-width: 300px;
    }


    .meftal-about-page
    .meftal-about-timeline-card-active {
        flex-basis: 470px;

        width: 470px;
        min-width: 470px;
        max-width: 470px;
    }


    .meftal-about-page
    .meftal-about-timeline-navigation {
        width: calc(100% - 100px);
    }


    /* Growth */

    .meftal-about-page .meftal-about-growth {
        padding-bottom: 70px;
    }


    /* Achievements */

    .meftal-about-page .meftal-about-achievements {
        padding-bottom: 75px;
    }

    .meftal-about-page .meftal-about-achievement-card {
        min-height: 290px;
    }

    .meftal-about-page .meftal-about-achievement-content {
        min-height: 290px;
    }

    .meftal-about-page .meftal-about-achievement-number,
    .meftal-about-page .meftal-about-achievement-highlight {
        font-size: 24px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    /* =====================================================
       PAGE
       ===================================================== */

    .meftal-about-page {
        width: 100%;
        max-width: 100%;

        overflow-x: hidden;
    }


    /* =====================================================
       SHARED HEADING
       ===================================================== */

    .meftal-about-page .meftal-about-section-title {
        padding:
            0
            18px;

        font-size: 22px;

        line-height: 1.25;
    }


    /* =====================================================
       HERO
       ===================================================== */

    .meftal-about-page .meftal-about-hero {
        height: 330px;
    }

    .meftal-about-page .meftal-about-hero-background-image {
        object-position: center center;
    }

    .meftal-about-page .meftal-about-hero-content {
        align-items: flex-start;

        justify-content: flex-start;

        width: 100%;

        padding:
            70px
            22px
            20px;
    }

    .meftal-about-page .meftal-about-hero-title {
        margin-bottom: 10px;

        font-size: 28px;
    }

    .meftal-about-page .meftal-about-hero-description {
        width: 250px;
        max-width: 55%;
    }


    /* =====================================================
       INTRODUCTION
       ===================================================== */

    .meftal-about-page .meftal-about-intro {
        padding:
            50px
            22px
            58px;
    }

    .meftal-about-page .meftal-about-intro-inner {
        width: 100%;
    }

    .meftal-about-page .meftal-about-intro-title {
        margin-bottom: 18px;

        font-size: 22px;

        line-height: 1.3;
    }

    .meftal-about-page .meftal-about-intro-break {
        display: none;
    }

    .meftal-about-page .meftal-about-intro-text {
        font-size: 12px;

        line-height: 1.65;
    }


    /* =====================================================
       JOURNEY
       ===================================================== */

   .meftal-about-page
    .meftal-about-journey {
        padding-bottom: 65px;
    }


    .meftal-about-page
    .meftal-about-journey-heading {
        margin-bottom: 20px;
    }


    /* Timeline shell */

    .meftal-about-page
    .meftal-about-timeline-shell {
        width: 100%;
        max-width: 100%;

        margin: 0;
    }


    /* Track */

    .meftal-about-page
    .meftal-about-timeline-track {
        width: 100%;

        padding:
            0
            20px
            3px;

        touch-action: pan-x;

        scrollbar-width: none;
    }


    /* Card row */

    .meftal-about-page
    .meftal-about-timeline-cards {
        width: max-content;
        min-width: 0;
    }


    /* Normal card */

    .meftal-about-page
    .meftal-about-timeline-card {
        flex-basis: 78vw;

        width: 78vw;
        min-width: 78vw;
        max-width: 78vw;

        height: 235px;
        min-height: 235px;

        padding:
            48px
            27px
            25px;
    }


    /* Active card */

    .meftal-about-page
    .meftal-about-timeline-card-active {
        flex-basis: 82vw;

        width: 82vw;
        min-width: 82vw;
        max-width: 82vw;
    }


    /* Gap */

    .meftal-about-page
    .meftal-about-timeline-card
    + .meftal-about-timeline-card {
        margin-left: 12px;
    }


    /* Year */

    .meftal-about-page
    .meftal-about-timeline-card-year {
        margin-bottom: 12px;

        font-size: 47px;
    }


    /* Description */

    .meftal-about-page
    .meftal-about-timeline-card-text {
        font-size: 11px;

        line-height: 1.5;
    }


    /* Navigation */

    .meftal-about-page
    .meftal-about-timeline-navigation {
        width: calc(100% - 80px);

        height: 34px;

        margin-top: 19px;
    }


    /* Labels */

    .meftal-about-page
    .meftal-about-timeline-label {
        font-size: 8px;
    }


    /* =====================================================
       MOBILE GROWTH
       ===================================================== */

    .meftal-about-page .meftal-about-growth {
        padding-bottom: 62px;
    }

    .meftal-about-page .meftal-about-growth-heading {
        width: 100%;

        margin-bottom: 18px;

        padding:
            0
            18px;
    }

    .meftal-about-page .meftal-about-growth-description {
        font-size: 11px;

        line-height: 1.55;
    }

    .meftal-about-page .meftal-about-growth-chart {
        width: 100%;

        overflow: hidden;
    }

    .meftal-about-page .meftal-about-growth-image {
        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;
    }


    /* =====================================================
       MOBILE ACHIEVEMENTS
       ===================================================== */

    .meftal-about-page .meftal-about-achievements {
        padding:
            0
            20px
            70px;
    }

    .meftal-about-page .meftal-about-achievements-heading {
        width: 100%;

        margin-bottom: 22px;
    }

    .meftal-about-page .meftal-about-achievements-description {
        font-size: 11px;
    }


    /* One column */

    .meftal-about-page .meftal-about-achievements-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 15px;

        width: 100%;
    }


    /* Cards */

    .meftal-about-page .meftal-about-achievement-card {
        width: 100%;

        min-height: 330px;

        border-radius: 8px;
    }

    .meftal-about-page .meftal-about-achievement-content {
        min-height: 330px;

        padding:
            25px
            20px
            16px;
    }


    /* Typography */

    .meftal-about-page .meftal-about-achievement-brand {
        margin-bottom: 14px;

        font-size: 15px;
    }

    .meftal-about-page .meftal-about-achievement-number {
        font-size: 29px;
    }

    .meftal-about-page .meftal-about-achievement-highlight {
        font-size: 28px;
    }



    .meftal-about-page .meftal-about-achievement-source {
        font-size: 7px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    /* Hero */

    .meftal-about-page .meftal-about-hero {
        height: 290px;
    }

    .meftal-about-page .meftal-about-hero-content {
        padding:
            55px
            18px
            15px;
    }

    .meftal-about-page .meftal-about-hero-title {
        font-size: 25px;
    }

    .meftal-about-page .meftal-about-hero-description {
        width: 210px;
        max-width: 55%;

    }


    /* Introduction */

    .meftal-about-page .meftal-about-intro {
        padding:
            43px
            19px
            50px;
    }

    .meftal-about-page .meftal-about-intro-title {
        font-size: 20px;
    }


    /* Timeline */

    .meftal-about-page
    .meftal-about-timeline-card {
        flex-basis: 82vw;

        width: 82vw;
        min-width: 82vw;
        max-width: 82vw;
    }


    .meftal-about-page
    .meftal-about-timeline-card-active {
        flex-basis: 86vw;

        width: 86vw;
        min-width: 86vw;
        max-width: 86vw;
    }


    .meftal-about-page
    .meftal-about-timeline-navigation {
        width: calc(100% - 55px);
    }



    /* Achievement cards */

    .meftal-about-page .meftal-about-achievement-card,
    .meftal-about-page .meftal-about-achievement-content {
        min-height: 310px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .meftal-about-page
    .meftal-about-timeline-track {
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    .meftal-about-page
    .meftal-about-timeline-progress {
        transition: none;
    }

    .meftal-about-page
    .meftal-about-timeline-point {
        transition: none;
    }
}