* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: aventa;
    font-size: var(--small-font-size);
}

@font-face {
    font-family: ibm_sans;
    src: url(./fonts/IBM_Plex_Sans/IBMPlexSans-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: han_sans;
    src: url(./fonts/Black_Han_Sans/BlackHanSans-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: agelast;
    src: url(./fonts/agelast/Agelast_PersonalUse.otf);
    font-display: swap;
}

@font-face {
    font-family: nebula;
    src: url(./fonts/nebula_2/Nebula-Regular.otf);
    font-display: swap;
}

@font-face {
    font-family: aventa;
    src: url(./fonts/aventa/Aventa-LightPERSONALUSEONLY.otf);
    font-display: swap;
}

@font-face {
    font-family: alice;
    src: url(./fonts/Alice/Alice-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: gafiya;
    src: url(./fonts/Gafiya/gafiya.regular.otf);
    font-display: swap;
}

@font-face {
    font-family: gilroy;
    src: url(./fonts/Gilroy/Gilroy-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: pinyon;
    src: url(./fonts/Pinyon/PinyonScript-Regular.ttf);
    font-display: swap;
}

@font-face {
    font-family: cairo;
    src: url(./fonts/Cairo/Cairo-VariableFont_slnt\,wght.ttf);
}

html {
    scroll-behavior: smooth;
}

.particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.break {
    width: 0px;
    height: 0px;
    flex-basis: 100%;
}

body section {
    position: relative;
    z-index: 10;
    padding: calc(150px + 20px + 5%) 5% calc(120px + 5%) 5%;
}

.hidden-label {
    opacity: 0;
    pointer-events: none;
    scale: 0;
    position: absolute;
}

/* Font Sizes */

:root {

    --enormous-font-size: 10vw;

    --huge-font-size: 5vw;

    --big-font-size: 3vw;

    --medium-font-size: 2.5vw;

    --regular-font-size: 2vw;

    --intermediate-font-size: 1.3vw;

    --small-font-size: 0.8vw;

    --tiny-font-size: 0.6vw;

}

@media (min-width:1025px) and (max-width:1434px) {
    
    :root {

        --enormous-font-size: 11vw;

        --huge-font-size: 6vw;

        --big-font-size: 4vw;

        --medium-font-size: 3.5vw;

        --regular-font-size: 2.8vw;

        --intermediate-font-size: 1.7vw;

        --small-font-size: 1.3vw;

        --tiny-font-size: 1vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    
    :root {

        --enormous-font-size: 12vw;

        --huge-font-size: 7vw;

        --big-font-size: 5vw;

        --medium-font-size: 4.5vw;

        --regular-font-size: 3.7vw;

        --intermediate-font-size: 2.5vw;

        --small-font-size: 1.8vw;

        --tiny-font-size: 1.4vw;

    }
    
}

@media (min-width:500px) and (max-width:768px) {
        
    :root {

        --enormous-font-size: 15vw;

        --huge-font-size: 8vw;

        --big-font-size: 6vw;

        --medium-font-size: 5.5vw;

        --regular-font-size: 4.7vw;

        --intermediate-font-size: 3.5vw;

        --small-font-size: 2.6vw;

        --tiny-font-size: 2.2vw;

    }
    
}

@media (max-width:500px) {
    
    :root {

        --enormous-font-size: 17vw;

        --huge-font-size: 9vw;

        --big-font-size: 7vw;

        --medium-font-size: 6.5vw;

        --regular-font-size: 5.7vw;

        --intermediate-font-size: 4.5vw;

        --small-font-size: 3.6vw;

        --tiny-font-size: 2.5vw;

    }
    
}

@media (min-width:768px) and (max-width:1025px) {
    p {
        line-height: 5vw;
    }
}

@media (min-width:500px) and (max-width:768px) {
    p {
        line-height: 6vw;
    }
}

@media (max-width:500px) {
    p {
        line-height: 7vw;
    }
}

html {
    overflow-x: hidden;
}




/* ================================================ NAV =================================================== */



nav {
    width: 100%;
    height: 150px;
    background-image: linear-gradient(180deg,black,transparent);
    position: fixed;
    top: 0%;
    z-index: 100;
    padding: 0% 5%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

nav .logo {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

nav .logo a {
    height: 70%;
}

@media (max-width:1443px) {
    nav .logo a {
        height: 50%;
    }
}

nav .logo a img {
    height: 100%;
    object-fit: cover;
}

nav .login {
    width: auto;
    height: 30%;
}

@media (max-width:1025px) {
    nav .login {
        display: none !important;
    }
}

nav .login svg {
    width: auto;
    height: 100%;
    color: white;
}

nav .nav-btns-container {
    width: fit-content;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 50px;
}

@media (min-width:1100px) and (max-width:1443px) {
    nav .nav-btns-container {
        gap: 35px;
    }
}

@media (min-width:1025px) and (max-width:1100px) {
    nav .nav-btns-container {
        gap: 20px;
    }
}

@media (max-width:1025px) {
    nav .nav-btns-container {
        display: none;
    }
}

nav .nav-btns-container a {
    height: 100%;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    font-size: var(--intermediate-font-size);
}

@media (min-width:1025px) and (max-width:1443px) {
    nav .nav-btns-container a {
        font-size: var(--small-font-size);
    }
}

nav .nav-btns-container a:after {
    content: '';
    width: 0%;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all linear 0.2s;
}

nav .nav-btns-container a:hover::after {
    width: 100%;
    left: 0%;
}

nav .nav-side-btns-container {
    width: auto;
    height: auto;
    display: flex;
    gap: 20px;
}

nav .nav-side-btns-container .login {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
} 

nav .nav-side-btns-container .login svg {
    width: 40px;
    height: 40px;
    stroke: white;
    cursor: pointer;
}

nav .nav-side-btns-container .nav-drawer-btn {
    color: white;
    display: none;
}

@media (max-width:1025px) {
    nav .nav-side-btns-container .nav-drawer-btn {
        display: flex;
        align-items: center;
    }
}

nav .nav-side-btns-container .nav-drawer-btn svg {
    width: 50px;
    height: 100%;
    color: white;
    fill:  white;
}

/* ================================================ MOBILE DRAWER =================================================== */

nav .nav-drawer {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -110%;
    z-index: 120;
    padding: 0;
    overflow: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 16% 10%, rgba(139, 92, 246, 0.18), transparent 34%),
        radial-gradient(circle at 84% 78%, rgba(244, 0, 255, 0.09), transparent 34%),
        rgba(0, 2, 16, 0.94);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    transition: right ease 0.45s;
}

@media (min-width:1025px) {
    nav .nav-drawer {
        display: none;
    }
}

.nav-drawer-active {
    right: 0 !important;
}

nav .nav-drawer .nav-drawer-header {
    width: 100%;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

nav .nav-drawer .nav-drawer-header img {
    max-width: 68%;
    height: 48px;
    object-fit: contain;
}

nav .nav-drawer .nav-drawer-header svg {
    width: 46px;
    height: 46px;
    padding: 11px;
    color: white;
    fill: white;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    transition: all ease 0.35s;
}

nav .nav-drawer .nav-drawer-header svg:hover {
    background: white;
    color: #000210;
    fill: #000210;
    transform: rotate(90deg);
}

nav .nav-drawer .nav-drawer-body {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 38px 5% 20px;
}

nav .nav-drawer .nav-drawer-body ul {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

nav .nav-drawer .nav-drawer-body ul li {
    width: 100%;
    margin-bottom: 0;
}

nav .nav-drawer .nav-drawer-body ul li a {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: white;
    text-decoration: none;
    font-size: var(--regular-font-size);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all ease 0.35s;
}

nav .nav-drawer .nav-drawer-body ul li a:hover {
    background: rgba(139, 92, 246, 0.22);
    border-color: rgba(139, 92, 246, 0.45);
    transform: translateX(6px);
}

nav .nav-drawer .nav-drawer-footer {
    width: 100%;
    height: auto;
    padding: 28px 5% 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

nav .nav-drawer .nav-drawer-footer p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.7;
    font-size: var(--small-font-size);
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials a {
    width: 46px;
    height: 46px;
    padding: 12px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    transition: all ease 0.35s;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials a:hover {
    color: #000210;
    background: white;
    border-color: white;
    transform: translateY(-4px);
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-socials a svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    color: currentColor;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-actions {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-actions a {
    width: fit-content;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 50px;
    margin-top: 0;
    transition: all ease 0.35s;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-actions a:first-child {
    color: #000210;
    background: white;
    border-color: white;
}

nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-actions a:hover {
    color: white;
    background: #8B5CF6;
    border-color: #8B5CF6;
    transform: translateY(-3px);
}

@media (max-width:500px) {
    nav .nav-drawer .nav-drawer-header {
        min-height: 92px;
    }

    nav .nav-drawer .nav-drawer-header img {
        height: 40px;
    }

    nav .nav-drawer .nav-drawer-header svg {
        width: 42px;
        height: 42px;
        padding: 10px;
    }

    nav .nav-drawer .nav-drawer-body {
        padding-top: 28px;
    }

    nav .nav-drawer .nav-drawer-body ul li a {
        min-height: 60px;
        font-size: var(--intermediate-font-size);
        border-radius: 18px;
    }

    nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    nav .nav-drawer .nav-drawer-footer .nav-drawer-footer-actions a {
        width: 100%;
        justify-content: center;
    }
}




/* ================================================ LANGS SWITCHER ================================================ */




.lang-switcher {
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lang-switcher svg {
    width: 40px;
    height: 40px;
    stroke: white;
    cursor: pointer;
}

.lang-switcher .langs-list {
    width: auto;
    height: auto;
    background-color: white;
    border-radius: 16px;
    position: absolute;
    top: 100%;
    right: 0%;
    opacity: 0;
    pointer-events: none;
}

.lang-switcher.login-page .langs-list {
    top: calc(100% + 20px);
}

.lang-switcher .langs-list  a {
    width: auto;
    height: auto;
    display: block;
    padding: 20px;
    color: #000210;
}

.langs-list-active {
    opacity: 1 !important;
    pointer-events: initial !important;
}




/* ================================================ FOOTER =================================================== */

footer {
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 80;
    padding: 60px 0 0;
    background:
        radial-gradient(circle at 15% 12%, rgba(139, 92, 246, 0.16), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(244, 0, 255, 0.11), transparent 34%),
        radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.045), transparent 28%),
        linear-gradient(180deg, #000210 0%, #030414 38%, #070719 68%, #000210 100%);
}

footer .footer-fade {
    content: '';
    width: 100%;
    height: 150px;
    position: absolute;
    bottom: calc(100% - 75px);
    left: 0%;
    background-image: linear-gradient(0deg, transparent, #000210, transparent);
    z-index: 50;
}

footer .footer-inner {
    width: 100%;
    max-width: 1500px;
    padding: 30px 5%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
}

/* Upper */

footer .footer-upper {
    width: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

footer .footer-upper::before {
    content: "";
    width: 320px;
    height: 320px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.11);
    filter: blur(55px);
    pointer-events: none;
}

footer .footer-label {
    width: fit-content;
    color: #8B5CF6;
    font-size: var(--small-font-size);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

footer .footer-upper h2 {
    width: 100%;
    max-width: 980px;
    font-size: var(--big-font-size);
    color: white;
    position: relative;
    z-index: 2;
    text-align: start;
    line-height: 1.05;
}

footer .footer-upper p {
    width: 100%;
    max-width: 720px;
    font-size: var(--intermediate-font-size);
    color: rgba(255, 255, 255, 0.68);
    position: relative;
    z-index: 2;
    text-align: start;
    line-height: 1.7;
}

footer .footer-upper .footer-action-btns-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

footer .footer-upper .footer-action-btns-container a {
    width: fit-content;
    height: fit-content;
    padding: 17px 28px;
    color: white;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    transition: all ease 0.45s;
    font-size: var(--small-font-size);
    text-decoration: none;
}

footer .footer-upper .footer-action-btns-container a:first-child {
    color: #000210;
    background: white;
    border-color: white;
}

footer .footer-upper .footer-action-btns-container a:hover {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
    transform: translateY(-4px);
}

/* Downer */

footer .footer-downer {
    width: 100%;
    display: grid;
    grid-template-columns: 1.25fr 0.65fr 1fr 1.1fr;
    gap: 46px;
    align-items: flex-start;
    padding: 30px 0 20px;
    position: relative;
}

footer .footer-downer .f-d-col-1,
footer .footer-downer .f-d-col-2,
footer .footer-downer .f-d-col-3,
footer .footer-downer .f-d-col-4 {
    width: 100%;
    padding: 0;
}

footer .footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

footer .footer-downer .f-d-col-1 h3 {
    font-size: var(--medium-font-size);
    color: white;
    line-height: 1.1;
}

footer .footer-brand-col p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--small-font-size);
    line-height: 1.8;
}

footer .footer-links-col,
footer .footer-contact-col,
footer .footer-social-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

footer .footer-links-col > span,
footer .footer-contact-col > span,
footer .footer-social-col > span {
    color: #8B5CF6;
    font-size: var(--small-font-size);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

footer .footer-downer .f-d-col-2 a,
footer .footer-downer .f-d-col-3 li a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--small-font-size);
    line-height: 1.6;
    text-decoration: none;
    transition: all ease 0.35s;
}

footer .footer-downer .f-d-col-3 li {
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--small-font-size);
    list-style: none;
}

footer .footer-downer .f-d-col-2 a:hover,
footer .footer-downer .f-d-col-3 li a:hover {
    color: white;
    transform: translateX(5px);
}

footer .footer-social-col {
    align-items: flex-start;
}

footer .footer-downer .f-d-col-4 .footer-socials {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}

footer .footer-downer .f-d-col-4 .footer-socials a {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px;
    transition: all ease 0.35s;
}

footer .footer-downer .f-d-col-4 .footer-socials a:hover {
    background: white;
    border-color: white;
    color: #000210;
    transform: translateY(-4px);
}

footer .footer-downer .f-d-col-4 .footer-socials a svg {
    width: 100%;
    height: 100%;
    color: currentColor;
    fill: currentColor;
}

/* Laptop */

@media (min-width:1025px) and (max-width:1443px) {

    footer .footer-downer {
        grid-template-columns: 1.1fr 0.65fr 1fr 1fr;
        gap: 36px;
    }
}

/* Tablet */

@media (min-width:768px) and (max-width:1025px) {
    footer {
        padding-top: 100px;
    }

    footer .footer-upper {
        min-height: auto;
        padding: 60px 0;
    }

    footer .footer-downer {
        grid-template-columns: repeat(1, 1fr);
        gap: 42px;
    }
}

/* Mobile */

@media (max-width:768px) {
    footer {
        padding-top: 70px;
    }

    footer .footer-upper {
        min-height: auto;
        padding: 48px 0;
        gap: 20px;
    }

    footer .footer-upper::before {
        width: 230px;
        height: 230px;
        right: -80px;
        opacity: 0.8;
    }

    footer .footer-label {
        font-size: 11px;
        letter-spacing: 1.4px;
    }

    footer .footer-upper h2,
    footer .footer-upper p {
        text-align: start;
    }

    footer .footer-upper .footer-action-btns-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    footer .footer-upper .footer-action-btns-container a {
        width: 100%;
        text-align: center;
    }

    footer .footer-downer {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 44px 0 10px;
    }

    footer .footer-brand-col p {
        max-width: 100%;
    }

    footer .footer-social-col {
        align-items: flex-start;
    }

    footer .footer-downer .f-d-col-4 .footer-socials {
        gap: 10px;
    }

    footer .footer-downer .f-d-col-4 .footer-socials a {
        width: 44px;
        height: 44px;
    }
}

/* Small Mobile */

@media (max-width:500px) {

    footer .footer-upper {
        padding: 42px 0;
    }
}



/* ================================================ SOCIAL POP =================================================== */




.social-pop-wrapper {
    width: fit-content;
    height: 100%;
    position: absolute;
    top: 0%;
    right: 5%;
}

.socials-pop-container {
    width: fit-content;
    height: fit-content;
    border-radius: 50px;
    background-color: #00021025;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    position: sticky;
    top: calc(70% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    border: 1px solid rgba(255, 255, 255, 0.342);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    gap: 10px;
}

.socials-pop-container .social-pop {
    width: fit-content;
    height: fit-content;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
}

.socials-pop-container .social-pop svg {
    width: 20px;
    height: 20px;
    color: white;
}




/* ============================================== FORMS EMAILS MESSAGES ============================================== */




.form-email-body {
    background-color: #000210;
}

.form-email-body .form-email-sent {
    width: 100%;
    height: auto;
    background-color: white;
    padding: 5%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-email-body .form-email-sent h2 {
    font-size: var(--big-font-size);
}

.form-email-body .form-email-sent a {
    width: fit-content;
    height: auto;
    padding: 20px;
    background-color: #000210;
    color: white;
    transition: all linear 0.3s;
    border: 1px solid #000210;
    border-radius: 16px;
}

.form-email-body .form-email-sent a:hover {
    background-color: white;
    color: #000210;
}




/* ================================================ GLOBAL ARABIC CLASS ================================================ */




body.lang-ar-self {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}

body.lang-ar * {
    font-family: cairo !important;
}

body.lang-ar .ar-dir {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
}

body.lang-ar .social-pop-wrapper {
    right: unset;
    left: 5%;
}



/* HOMEPAGE */



body.lang-ar section .home-intro .home-intro-dets .home-intro-dets-ts h1,
body.lang-ar section .home-intro .home-intro-dets .home-intro-dets-ts h2 {
    direction: rtl;
}

body.lang-ar section .sapphire-trailer .sapphire-trailer-dets::after {
    left: unset;
    right: calc(100% - 75px);
}

body.lang-ar .packages-calculator-popup {
    direction: rtl;
}

body.lang-ar section .con-2 .our-services-container .service-item .service-item-btn svg {
    transform: rotateY(180deg);
}

body.lang-ar section .con-2 .our-services-container .service-item .service-item-header {
    width: 32vw;
    height: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: rotateZ(90deg);
    transform-origin: left;
    position: absolute;
    top: -7.5%;
    left: 50%;
    border: none;
    cursor: pointer;
    transition: all ease 0.5s;
    background-color: transparent;
}

@media (min-width:1025px) and (max-width:1434px) {
    body.lang-ar section .con-2 .our-services-container .service-item .service-item-header {
        width: 47vw;
        height: 11vw;
        top: -1.5%;
        left: 50%;
        padding: 0%;
    }
}



/* CONTACT US PAGE */



body.lang-ar .contact-us-page-form-sec-1::before {
    left: unset;
    right: 0%;
}

body.lang-ar .contact-us-page-form-sec-1:hover::before {
    right: 100%;
}

@media (min-width:500px) and (max-width:768px) {
    body.lang-ar .contact-us-page-form-sec-1:hover::before {
        height: 150% !important;
        right: 0% !important;
        top: 100% !important;
    }
}

@media (max-width:500px) {
    body.lang-ar .contact-us-page-form-sec-1:hover::before {
        height: 150% !important;
        right: 0% !important;
        top: 100% !important;
    }
}

body.lang-ar section form .contact-us-page-form-sec-1 input {
    direction: rtl;
}



/* SERVICE CHOOSE CONTACT PAGE */




body.lang-ar section form .service-choose-contact-form-sec-1::before {
    left: unset;
    right: 0%;
}

body.lang-ar section form .service-choose-contact-form-sec-1:hover::before {
    right: 100%;
}

@media (min-width:500px) and (max-width:768px) {
    body.lang-ar section form .service-choose-contact-form-sec-1:hover::before {
        height: 150% !important;
        right: 0% !important;
        top: 100% !important;
    }
}

@media (max-width:500px) {
    body.lang-ar section form .service-choose-contact-form-sec-1:hover::before {
        height: 150% !important;
        right: 0% !important;
        top: 100% !important;
    }
}

body.lang-ar section form .service-choose-contact-form-sec-1 input {
    direction: rtl;
}



/* MODELS GALLERY PAGE */



body.lang-ar .models-join-popup-wrapper .models-join-popup form .model-personal-details-container input {
    direction: rtl;
}

body.lang-ar section .models-gallery-container .filters {
    padding: 5% 5% 5% 0%;
}

@media (max-width: 1443px) {
    body.lang-ar section .models-gallery-container .filters {
        padding: 5%;
    }
}



/* MODELS DISPLAY PAGE */



@media (min-width:1025px) {
    
    body.lang-ar section .intro .model-intro-dets-sec .model-slogan {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.lang-ar section .intro .model-intro-dets-sec .model-slogan span::after {
        width: 100%;
        height: 1px;
        top: 100%;
        left: 0%;
    }

}

body.lang-ar section .intro .models-nav-btns .model-nav-btn svg,
body.lang-ar section .intro .models-mobile-nav-btns .model-nav-btn svg {
    transform: rotateY(180deg);
}



/* COMING SOON BRANCHES PAGE */



body.lang-ar section .intro .intro-footer div a svg {
    transform: rotateY(-0deg);
}



/* FOOTER */



@media (max-width: 768px) {
    body.lang-ar .ar-dir .footer-upper {
        padding-left: 2%;
        padding-right: 5%;
    }
}





























