/* =========================================================
   RAHBAN TIR
   ABOUT HERO
   RTL
   IMAGE LEFT / TEXT RIGHT
   ========================================================= */

.rt-about-hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 560px;

    overflow: hidden;

    direction: rtl;

    background:
        linear-gradient(
            110deg,
            #0b3155 0%,
            #123f69 42%,
            #15567b 72%,
            #176d86 100%
        );

    color: #fff;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

.rt-about-hero::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 650px;
    height: 650px;

    right: -250px;
    bottom: -430px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;

    box-shadow:
        0 0 0 55px rgba(255,255,255,.025),
        0 0 0 110px rgba(255,255,255,.018),
        0 0 0 165px rgba(255,255,255,.012);

    pointer-events: none;
}

.rt-about-hero::after {
    content: "";

    position: absolute;
    z-index: -1;

    inset: 0;

    background:
        radial-gradient(
            circle at 18% 35%,
            rgba(0,0,0,.22),
            transparent 35%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(92,210,236,.08),
            transparent 30%
        );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.rt-about-hero > .rt-container {
    position: relative;
    z-index: 2;

    width: min(1250px, calc(100% - 70px));

    margin-left: auto;
    margin-right: auto;

    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* =========================================================
   HERO CONTENT
   IMAGE LEFT / TEXT RIGHT
   ========================================================= */

.rt-about-hero .rt-about-hero-content {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;

    grid-template-areas:
        "image text";

    align-items: center;

    gap: 70px;

    width: 100%;

    min-height: 560px;

    padding: 65px 0 !important;
}


/* =========================================================
   TEXT
   ========================================================= */

.rt-about-hero .rt-about-hero-text {
    grid-area: text !important;
    grid-column: auto !important;

    width: 100%;
    max-width: 600px;

    margin-left: auto;
    margin-right: 0;

    justify-self: end;

    direction: rtl;

    text-align: right;
}


/* =========================================================
   LABEL
   ========================================================= */

.rt-about-hero .rt-about-label {
    display: inline-flex !important;

    align-items: center;

    gap: 10px;

    margin: 0 0 20px !important;
    padding: 0 !important;

    color: #fff !important;

    font-family: inherit;

    font-size: 13px !important;
    font-weight: 800;

    line-height: 1.7;
}

.rt-about-hero .rt-about-label::before {
    display: none;
}

.rt-about-hero .rt-about-label::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    flex: 0 0 30px;

    border-radius: 20px;

    background: #ed1c24;
}


/* =========================================================
   TITLE
   ========================================================= */

.rt-about-hero .rt-about-hero-text h1 {
    display: block;

    width: 100%;
    max-width: 610px;

    margin: 0 0 22px !important;
    padding: 0 !important;

    color: #fff !important;

    font-family: inherit;

    font-size: clamp(38px, 4vw, 58px) !important;

    line-height: 1.45;

    font-weight: 900;

    letter-spacing: -1.2px;

    text-align: right;
}

.rt-about-hero .rt-about-hero-text h1 strong {
    color: #63c9e9 !important;

    font-weight: 900;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.rt-about-hero .rt-about-hero-text p {
    display: block;

    width: 100%;
    max-width: 570px;

    margin: 0 0 32px !important;
    padding: 0 !important;

    color: rgba(255,255,255,.82) !important;

    font-family: inherit;

    font-size: 14px !important;

    line-height: 2.25;

    font-weight: 400;

    text-align: right;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.rt-about-hero .rt-about-hero-actions {
    display: flex !important;

    align-items: center;
    justify-content: flex-start;

    gap: 16px;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;

    flex-wrap: wrap;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.rt-about-hero .rt-about-hero-actions .rt-btn-primary {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    gap: 11px;

    width: auto;

    min-width: 180px;
    min-height: 52px;

    margin: 0 !important;
    padding: 0 26px !important;

    border: 0 !important;
    border-radius: 9px;

    background: #ed1c24 !important;

    color: #fff !important;

    font-family: inherit;

    font-size: 13px !important;
    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 12px 28px rgba(237,28,36,.25);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.rt-about-hero .rt-about-hero-actions .rt-btn-primary:hover {
    transform: translateY(-3px);

    background: #d71920 !important;

    color: #fff !important;

    box-shadow:
        0 16px 34px rgba(237,28,36,.34);
}


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.rt-about-hero .rt-about-secondary-btn {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    width: auto;

    min-width: 150px;
    min-height: 52px;

    margin: 0 !important;
    padding: 0 28px !important;

    border: 1px solid rgba(255,255,255,.65) !important;
    border-radius: 9px;

    background: transparent !important;

    color: #fff !important;

    font-family: inherit;

    font-size: 13px !important;
    font-weight: 800;

    line-height: 1;

    text-decoration: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}

.rt-about-hero .rt-about-secondary-btn:hover {
    transform: translateY(-3px);

    border-color: #fff !important;

    background: rgba(255,255,255,.10) !important;

    color: #fff !important;
}


/* =========================================================
   IMAGE WRAPPER
   ========================================================= */

.rt-about-hero .rt-about-hero-image {
    grid-area: image !important;
    grid-column: auto !important;

    position: relative;

    width: 100%;
    max-width: 640px;

    margin-left: 0;
    margin-right: auto;

    justify-self: start;

    direction: ltr;

    min-width: 0;
}


/* =========================================================
   IMAGE
   NO CROP
   NATURAL RATIO
   ========================================================= */

.rt-about-hero .rt-about-hero-image img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100% !important;
    max-width: 100% !important;

    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: initial !important;
    object-position: center center;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 20px;

    box-shadow:
        0 28px 60px rgba(0,0,0,.30);

    filter:
        saturate(.97)
        contrast(1.03);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.rt-about-hero .rt-about-hero-image:hover img {
    transform: translateY(-3px);

    box-shadow:
        0 34px 70px rgba(0,0,0,.34);
}


/* =========================================================
   REMOVE EXTRA FRAME
   ========================================================= */

.rt-about-hero .rt-about-hero-image::before {
    display: none !important;
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.rt-about-hero .rt-about-hero-image::after {
    content: "";

    position: absolute;
    z-index: 3;

    inset: 0;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            rgba(8,38,65,.02) 20%,
            rgba(8,38,65,.04) 60%,
            rgba(237,28,36,.10) 100%
        );

    pointer-events: none;
}


/* =========================================================
   BADGE
   ========================================================= */

.rt-about-hero .rt-about-hero-image-badge {
    position: absolute;
    z-index: 5;

    left: -20px;
    bottom: 24px;

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 205px;
    min-height: 67px;

    margin: 0 !important;
    padding: 9px 15px !important;

    border: 1px solid rgba(77,194,235,.45);

    border-radius: 13px;

    background: rgba(12,56,91,.94);

    box-shadow:
        0 14px 32px rgba(0,0,0,.30);

    backdrop-filter: blur(10px);

    direction: rtl;

    text-align: right;
}

.rt-about-hero .rt-about-hero-image-badge i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    border-radius: 50%;

    background: #ed1c24;

    color: #fff;

    font-size: 14px;
}

.rt-about-hero .rt-about-hero-image-badge span {
    display: block;

    color: #fff;

    font-family: inherit;

    font-size: 11px;

    font-weight: 900;

    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .rt-about-hero > .rt-container {
        width: min(100% - 45px, 1050px);

        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .rt-about-hero .rt-about-hero-content {
        gap: 45px;
    }

    .rt-about-hero .rt-about-hero-text h1 {
        font-size: 42px !important;
    }

    .rt-about-hero .rt-about-hero-image {
        max-width: 590px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .rt-about-hero .rt-about-hero-content {
        display: flex !important;

        flex-direction: column;

        align-items: stretch;

        gap: 42px;

        min-height: auto;

        padding: 55px 0 75px !important;
    }

    .rt-about-hero .rt-about-hero-text {
        order: 1;

        width: 100%;
        max-width: 680px;

        margin-left: auto;
        margin-right: auto;

        text-align: center;
    }

    .rt-about-hero .rt-about-hero-image {
        order: 2;

        width: 100%;
        max-width: 680px;

        margin-left: auto;
        margin-right: auto;
    }

    .rt-about-hero .rt-about-hero-text h1,
    .rt-about-hero .rt-about-hero-text p {
        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center;
    }

    .rt-about-hero .rt-about-hero-actions {
        justify-content: center;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .rt-about-hero {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .rt-about-hero > .rt-container {
        width: calc(100% - 30px);

        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .rt-about-hero .rt-about-hero-content {
        gap: 30px;

        padding: 42px 0 60px !important;
    }

    .rt-about-hero .rt-about-label {
        margin-bottom: 14px !important;

        font-size: 11px !important;
    }

    .rt-about-hero .rt-about-hero-text h1 {
        margin-bottom: 17px !important;

        font-size: 31px !important;

        line-height: 1.55;

        letter-spacing: -.4px;
    }

    .rt-about-hero .rt-about-hero-text p {
        margin-bottom: 25px !important;

        font-size: 11.5px !important;

        line-height: 2.1;
    }

    .rt-about-hero .rt-about-hero-actions {
        flex-direction: column;

        width: 100%;
        max-width: 340px;

        margin-left: auto !important;
        margin-right: auto !important;

        gap: 10px;
    }

    .rt-about-hero .rt-about-hero-actions a {
        width: 100% !important;
        max-width: none !important;
    }

    .rt-about-hero .rt-about-hero-image {
        width: 100%;
        max-width: 680px;
    }

    .rt-about-hero .rt-about-hero-image img {
        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;

        object-fit: initial !important;

        border-radius: 15px;
    }

    .rt-about-hero .rt-about-hero-image-badge {
        left: 10px;
        bottom: 10px;

        min-width: 175px;
        min-height: 53px;

        padding: 7px 11px !important;

        border-radius: 10px;
    }

    .rt-about-hero .rt-about-hero-image-badge i {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        font-size: 11px;
    }

    .rt-about-hero .rt-about-hero-image-badge span {
        font-size: 9px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .rt-about-hero {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .rt-about-hero .rt-about-hero-content {
        padding-top: 38px !important;
        padding-bottom: 55px !important;
    }

    .rt-about-hero .rt-about-hero-text h1 {
        font-size: 27px !important;
    }

    .rt-about-hero .rt-about-hero-text p {
        font-size: 11px !important;
    }

    .rt-about-hero .rt-about-hero-image img {
        height: auto !important;
        object-fit: initial !important;
    }

    .rt-about-hero .rt-about-hero-image-badge {
        left: 7px;
        bottom: 7px;

        min-width: 165px;
    }
}