@font-face {
    font-family: 'jost';
    src: url('fonts/Jost/OFL.txt') format('txt'),
        url('fonts/Jost/Jost-VariableFont_wght.ttf') format('ttf')
}
@font-face {
    font-family: 'Tenor Sans', sans-serif;
    src: url('fonts/Tenor_Sans/OFL.txt') format('txt'),
    url('fonts/Tenor_Sans/TenorSans-Regular.ttf') format('ttf')
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('fonts/Plus_Jakarta_Sans/OFL.txt') format('txt'),
        url('fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf') format('ttf')
}
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    transition: 0.5s;
}
html {
    scroll-behavior: smooth;
}
:root {
    --special-text-color: #e0e0b6;
    --main-color: #F5EFE6;
    --light-black: #0a0a0a;
}
body {
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    transition: 0.5s;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    user-select: none;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    &::-webkit-scrollbar {
        width: 2px;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        width: 2px;
        margin-right: 2px;
        background-color: transparent;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
        width: 2px;
        margin-right: 2px;
        border-radius: 40px;
    }
    &::-webkit-scrollbar-thumb:hover {
        background-color: rgb(202, 202, 202);
    }
    &::-webkit-scrollbar-thumb:active {
        background-color: rgb(227, 227, 227);
    }
}
div {
    &::-webkit-scrollbar {
        width: 4px;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        width: 4px;
        margin-right: 2px;
        background-color: transparent;
        border-radius: 20px;
    }
    &::-webkit-scrollbar-thumb {
        background-color: black;
        outline: 1px solid slategrey;
        width: 4px;
        border-radius: 40px;
    }
    &::-webkit-scrollbar-thumb:hover {
        background-color: rgb(90, 90, 90);
    }
    &::-webkit-scrollbar-thumb:active {
        background-color: rgb(120, 120, 120);
    }
}
p {
    font-family: 'Jost', sans-serif;
}
::selection {
    color: #000;
    background-color: #fff9cd;
}
a {
    text-decoration: none;
    cursor: pointer;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
}
.container {
    padding-top: 4.5%;
    padding-bottom: 4.5%;
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    @media (max-width: 1024px) {
        padding-top: 4%;
        padding-bottom: 4%;
        padding-left: 5%;
        padding-right: 5%;
    }
    @media (max-width: 767px) {
        padding-top: 10%;
        padding-bottom: 7%;
        padding-left: 5%;
        padding-right: 5%;
    }
    &.top-bottom {
        padding-top: 0;
        padding-bottom: 0;
    }
    &.top {
        padding-top: 0;
    }
    &.bottom {
        padding-bottom: 0;
    }
    .inside {
        margin: 0 auto;
        max-width: 1180px;
    }
}
/* Header */
header {
    background-color: #fff;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 0 20px -10px #0000007d;
    @media screen and (max-width: 991px) {
        height: 70px;
    }
    &.home {
        background-color: transparent;
        box-shadow: none;
        .header-container {
            nav {
                ul {
                    li {
                        a {
                            color: #fff;
                            &::after {
                                content: '';
                                position: absolute;
                                top: 50%;
                                height: 0;
                                width: 0;
                                border-radius: 20px;
                                background-color: #333333;
                                transition: 0.5s;
                                z-index: -1;
                            }
                        }
                        &.logo {
                            &.white-logo {
                                display: block;
                            }
                            &.black-logo {
                                display: none;
                            }
                        }
                    }
                    &.mobile-ul {
                        li {
                            a {
                                color: #000000;
                            }
                        }
                    }
                }
                .hamburger-icon {
                    span {
                        background-color: #fff;
                    }
                }
            }
        }
        &.scroll {
            background-color: #FFFFFF;
            box-shadow: 0 0 20px -10px #0000007d;
            .header-container {
                nav {
                    ul {
                        li {
                            a {
                                color: #000000;
                                    &::after {
                                    content: '';
                                    position: absolute;
                                    top: 50%;
                                    height: 0;
                                    width: 0;
                                    border-radius: 20px;
                                    background-color: #d7d7d7;
                                    transition: 0.5s;
                                    z-index: -1;
                                }
                            }
                            &.logo {
                                &.white-logo {
                                    display: none;
                                }
                                &.black-logo {
                                    display: block;
                                }
                            }
                            &:hover {
                                a::after {
                                    top: -50%;
                                    height: 200%;
                                    width: 140%;
                                }
                            }
                        }
                    }
                    .hamburger-icon {
                        span {
                            background-color: #000000;
                        }
                    }
                }
            }
        }
        &.toggled {
            @media (max-width: 991px) {
                background-color: #fff;
                .hamburger-icon {
                    span {
                        background-color: #000000 !important;
                    }
                }
                ul.main-ul {
                    li {
                        &.logo {
                            &.white-logo {
                                display: none;
                            }
                            &.black-logo {
                                display: block;
                            }
                        }
                    }
                }
                ul {
                    li {
                        a {
                            &::after {
                                content: '';
                                position: absolute;
                                top: 50%;
                                height: 0;
                                width: 0;
                                border-radius: 20px;
                                background-color:  #d7d7d7;
                                transition: 0.5s;
                                z-index: -1;
                            }
                        }
                    }
                }
            }
        }
    }
    .header-container {
        height: 100%;
        width: 100%;
        position: relative;
        @media screen and (max-width: 991px) {
            width: 90%;
            margin: 0 auto;
            padding: 10px 0;
        }
        nav {
            height: 100%;
            @media screen and (max-width: 991px) {
                display: flex;
            }
            .mobile-ul {
                display: none;
                flex-direction: column;
                position: fixed;
                z-index: 999;
                left: 0;
                top: 69px;
                background-color: #fff;
                align-items: flex-start;
                justify-content: flex-start;
                gap: 0;
                padding-top: 50px;
                padding-bottom: 50px;
                height: max-content;
                li {
                    height: max-content;
                    width: 90%;
                    margin: 0 auto;
                    text-align: left;
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    padding: 18px 0;
                    a {
                        font-size: 18px;
                        font-weight: 400;
                    }
                }
                @media screen and (max-width: 991px) {
                    display: none;
                    &.opened {
                        display: flex;
                    }
                }
            }
            ul {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 100%;
                height: 100%;
                gap: 25px;
                @media screen and (max-width: 991px) {
                    justify-content: flex-end;
                    &.main-ul {
                        li {
                            &.li-pages {
                                display: none;
                            }
                        }
                    }
                }
                li {
                    margin: 0 1px;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    a {
                        position: relative;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        color: var(--light-black);
                        text-transform: uppercase;
                        letter-spacing: 1px;
                        font-size: 13px;
                        font-weight: 500;
                        transition: 0.5s;
                        z-index: 1;
                        &::after {
                            content: '';
                            position: absolute;
                            top: 50%;
                            height: 0;
                            width: 0;
                            border-radius: 20px;
                            background-color: #d7d7d7;
                            transition: 0.5s;
                            z-index: -1;
                        }
                        &.main-link {
                            color: #FFF;
                            &::after {
                                background-color: var(--light-black);
                                top: -50%;
                                height: 200%;
                                width: 140%;
                            }
                        }
                    }
                    &:hover {
                        a::after {
                            top: -50%;
                            height: 200%;
                            width: 140%;
                        }
                    }
                    &.logo {
                        user-select: none;
                        margin: 0 1px;
                        width: max-content;
                        height: 100%;
                        direction: ltr;
                        text-transform: uppercase;
                        cursor: default;
                        font-size: 24px;
                        font-weight: 700;
                        height: 100%;
                        direction: ltr;
                        @media screen and (max-width: 991px) {
                            font-size: 16px;
                            margin-right: 0;
                            margin-left: -30px;
                            html:lang(ar) & {
                                font-size: 16px;
                                margin-right: -30px;
                                margin-left: 0;
                            }
                        }
                        &::selection {
                            background-color: transparent;
                            color: #000;
                        }
                        &::after {
                            content: '';
                            display: none;
                        }
                        img {
                            width: 50px;
                            height: 50px;
                        }
                        a {
                            padding:  0;
                            margin: 0;
                            margin: 0 1px;
                            width: max-content;
                            height: 100%;
                            direction: ltr;
                            text-transform: uppercase;
                            cursor: pointer !important;
                            font-size: 24px;
                            font-weight: 700;
                            height: 100%;
                            direction: ltr;
                            user-select: none;
                            &::selection {
                                background-color: transparent;
                                color: #000;
                            }
                            @media screen and (max-width: 991px) {
                                html:lang(en) & {
                                    font-size: 16px;
                                    margin-right: 0;
                                    margin-left: -30px;
                                }
                                html:lang(ar) & {
                                    font-size: 16px;
                                    margin-right: -30px;
                                    margin-left: 0;
                                }
                            }
                            &::after {
                                content: '';
                                display: none;
                            }
                            &.main-link {
                                color: #fff;
                            }
                        }
                    }
                }
            }
            .hamburger-icon {
                display: none;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 5px;
                cursor: pointer;
                position: relative;
                padding: 15px;
                @media screen and (max-width: 991px) {
                    display: flex;
                }
                span {
                    width: 22px;
                    height: 2px;
                    border-radius: 12px;
                    background-color: var(--light-black);
                    transition: 0.5s;
                    position: absolute;
                    left: 0 ;
                    html[lang="ar"] & {
                        left: auto;
                        right: 0;
                    }
                    &.top {
                        top: calc(50% - 7px);
                        &.opened {
                            transform: rotate(45deg);
                            top: 50%;
                        }
                    }
                    &.middle {
                        top: 50%;
                        width: 17px;
                        &.opened {
                            width: 0;
                        }
                    }
                    &.bottom {
                        top: calc(50% + 7px);
                        width: 10px;
                        &.opened {
                            transform: rotate(-45deg);
                            width: 22px;
                            top: 50%;
                        }
                    }
                }
            }
        }
    }
}
/* Footer */
footer {
    .container {
        .inside  {
            .parent {
                display: flex;
                align-items: center;
                margin: 0 auto;
                @media (max-width: 1024px) {
                    flex-wrap: wrap;
                    justify-content: center;
                }
                .child {
                    width: 33.33333333%;
                    min-height: 240px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    .box {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        gap: 8px;
                    }
                    &.title {
                        @media (max-width: 1024px) {
                            width: 100%;
                            min-height: auto;
                            padding: 0;
                            margin: 0;
                        }
                        .box {
                            height: 100%;
                            padding: 0;
                            margin: 0% 10% 0% 0%;
                            gap: 0;
                            display: flex;
                            flex-direction: row;
                            justify-content: center;
                            align-items: center;
                            gap: 20%;
                            overflow: hidden;
                            position: relative;
                            &::after {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 50%;
                                transform: translateX(-50%);
                                width: 1px;
                                height: 100%;
                                background-color: #000000;
                            }
                            @media (max-width: 1024px) {
                                width: 100%;
                                border-top: none;
                                align-items: center;
                                margin: 0;
                                padding: 0;
                                padding-bottom: 22px;
                            }
                            @media (max-width: 767px) {
                                flex-wrap: wrap;
                                justify-content: center;
                            }
                            img {
                                max-height: 150px;
                                width: 40%;
                            }
                            h1 {
                                font-family: 'Plus Jakarta Sans';
                                color: #000000;
                                font-size: 85px;
                                font-weight: 800;
                                line-height: 1em;
                                letter-spacing: -0.04em;
                                margin: 0;
                                padding: 0;
                                padding-bottom: 12px ;
                                @media (max-width: 1024px) {
                                    font-size: 44px;
                                    text-align: center;
                                }
                                @media (max-width: 767px) {
                                    font-size: 30px;
                                }
                            }
                        }
                    }
                    &.location {
                        @media (max-width: 1024px) {
                            width: 50%;
                        }
                        @media (max-width: 768px) {
                            width: 100%;
                            min-height: auto;
                        }
                        .box {
                            padding: 015% 10% 15% 10%;
                            @media (max-width: 768px) {
                                width: 100%;
                                padding: 5% 5% 5% 5%;;
                            }
                            h3.country-name {
                                color: #000000;
                                font-size: 28px;
                                font-weight: 400;
                                line-height: 1;
                                padding: 0;
                                margin: 0;
                                @media screen and (min-width: 992px) {
                                    font-size: 28px;
                                }
                                @media screen and (min-width: 768px) {
                                    font-size: 24px;
                                }
                            }
                            a {
                                text-decoration: none;
                                &.home-title {
                                    color: #000000B8;
                                    font-size: 15px;
                                    line-height: 1.5em;
                                    text-align: center;
                                }
                                &.phone-number {
                                    margin-top: 30px;
                                    color: #000000B8;
                                    line-height: 1;
                                    font-size: 18px;
                                    direction: ltr;
                                    @media (max-width: 768px) {
                                        font-size: 16px;
                                    }
                                }
                                &.e-mail {
                                    color: #000000B8;
                                    line-height: 1;
                                    font-size: 18px;
                                    margin-bottom: 20px;
                                    direction: ltr;
                                    @media (max-width: 768px) {
                                        font-size: 16px;
                                    }
                                }
                            }
                        }
                    }
                }
                .separator {
                    width: 2px;
                    min-height: 250px;
                    background-color: #e5e5e5;
                    display: inline-block;
                    @media (max-width: 1024px) {
                        width: 100%;
                        min-height: 2px;
                        background-color: #e5e5e5;
                    }
                }
            }
        }
    }
}
/* Info */
.info {
    border-block-start: 1px solid #e5e5e5;
    min-height: 75px;
    padding-block: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    .container {
        .inside {
            .content {
                width: 100%;
                gap: 20px;
                .child {
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 1em;
                    p {
                        text-align: center;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 1.5em;
                        color: #000000B8;
                        margin: 0;
                        padding: 0;
                        cursor: default;
                        a {
                            text-decoration: underline;
                            color: #000000B8;
                        }
                    }
                }
            }
        }
    }
}
/* Translation */
.social {
    position: fixed;
    bottom: 50px;
    z-index: 999;
    right: 10px;
    border-radius: 40px;
    transition: 0.5s all ease-in-out;
    &.opened {
        right: -45px;
        @media (max-width: 768px) {
            right: -31px;
        }
        .in-social {
            @media (max-width: 768px) {
                border: 1px solid #d9d9d9;
            }
            .toggle {
                .open-close {
                    span.top {
                        transform: rotate(-45deg);
                    }
                    span.bottom {
                        transform: rotate(45deg);
                    }
                }
            }
        }
    }
    .in-social {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 15px 10px;
        padding: 10px 5px;
        border-radius: 40px;
        background-color: #3a3a3a;
        background-color: #ececee;
        background-color: #fff;
        box-shadow: 0 0 10px #d5d5d5;
        transition: 0.5s all ease-in-out;
        @media (max-width: 768px) {
            gap: 5px;
            padding: 5px 4px;
            background-color: #ececee;
            background-color: #fff;
            box-shadow: 0 0 10px #d5d5d5;
        }
        button {
            font-size: 16px;
            font-weight: 500;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 0;
            background-color: #fff;
            background-color: transparent;
            color: #000;
            border: none;
            outline: none;
            cursor: pointer;
            line-height: 0;
            transition: 0.5s all ease-in-out;
            @media (max-width: 768px) {
                font-size: 14px;
                width: 25px;
                height: 25px;
                background-color: transparent;
            }
            &:hover {
                box-shadow: 0 0 10px #e0e0e0;
            }
            img {
                width: 25px;
                @media (max-width: 768px) {
                    width: 25px;
                }
            }
            a {
                width: 100%;
                font-size: 16px;
                font-weight: 400;
                color: #000000;
                font-family: 'Jost', sans-serif;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }
        .toggle {
            position: absolute;
            left: -20px;
            top: calc(50% - 20px);
            width: 20px;
            height: 40px;
            background-color: transparent;
            cursor: pointer;
            @media (max-width: 768px) {
                left: -15px;
            }
            .open-close {
                position: relative;
                width: 100%;
                height: 100%;
                direction: ltr;
                span {
                    position: absolute;
                    display: inline-block;
                    width: 13px;
                    height: 2px;
                    border-radius: 20px;
                    background-color: #000;
                    transition: 0.5s all ease-in-out;
                    line-height: 0;
                    box-shadow: 0 0 10px #7c7c7c;
                    @media (max-width: 768px) {
                        width: 10px;
                        height: 2px;
                    }
                    &.top {
                        top: calc(50% - 5px);
                        transform: rotate(45deg);
                        @media (max-width: 768px) {
                            top: calc(50% - 4px);
                        }
                    }
                    &.bottom {
                        bottom: calc(50% - 5px);
                        transform: rotate(-45deg);
                        @media (max-width: 768px) {
                            bottom: calc(50% - 4px);
                        }
                    }
                }
            }
        }
    }
}
/* Landing Home */
.landing.home {
    height: 70vh;
    margin-top: calc(90px + 10vh);
    margin-bottom: calc(10px + 10vh);
    @media screen and (max-width: 991px) {
        height: 70vh;
        margin-top: calc(50px + 10vh);
        margin-bottom: calc(50px + 10vh);
    }
    .container {
        height: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        .slider-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            perspective: 1000px;    
            .slider {
                position: relative;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                gap: 20px;
                transition: ALL 1s ease-in-out;
                direction: ltr;
                .slide {
                    flex: 0 0 100%;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    width: 100%;
                    height: 100%;
                    margin: 0 auto;
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: cover;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: white;
                    box-sizing: border-box;
                    border-radius: 20px;
                    transition: 1s all ease-in-out;
                    flex-shrink: 0;
                    &.slide1 {
                        background-image: url(../images/home/landing1.jpg);
                    }
                    &.slide2 {
                        background-image: url(../images/home/landing2.jpg);
                    }
                    &.slide3 {
                        background-image: url(../images/home/landing3.jpg);
                    }
                    &.slide4 {
                        background-image: url(../images/home/landing4.jpg);
                    }
                    &.slide5 {
                        background-image: url(../images/home/landing6.jpg);
                    }
                    &.active {
                        transform: scale(1);
                    }
                    .content {
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: center;
                        background: linear-gradient(to bottom, #00000090 , #00000080 , #00000070 , #00000050 , #00000040 , #00000020 , #00000000);
                        border-radius: 20px;
                        html:lang(ar) & {
                            align-items: flex-end;
                        }
                        .top {
                            display: flex;
                            align-items: center;
                            gap: 5px;
                            html:lang(ar) & {
                                flex-direction: row-reverse;
                            }
                            p {
                                padding: 4px 10px 4px 36px;
                                margin: 0% 0% 0% 9%;
                                font-size: 14px;
                                text-transform: uppercase;
                                white-space: nowrap;
                                html:lang(ar) & {
                                    padding: 4px 36px 4px 10px;
                                    margin: 0% 9% 0% 0%;
                                }
                                @media screen and (max-width: 767px) {
                                    padding: 4px 10px 4px 20px;
                                    margin: 0% 0% 0% 5%;
                                    font-size: 14px;
                                    text-transform: uppercase;
                                    white-space: nowrap;
                                    html:lang(ar) & {
                                        padding: 4px 20px 4px 10px;
                                        margin: 0% 5% 0% 0%;
                                    }
                                }
                            }
                            span {
                                width: 100px;
                                height: 1px;
                                background-color: var(--special-text-color);
                                &.special-span {
                                    color: var(--special-text-color);
                                }
                                &.normal-span {
                                    color: #F7F7F7FC;
                                }
                            }
                        }
                        .text {
                            h1 {
                                padding: 1% 16% 2% 15%;
                                color: #F7F7F7FC;
                                letter-spacing: -0.04em;
                                font-size: clamp(2.5rem, 7vw, 5rem);
                                font-weight: 700;
                                text-transform: capitalize;
                                html[lang="ar"] & {
                                    letter-spacing: 3px;
                                    direction: rtl;
                                }
                                @media screen and (max-width: 1024px) {
                                    font-size: 52px;
                                    padding: 1% 16% 2% 15%;
                                    html[lang="ar"] & {
                                        padding: 1% 15% 2% 16%;
                                    }
                                }
                                @media screen and (max-width: 767px) {
                                    font-size: 32px;
                                    padding: 1% 16% 05% 9%;
                                    html[lang="ar"] & {
                                        padding: 1% 9% 05% 16%;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .arrows {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 5px;
                color: white;
                border: none;
                padding: 10px;
                cursor: pointer;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 20px;
                z-index: 2;
                html:lang(ar) & {
                    right: unset;
                    left: 5px;
                }
                @media screen and (max-width: 767px) {
                    right: 0px;
                }
                .arrow {
                    cursor: pointer;
                    border: 0;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 20px;
                    border-radius: 12px;
                    @media screen and (max-width: 1024px) {
                        padding: 10px;
                        box-shadow: -1px 6px 75px -7px #000000;
                    }
                    img {
                        width: 30px;
                        transition: 0.5s all ease-in-out;
                    }
                    &:hover {
                        box-shadow: 0 0 10px #b8b8b8;
                    }
                    &.right:hover img {
                        transform: rotate(360deg);
                    }
                    &.left:hover img {
                        transform: rotate(-360deg);
                    }
                }
            }
        }
    }
}
/* Landing Inside Pages */
.landing.inside-pages {
    height: 70vh;
    margin-top: calc(90px + 10vh);
    margin-bottom: calc(10px + 10vh);
    @media screen and (max-width: 991px) {
        height: 70vh;
        margin-top: calc(50px + 10vh);
        margin-bottom: calc(50px + 10vh);
    }
    .container {
        height: 100%;
        width: 100%;
        .landing-slider {
            height: 100%;
            width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            .landing-slide {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 12px;
                opacity: 0;
                transform: scale(1.3);
                transition: opacity 2s ease-in-out, transform 8s ease;
                overflow: hidden;
                &.active {
                    opacity: 1;
                    transform: scale(1);
                }
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 12px;
                }
            }
        }
    }
    &.full {
        height: 100vh;
        margin-top: 0;
        margin-bottom: 0;
        @media screen and (max-width: 991px) {
            height: 100vh;
            margin-top: 0;
            margin-bottom: 0;
        }
        .container {
            padding: 0;
            margin: 0;
            .landing-slider {
                border-radius: 0;
                .landing-slide {
                    border-radius: 0;
                    bottom: 0;
                    right: 0;
                    display: flex;
                    justify-content: flex-end;
                    align-items: center;
                    img {
                        border-radius: 0;
                    }
                    .overlay {
                        position: absolute;
                        z-index: 1;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        right: 0;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0, 0, 0, 0.3);
                    }
                }
            }
        }
    }
}
/* Default Sections */
section {
    position: relative;
    overflow: hidden;
    .top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 0 auto;
        padding: 10px;
        margin-bottom: 5%;
        padding-top: 0;
        @media (min-width: 768px) {
            width: 650px;
        }
        @media (max-width: 1024px) and (min-width: 768px) {
            width: 360px;
        }
        @media (max-width: 767px) {
            width: 100%;
        }
        .title {
            .section-h1 {
                position: relative;
                font-family: 'Plus Jakarta Sans';
                color: #000000;
                font-size: 85px;
                font-weight: 800;
                line-height: 1em;
                letter-spacing: 0.00em;
                text-align: center;
                margin: 0;
                padding: 0;
                padding-bottom: 12px ;
                @media (max-width: 1024px) {
                    font-size: 44px;
                }
                @media (max-width: 767px) {
                    font-size: 30px;
                }
                html:lang(ar) & {
                    font-family: 'jost', sans-serif;
                }
            }
        }
        .light-section-name {
            margin: 1% 0 0 0;
            padding: 0px 0px 0px 0px;
            padding-block-start: 15px;
            padding-block-end: 15px;
            .out-span {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                .section-name {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    text-align: center;
                    color: #00000073;
                    font-size: 14px;
                    text-transform: uppercase;
                    letter-spacing: 0.09em;
                    word-spacing: 0.1em;
                    line-height: 1;
                    padding: 0 10px;
                }
                &::after, &::before {
                    content: '';
                    display: block;
                    border-block-end: 0;
                    flex-grow: 1;
                    color: #00000073;
                    border: 1px solid #00000021;
                }
            }
        }
        .section-tip {
            margin: 1% 0% 0% 0%;
            padding: 0px 0px 0px 0px;
            p {
                color: #000000CC;
                font-size: 17px;
                line-height: 1.4em;
                text-align: center;
            }
        }
    }
    .bottom {
        .parent {
            display: flex;
            gap: 7% 7%;
            @media (max-width: 767px) {
                flex-wrap: wrap;
            }
            .child {
                &.child-images {
                    width: calc(60% - 3.5%);
                    @media (max-width: 767px) {
                        padding-block-end: 7%;
                        width: 100%;
                    }
                    .slider {
                        position: relative;
                        width: 100%;
                        height: 550px;
                        overflow: hidden;
                        border-radius: 12px;
                        @media (max-width: 1024px) {
                            height: 400px;
                        }
                        .slide {
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            border-radius: 12px;
                            opacity: 0;
                            transform: scale(1);
                            transition: opacity 3s ease-in-out, transform 7s ease;
                            &.active {
                                opacity: 1;
                                transform: scale(1.2);
                            }
                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                border-radius: 12px;
                            }
                        }
                    }
                }
                &.child-text {
                    width: calc(40% - 3.5%);
                    @media (max-width: 767px) {
                        width: 100%;
                    }
                    .content {
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        gap: 20px;
                        width: 100%;
                        height: 100%;
                        p.bold-p {
                            color: #000000;
                            font-size: 32px;
                            font-weight: 400;
                            line-height: 1em;
                            @media (max-width: 1024px) {
                                font-size: 20px;
                                letter-spacing: -0.6px;
                            }
                        }
                        p.light-p {
                            margin: 2% 0% 0% 0%;
                            padding: 0 0 0 0;
                            color: #000000CC;
                            font-size: 17px;
                            line-height: 1.4em;
                            letter-spacing: 0px;
                            @media (max-width: 767px) {
                                margin: 0;
                            }
                            @media (max-width: 1024px) {
                                font-size: 15px;
                            }
                        }
                        a.button {
                            margin: 5% 0% 0% 0%;
                            font-size: 16px;
                            font-weight: 500;
                            color: #000000;
                            background-color: transparent;
                            border: 2px solid #111;
                            padding: 9px 33px;
                            position: relative;
                            display: inline-block;
                            vertical-align: middle;
                            width: max-content;
                            font-family: inherit;
                            line-height: 2em;
                            text-decoration: none;
                            text-transform: none;
                            border-radius: 7px;
                            outline: 0;
                            transition: .5s all ease-in-out;
                            display: inline-flex;
                            align-items: center;
                            justify-content: center;
                            gap: 5px;
                            background: linear-gradient(to left, transparent 50%, #000000 50%) right;
                            background-size: 202%;
                            &:hover {
                                background-position: left;
                                color: #fff;
                                i {
                                    color: #fff;
                                }
                            }
                            @media (max-width: 767px) {
                                padding: 6px 16px 6px 16px;
                                margin: 0;
                            }
                            i {
                                color: #000000;
                                transition: .5s all ease-in-out;
                                rotate: 45deg;
                                font-size: 20px;
                            }
                        }
                    }
                }
                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
    }
    &.services {
        .container {
            padding-top: calc(9% - (10vh + 10px));
            @media (max-width: 1024px) {
                padding-top: calc(8% - (10vh + 10px));
            }
            @media (max-width: 767px) {
                padding-top: calc(20% - (10vh + 10px));
            }
        }
    }
    &.s1 {
        &::after {
            content: "";
            position: absolute;
            z-index: -1;
            top: 0;
            right: 20%;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: linear-gradient(135deg, transparent 40%, #e0ae45 60%);
            opacity: 0.15;
            filter: blur(5px);
        }
        html[dir="rtl"] & {
            &::after {
                right: auto;
                left: 20%;
                rotate: 180deg;
            }
        }
    }
    &.s3 {
        &::after {
            content: "";
            position: absolute;
            z-index: -1;
            top: 30%;
            right: 10%;
            width: 650px;
            height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(224,174,69) 0%, transparent 70%);
            opacity: 0.2;
            @media (max-width: 768px) {
                top: auto;
                bottom: 10%;
                right: auto;
                left: 10%;
            }
        }
        html[dir="rtl"] & {
            &::after {
                right: auto;
                left: 10%;
                rotate: 180deg;
            }
        }
    }
    &.s4 {
        &::after {
            content: '';
            position: absolute;
            z-index: -1;
            top: 0;
            left: 50%;
            transform: translate(0, -50%);
            width: 500px;
            height: 500px;
            border-radius: 50rem;
            background: linear-gradient(to left, transparent 50%, #e0ae45 50%) right;
            rotate: -180deg;
            opacity: 0.2;
            @media (max-width: 768px) {
                top: auto;
                bottom: 10%;
                left: 0;
            }
        }
        html[dir="rtl"] & {
            &::after {
                left: auto;
                right: 60%;
                top: 30%;
                rotate: -360deg;
                @media (max-width: 768px) {
                    top: auto;
                    bottom: -55%;
                    right: 0;
                    left: auto;
                }
            }
        }
    }
    &.s5 {
        &::after {
            content: "";
            position: absolute;
            top: -80px;
            left: 10%;
            width: 220px;
            height: 220px;
            background: linear-gradient(45deg, rgba(224,174,69,0.2), transparent 60%);
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
            opacity: 0.5;
        }
    }
}
/* Counters */
.counter-section {
    background-color: #F5EFE6;
    .container {
        .counters {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin: 0 auto;
            direction: ltr;
            @media (max-width: 768px) {
                flex-wrap: wrap;
            }
            .counter {
                width: calc(100% / 4);
                display: flex;
                flex-direction: column;
                justify-content: center;
                text-align: center;
                gap: 20px;
                @media (max-width: 1024px) {
                    gap: 10px;
                }
                @media (max-width: 768px) {
                    width: calc(100% / 2);
                    margin-bottom: 4vw;
                }
                h2 {
                    font-size: 120px;
                    font-weight: 500;
                    color: #000000;
                    @media (max-width: 1024px) {
                        font-size: 60px;
                    }
                }
                hr {
                    width: 130px;
                    margin: 0 auto;
                    height: 3px;
                    border-color: #000;
                    background-color: #000;
                    @media (max-width: 1024px) {
                        height: 0px;
                    }
                }
                p {
                    color: #000000DB;
                    font-size: 18px;
                    font-weight: 400;
                    text-transform: uppercase;
                    letter-spacing: 0.03em;
                    margin-top: 0px;
                    @media (max-width: 1024px) {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
/* Partners */
.our-partner {
    .container {
        .pictures {
            padding-top: 20px;
            .parent {
                display: flex;
                flex-wrap: wrap;
                gap: 20px;
                .child {
                    /* width: calc(100% / 7); */
                    padding: 10px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    /* @media only screen and (max-width: 768px) {
                        width: calc(100% / 3);
                    } */
                    img {
                        /* width: 110px; */
                        max-height: 60px;
                        max-width: 100%;
                        border: 1px solid rgba(209, 209, 209, 0.1);
                    }
                }
            }
        }
        .button {
            margin-top: 2vw;
            display: flex;
            justify-content: center;
            @media only screen and (max-width: 1200px) {
                margin-top: 20px;
            }
            a {
                max-width: max-content;
                padding: 18px 30px;
                @media only screen and (max-width: 1200px) {
                    padding: 15px 20px;
                }
            }
        }
    }
}
/* Products */
section {
    &.cover {
        padding-block: 50px;
        width: 100%;
        max-height: 500px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        img {
            width: 100%;
            max-width: 100%;
            height: 100%;
            object-fit: none;
            @media (max-width: 768px) {
                object-fit: cover;
            }
        }
    }
    .filters {
        display: flex;
        justify-content: center;
        margin-bottom: 100px;
        .filter-button {
            padding: 8px 12px;
            margin: 0 10px;
            cursor: pointer;
            border: 2px solid transparent;
            background-color: transparent;
            color: #000;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease-in-out;
            opacity: 0.65;
            &:hover {
                opacity: 1;
            }
            &.active {
                border: 2px solid #000;
                background-color: #fff;
                color: #000;
                opacity: 1;
            }
        }
    }
    .childs-arrows {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        margin-top: 50px;
        button {
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 0;
            background-color: #000;
            color: #fff;
            cursor: pointer;
            font-size: 22px;
            box-shadow: 0 0 10px #999;
            border-radius: 8px;
            transition: 0.5s;
            @media screen and (min-width: 768px) {
                &:hover {
                    background-color: #fff;
                    color: #000;
                    a {
                        color: #000;
                    }
                }
            }
            a {
                color: #fff;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                span {
                    font-size: 22px;
                    margin-top: -4px;
                    display: flex;
                    justify-content: center;
                }
            }
        }
    }
    &.products {
        .container {
            padding-top: calc(9% - (10vh + 10px));
            @media (max-width: 1024px) {
                padding-top: calc(8% - (10vh + 10px));
            }
            @media (max-width: 767px) {
                padding-top: calc(20% - (10vh + 10px));
            }
            .parent {
                display: flex;
                flex-wrap: wrap;
                gap: 1em 1em;
                .child {
                    flex-basis: calc((100% / 4) - 1em);
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    border-radius: 8px;
                    @media (max-width: 1024px) {
                        flex-basis: calc((100% / 3) - 1em);
                    }
                    @media (max-width: 768px) {
                        flex-basis: calc((100% / 2) - 1em);
                    }
                    @media (max-width: 567px) {
                        flex-basis: 100%;
                    }
                    .box {
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                        gap: 20px 20px;
                        border-radius: 8px;
                        box-shadow: 0 0 5px 2px #f0f0f0;
                        border: 1px solid #e5e5e5;
                        padding: 20px;
                        @media (max-width: 768px) {
                            padding: 8px;
                        }
                        .child-media {
                            cursor: pointer;
                            width: 100%;
                            border-radius: 8px;
                            overflow: hidden;
                            aspect-ratio: 1/.9;
                            @media (max-width: 567px) {
                                aspect-ratio: 1/.8;
                            }
                            .overlay {
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                top: 0;
                                right: 0;
                                width: 100%;
                                height: 100%;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                border-radius: 8px;
                                line-height: 0;
                                &:hover {
                                    .bg {
                                        bottom: 0;
                                    }
                                    button {
                                        transform: translateY(0);
                                    }
                                }
                                .bg {
                                    position: absolute;
                                    bottom: -120%;
                                    left: 0;
                                    right: 0;
                                    width: 100%;
                                    height: 100%;
                                    background-color: rgba(0, 0, 0, 0.6);
                                    border-radius: 8px;
                                    transition: 0.5s all ease-in-out;
                                    line-height: 0;
                                }
                                button {
                                    position: absolute;
                                    border: 0;
                                    outline: 0;
                                    border-radius: 5px;
                                    padding: 14px 19px;
                                    color: #000;
                                    font-size: 18px;
                                    background-color: transparent;
                                    cursor: pointer;
                                    background: linear-gradient(to left, transparent 50%, #000000 50%) right;
                                    background-size: 202%;
                                    transform: translateY(-500%);
                                    transition: 0.5s all ease-in-out;
                                    &:hover {
                                        background-position: left;
                                        color: #fff;
                                        box-shadow: 0 0 2cap -5px #dbdbdb;
                                    }
                                }
                            }
                            .child-img {
                                width: 100%;
                                height: 100%;
                                border-radius: 8px;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                .slider {
                                    position: relative;
                                    width: 100%;
                                    height: 100%;
                                    .slide {
                                        position: absolute;
                                        top: 0;
                                        left: 0;
                                        bottom: 0;
                                        right: 0;
                                        width: 100%;
                                        height: 100%;
                                        opacity: 0;
                                        transform: scale(1.3);
                                        transition: opacity 2s ease-in-out, transform 8s ease;
                                        overflow: hidden;
                                        &.active {
                                            opacity: 1;
                                            transform: scale(1);
                                            z-index: 1;
                                        }
                                        img {
                                            width: 100%;
                                            max-width: 100%;
                                            height: 100%;
                                            border-radius: 8px;
                                            object-fit: fill;
                                            object-fit: contain;
                                            object-fit: cover;
                                        }
                                    }
                                }
                            }
                        }
                        .child-content {
                            position: relative;
                            width: 100%;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            border-radius: 8px;
                            .child-title {
                                h3 {
                                    font-size: 22px;
                                    font-weight: 500;
                                    line-height: 26px;
                                    text-align: center;
                                    @media (max-width: 1024px) {
                                        font-size: 22px;
                                        font-weight: 500;
                                    }
                                }
                            }
                            .child-description {
                                display: none;
                                p {
                                    font-size: 18px;
                                    font-weight: 400;
                                    line-height: 26px;
                                    text-align: center;
                                    @media (max-width: 1024px) {
                                        font-size: 16px;
                                        font-weight: 400;
                                        text-align: center;
                                    }
                                }
                            }
                            .button {
                                font-size: 16px;
                                font-weight: 500;
                                @media (max-width: 1024px) {
                                    font-size: 16px;
                                }
                                button {
                                    border: 0;
                                    border-radius: 5px;
                                    padding: 10px 12px;
                                    color: #000;
                                    font-size: 15px;
                                    font-weight: 500;
                                    background-color: #fff;
                                    cursor: pointer;
                                    background: linear-gradient(to left, transparent 50%, #000000 50%) right;
                                    background-size: 201%;
                                    transition: 0.5s all ease-in-out;
                                    &:hover {
                                        background-position: left;
                                        color: #fff;
                                        a {
                                            color: #fff;
                                        }
                                    }
                                    @media (max-width: 768px) {
                                        font-size: 14px;
                                        padding: 10px 12px;
                                    }
                                    a {
                                        text-decoration: none;
                                        color: #000;
                                        display: flex;
                                    }
                                }
                            }
                        }
                        .show-catalog {
                            margin: 0 auto;
                            width: 100%;
                            height: 100%;
                            background-color: var(--main-color);
                            background-color: #FFFFFF;
                            display: none;
                            position: fixed;
                            top: 0;
                            left: 0;
                            overflow: auto;
                            z-index: 99999;
                            .container {
                                .close {
                                    position: fixed;
                                    top: 5vh;
                                    display: flex;
                                    justify-content: flex-start;
                                    width: 100%;
                                    margin: 20px 0;
                                    button {
                                        background-color: #000000;
                                        padding: 15px;
                                        border-radius: 5px;
                                        line-height: 0;
                                        width: max-content;
                                        height: max-content;
                                        border: none;
                                        position: relative;
                                        cursor: pointer;
                                        transition: 0.5s;
                                        &:hover {
                                            background-color: #ffffff;
                                            box-shadow: 0 0 10px #b3b3b3;
                                            span {
                                                background-color: #000000;
                                            }
                                        }
                                        span {
                                            position: absolute;
                                            display: inline-block;
                                            line-height: 0;
                                            height: 3px;
                                            width: 15px;
                                            background-color: #ffffff;
                                            border-radius: 20px;
                                            top: 47%;
                                            left: 23.5%;
                                            transition: 0.5s;
                                            &.top-close {
                                                transform: rotate(-45deg);
                                            }
                                            &.bottom-close {
                                                transform: rotate(45deg);
                                            }
                                        }
                                    }
                                }
                                .images {
                                    width: 100%;
                                    column-count: 3;
                                    column-gap: 1em;
                                    @media (max-width: 1024px) {
                                        column-count: 2;
                                    }
                                    @media (max-width: 767px) {
                                        column-count: 1;
                                    }
                                    .img {
                                        margin-block-end: 0.5em;
                                        img {
                                            border-radius: 8px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.projects {
        .container {
            .parent {
                display: flex;
                flex-wrap: wrap;
                gap: 1em;
                @media (max-width: 1024px) {
                    gap: 1em;
                }
                @media (max-width: 767px) {
                    gap: 1em;
                }
                .child {
                    flex-basis: calc((100% / 3) - 1em);
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    border-radius: 8px;
                    @media (max-width: 1024px) {
                        flex-basis: calc((100% / 3) - 1em);
                    }
                    @media (max-width: 767px) {
                        flex-basis: calc((100% / 2) - 1em);
                    }
                    @media (max-width: 567px) {
                        flex-basis: 100%;
                    }
                    .box {
                        width: 100%;
                        margin: 0 auto;
                        display: flex;
                        flex-direction: row;
                        border-radius: 8px;
                        box-shadow: none;
                        @media (max-width: 768px) {
                            flex-direction: column;
                        }
                        .project-button {
                            position: relative;
                            cursor: pointer;
                            .bg {
                                .img {
                                    img {
                                        border-radius: 12px;
                                        aspect-ratio: 3 / 4;
                                        object-fit: cover;
                                    }
                                }
                                .overlay {
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    bottom: 6.5px;
                                    left: 0;
                                    width: 100%;
                                    background-color: rgba(0, 0, 0, 0.3);
                                    transition: 0.5s;
                                    z-index: 1;
                                    border-radius: 12px;
                                }
                            }
                            .content {
                                position: absolute;
                                z-index: 2;
                                top: 0;
                                left: 0;
                                bottom: 0;
                                right: 0;
                                display: flex;
                                flex-direction: column;
                                align-items: flex-start;
                                justify-content: flex-end;
                                color: #FFFFFF;
                                padding: 20px;
                                .project-name {
                                    display: flex;
                                    justify-content: flex-start;
                                    align-items: center;
                                    h2 {
                                        user-select: none;
                                        font-size: 40px;
                                        font-weight: 400;
                                        padding-bottom: 20px;
                                        line-height: 0.8;
                                        text-transform: uppercase;
                                        @media (max-width: 1024px) {
                                            font-size: 30px;
                                        }
                                        @media (max-width: 768px) {
                                            font-size: 26px;
                                        }
                                        html:lang(ar) & {
                                            line-height: 1.2;
                                        }
                                    }
                                }
                                .read-more {
                                    position: relative;
                                    &::after {
                                        content: '';
                                        position: absolute;
                                        bottom: 0;
                                        left: 0;
                                        width: 0;
                                        height: 2px;
                                        background-color: #FFFFFF;
                                        transition: 0.5s;
                                    }
                                    html[lang="ar"] & {
                                        &::after {
                                            left: unset;
                                            right: 0;
                                        }
                                    }
                                    &:hover {
                                        &::after {
                                            width: 100%;
                                        }
                                    }
                                }
                            }
                        }
                        .show-catalog {
                            user-select: none;
                            margin: 0 auto;
                            width: 100%;
                            height: 100%;
                            padding-block-start: 5vh;
                            background-color: var(--main-color);
                            background-color: #FFFFFF;
                            display: none;
                            position: fixed;
                            top: 0;
                            left: 0;
                            overflow: hidden;
                            overflow-y: auto;
                            z-index: 99999;
                            @media (max-width: 1024px) {
                                padding-block-start: 10vh;
                            }
                            .container {
                                position: relative;
                                display: flex;
                                flex-wrap: wrap;
                                flex-direction: row-reverse;
                                gap: 2em;
                                .close {
                                    position: fixed;
                                    top: 5vh;
                                    left: 5vw;
                                    display: flex;
                                    justify-content: flex-start;
                                    width: 100%;
                                    margin: 20px 0;
                                    cursor: pointer;
                                    html:lang(ar) & {
                                        left: auto;
                                        right: 5vw;
                                    }
                                    button {
                                        background-color: #000000;
                                        padding: 15px;
                                        border-radius: 5px;
                                        line-height: 0;
                                        width: max-content;
                                        height: max-content;
                                        border: none;
                                        position: relative;
                                        cursor: pointer;
                                        transition: 0.5s;
                                        &:hover {
                                            background-color: #ffffff;
                                            box-shadow: 0 0 10px #b3b3b3;
                                            span {
                                                background-color: #000000;
                                            }
                                        }
                                        span {
                                            position: absolute;
                                            display: inline-block;
                                            line-height: 0;
                                            height: 3px;
                                            width: 15px;
                                            background-color: #ffffff;
                                            border-radius: 20px;
                                            top: 47%;
                                            left: 23.5%;
                                            transition: 0.5s;
                                            &.top-close {
                                                transform: rotate(-45deg);
                                            }
                                            &.bottom-close {
                                                transform: rotate(45deg);
                                            }
                                        }
                                    }
                                }
                                .content {
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    flex-direction: column;
                                    gap: 5%;
                                    @media (min-width: 1024px) {
                                        position: sticky;
                                        top: 10vh;
                                        right: 0;
                                        width: calc(30% - 1em);
                                    }
                                    @media (max-width: 1024px) {
                                        padding-block-end: 1em;
                                    }
                                    .project-name {
                                        display: flex;
                                        justify-content: flex-start;
                                        align-items: center;
                                        h2 {
                                            user-select: none;
                                            font-size: 50px;
                                            font-weight: 400;
                                            padding-bottom: 20px;
                                            line-height: 0.8;
                                            text-transform: uppercase;
                                            @media (max-width: 1024px) {
                                                font-size: 30px;
                                            }
                                            @media (max-width: 768px) {
                                                font-size: 26px;
                                            }
                                            html:lang(ar) & {
                                                line-height: 1.2;
                                            }
                                        }
                                    }
                                    .ps {
                                        display: flex;
                                        flex-direction: column;
                                        gap: 0;
                                        .p {
                                            width: 100%;
                                            button {
                                                width: 100%;
                                                padding: 2% 0;
                                                display: flex;
                                                justify-content: space-between;
                                                align-items: center;
                                                background-color: transparent;
                                                border: none;
                                                border-bottom: 1px solid #ebebeb;
                                                cursor: pointer;
                                                @media (max-width: 768px) {
                                                    padding: 3% 0%;
                                                }
                                                h3 {
                                                    font-family: 'jost', sans-serif;
                                                    font-size: 18px;
                                                    font-weight: 500;
                                                    text-transform: uppercase;
                                                    color: #000000;
                                                    @media (max-width: 1024px) {
                                                        font-size: 17px;
                                                    }
                                                }
                                                .toggle-p {
                                                    position: relative;
                                                    width: 15px;
                                                    height: 15px;
                                                    span {
                                                        position: absolute;
                                                        top: 0;
                                                        left: 0;
                                                        right: 0;
                                                        bottom: 0;
                                                        width: 15px;
                                                        height: 2px;
                                                        background-color: #000;
                                                        border-radius: 12px;
                                                        transition: 0.5s;
                                                        &.animated {
                                                            transform: rotate(90deg);
                                                        }
                                                    }
                                                }
                                            }
                                            .paragraph {
                                                user-select: none;
                                                transition: all 0.5s ease-in-out;
                                                height: 0;
                                                overflow: hidden;
                                                border: none;
                                                p {
                                                    user-select: none;
                                                    font-size: 17px;
                                                    line-height: 1.6;
                                                    transition: 0.5s all ease-in-out;
                                                    padding: 4% 4% 4% 4%;
                                                    @media screen and (min-width: 992px) {
                                                        line-height: 1.7;
                                                    }
                                                }
                                                iframe {
                                                    width: 100%;
                                                    height: 100%;
                                                    @media (max-width: 768px) {
                                                        height: 200px;
                                                    }
                                                }
                                            }
                                            &.opened {
                                                .paragraph {
                                                    border-bottom: 1px solid #ebebeb;
                                                    height: 250px;
                                                    transition: 0.5s all ease-in-out;
                                                    @media (max-width: 1024px) {
                                                        height: 300px;
                                                    }
                                                    @media (max-width: 768px) {
                                                        height: 350px;
                                                    }
                                                }
                                                button {
                                                    .toggle-p {
                                                        span.animated {
                                                            transform: rotate(0);
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    .project-file-download {
                                        margin-top: 5%;
                                        a {
                                            user-select: none;
                                            margin: 5% 0% 0% 0%;
                                            font-size: 18px;
                                            font-weight: 500;
                                            color: #000000;
                                            background-color: transparent;
                                            border: 2px solid #111;
                                            padding: 9px 33px;
                                            position: relative;
                                            display: inline-block;
                                            vertical-align: middle;
                                            width: max-content;
                                            font-family: inherit;
                                            line-height: 2em;
                                            text-decoration: none;
                                            text-transform: none;
                                            border-radius: 7px;
                                            outline: 0;
                                            transition: .5s all ease-in-out;
                                            display: inline-flex;
                                            align-items: center;
                                            justify-content: center;
                                            gap: 5px;
                                            cursor: pointer;
                                            background: linear-gradient(to left, transparent 50%, #000000 50%) right;
                                            background-size: 202%;
                                            @media (max-width: 767px) {
                                                padding: 6px 16px 6px 16px;
                                                margin: 0;
                                            }
                                            &:hover {
                                                background-position: left;
                                                color: #fff;
                                                img, svg {
                                                    color: #fff;
                                                }
                                            }
                                            img, svg {
                                                width: 20px;
                                                height: 20px;
                                            }
                                        }
                                    }
                                }
                                .images {
                                    width: calc(70% - 1em);
                                    column-count: 3;
                                    column-gap: 0.8em;
                                    @media (max-width: 1024px) {
                                        width: 100%;
                                    }
                                    @media (max-width: 767px) {
                                        column-count: 1;
                                    }
                                    .img {
                                        margin-block-end: 0.8em;
                                        line-height: 0;
                                        img {
                                            border-radius: 8px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                    &:nth-child(even) {
                        .box {
                            flex-direction: row-reverse;
                            @media (max-width: 768px) {
                                flex-direction: column;
                            }
                        }
                    }
                    &.under-development {
                        opacity: 0.7;
                        pointer-events: none;
                        .box {
                            .project-button {
                                .bg {
                                    .overlay{
                                        ::after {
                                            position: absolute;
                                            content: "Under Development";
                                            top: 5px;
                                            left: 5px;
                                            padding: 5px;
                                            border-radius: 12px;
                                            display: flex;
                                            justify-content: center;
                                            align-items: center;
                                            font-size: 16px;
                                            font-weight: 500;
                                            color: #fff;
                                            background-color: rgba(213, 159, 64, 0.762);
                                            background-color: rgb(184, 139, 63);
                                        }
                                        html:lang(ar) &::after {
                                            left: unset;
                                            right: 5px;
                                            content: 'تحت الإنشاء';
                                            position: absolute;
                                            top: 5px;
                                            padding: 5px;
                                            border-radius: 12px;
                                            display: flex;
                                            justify-content: center;
                                            align-items: center;
                                            font-size: 16px;
                                            font-weight: 500;
                                            color: #fff;
                                            background-color: rgb(184, 139, 63);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.about-page {
        .container {
            .inside {
                .parent {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    gap: 20px;
                    @media (max-width: 1024px) {
                        flex-wrap: wrap;
                    }
                    &.rverse-parent {
                        flex-direction: row-reverse;
                        justify-content: space-between;
                        gap: 50px;
                        @media (max-width: 1024px) {
                            flex-wrap: wrap;
                            flex-direction: row;
                            gap: 20px;
                        }
                        .child {
                            &.img-child {
                                justify-content: flex-start;
                                @media (max-width: 1024px) {
                                    justify-content: center;
                                }
                            }
                        }
                    }
                    .child {
                        flex-basis: 50%;
                        @media (max-width: 1024px) {
                            flex-basis: 100%;
                        }
                        &.text-child {
                            display: flex;
                            flex-direction: column;
                            .title {
                                h1, h2 {
                                    font-size: 50px;
                                    font-weight: 500;
                                    text-transform: uppercase;
                                    @media (max-width: 1024px){
                                        font-size: 35px;
                                    }
                                    @media (max-width: 768px){
                                        font-size: 30px;
                                    }
                                }
                                h2 {
                                    padding-bottom: 35px;
                                }
                            }
                            .content {
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                gap: 10px;
                                .p {
                                    padding-bottom: 10px;
                                    p {
                                        font-size: 20px;
                                        font-weight: 400;
                                        line-height: 32px;
                                        @media (max-width: 1024px){
                                            font-size: 18px;
                                            line-height: 28px;
                                        }
                                    }
                                }
                                .ul {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    h3 {
                                        font-size: 20px;
                                        font-weight: 400;
                                        @media (max-width: 1024px){
                                            font-size: 18px;
                                        }
                                    }
                                    ul{
                                        &.dots-ul {
                                            list-style: inside;
                                        }
                                        li {
                                            font-size: 20px;
                                            font-weight: 400;
                                            padding: 5px 0;
                                            @media (max-width: 1024px){
                                                font-size: 18px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        &.img-child {
                            display: flex;
                            justify-content: flex-end;
                            align-items: center;
                            @media (max-width: 1024px) {
                                justify-content: center;
                            }
                            .img {
                                display: flex;
                                justify-content: flex-end;
                                align-items: center;
                                @media (max-width: 1024px) {
                                    justify-content: center;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.mission {
            .container {
                .inside {
                    .parent {
                        .child {
                            &.img-child {
                                .img {
                                    height: 350px;
                                    border-radius: 12px;
                                    overflow: hidden;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.vision {
            .container {
                .inside {
                    .parent {
                        .child {
                            &.img-child {
                                .img {
                                    width: 50%;
                                }
                            }
                        }
                    }
                }
            }
        }
        &.values {
            .container {
                .inside {
                    .box {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        @media (max-width: 1024px) {
                            flex-wrap: wrap;
                        }
                        .main-title {
                            width: 25%;
                            display: flex;
                            height: 100%;
                            justify-content: center;
                            align-items: center;
                            @media (max-width: 1024px) {
                                width: 100%;
                            }
                            h2 {
                                font-size: 40px;
                                font-weight: 600;
                                line-height: 48px;
                                text-align: center;
                                text-transform: uppercase;
                                @media (max-width: 1024px) {
                                    font-size: 30px;
                                }
                            }
                        }
                        .separator {
                            width: 5%;
                            height: 400px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            background-color: transparent;
                            @media (max-width: 1024px) {
                                width: 100%;
                                height: 70px;
                            }
                            span {
                                display: inline-block;
                                width: 3px;
                                height: 100%;
                                background-color: #555;
                                @media (max-width: 1024px) {
                                    width: 100%;
                                    height: 3px;
                                }
                            }
                        }
                        .flex {
                            width: 70%;
                            height: 100%;
                            display: flex;
                            align-items: center;
                            flex-wrap: wrap;
                            @media (max-width: 1024px) {
                                width: 100%;
                            }
                            .child {
                                width: 50%;
                                margin: 20px 0;
                                padding: 0 20px;
                                display: flex;
                                gap: 10px;
                                align-items: flex-start;
                                @media (max-width: 768px) {
                                    width: 100%;
                                    padding: 0;
                                }
                                .img {
                                    img {
                                        width: 70px;
                                    }
                                }
                                .content {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    .title {
                                        width: 100%;
                                        h4 {
                                            font-size: 26px;
                                            font-weight: 500;
                                            text-transform: uppercase;
                                            @media (max-width: 768px) {
                                                font-size: 22px;
                                            }
                                        }
                                    }
                                    .p {
                                        width: 100%;
                                        p {
                                            font-size: 18px;
                                            font-weight: 400;
                                            line-height: 26px;
                                            @media (max-width: 768px) {
                                                font-size: 16px;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        &.message {
            .container {
                .inside {
                    .parent {
                        .child {
                            &.img-child {
                                height: 400px;
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                align-items: flex-end;
                                gap: 20px;
                                @media (max-width: 1024px) {
                                    align-items: center;
                                    height: 500px;
                                }
                                .img {
                                    max-height: 100%;
                                    img {
                                        height: 100%;
                                        max-width: 100%;
                                        border-radius: 12px;
                                    }
                                }
                                .img-title {
                                    width: 52%;
                                    p {
                                        font-size: 30px;
                                        font-weight: 500;
                                        text-align: center;
                                        text-transform: uppercase;
                                        @media (max-width: 1024px) {
                                            font-size: 26px;
                                            width: 100%;
                                        }
                                        @media (max-width: 560px) {
                                            font-size: 22px;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    &.contact {
        padding-top: 8vw;
        .container {
            padding-bottom: 0 !important;
            .inside {
                .box {
                    max-width: 550px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    margin: 0 auto;
                    padding: 20px;
                    border-radius: 12px;
                    box-shadow: 0 0 10px #cdcdcd;
                    form {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 10px;
                        padding-top: 20px;
                        .input {
                            width: 100%;
                            input {
                                border: none;
                                outline: none;
                                background-color: transparent;
                                font-size: 16px;
                                font-weight: 400;
                                max-width: 100%;
                                color: #000;
                                text-align: start;
                                padding: 10px 10px;
                                border: 1px solid;
                                border-color: #8b8b8b;
                                width: 100%;
                                background-position: calc(100% - 5px) center;
                                background-repeat: no-repeat;
                                background-size: 20px;
                                html:lang(ar) & {
                                    background-position: 5px center;
                                }
                                html:lang(ar) &[type="tel"]  {
                                    background-position: calc(100% - 5px) center;
                                }
                                &:invalid:not(:placeholder-shown) {
                                    border-color: red !important;
                                    background-image: url(../images/icons/checked-red.webp);
                                }
                                &:valid {
                                    border-color: #40c057 !important;
                                    background-image: url(../images/icons/checked-green.webp);
                                }
                            }
                            &.submit-input {
                                display: flex;
                                align-items: center;
                                justify-content: flex-end;
                                margin-top: 20px;
                                label {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    width: 40px;
                                    height: 40px;
                                    cursor: pointer;
                                    transition: 0.3s;
                                    border-radius: 50%;
                                    img {
                                        width: 20px;
                                        transition: transform 0.3s ease, box-shadow 0.3s ease;
                                        html:lang(ar) & {
                                            transform: rotate(180deg);
                                        }
                                    }
                                    &:hover {
                                        transform: scale(1.1);
                                        box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
                                    }
                                }
                                input {
                                    display: none !important;
                                }
                            }
                        }
                        .name-mail {
                            width: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            @media screen and (max-width: 551px) {
                                flex-wrap: wrap;
                            }
                            .input {
                                flex-basis: 50%;
                                max-width: 50%;
                                @media screen and (max-width: 551px) {
                                    flex-basis: 100%;
                                    max-width: 100%;
                                }
                            }
                        }
                        textarea {
                            border: none;
                            outline: none;
                            background-color: transparent;
                            font-size: 16px;
                            font-weight: 400;
                            max-width: 100%;
                            color: #000;
                            text-align: start;
                            padding: 10px 10px;
                            border: 1px solid;
                            border-color: #8b8b8b;
                            width: 100%;
                            height: 100px;
                            resize: vertical;
                        }
                    }
                }
                .homes {
                    margin-top: 80px;
                    margin-bottom: 100px;
                    overflow: hidden;
                    .locs-h {
                        h2 {
                            margin-top: 20px 0;
                            text-transform: uppercase;
                            text-align: center;
                            font-size: 30px;
                            font-weight: 600;
                        }
                    }
                    .locs {
                        margin-top: 50px;
                        display: flex;
                        justify-content: space-between;
                        align-items: flex-start;
                        border-radius: 12px;
                        border: 1px solid #000;
                        overflow: hidden;
                        @media (max-width: 1024px) {
                            flex-wrap: wrap;
                            justify-content: center;
                        }
                        .loc {
                            transition: 0.5s;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: calc(100% / 4);
                            border-right: 2px solid #e5e5e5;
                            height: 300px;
                            @media (max-width: 1024px) {
                                width: 50%;
                            }
                            @media (max-width: 767px) {
                                width: 100%;
                                min-height: auto;
                                border-right: 0;
                                border-left: 0;
                                border-bottom: 1px solid #e5e5e5;
                            }
                            html:lang(ar) & {
                                border-left: 2px solid #e5e5e5;
                                border-right: 0;
                            }
                            &:last-child {
                                border: none;
                            }
                            &:hover {
                                background-color: #f0f0f0;
                            }
                            &.top-end-loc {
                                @media (max-width: 1024px) {
                                    border-right: 0;
                                    padding-right: 1px;
                                }
                            }
                            &.top-loc {
                                @media (max-width: 1024px) {
                                    border-bottom: 2px solid #e5e5e5;
                                }
                            }
                            &:last-child {
                                @media (max-width: 768px) {
                                    border: none;
                                }
                            }
                            .loc-in {
                                padding: 015% 10% 15% 10%;
                                width: 100%;
                                display: flex;
                                flex-direction: column;
                                justify-content: center;
                                align-items: center;
                                gap: 8px;
                                @media (max-width: 768px) {
                                    width: 100%;
                                    padding: 5% 5% 5% 5%;;
                                }
                                h3 {
                                    &.country-name {
                                        color: #000000;
                                        font-size: 28px;
                                        font-weight: 400;
                                        line-height: 1;
                                        padding: 0;
                                        margin: 0;
                                        @media screen and (min-width: 992px) {
                                            font-size: 28px;
                                        }
                                        @media screen and (min-width: 768px) {
                                            font-size: 24px;
                                        }
                                    }
                                }
                                a {
                                    &.phone-number {
                                        margin-top: 30px;
                                        color: #000000B8;
                                        line-height: 1;
                                        font-size: 18px;
                                        direction: ltr;
                                        @media (max-width: 768px) {
                                            font-size: 16px;
                                        }
                                    }
                                    &.e-mail {
                                        color: #000000B8;
                                        line-height: 1;
                                        font-size: 18px;
                                        margin-bottom: 20px;
                                        direction: ltr;
                                        @media (max-width: 768px) {
                                            font-size: 16px;
                                        }
                                    }
                                }
                                .home-title {
                                    color: #000000B8;
                                    font-size: 15px;
                                    line-height: 1.5em;
                                    text-align: center;
                                }
                            }
                        }
                    }
                    .separator {
                        width: 2px;
                        min-height: 300px;
                        background-color: #e5e5e5;
                        display: none;
                        &.middle-separator {
                            @media (max-width: 1024px) {
                                width: 100%;
                                background-color: #e5e5e5;
                                min-height: 2px;
                            }
                        }
                        &.top-separator,
                        &.bottom-separator {
                            @media (max-width: 1024px) {
                                width: 2px;
                                min-height: 308px;
                                background-color: #e5e5e5;
                                min-height: 2px;
                            }
                        }
                    }
                }
            }
        }
    }
    &.news  {
        padding-top: 100px;
        .container {
            .inside {
                .parent {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 20px;
                    .child {
                        flex-basis: calc((100% / 3) - 1em);
                        width: 100%;
                        display: flex;
                        justify-content: center;
                        border-radius: 8px;
                        @media (max-width: 1024px) {
                            flex-basis: calc((100% / 3) - 1em);
                        }
                        @media (max-width: 767px) {
                            flex-basis: calc((100% / 2) - 1em);
                        }
                        @media (max-width: 567px) {
                            flex-basis: 100%;
                        }
                        .box {
                            position: relative;
                            width: 100%;
                            height: 100%;
                            border-radius: 12px;
                            overflow: hidden;
                            line-height: 1.2;
                            a, button.show-more {
                                text-decoration: none;
                                color: #000;
                                width: 100%;
                                height: 100%;
                                display: inline-block;
                                border-radius: 12px;
                                overflow: hidden;
                                .bg {
                                .img {
                                    img {
                                        border-radius: 12px;
                                        aspect-ratio: 3 / 4;
                                        object-fit: cover;
                                    }
                                }
                                .overlay {
                                    position: absolute;
                                    top: 0;
                                    right: 0;
                                    bottom: 6.5px;
                                    left: 0;
                                    width: 100%;
                                    background-color: rgba(0, 0, 0, 0.3);
                                    transition: 0.5s;
                                    z-index: 1;
                                    border-radius: 12px;
                                }
                            }
                                .content {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    bottom: 0px;
                                    right: 0;
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    flex-direction: column;
                                    justify-content: flex-end;
                                    gap: 10px;
                                    z-index: 2;
                                    color: #fff;
                                    transition: 0.5s all ease-in;
                                    .blog-name {
                                        padding-inline-start: 20px;
                                        transition: 0.5s all ease-in;
                                        h2 {
                                            font-size: 22px;
                                            font-weight: 500;
                                            line-height: 1.6;
                                        }
                                    }
                                    .read-more {
                                        padding-inline-start: 20px;
                                        padding-bottom: 30px;
                                        p {
                                            font-size: 16px;
                                            font-weight: 400;
                                            line-height: 1.6;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Tags */
.tags {
    margin-top: 120px;
    .container {
        padding-bottom: 0;
        padding-top: 0;
        .inside {
            display: flex;
            flex-direction: column;
            gap: 20px;
            .tgs {
                display: flex;
                justify-content: flex-start;
                flex-wrap: wrap;
                align-items: center;
                gap: 10px 10px;
                a {
                    text-decoration: none;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding: 5px 10px;
                    border-radius: 20px;
                    color: #000;
                    background-color: transparent;
                    border: 1px solid #00000071;
                    transition: 0.5s;
                    &:hover {
                        border: 1px solid #00000013;
                        background-color: var(--main-color);
                    }
                    p {
                        font-size: 14px;
                        font-weight: 500;
                    }
                }
            }
        }
    }
}
/* Article */
.article {
    padding-top: 50px;
    .container.bottom {
        padding-top: 0;
        .inside {
            .article-details {
                margin: 20px 0;
                display: flex;
                align-items: center;
                gap: 20px;
                .date {
                    display: flex;
                    align-items: center;
                    gap: 1px;
                    .date-numbers {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        p {
                            font-size: 12px;
                            font-weight: 500;
                            color: #999;
                        }
                    }
                    .separator {
                        p {
                            font-size: 12px;
                            font-weight: 500;
                            color: #999;
                        }
                    }
                }
                .writer {
                    p {
                        text-transform: capitalize;
                        font-size: 16px;
                        font-weight: 500;
                    }
                }
            }
            .main-img {
                max-height: 90vh;
                overflow: hidden;
                width: 100%;
                img {
                    width: 100%;
                    max-width: 100%;
                }
            }
            .article-name {
                margin-top: 20px;
                padding: 20px 10px;
                border-left: 4px solid var(--special-text-color);
                border-left: 4px solid #000;
                background-color: #f5f5f5;
                background-color: var(--main-color);
                html:lang(ar) & {
                    border-left: none;
                    border-right: 4px solid var(--special-text-color);
                    border-right: 4px solid #000;
                }
                h2 {
                    font-size: 30px;
                    font-weight: 600;
                    text-transform: capitalize;
                    @media screen and (max-width: 551px) {
                        font-size: 22px;
                        font-weight: 600;
                        text-transform: capitalize;
                    }
                }
            }
            .article-description {
                padding: 20px 40px;
                @media screen and (max-width: 551px) {
                    padding: 15px 20px;
                }
                p {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.6;
                }
            }
            .part {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding: 20px 0;
                .top-part {
                    padding-bottom: 20px;
                    .part-h {
                        padding-bottom: 15px;
                        display: flex;
                        gap: 5px;
                        span, h3 {
                            font-size: 24px;
                            font-weight: 600;
                        }
                    }
                    .part-description {
                        p {
                            font-size: 16px;
                            font-weight: 400;
                        }
                    }
                }
                .list {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    padding-bottom: 20px;
                    padding-inline-start: 10px;
                    .list-h {
                        h4 {
                            font-size: 20px;
                            font-weight: 500;
                        }
                    }
                }
                .list ul {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    &.dots-list {
                        list-style: inside;
                    }
                    &.numbers-list {
                        list-style: decimal;
                        margin-inline-start: 16px;
                    }
                    li {
                        font-size: 16px;
                        font-weight: 400;
                    }
                }
                .part-img {
                    max-height: 500px;
                    overflow: hidden;
                    img {
                        width: 100%;
                        max-width: 100%;
                    }
                }
            }
            hr {
                margin-top: 50px;
            }
            .social-media {
                margin-top: 10px;
                display: flex;
                gap: 10px;
                align-items: center;
                .media {
                    a {
                        img {
                            width: 25px;
                        }
                    }
                }
            }
        }
    }
}
/* Article Footer */
.article-footer {
    padding-top: 50px;
    .container{
        &.top-bottom {
            .inside {
                display: flex;
                justify-content: space-between;
                align-items: center;
                @media screen and (max-width: 767px) {
                    flex-wrap: wrap;
                    justify-content: center;
                    gap: 20px;
                }
                .np-post {
                    max-width: 350px;
                    background-color: #fff;
                    padding: 20px;
                    border-radius: 12px;
                    box-shadow: 0 0 10px #d4d4d4;
                    border: 1px solid #dedede;
                    transition: 0.5s;
                    &:hover {
                        background-color: #f6f6f6;
                    }
                    .box {
                        display: flex;
                        align-items: center;
                        gap: 20px;
                        color: #000;
                        text-decoration: none;
                        .prev-button {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            button {
                                background-color: transparent;
                                font-size: 30px;
                                font-weight: 500;
                                border: 0;
                                outline: 0;
                                cursor: pointer;
                                transition: 0.5s all ease-in-out;
                                border-radius: 50%;
                                padding: 5px;
                                transition: 0.5s;
                            }
                        }
                        .article-details {
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                            .tip {
                                p {
                                    font-size: 16px;
                                    font-weight: 400;
                                    color: #000;
                                }
                            }
                            .article-name {
                                h3 {
                                    font-size: 20px;
                                    font-weight: 600;
                                    color: #000;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
/* Top Products */
.top-products {
    .container {
        .top {
            margin: 0;
            padding: 0;
            margin-block-end: 20px;
            width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            .title {
                h4 {
                    font-size: 30px;
                    font-weight: 600;
                    color: #000;
                }
            }
            .see-more {
                a {
                    font-size: 16px;
                    font-weight: 500;
                    color: #000;
                    text-decoration: underline;
                }
            }
        }
        .inside {
            .parent {
                overflow: auto;
                display: flex;
                flex-wrap: nowrap;
                gap: 30px;
                &::-webkit-scrollbar {
                    display: none;
                }
                .child {
                    min-width: 290px;
                    width: 290px;
                }
            }
        }
    }
    &.news {
        padding-top: 0;
    }
}

/* Loading */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%); /* Subtle white gradient */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease; /* Smooth fade-out */
    .luxury-loader {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Helvetica Neue', Arial, sans-serif; /* Luxurious font */
        color: #000000; /* Black text */
        .elegant-gear {
            position: relative;
            width: 100px;
            height: 100px;
            border: 3px solid #000000;
            border-radius: 50%;
            background: linear-gradient(45deg, #ffffff 0%, #e0e0e0 100%);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: elegant-spin 3s linear infinite;
            .gear-center {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: #000000;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            }
            .gear-tooth {
            position: absolute;
            width: 12px;
            height: 25px;
            background: #000000;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
            &:nth-child(2) { transform: rotate(60deg) translateX(-50%); }
            &:nth-child(3) { transform: rotate(120deg) translateX(-50%); }
            &:nth-child(4) { transform: rotate(180deg) translateX(-50%); }
            &:nth-child(5) { transform: rotate(240deg) translateX(-50%); }
            &:nth-child(6) { transform: rotate(300deg) translateX(-50%); }
            }
        }
        p {
            margin-top: 25px;
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 1px;
            animation: elegant-fade 2s ease-in-out infinite alternate;
        }
    }
}
@keyframes elegant-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes elegant-fade {
    from { opacity: 1; color: #000000; }
    to { opacity: 0.6; color: #333333; }
}