﻿@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600&family=Changa:wght@200;300;400;500;600;700&display=swap');
@font-face {
    font-family: "Nobel-Book";
    src: url("/asset/font/nobel/Nobel-Book.otf")
}

@font-face {
    font-family: "Nobel-Regular";
    src: url("/asset/font/nobel/Nobel-Regular.otf")
}

@font-face {
    font-family: "Nobel-Bold";
    src: url("/asset/font/nobel/Nobel-Bold.otf")
}



.header-wrapper {
    position: fixed;
    z-index: 10000;
    width: 100%;
    transition: 0.3s;
    top: 0;
    background: linear-gradient(180deg, black, transparent);
}

    .header-wrapper.active {
        background: black;
        box-shadow: 0 0 6px 3px #00000026;
        border-bottom: #0000000d 1px solid;
    }

    .header-wrapper .header {
        display: flex;
        flex-direction: row;
        align-content: center;
        align-items: center;
        padding-top: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid white;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

html.rtl {
    direction: ltr;
    
}

    html.rtl .header-wrapper .header {
        flex-direction: row-reverse;
    }
.header-wrapper.active .header {
    border-bottom: none;
}

.header-wrapper .header .header-start,
.header-wrapper .header .header-end {
    display: flex;
    width: auto;
    padding: 0;
}

html.rtl .header-wrapper .header .header-start,
html.rtl .header-wrapper .header .header-end {
    flex-direction: row-reverse;
}

.header-wrapper .header .menu-btn {
    border: 1px solid white;
    border-radius: 1000px;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;

    align-items: center;
    justify-content: center;
    transition: 0.2s;
    z-index: 1002;
}

    

    .header-wrapper .header .menu-btn:hover {
        cursor: pointer;
        background: black;
        color: white;
        border-color: black;
        transform: scale(1.2)
    }

    .header-wrapper .header .menu-btn .fas {
        transition: 0.4s;
        position: absolute;
    }

    .header-wrapper .header .menu-btn:hover .fas {
        transform: rotate(180deg)
    }

    .header-wrapper .header .menu-btn .fa-times {
        opacity: 0;
        transition: 0.2s;
        position: absolute;
    }

    .header-wrapper .header .menu-btn.open {
        border-color: white !important;
    
    }

        .header-wrapper .header .menu-btn.open .fa-bars {
            transform: rotate(360deg) !important;
            opacity: 0;
        }

        .header-wrapper .header .menu-btn.open .fa-times {
            transform: rotate(180deg) !important;
            opacity: 1;
        }
@media(max-width: 1200px){
    
}
.header-wrapper .header .logo {
    display: flex;
    width: auto;
    padding-left: 20px;
    margin: 0 auto;
}

html.rtl .logo {
    padding-left: unset;
    padding-right: 20px;
}

.header-wrapper .header .logo img {
    width: 180px;
}

.header-wrapper .header .menu-list {
    margin: 0;
    padding: 0;
}

html.rtl .header-wrapper .header .menu-list {
    direction: rtl;
}

.header-wrapper .header .menu-list li {
    display: inline-block;
    color: white;
    padding: 0 15px;
}

.menu-link {
    text-decoration: none;
    transition: 0.7s;
    padding: 6px 0;
    clear: both;
    font-size: 16px;
    text-transform: uppercase;
}
html.rtl .menu-link {
    font-family: "GE_SS_Two_Light", sans-serif !important;
}
.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.menu-link-white {
    color: white !important;
}

.menu-link:after,
.menu-link:before {
    display: block;
    content: '';
    width: 100%;
    background-color: white;
    height: 1px;
    opacity: 0;
    transition: 0.3s;
}

.menu-link:after {
    transform: translateY(15px);
}

.menu-link:before {
    transform: translateY(-15px);
}

.menu-link:hover {
    cursor: pointer;
}


    .menu-link:hover:after,
    .menu-link:hover:before {
        cursor: pointer;
        opacity: 1;
    }
    .active.menu-link:after,
    .active.menu-link:before {
        cursor: pointer;
        opacity: 1;
    }

    .menu-link:hover:after {
        transform: translateY(5px);
    }

    .menu-link:hover:before {
        transform: translateY(-5px);
    }
    .active.menu-link:after {
        transform: translateY(5px);
    }

    .active.menu-link:before {
        transform: translateY(-5px);
    }

.lx-btn-container {
    padding-bottom: 40px;
    padding-top: 40px;
}

.lx-btn {
    text-decoration: none;
    padding: 6px 20px;
    transition: 0.2s;
    white-space: nowrap;
}

    .lx-btn:hover {
        cursor: pointer;
    }

.lx-btn-light,
.lx-btn-light-brown-hover {
    background-color: white;
    color: black;
    white-space: nowrap;
}

    .lx-btn-light:hover {
        background-color: black;
        color: white;
    }

    .lx-btn-light-brown-hover:hover {
        background-color: #B6A171;
        color: white;
    }

.lx-btn-tr {
    color: white;
    white-space: nowrap;
}

    .lx-btn-tr:hover {
        color: white;
    }



.menu {
    background-color: black;
    position: fixed;
    top: -25%;
    left: -20%;
    width: 200%;
    min-height: 100%;
    transform: rotate(-8deg);
    z-index: 1000;
    margin-top: -100px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.diognal-background {
    background-color: white;
    background-image: -webkit-linear-gradient(98deg, #000000 60%, #ffffff 50%);
    min-height: 650px;
}

.fancy-img {
    margin-left: auto !important;
}

.limited-height {
    height: 500px;
}

.menu.visible {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.menu-content.visible {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.menu-content::-webkit-scrollbar {
    width: 4px;
}

.menu-content::-webkit-scrollbar-track {
    background: transparent;
}

.menu-content::-webkit-scrollbar-thumb {
    background: rgb(255, 255, 255);
    border-radius: 100px;
}

    .menu-content::-webkit-scrollbar-thumb:hover {
        background: rgb(200, 200, 200);
    }
.menu-content {
    position: fixed;
    z-index: 1001;
    color: white;
    width: 100%;
    padding: 0 15%;
    top: 15%;
    display: flex;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    margin-top: 30px;
    transition: 0.3s;
    transition-delay: 0.1s;
}

html.rtl .menu-content {
    flex-direction: row-reverse;
}

html.rtl .pull-left {
    float: right !important;
}

html.rtl .pull-right {
    float: left !important;
}

.menu-content .menu-link {
    font-size: 22px;
    margin-bottom: 5px;
    display: block;
}

.menu-content .menu-content-box {
    flex: 1.5;
}

    .menu-content .menu-content-box:last-child {
        flex: 1;
    }

.menu-content .info-box {
    font-size: 18px;
    color: white;
}
.menu-content .info-box span a {
    color:white;
    text-decoration:none;
}

html.rtl .info-box {
    direction: rtl;
}

.menu-content .info-box .info-row {
    margin-top: 10px;
    display: flex;
    /*justify-content:space-between;*/
    align-items: flex-start;
}

.info-box .info-row .fa {
    margin-right: 20px;
}

html.rtl .info-box .info-row .fa {
    margin-right: 0;
    margin-left: 20px;
}

.info-box .fab {
    font-size: 18px;
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: 0.2s;
}

html.rtl .info-box .fab {
    margin-inline: 0;
    margin-left: 20px;
}

.info-box .fab:hover {
    transform: scale(1.5);
}


.dropdown {
    background: white;
    color: black;
    position: absolute;
    margin-top: 10px;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(-10px);
    transition: 0.3s;
    z-index: -1;
    visibility: hidden;
}

    .dropdown.open {
        visibility: visible;
        z-index: 1;
        transform: translateY(0px);
        opacity: 1;
    }

    .dropdown .dropdown-item {
        border-bottom: 1px solid #eee;
        display: block;
        text-align: center;
    }

        .dropdown .dropdown-item:last-child {
            border-bottom: none;
        }

.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
}
@media (max-width: 1366px) {
    .menu-content .find-a-center, .menu-content .mobile-menu-button {
        display: initial !important;
        margin-top: 50px;
        text-align: center;
        padding: 15px 60px;
        align-self: center;
    }
    .menu {
        top: 0%;
        left: 0;
        transform: rotate(0deg);
        margin-top: 0;
    }
    .menu-content {
        flex-direction: column !important;
        height: 85%;
        top: 10%;
        overflow: auto;
    }
   
    .menu-content .info-box .info-row {
        justify-content: flex-start;
    }

    .menu-content .menu-content-box {
        flex: 0;
    }

    .menu-content .info-box {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .header-wrapper .header-start {
        width: 100% !important;
        justify-content: space-between;
    }
}
    @media (max-width: 1200px) {
        .mobile-hidden {
            display: none !important;
        }


        .header-wrapper .header {
            padding-top: 15px;
            padding-bottom: 15px;
        }

            /*.header-wrapper .header-end{
        display:none !important;
    }*/

            .header-wrapper .header .header-end {
                margin: 0 10px;
            }

        .header-wrapper .logo {
            padding: 0 !important;
        }

        
    }

    @media (max-width: 1200px) {

        .footer .footer-padding {
            flex-direction: column;
        }

        .footer .footer-end {
            padding-top: 40px;
        }

        body {
            padding-bottom: 62px;
        }

        .footer .footer-line {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .footer .footer-line .info-box {
                margin-top: 20px;
            }

        .input-with-btn {
            width: 100% !important;
        }

        .header-wrapper .header .menu-list {
            font-size: 13px;
        }

        .header-wrapper .header .logo img {
            width: 150px;
        }

        .header-wrapper .header .header-start {
            align-items: center;
        }
    }

    @media (max-width: 540px) {
        .footer .footer-end {
            flex-direction: column;
        }
    }


    .footer {
        background: black;
    }

        .footer .footer-padding {
            padding: 60px 0 80px;
        }

        .footer .footer-padding {
            display: flex;
        }

        .footer .container {
            display: flex;
            flex-direction: column;
        }

        .footer .footer-start,
        .footer .footer-end {
            flex: 1;
        }

            .footer .footer-start h3 {
                color: white;
            }

                .footer .footer-start h3::after {
                    display: none;
                }


        .footer .footer-end {
            display: flex;
        }

        .footer .footer-box {
            flex: 1;
        }

    html.rtl .footer .footer-box {
        text-align: right;
    }

        html.rtl .footer .footer-box .pull-left {
            float: right;
        }

    .footer .footer-line {
        padding-bottom: 20px;
    }

        .footer .footer-line .menu-link {
            font-size: 16px;
            text-transform: none;
        }


    .input-with-btn {
        display: flex;
        width: 75%;
    }

    html.rtl .input-with-btn {
        margin-left: auto;
    }

    .input-with-btn input {
        background: #ffffff24;
        flex: 100;
        outline: none;
        box-shadow: none;
        border: 1px solid #707070;
        color: white;
        padding: 0 20px;
        font-size: 18px;
    }

    html.rtl .input-with-btn input {
        text-align: right;
    }

    html.rtl input.form-input {
        direction: rtl;
    }


    html.rtl .section-subheading,
    html.rtl .section-heading,
    html.rtl p,
    html.rtl button,
    html.rtl .tabs-caption-btn,
    html.rtl .btn,
    html.rtl .menu-link {
        direction: rtl;
    }

    html.rtl p {
        font-family: "GE_SS_Two_Light";
    }

    .margin-right-30px {
        margin-right: 30px;
    }

    html.rtl .margin-right-30px {
        margin-right: 0;
        margin-left: 30px;
    }

    html.rtl .discover-progress-points {
        flex-direction: row-reverse;
    }

    html.rtl .discover-line {
        transform: scaleX(-1);
    }

    .grid-field-item {
        padding-bottom: 30px;
    }

    .field-wrapper {
        display: grid;
    }

    html.rtl .field-wrapper {
        direction: rtl;
    }

    @media (max-width: 960px) {
        .field-wrapper {
            display: block !important;
        }
    }

    .margin-right-32px {
        margin-right: 32px;
    }

    html.rtl .margin-right-32px {
        margin-right: 0;
        margin-left: 32px;
    }

    .vue-form .form-field {
        transition: 0.2s;
    }

    .vue-form .step-form-item.invalid .form-field {
        border: 1px solid red;
    }

    .vue-form .form-label {
        transition: 0.3s;
    }

    .vue-form .step-form-item.invalid .form-label {
        color: red;
    }

    .vue-form button {
        transition: 0.4s !important;
    }

        .vue-form button .fa-spin {
            visibility: hidden;
            opacity: 0;
            transition: 0.4s;
            font-size: 18px;
        }

        .vue-form button.loading {
            opacity: 0.7;
        }

            .vue-form button.loading .fa-spin {
                opacity: 1;
                visibility: visible;
            }

    .modal-book .form-section {
        padding: 0px 80px 20px 40px;
    }

    /* models expandable styles */
    .models-dropdown-container-mask {
        width: 100%;
        height: 100vh;
        position: absolute;
        background: transparent;
        top: 100px;
        left: 0;
        z-index: 1;
        display: none;
    }

    .models-dropdown-container {
        position: absolute;
        background: #fff;
        width: 100%;
        top: 94px;
        left: 0;
        display: none;
        z-index: 9;
    }

        .models-dropdown-container .container {
            position: relative
        }

            .models-dropdown-container .container > span {
                position: absolute;
                top: 25px;
                right: 10px;
                width: 0;
                height: 0;
                cursor: pointer
            }

    html.rtl .models-dropdown-container .container > span {
        right: unset;
        left: 10px;
    }

    .models-dropdown-container .expandable-modals-slider {
        overflow-y: auto;
        max-height: 70vh;
    }

        .models-dropdown-container .expandable-modals-slider::-webkit-scrollbar {
            width: 4px;
        }

        .models-dropdown-container .expandable-modals-slider::-webkit-scrollbar-track {
            background: transparent;
        }

        .models-dropdown-container .expandable-modals-slider::-webkit-scrollbar-thumb {
            background: rgb(0, 0, 0);
            border-radius: 100px;
        }

            .models-dropdown-container .expandable-modals-slider::-webkit-scrollbar-thumb:hover {
                background: #292929;
            }

    .models-dropdown-container .swiper-wrapper {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .expandable-tabs-caption {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        height: 100px;
        padding: 0;
    }

        .expandable-tabs-caption li {
            list-style: none;
            position: relative;
            cursor: pointer;
            text-transform: uppercase;
        }

            .expandable-tabs-caption li.active {
                font-weight: bold;
            }

            .expandable-tabs-caption li::before {
                content: '';
                width: 0;
                height: 1px;
                display: block;
                background: #222222d6;
                border-radius: 100px;
                transition: all .3s;
                position: absolute;
                bottom: -5px;
            }

    .expandable-tabs-content {
        display: none;
    }

        .expandable-tabs-content.active {
            display: block;
        }

    .expandable-tabs-caption li.active::before {
        width: 100%;
    }

    .expandable-modals-slider {
        margin-bottom: 30px;
    }

    .model-toggler > a::before,
    .model-toggler > a::after {
        visibility: hidden;
    }

    .model-toggler.active > a::after {
        opacity: 1;
        cursor: pointer;
        visibility: visible;
        transform: translateY(5px);
    }

    /* end of models expandable styles */

    /* view product page section */
    .view-product-landing-page {
        position: relative;
        min-height: 600px;
        height: 720px;
    }

    .view-product-bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .view-product-mask-top {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: #0000006e;
    }

    .view-product-mask-bottom {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        z-index: 2;
        border-bottom: 350px solid white;
        border-left: 100vw solid transparent;
    }

    html.rtl .view-product-mask-bottom {
        border-left: unset;
        border-right: 100vw solid transparent;
    }

    .view-product-content {
        position: relative;
        padding-top: 100px;
        z-index: 2;
    }

    html.rtl .view-product-content {
        direction: rtl;
    }

    .product-conents {
        padding-top: 3rem;
        color: #fff;
        position: relative;
        z-index: 3;
        height: fit-content;
    }

        .product-conents > span {
            display: block;
            font-size: 26px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .product-conents > h1 {
            margin: 0;
            font-size: 58px;
            max-width: 383px;
            text-transform: uppercase;
            letter-spacing: 5px;
            line-height: 60px;
            font-family: 'Nobel-Book', sans-serif;
        }

    html.rtl .product-conents > h1 {
        font-size: 54px;
        letter-spacing: 0;
        font-weight: 600;
    }

    .product-conents > h5 {
        font-family: 'Nobel-Book', sans-serif;
        text-transform: capitalize;
        font-size: 14px;
        color: #ffffff;
        font-weight: 100;
        margin: 0;
        margin-bottom: 1rem;
    }

        .product-conents > h5.price-tag {
            font-size: 28px;
            text-transform: unset;
        }

    html.rtl .product-conents > h5.price-tag {
        font-family: "GE_SS_Two_Medium", sans-serif !important;
    }


    .product-conents > div {
        display: grid;
        margin-bottom: 1rem;
    }

        .product-conents > div span:first-child {
            font-size: 18px;
            display: block;
            font-family: 'Nobel-Book';
            color: #ffffff;
        }

        .product-conents > div span:last-child {
            display: block;
            font-size: 22px;
            font-family: 'Nobel-Book';
            text-transform: uppercase;
            color: #ffffff;
        }

    .product-conents > a {
        width: 200px;
        height: 50px;
        color: #292929;
        font-family: 'Nobel-Regular';
        font-size: 14px;
        text-transform: uppercase;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        text-decoration: none;
        cursor: pointer;
        z-index: 9;
    }

        .product-conents > a::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 13px;
            height: 2px;
            background: #292929;
        }

    html.rtl .product-conents > h1 {
        font-family: 'GE_SS_Two_Medium', sans-serif;
    }

    html.rtl .product-conents > a {
        font-family: 'GE_SS_Two_Medium', sans-serif;
    }

    .product-modal {
        position: absolute;
        top: 50%;
        left: 40%;
        transform: translate(-50%);
        width: 760px;
        z-index: 2;
    }

    html.rtl .product-modal {
        left: 60%;
    }

    .product-modal.disable {
        display: none;
    }

    /*.product-modal .cloudimage-360,
    .product-modal .cloudimage-360 .cloudimage-360-inner-box canvas {
        max-width: 100%;
        max-height: 450px;
    }*/

    .product-modal .cloudimage-360-loader {
        display: none;
    }

    .product-modal-popup-showcase {
        width: 500px;
        height: 500px;
        position: absolute;
        top: 50%;
        right: -50%;
        transform: translateY(-50%);
        border-radius: 50%;
        overflow: hidden;
        opacity: 0;
        transition: all .5s ease-in;
    }

    html.rtl .product-modal-popup-showcase {
        left: -50%;
        right: unset;
    }

    .product-modal-popup-showcase.active {
        opacity: 1;
        z-index: 10;
    }

    .product-modal-popup-showcase img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


    .product-modal-360-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 100px;
        cursor: pointer;
        transition: all 0.5s ease-in;
    }

        .product-modal-360-btn.float-away {
            top: calc(50% - 100px);
            left: calc(50% - 200px);
        }

        .product-modal-360-btn a {
            font-size: 12px;
            font-family: 'Nobel-Bold';
            background: #fff;
            max-width: 70px;
            height: 70px;
            padding: 10px;
            display: flex;
            text-align: center;
            border-radius: 100px;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            margin: 3px;
            position: relative;
            z-index: 1;
            color: unset;
            text-decoration: none;
        }

        .product-modal-360-btn span {
            position: absolute;
            top: -2px;
            left: -2px;
            width: 80px;
            height: 80px;
            z-index: 0;
            border: 3px solid #fff;
            border-radius: 100px;
            transition: all .3s;
        }

        .product-modal-360-btn a:hover ~ span {
            border-style: dashed;
            animation: rotating 7s linear infinite;
        }

    @keyframes rotating {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .flowting-brand-type {
        position: absolute;
        top: 5rem;
        left: -5rem;
        font-size: 22rem;
        line-height: 22rem;
        color: #ffffff2e;
        z-index: 0;
    }

    html.rtl .flowting-brand-type {
        left: auto;
        right: -5rem;
    }

    .cloudimage-360-inner-box canvas {
        width: 1109px !important;
        height: auto !important;
    }

    @media screen and (max-width: 1600px) {
        .product-modal-popup-showcase {
            right: -20%;
        }

        html.rtl .product-modal-popup-showcase {
            left: -20%;
            right: unset;
        }

        .view-product-content .product-modal .product-modal-img, .cloudimage-360-inner-box canvas {
            width: 900px !important;
        }

        html body .product-model-section {
            margin-top: unset;
        }
    }

    @media screen and (max-width: 1200px) {
        .footer {
            position: relative;
            bottom: -62px;
        }

        .product-viewer-container,
        .product-modal {
            width: 600px !important;
            top: 80% !important;
            left: 45%;
        }

        .view-product-content .product-modal .product-modal-img, .cloudimage-360-inner-box canvas {
            width: 800px !important;
        }

        .product-modal-popup-showcase {
            width: 300px;
            height: 300px;
        }

        .product-modal-360-btn.float-away {
            top: calc(50% - 80px);
            left: calc(50% - 150px);
        }
    }

    @media screen and (max-width: 992px) {

        .product-conents > span {
            font-size: 20px;
            letter-spacing: 1.5px;
        }

        .product-conents > h1 {
            font-size: 48px;
            letter-spacing: 2.5px;
            line-height: 50px;
            max-width: 300px;
        }

        html.rtl .product-conents > h1 {
            font-size: 48px;
            max-width: 300px;
        }

        .flowting-brand-type {
            left: -4rem;
            font-size: 20rem;
            line-height: 20rem;
        }

        html.rtl .flowting-brand-type {
            right: -4rem;
        }

        .product-viewer-container,
        .product-modal {
            width: 500px !important;
            top: 90% !important;
        }

        .product-modal {
            left: 40%
        }

        .product-modal-popup-showcase {
            width: 250px;
            height: 250px;
        }

        .product-modal-360-btn a {
            max-width: 60px;
            height: 60px;
        }

        .product-modal-360-btn span {
            width: 70px;
            height: 70px;
        }

        .view-product-content .product-modal .product-modal-img, .cloudimage-360-inner-box canvas {
            width: 700px !important;
        }
    }

    @media screen and (max-width: 768px) {
        .footer {
            bottom: -1px;
        }

        .view-product-landing-page {
            height: unset;
        }

        .view-product-content {
            padding-top: 60px;
        }

        .product-conents > span {
            font-size: 16px;
            letter-spacing: 0.5px;
        }

        .product-conents > h1, html.rtl .product-conents > h1 {
            font-size: 38px;
            letter-spacing: 1.5px;
            line-height: 40px;
            max-width: 275px;
        }

        .product-conents > h1 {
            max-width: 235px;
        }

        .product-conents > h5.price-tag {
            font-size: 20px;
        }



        .product-conents > div span:first-child {
            font-size: 16px;
        }

        .product-conents > div span:last-child {
            font-size: 18px;
        }

        .product-conents > a {
            font-size: 12px;
            width: 170px;
            height: 40px;
        }

        .flowting-brand-type {
            top: 4rem;
            left: -2rem;
            font-size: 18rem;
            line-height: 18rem;
        }

        html.rtl .flowting-brand-type {
            right: -2rem;
        }

        .product-viewer-container,
        .product-modal {
            width: calc(100% - 150px) !important;
            position: relative !important;
            margin: auto !important;
            top: unset !important;
            left: unset !important;
            transform: unset !important;
        }

        .view-product-mask-bottom {
            border-bottom: 240px solid white;
        }

        .product-modal-showcase-image {
            width: 100vw;
        }

        .view-product-content .product-modal .product-modal-img, .cloudimage-360-inner-box canvas {
            width: 80vw !important;
        }
    }

    @media screen and (max-width: 540px) {

        .product-viewer-container,
        .product-modal {
            width: 100% !important;
        }


        .product-modal-popup-showcase {
            width: 200px;
            height: 200px;
            right: 0;
        }

        html.rtl .product-modal-popup-showcase {
            left: 0;
            right: unset;
        }

        .product-modal-360-btn.float-away {
            top: calc(50% - 40px);
            left: calc(50% - 100px);
        }

        .view-product-content .product-modal .product-modal-img, .cloudimage-360-inner-box canvas {
            width: 85vw !important;
        }
    }

    @media screen and (max-width: 420px) {
        .product-conents {
            margin-bottom: 2rem;
        }

        .view-product-landing-page {
            min-height: unset;
        }

        .view-product-mask-bottom {
            border-bottom: 200px solid white;
        }

        .product-conents > div span:first-child,
        .product-conents > span {
            font-size: 14px;
        }

        .product-conents > div span:last-child {
            font-size: 16px;
        }

        .product-conents > h1, html.rtl .product-conents > h1 {
            font-size: 32px;
            line-height: 34px;
        }

        .product-conents > h5 {
            font-size: 12px;
        }

        .flowting-brand-type {
            font-size: 11rem;
            line-height: 12rem;
        }

        .product-modal-360-btn span {
            width: 60px;
            height: 60px;
        }

        .product-modal-360-btn a {
            max-width: 50px;
            height: 50px;
        }

        .product-modal-360-btn a {
            font-size: 8px;
            padding: 8px;
        }

        .product-modal-popup-showcase {
            width: 160px;
            height: 160px;
        }

        .view-product-content .product-modal .product-modal-img {
            /* width: 300px;*/
        }
    }

    /* end of view product page section */


    /* product slider syles */
    .product-model-section {
        width: 100%;
        height: 100px;
        display: flex;
        align-items: center;
        overflow: hidden;
        margin-top: 100px;
        z-index: 8;
    }

    html.rtl .product-model-section {
        direction: rtl;
    }

    .product-slider-slick {
        width: 100%;
        z-index: 7;
    }

        .product-slider-slick a {
            margin: 0 3rem;
            display: block;
            font-size: 18px;
            text-decoration: none;
            color: #000000;
            position: relative;
            margin-bottom: 1rem;
            width: max-content;
            font-family: 'Nobel-Book';
        }

            .product-slider-slick a:first-child {
                padding-left: 0;
            }

            .product-slider-slick a::after {
                content: "";
                height: 2px;
                width: 0;
                display: block;
                background: #000;
                position: absolute;
                bottom: -10px;
                transition: all .3s;
            }

            .product-slider-slick a.active::after {
                width: 100%;
            }

    @media screen and (max-width: 768px) {
        .product-slider-slick a {
            margin: 0 1rem 1rem 1rem;
        }

        .product-model-section {
            height: 70px;
        }
    }

    @media screen and (max-width: 768px) {
        .product-slider-slick a {
            font-size: 14px;
        }

            .product-slider-slick a::after {
                bottom: -3px;
            }
    }

    /* end of product slider syles */

    /* build youre modal section */
    .build-presets {
        width: 100%;
        height: 85px;
        background: #000;
    }

        .build-presets .container {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .build-presets > div > a {
            width: 200px;
            height: 50px;
            color: #292929;
            font-family: 'Nobel-Regular';
            font-size: 14px;
            text-transform: uppercase;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            text-decoration: none;
        }

            .build-presets > div > a::after {
                content: "";
                position: absolute;
                top: 50%;
                right: 0;
                width: 13px;
                height: 2px;
                background: #292929;
            }

        .build-presets > div > span {
            display: block;
            font-size: 20px;
            color: #FFFFFF;
            text-transform: uppercase;
            font-family: 'Nobel-Book';
        }

        .build-presets > div ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            width: 400px;
            max-width: calc(100% - 400px);
            justify-content: space-evenly;
            text-transform: uppercase;
            color: #eee;
            align-items: center;
        }

            .build-presets > div ul li {
                cursor: pointer;
                font-size: 14px;
                font-family: 'Nobel-Book';
                color: #fff;
                opacity: 0.5;
                transition: all 0.3s;
                position: relative;
            }

                .build-presets > div ul li.active {
                    opacity: 1;
                }

                .build-presets > div ul li::after {
                    content: "";
                    position: absolute;
                    bottom: -10px;
                    left: 0;
                    width: 0;
                    height: 3px;
                    background: #fff;
                    border-radius: 3px;
                }

                .build-presets > div ul li.active::after {
                    width: 35%;
                }


    /* end of build youre modal section */

    /* build presets body styles */
    .build-presets-body {
        padding: 100px 0;
        background-color: #F2F2F2;
        z-index: 7;
    }

        .build-presets-body > div {
            display: flex;
            justify-content: space-between;
            padding-bottom: 70px;
        }

    html.rtl .build-presets-body > div {
        flex-direction: row-reverse;
    }

    .build-presets-body .features {
        width: 230px;
    }

    html.rtl .build-presets-body .features {
        text-align: right;
    }

    .prestes-body-header {
        font-size: 14px;
        color: #222222d9;
        text-transform: uppercase;
        letter-spacing: .5px;
        display: block;
    }

    html.rtl .prestes-body-header {
        text-align: right;
    }

    .build-presets-body .features p {
        color: #292929;
        font-size: 18px;
        max-width: 230px;
        margin: 1rem 0 1.5rem;
    }

    html.rtl .build-presets-body .features p {
        margin-left: auto;
    }

    .build-presets-body .features > a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #000;
        text-decoration: none;
    }

    html.rtl .build-presets-body .features > a {
        flex-direction: row-reverse;
    }

    .build-presets-body .features > a span {
        display: block;
        font-size: 14px;
        font-family: 'Nobel-Bold', sans-serif;
        text-transform: uppercase;
    }

    .exterior {
        width: 270px;
    }

        .exterior ul {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            margin: 0;
            padding: 0;
            gap: 1.5rem 0.5rem;
            margin-bottom: 2rem;
        }

    html.rtl .exterior ul {
        flex-direction: row-reverse;
    }

    .exterior > ul li {
        list-style: none;
        position: relative;
    }

        .exterior > ul li > div {
            cursor: pointer;
            width: 60px;
            height: 60px;
            border-radius: 100px;
            overflow: hidden;
            position: relative;
            -webkit-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
            -moz-box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
            box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
        }

        .exterior > ul li::after {
            content: "";
            position: absolute;
            bottom: -13px;
            left: 0;
            width: 0;
            height: 3px;
            background: #292929;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .exterior > ul li.active::after {
            width: 100%;
        }

        .exterior > ul li div img {
            width: 100%;
            height: 100%;
            object-position: center;
        }

    .exterior p {
        font-family: 'Nobel-Book';
        margin: 0;
        display: block;
        text-transform: capitalize;
        color: #292929;
        font-size: 16px;
    }

    .wheels,
    .interior {
        width: 200px;
    }

    .wheels,
    .interior,
    .exterior {
        z-index: 7;
    }

        .wheels > div,
        .interior > div {
            width: 100%;
            display: flex;
            margin-bottom: 1rem;
            justify-content: space-between;
        }

    html.rtl .wheels > div,
    html.rtl .interior > div {
        margin-left: auto;
        flex-direction: row-reverse;
    }

    .interior > div i {
        cursor: pointer;
        transition: color 0.3s;
    }

        .interior > div i.active {
            color: green;
        }

    .wheels > ul,
    .interior > ul {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: 0;
        padding: 0;
        gap: 1.5rem 0.5rem;
        margin-bottom: 2rem;
    }

    html.rtl .wheels > ul,
    html.rtl .interior > ul {
        flex-direction: row-reverse;
    }


    .wheels > ul li,
    .interior > ul li {
        list-style: none;
        position: relative;
    }

        .wheels > ul li > div::after,
        .interior > ul li > div::after {
            content: "";
            position: absolute;
            bottom: -13px;
            left: 0;
            width: 0;
            height: 3px;
            background: #292929;
            border-radius: 3px;
            transition: all 0.3s;
        }

        .wheels > ul li > div.active::after,
        .interior > ul li > div.active::after {
            width: 100%;
        }

        .wheels > ul li div,
        .interior > ul li div {
            cursor: pointer;
            width: 60px;
            height: 60px;
            position: relative;
        }

            .wheels > ul li div img,
            .interior > ul li div img {
                width: 100%;
                height: 100%;
                object-position: center;
                object-fit: cover;
            }

    .wheels p,
    .interior p {
        font-family: 'Nobel-Book';
        margin: 0;
        display: block;
        text-transform: capitalize;
        color: #292929;
        font-size: 16px;
        max-width: 200px;
    }

    html.rtl .wheels p,
    html.rtl .interior p {
        margin-left: auto;
    }

    .wheels-mask,
    .interior-mask {
        position: absolute !important;
        z-index: -1;
        top: 0;
    }

    .interior > ul li > div.active ~ .interior-mask,
    .wheels > ul li > div.active ~ .wheels-mask {
        z-index: 1;
    }

    @media screen and (max-width: 1200px) {
        .build-presets-body > div {
            flex-wrap: wrap;
            gap: 1.5rem;
        }

            .build-presets-body > div > div {
                width: calc(50% - 12px) !important;
            }

        .exterior ul {
            justify-content: unset;
        }

        .interior > div {
            max-width: 100px;
        }

        .models-dropdown-container {
            z-index: 10001;
        }
    }

    @media screen and (max-width: 540px) {
        .build-presets-body {
            padding-top: 50px;
        }

        .prestes-body-header {
            font-size: 14px;
            letter-spacing: 0.25px;
        }

        .wheels p,
        .interior p,
        .exterior p,
        .build-presets-body .features > a,
        .build-presets-body .features p {
            font-size: 16px;
        }


        .build-presets-body > div {
            gap: 2.5rem;
        }

        .exterior ul,
        .interior ul,
        .wheels ul {
            margin-bottom: 1.5rem;
            flex-direction: row;
        }

        .build-presets-body > div > div {
            width: 100% !important;
        }
    }

    /* end of build presets body styles */

    /* design section */
    .model-design-section {
        padding-top: 6rem;
        padding-bottom: 100px;
        min-height: 550px;
        background-color: #1B1B1B;
    }

        .model-design-section .container {
            position: relative;
        }

    .model-design-floating-img {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%) rotate(5deg);
    }

    html.rtl .model-design-floating-img {
        right: unset;
        left: 0;
    }

    .model-design-floating-img .mask {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #29292966;
    }

    .model-design-floating-img img {
        width: 460px;
        display: none;
    }

        .model-design-floating-img img.active {
            display: inline;
        }

    .model-design-content {
        position: relative;
    }

    html.rtl .model-design-content {
        text-align: right;
    }

    .model-design-content > span {
        font-size: 44px;
        font-family: 'Nobel-Regular';
        text-transform: uppercase;
        color: #FFFFFF;
        position: relative;
    }

    html.rtl .model-design-content > span {
        font-family: "GE_SS_Two_Bold", sans-serif;
    }

    .model-design-content > span::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 0;
        background: #D8D8D8;
        width: 50%;
        height: 1px;
    }

    html.rtl .model-design-content > span::before {
        left: unset;
        right: 0;
    }

    .model-design-content > div {
        width: calc(100% - 65px);
        margin-left: auto;
        margin-top: 80px;
        display: grid;
        gap: 2rem;
    }


    html.rtl .model-design-content > div {
        margin-left: unset;
        margin-right: auto;
    }

    .design-extendable-detail-container {
        height: 26px;
        overflow: hidden;
        transition: all 0.5s;
    }

    .design-extendable-detail-container {
        height: 40px;
    }

        .design-extendable-detail-container.active {
            height: 200px;
        }

        .design-extendable-detail-container p {
            color: white;
            line-height: 1.5;
        }

    .design-extendable-detail-title {
        pointer-events: none;
    }

    html.rtl .design-extendable-detail-title {
        flex-direction: row-reverse;
    }

    .design-extendable-detail-title > div {
        width: 25px;
        height: 25px;
        border: thin solid#909090;
        border-radius: 100px;
        position: relative;
        transition: all 0.3s;
    }

    .design-extendable-detail-title {
        display: flex;
        align-content: center;
        justify-self: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s;
    }

        .design-extendable-detail-title > div > span {
            display: block;
            width: 12px;
            height: 2px;
            background: #909090;
            margin: unset;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s;
            border-radius: 100px;
        }

            .design-extendable-detail-title > div > span:nth-of-type(2) {
                transform: translate(-50%, -50%) rotate(90deg);
            }

        .design-extendable-detail-title > span {
            font-size: 28px;
            color: #909090;
            font-family: 'Nobel-Bold';
            line-height: 26px;
            transition: all 0.3s;
        }

    html.rtl .design-extendable-detail-title > span {
        font-family: 'GE_SS_Two_Medium';
    }

    .design-extendable-detail-description {
        font-size: 18px;
        color: #909090;
        margin-left: 100px;
        font-family: 'Nobel-Book';
        max-width: 600px;
        line-height: 22px;
        transition: all 0.3s;
        overflow: auto;
        height: 100%;
        padding-bottom: 50px;
        margin-top: 20px;
    }

    html.rtl .design-extendable-detail-description {
        margin-left: auto;
        margin-right: 100px;
        direction: rtl;
        font-family: 'GE_SS_Two_Light';
    }

    /* width */
    .design-extendable-detail-description:last-child::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    .design-extendable-detail-description:last-child::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .design-extendable-detail-description:last-child::-webkit-scrollbar-thumb {
        background: rgb(255, 255, 255);
        border-radius: 100px;
    }

        /* Handle on hover */
        .design-extendable-detail-description:last-child::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    .design-extendable-detail-container.active .design-extendable-detail-title > div,
    .design-extendable-detail-container.active .design-extendable-detail-title > span,
    .design-extendable-detail-container.active .design-extendable-detail-description {
        color: #fff;
    }


        .design-extendable-detail-container.active .design-extendable-detail-title > div > span {
            background-color: #fff;
        }

            .design-extendable-detail-container.active .design-extendable-detail-title > div > span:nth-of-type(2) {
                transform: translate(-50%, -50%) rotate(0deg);
            }

    .tab {
        display: none;
    }

    .tab-active {
        display: block;
        -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    html.rtl .tab-active {
        -webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    }

    @-webkit-keyframes slide-in-right {
        0% {
            -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slide-in-right {
        0% {
            -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }
    }

    @-webkit-keyframes slide-in-left {
        0% {
            -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slide-in-left {
        0% {
            -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
            opacity: 0;
        }

        100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
        }
    }



    @media screen and (max-width: 992px) {
        .model-design-content > span {
            font-size: 36px;
        }

        .model-design-floating-img img {
            width: 350px;
        }

        .model-design-content > div {
            width: 100%;
            margin-top: 40px;
        }

        .design-extendable-detail-title > span {
            font-size: 22px;
        }
    }

    @media screen and (max-width: 768px) {
        .model-design-content > span {
            font-size: 28px;
        }

            .model-design-content > span::before {
                top: -8px;
            }

        html.rtl .design-extendable-detail-description {
            margin-right: 60px;
        }

        .performance-first-content {
            padding-right: 35px;
        }

        html.rtl .performance-first-content {
            margin-right: 35px;
            padding-left: 35px;
        }
    }

    @media screen and (max-width: 540px) {
        .model-design-content > span {
            font-size: 24px;
        }

        .model-design-floating-img {
            display: none;
        }

        .design-extendable-detail-title > span {
            font-size: 20px;
        }

        .design-extendable-detail-description {
            margin-left: 22px;
            font-size: 14px;
            padding-bottom: 38px;
            margin-top: 8px;
        }

        html.rtl .design-extendable-detail-description {
            margin-right: 22px;
        }

        .design-extendable-detail-title > div {
            width: unset;
            border: none;
            min-width: 12px;
        }
    }

    /* end of design section */

    /* more design section */
    .more-design-section {
        padding-top: 2rem;
        background-color: #292929;
    }

    .more-design-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding-bottom: 2rem !important;
    }

    html.rtl .more-design-header {
        flex-direction: row-reverse;
    }

    .more-design-header > span {
        font-size: 24px;
        font-family: 'Nobel-Regular';
        text-transform: uppercase;
        color: #fff;
        font-weight: bold;
    }
    html.rtl .more-design-header > span, html.rtl .more-desgin-content .card-container .content span {
        font-family: 'GE_SS_Two_Medium';
    }
    
    .more-design-header > a img {
        width: 30px;
        position: relative;
        top: 3px;
        transform: rotate(0);
    }

    .more-desgin-content {
        width: calc(100% - 7.5%);
        margin-left: auto;
        margin-bottom: 100px;
        transition: all .5s ease-in;
    }

    html.rtl .more-desgin-content {
        margin-left: unset;
        margin-right: auto;
    }

    .more-desgin-content .card-container {
        width: 350px;
    }

        .more-desgin-content .card-container img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            object-position: center;
        }

        .more-desgin-content .card-container .content {
            margin-top: 1.5rem;
            margin-left: auto;
            width: calc(100% - 2rem);
        }

            .more-desgin-content .card-container .content span {
                color: #fff;
                text-transform: uppercase;
                font-size: 18px;
                font-family: 'Nobel-Book';
            }

            .more-desgin-content .card-container .content p {
                color: #fff;
                font-size: 18px;
                font-family: 'Nobel-Book';
                margin: 0;
                margin-top: 0.5rem;
            }
            html.rtl .more-desgin-content .card-container .content p {
                font-family : "GE_SS_Two_Light";
                font-size: 16px;
            }


    .more-desgin-content .slick-slide {
        margin: 0 8px;
    }

    .more-desgin-content .slick-list {
        margin: 0 -8px;
    }

    .more-slider-actions {
        display: flex;
        gap: 1rem;
    }

    .horizental-tab-actions {
        display: none;
        margin-top: 30px
    }

    html.rtl .more-slider-actions {
        flex-direction: row-reverse;
    }


    .more-slider-actions > div:first-child {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .horizental-tab-actions > div:first-child {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 0.5rem;
    }

    html.rtl .more-slider-actions > div:first-child {
        transform: rotate(180deg);
    }

    html.rtl .horizental-tab-actions > div:first-child button {
        transform: rotate(180deg);
    }

    .more-slider-actions > div:first-child button {
        width: 30px;
        height: 30px;
        background: transparent;
        margin: 0;
        padding: 0;
        border: none;
        transform: rotate(-90deg);
        transition: all 0.3s;
        cursor: pointer;
    }

    .horizental-tab-actions > div:first-child button {
        width: 30px;
        height: 30px;
        margin: 0;
        padding: 0;
        background: #00000036;
        border: none;
        border-radius: 50%;
        transition: all 0.3s;
        cursor: pointer;
    }


        .more-slider-actions > div:first-child button.slick-disabled, .horizental-tab-actions > div:first-child button.slick-disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

    .more-slider-actions > div:first-child button:last-child {
        transform: rotate(90deg);
    }

    .more-slider-actions > div:first-child button img {
        width: 30px;
    }

    .more-slider-dots > .slick-dots {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: center;
        height: 100%;
        max-width: 300px;
    }

    html.rtl .more-slider-dots > .slick-dots {
        flex-direction: row-reverse;
    }

    .more-slider-dots > .slick-dots li {
        width: 70px;
        height: 4px;
        background: #4d4d4d66;
    }

        .more-slider-dots > .slick-dots li:first-child {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        .more-slider-dots > .slick-dots li:last-child {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .more-slider-dots > .slick-dots li button {
            margin: 0;
            width: 100%;
            height: 4px;
            overflow: hidden;
            border-radius: 100px;
            position: relative;
            top: -11px;
            background-color: transparent;
            transition: all .3s;
        }

        .more-slider-dots > .slick-dots li.slick-active button {
            background-color: #fff;
        }

    .more-design-section-bottom {
        width: 0;
        height: 0;
        z-index: 2;
        border-bottom: 130px solid white;
        border-left: 100vw solid transparent;
    }

    html.rtl .more-design-section-bottom {
        border-left: none;
        border-right: 100vw solid transparent;
    }

    @media screen and (max-width: 992px) {
        .more-design-header {
            margin-bottom: 40px;
        }
    }

    @media screen and (max-width: 768px) {
        .more-desgin-content .card-container {
            width: 275px;
        }

            .more-desgin-content .card-container img {
                height: 275px;
            }

            .more-desgin-content .card-container .content {
                width: calc(100% - 1rem);
            }

                .more-desgin-content .card-container .content p,
                .more-desgin-content .card-container .content span {
                    font-size: 16px;
                }
    }

    @media screen and (max-width: 540px) {
        .more-design-header > span {
            font-size: 18px;
        }

        .more-design-header > a img {
            width: 22px;
        }

        .more-slider-dots > .slick-dots {
            max-width: 100%;
        }

        .more-slider-actions {
            flex-direction: column-reverse;
            align-items: center;
        }

        .horizental-tab-actions {
            display: flex;
            flex-direction: column-reverse;
        }

        .more-design-section-bottom {
            border-bottom: 70px solid white;
        }

        .more-desgin-content {
            margin-bottom: 50px;
        }

            .more-desgin-content .slick-list {
                margin: unset;
            }
    }

    /* end of more design section */

    /* gallery section */
    .model-gallery-section {
        padding: 100px 0;
    }

    .model-gallery-container {
        width: calc(100% - 7.5%);
        margin-left: auto;
    }

    html.rtl .model-gallery-container {
        margin-left: unset;
        margin-right: auto;
        direction: rtl;
    }

    .model-gallery-container > span {
        font-size: 44px;
        font-family: 'Nobel-Regular';
        text-transform: uppercase;
        color: #0F0F0F;
        position: relative;
    }

    html.rtl .model-gallery-container > span {
        font-family: "GE_SS_Two_Medium", sans-serif !important;
    }

    .model-gallery-body {
        margin-top: 60px;
    }

    .model-gallery-container > span::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 0;
        background: #000000;
        width: 50%;
        height: 1px;
    }

    html.rtl .model-gallery-container > span::before {
        left: unset;
        right: 0;
    }

    .model-gallery-cards {
        width: 55rem;
        display: grid !important;
        gap: 8px;
        grid-auto-rows: 75px;
        grid-template-columns: repeat(24, 1fr);
    }

        .model-gallery-cards > a {
            grid-row: span 4 / auto;
            grid-column: span 10 / auto;
        }

            .model-gallery-cards > a > img {
                object-fit: cover;
                object-position: center;
                width: 100%;
                height: 100%;
            }

            .model-gallery-cards > a:nth-child(4n - 1),
            .model-gallery-cards > a:nth-child(4n - 2) {
                grid-row: span 4 / auto;
                grid-column: span 14 / auto;
            }

    .model-gallery-body .slick-slide {
        margin: 0 4px;
    }

    .model-gallery-body .slick-list {
        margin: 0 -4px;
    }

    .gallery-slider-actions {
        display: flex;
        gap: 1rem;
        margin-top: 40px;
    }

        .gallery-slider-actions > div {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

    html.rtl .gallery-slider-actions > div button {
        transform: rotate(180deg);
    }

    .gallery-slider-actions > div button {
        margin: 0;
        background: transparent;
        font-size: 20px;
        color: #4D4D4D;
        padding: 0 10px;
        cursor: pointer;
    }

    .gallery-slider-actions > div:first-child button.slick-disabled {
        opacity: 0.5;
        cursor: default;
    }

    .gallery-slider-dots .slick-dots {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: center;
        height: 100%;
        max-width: 500px;
    }

        .gallery-slider-dots .slick-dots > li {
            width: 70px;
            height: 4px;
            background: #4d4d4d66;
            position: relative;
        }

    .gallery-slider-dots > .slick-dots li:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }

    .gallery-slider-dots > .slick-dots li:last-child {
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .gallery-slider-dots > .slick-dots li button {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 4px;
        overflow: hidden;
        border-radius: 100px;
        background-color: transparent;
        transition: all .3s;
        cursor: pointer;
        position: absolute;
    }

    .gallery-slider-dots > .slick-dots li.slick-active button {
        background-color: #292929;
    }

    @media screen and (max-width: 992px) {
        .model-gallery-container > span {
            font-size: 36px;
        }

        .model-gallery-cards {
            width: 45rem;
            grid-auto-rows: 60px;
        }
    }

    @media screen and (max-width: 768px) {
        .model-gallery-container > span {
            font-size: 28px;
        }

            .model-gallery-container > span::before {
                top: -8px;
            }

        .model-gallery-body {
            margin-top: 30px;
        }

        .model-gallery-cards {
            width: 35rem;
            grid-auto-rows: 50px;
        }
    }

    @media screen and (max-width: 540px) {
        .model-gallery-container > span {
            font-size: 24px;
        }

        .gallery-slider-actions {
            flex-direction: column-reverse;
            align-items: center;
        }

        .model-gallery-cards {
            width: 35rem;
            grid-auto-rows: 40px;
        }
    }

    @media screen and (max-width: 420px) {
        .model-gallery-cards {
            gap: 4px;
            grid-auto-rows: 30px;
            width: calc(100vw - 17.5px);
        }

        .model-gallery-section {
            padding: 60px 0;
        }

        .model-gallery-body .slick-list {
            margin: unset;
        }
    }

    /* end of gallery section */

    /* Performance section */
    .performance-section {
        background: #1B1B1B;
        display: flex;
        padding: 100px 0;
        min-height: 580px;
        position: relative;
        overflow: hidden;
    }

    html.rtl .performance-section {
        direction: rtl;
    }

    .width-placeholder {
        width: 7.5%;
    }

    .performance-container {
        width: calc(100% - 7.5%);
        display: flex;
        position: relative;
        z-index: 1;
    }

    .performance-first {
        width: 35%;
        position: relative;
    }

    .performance-first-content > span {
        font-size: 44px;
        font-family: 'Nobel-Regular';
        text-transform: uppercase;
        color: #FFFFFF;
        position: relative;
    }

    html.rtl .performance-first-content > span {
        text-align: right;
        font-family: 'GE_SS_Two_Medium';
    }

    .performance-first-content > span::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 0;
        background: #D8D8D8;
        width: 50%;
        height: 1px;
    }

    html.rtl .performance-first-content > span::before {
        left: unset;
        right: 0;
    }

    .performance-first-content > ul {
        margin: 0;
        padding: 0;
        line-height: 3;
        list-style: none;
        color: #909090;
        margin-top: 3rem;
        width: 250px;
        margin-left: auto;
        font-size: 20px;
    }

    html.rtl .performance-first-content > ul {
        margin-left: unset;
        margin-right: auto;
    }

    .performance-first-content > ul li {
        cursor: pointer;
        transition: all 0.3s ease-in;
    }

        .performance-first-content > ul li.active-a {
            color: #fff;
        }

    .performance-second {
        width: 65%;
        position: relative;
    }

    .performance-second-bg {
        position: absolute;
        top: -100px;
        width: 100%;
        height: calc(100% + 200px);
    }

        .performance-second-bg::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: #292929;
            opacity: 60%;
        }

        .performance-second-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

    .performance-second-content {
        position: relative;
        width: 80%;
        display: flex;
        height: calc(100% + 100px);
        align-items: flex-end;
        margin: auto;
        padding-bottom: 1rem;
    }

        .performance-second-content > div:first-child {
            width: 40%;
            font-family: Nobel-Bold;
        }

            .performance-second-content > div:first-child span {
                color: #fff;
                display: block;
                font-size: 24px;
                text-transform: uppercase;
            }

            .performance-second-content > div:first-child h5 {
                color: #fff;
                display: block;
                font-size: 34px;
                text-transform: uppercase;
                margin-top: 1.5rem;
                margin-bottom: 0.8rem;
                font-family: 'Nobel-Book';
            }

            .performance-second-content > div:first-child p {
                color: #fff;
                margin: 0;
                font-size: 18px;
                max-width: 170px;
            }

        .performance-second-content > div:last-child {
            width: 60%;
            padding-left: 8px;
            border-left: thin dashed #fff;
            max-height: 300px;
            overflow: auto;
        }

    html.rtl .performance-second-content > div:last-child {
        border-left: unset;
        border-right: thin dashed #fff;
        padding-left: 0;
        padding-right: 8px;
    }

    /* width */
    .performance-second-content > div:last-child::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    .performance-second-content > div:last-child::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .performance-second-content > div:last-child::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 100px;
    }

        /* Handle on hover */
        .performance-second-content > div:last-child::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    .performance-second-content > div:last-child p {
        color: #fff;
        margin: 0;
        margin-bottom: 0.6rem;
        font-size: 16px;
        font-family: 'Nobel-Book';
    }

    html.rtl .performance-second-content > div:last-child p {
        font-family: 'GE_SS_Two_Light';
    }

    .performance-sub-background {
        position: absolute;
        width: 100%;
        height: 100px;
        bottom: 0;
        background: #292929;
    }

    .performance-first-content > div {
        position: absolute;
        bottom: -65px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    html.rtl .performance-first-content > div {
        flex-direction: row-reverse;
    }

    .performance-first-content > div span {
        display: block;
        font-size: 24px;
        text-transform: uppercase;
        color: #ffffff;
        font-family: 'Nobel-Book';
        letter-spacing: 0.5px;
    }

    .performance-first-content > div img {
        width: 30px;
        transform: rotate(180deg);
    }

    @media screen and (max-width: 992px) {
        .performance-first-content > span {
            font-size: 36px;
        }

        .performance-first-content > div {
            display: none;
        }

        .performance-first-content > ul {
            margin-top: 1rem;
            line-height: unset;
            display: flex;
            align-items: center;
            width: unset;
            gap: 0.5rem 1rem;
            font-size: 16px;
            flex-wrap: wrap;
        }

        .performance-container {
            flex-direction: column;
        }

        .performance-first {
            width: 100%;
            display: flex;
        }

        .performance-second-bg {
            height: 100%;
            top: unset;
        }

        .performance-second {
            width: 92.5%;
            height: 400px;
            margin-top: 2rem;
        }

        .performance-second-content {
            width: 90%;
            height: 100%;
        }
    }

    @media screen and (max-width: 768px) {
        .performance-first-content > span {
            font-size: 28px;
        }

            .performance-first-content > span::before {
                top: -8px;
            }

        .performance-second {
            height: 300px;
            width: 100%;
        }

        .performance-section .width-placeholder {
            display: none;
        }

        .performance-second-content > div:last-child {
            max-height: 250px;
        }

        .performance-container {
            width: 100%;
        }

        .performance-first {
            margin-left: 35px;
        }

        .performance-second-content {
            width: calc(100% - 70px);
            margin: 0 35px;
        }
    }

    @media screen and (max-width: 540px) {
        .performance-first-content > span {
            font-size: 24px;
        }

        .performance-first-content > ul {
            font-size: 14px;
            margin-top: .7rem;
        }

        .performance-second {
            height: 400px;
        }

        .performance-second-content {
            padding: unset;
            padding-top: 1rem;
            flex-direction: column;
            align-items: unset;
            gap: 1.5rem;
            justify-content: flex-end;
        }

            .performance-second-content > div:first-child {
                width: 60%;
            }

                .performance-second-content > div:first-child span {
                    font-size: 14px;
                }

                .performance-second-content > div:first-child h5 {
                    font-size: 28px;
                    margin: unset;
                    margin-top: 1rem;
                }

                .performance-second-content > div:first-child p {
                    font-size: 16px;
                }

            .performance-second-content > div:last-child {
                width: 100%;
                max-height: 175px;
            }
    }

    /* end of Performance section */

    /* technology sections */
    .technology-section {
        padding: 100px 0;
    }

    html.rtl .technology-section {
        direction: rtl;
    }

    .technology-container {
        position: relative;
        width: calc(100% - 7.5%);
        margin-left: auto;
    }

    html.rtl .technology-container {
        margin-left: unset;
        margin-right: auto;
    }

    .technology-container > span {
        font-size: 44px;
        font-family: 'Nobel-Regular';
        text-transform: uppercase;
        color: #0F0F0F;
        position: relative;
    }

    html.rtl .technology-container > span {
        font-family: 'GE_SS_Two_Medium';
    }

    .technology-container > span::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 0;
        background: #000000;
        width: 50%;
        height: 1px;
    }

    html.rtl .technology-container > span::before {
        left: unset;
        right: 0;
    }

    .technology-tabs-caption {
        margin: 0;
        margin-top: 60px;
        padding: 0;
        padding-left: 1.5rem;
        list-style: none;
    }

    html.rtl .technology-tabs-caption {
        padding-left: unset;
        padding-right: 1.5rem;
    }

    .technology-tabs-content > p {
        font-size: 18px;
        font-family: 'Nobel-Book';
        max-width: 550px;
        margin-left: 4rem;
        min-height: 100px;
        display: flex;
        align-items: center;
        line-height: 1.5;
        min-height: 160px;
    }

    html.rtl .technology-tabs-content > p {
        margin-left: unset;
        margin-right: 4rem;
        font-family: 'GE_SS_Two_Light';
    }

    .technology-tabs-content > div img {
        width: 450px;
        height: 380px;
        object-fit: cover;
        object-position: center;
    }

        .technology-tabs-content > div img:first-child,
        .technology-tabs-content > div img:last-child {
            width: 650px;
        }

    .technology-tabs-content .slick-slide {
        margin: 0 4px;
    }

    .technology-tabs-content .slick-list {
        margin: 0 -4px;
    }

    .technology-tabs-content {
        display: none;
    }

        .technology-tabs-content.active {
            display: block;
        }

    .technology-tab {
        list-style: none;
        position: relative;
        cursor: pointer;
        text-transform: uppercase;
        transition: all 0.3s;
        padding-bottom: 5px;
        font-family: 'Nobel-Bold';
        font-size: 18px;
    }

    html.rtl .technology-tab {
        font-family: 'GE_SS_Two_Bold';
    }

    .technology-tab::before {
        content: '';
        width: 0;
        height: 1px;
        display: block;
        background: #222222d6;
        border-radius: 100px;
        transition: all .3s;
        position: absolute;
        bottom: 1px;
        transition: all 0.3s;
    }

    li.technology-tab.slick-slide.active::before {
        width: 100%;
    }

    .technology-tabs-caption .slick-slide {
        margin: 0 16px;
    }

    .technology-tabs-caption .slick-list {
        margin: 0 -16px;
    }

    @media screen and (max-width: 992px) {
        .technology-tabs-content > div {
            width: 100%;
            left: unset;
        }

        .technology-container > span {
            font-size: 36px;
        }

        .technology-tabs-caption {
            margin-top: 1rem;
        }

            .technology-tabs-caption .slick-slide {
                margin: 0 8px;
            }

            .technology-tabs-caption .slick-list {
                margin: 0 -8px;
            }

        .technology-tabs-content > p {
            margin-left: 3rem;
        }

        html.rtl .technology-tabs-content > p {
            margin-right: 3rem;
        }
    }

    @media screen and (max-width: 768px) {
        .technology-container > span {
            font-size: 28px;
        }

            .technology-container > span::before {
                top: -8px;
            }

        .technology-tabs-content > p {
            margin-left: 12px;
        }

        html.rtl .technology-tabs-content > p {
            margin-right: 12px;
        }

        .technology-tabs-content > div img {
            width: 380px;
            height: 320px;
        }

            .technology-tabs-content > div img:first-child,
            .technology-tabs-content > div img:last-child {
                width: 450px;
            }
    }

    @media screen and (max-width: 540px) {
        .technology-container > span {
            font-size: 24px;
        }


        .technology-tabs-content > p {
            font-size: 16px;
        }

        .technology-tabs-content > div {
            width: calc(100% + 50px);
        }

            .technology-tabs-content > div img {
                width: 320px;
                height: 230px;
            }

                .technology-tabs-content > div img:first-child,
                .technology-tabs-content > div img:last-child {
                    width: 320px;
                }
    }

    /* end of technology sections */

    /* safety sectons */
    .safety-section {
        padding-bottom: 100px;
    }

    html.rtl .safety-section {
        direction: rtl;
    }

    .safety-section > div span {
        font-size: 44px;
        font-family: 'Nobel-Regular';
        text-transform: uppercase;
        color: #0F0F0F;
        position: relative;
    }

        .safety-section > div span::before {
            content: "";
            position: absolute;
            top: -12px;
            left: 0;
            background: #000000;
            width: 50%;
            height: 1px
        }

    html.rtl .safety-section > div span::before {
        left: unset;
        right: 0;
    }

    .safety-section > div p {
        font-size: 18px;
        font-family: 'Nobel-Book';
        max-width: 550px;
        margin-left: 4rem;
        min-height: 100px;
        display: flex;
        align-items: center;
        margin-top: 60px;
        margin-bottom: 2rem;
    }

    html.rtl .safety-section > div p {
        margin-left: unset;
        margin-right: 4rem;
    }

    .safety-img-container {
        display: grid;
        overflow: hidden;
        grid-gap: 0.6rem;
        grid-auto-rows: 85px;
        grid-template-columns: repeat(24, 1fr);
        width: 100%;
    }

        .safety-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

            .safety-img-container img:nth-of-type(1) {
                grid-row: span 4 / auto;
                grid-column: span 6/ auto;
            }

            .safety-img-container img:nth-of-type(2) {
                grid-row: span 4 / auto;
                grid-column: span 6/ auto;
            }

            .safety-img-container img:nth-of-type(3) {
                grid-row: span 4 / auto;
                grid-column: span 12/ auto;
            }

    @media screen and (max-width: 992px) {
        .safety-section > div span {
            font-size: 36px;
        }
    }

    @media screen and (max-width: 768px) {
        .safety-section > div span {
            font-size: 28px;
        }

            .safety-section > div span::before {
                top: -8px;
            }

        .safety-section > div p {
            margin: 2rem;
        }

        html.rtl .safety-section > div p {
            margin-right: 2rem;
        }
    }

    @media screen and (max-width: 540px) {
        .safety-section > div span {
            font-size: 24px;
        }

        .safety-section > div p {
            font-size: 16px;
        }

        .safety-section > div p {
            margin: 1rem;
        }

        html.rtl .safety-section > div p {
            margin-right: 0rem;
        }
    }

    @media screen and (max-width: 420px) {
        .safety-section > div p {
            margin: 1rem 0;
        }


        html.rtl .safety-section > div p {
            margin-right: 0;
        }
    }

    /* end of safety sectons */

    /* model page custom scroll */
    .custom-scroll-secton {
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 100px;
        background-color: #fff;
        position: relative;
        top: -40px;
        margin-bottom: -80px;
        -webkit-box-shadow: 0px 0px 8px 0px #223c5033;
        -moz-box-shadow: 0px 0px 8px 0px #223c5033;
        box-shadow: 0px 0px 8px 0px #223c5033;
    }

        .custom-scroll-secton.sticky-top {
            position: fixed;
            top: 100px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9;
            animation: stick-to-top 500ms forwards;
        }

    @keyframes stick-to-top {
        from {
            opacity: 0.5;
        }

        to {
            opacity: 1;
        }
    }

    #custom-scroll-hr-line {
        width: 100%;
        height: 2px;
        overflow: hidden;
        position: relative;
    }

        #custom-scroll-hr-line::before {
            content: "";
            display: block;
            border: 7px dashed #292929;
            top: -8px;
            bottom: -8px;
            left: -8px;
            right: -8px;
        }

    #filler-line {
        width: 0;
        height: 2px;
        background: #292929;
        position: absolute;
        top: 0;
        transition: width 0.2s ease-in;
    }

    .custom-scroll-list {
        margin: 0;
        padding: 0;
        list-style: none;
        color: #292929;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.7px;
        position: absolute;
        width: calc(100% - 200px);
        display: flex;
        align-items: center;
        top: 54px;
        z-index: 1;
        transform: translateY(-20px);
    }

        .custom-scroll-list a {
            display: block;
            width: 12px;
            height: 12px;
            border: 2px solid #292929;
            background-color: #fff;
        }

    @media screen and (max-width: 1200px) {
        .custom-scroll-secton.sticky-top {
            top: 70px;
        }
    }

    @media screen and (max-width: 768px) {
        .custom-scroll-secton {
            width: calc(100% - 70px);
            padding: 0 24px;
            height: 50px;
            top: -55px;
        }

            .custom-scroll-secton.sticky-top {
                transform: unset;
                width: 100%;
                left: -35px;
                top: 70px;
            }
    }

    /* end of model page custom scroll */

    /* news page landing section */
    .news-page-landing-section {
        width: 100%;
        height: 100vh;
        max-height: 600px;
        position: relative;
    }

    .general-form-banner {
        width: 100%;
        height: auto;
    }
        .general-form-banner source, .general-form-banner img{
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .news-page-landing-section > img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
        }

        .news-page-landing-section > div {
            width: 100%;
            position: absolute;
            top: 45%;
            z-index: 1;
        }

        .news-page-landing-section h3 {
            font-size: 16px;
            font-family: 'Nobel-Book';
            text-transform: uppercase;
            color: #FFFFFF;
            position: relative;
            letter-spacing: 2.5px;
            margin: 0;
            margin-bottom: 2rem;
        }

    html.rtl .news-page-landing-section h3 {
        text-align: right;
        font-family: "GE_SS_Two_Medium", sans-serif !important;
        letter-spacing: 1px;
    }

    .news-page-landing-section h3::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 0;
        background: #D8D8D8;
        width: 80px;
        height: 1px;
    }

    html.rtl .news-page-landing-section h3::after {
        left: unset;
        right: 0;
    }

    .news-page-landing-section h1 {
        font-size: 54px;
        font-family: 'Nobel-Book', sans-serif;
        text-transform: uppercase;
        color: #FFFFFF;
        letter-spacing: 6px;
        margin: 0;
    }

    html.rtl .news-page-landing-section h1 {
        text-align: right;
        letter-spacing: 1px;
        font-family: "GE_SS_Two_Medium", sans-serif !important;
    }

    @media screen and (max-width: 992px) {
        .news-page-landing-section h3 {
            margin-bottom: 1.5rem;
        }

        .news-page-landing-section h1 {
            font-size: 38px;
            letter-spacing: 3px;
            max-width: 25rem;
            line-height: 42px;
        }
    }

    @media screen and (max-width: 768px) {
        .news-page-landing-section, .general-form-banner {
            max-height: 450px;
        }

            .news-page-landing-section h3 {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .news-page-landing-section h1 {
                font-size: 28px;
                letter-spacing: 2px;
                width: 20rem;
                line-height: 36px;
            }
    }

    @media screen and (max-width: 540px) {
        .news-page-landing-section {
            max-height: 300px;
        }

            .news-page-landing-section h3 {
                margin-bottom: 0.8rem;
            }

                .news-page-landing-section h3::after {
                    bottom: -4px;
                    width: 65px;
                }

            .news-page-landing-section h1 {
                font-size: 24px;
                width: 15rem;
                line-height: 28px;
            }
    }

    /* end of news page landing section */

    /* news section */
    .news-section {
        width: 100%;
        height: 100%;
        min-height: 500px;
        padding-bottom: 150px;
        position: relative;
        padding-top: 100px;
    }

    .msg-btn-container {
        display: flex;
        align-items: center;
        position: fixed;
        z-index: 1;
        right: 0;
        top: calc(50% + 180px);
    }

        .msg-btn-container img {
            width: 60px;
            height: 60px;
            cursor: pointer;
        }

    .news-categories {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }

    html.rtl .news-categories {
        flex-direction: row-reverse;
    }

    .news-categories > ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 2rem;
        font-size: 18px;
        font-family: 'Nobel-Book';
        text-transform: uppercase;
        color: #292929;
        letter-spacing: 1px;
    }

    html.rtl .news-categories > ul {
        flex-direction: row-reverse;
    }

    .news-categories > ul li {
        cursor: pointer;
        position: relative;
    }

        .news-categories > ul li::after {
            content: "";
            position: absolute;
            width: 0;
            height: 1px;
            background: #0F0F0F;
            bottom: -2px;
            left: 0;
            transition: all 0.3s ease-in-out;
        }

    .news-categories ul li.active::after {
        width: 100%;
    }

    .offers-filter-by-date,
    .mobile-category-contianer {
        display: flex;
        gap: 0.8rem;
        align-items: center;
        position: relative;
    }

    html.rtl .offers-filter-by-date {
        flex-direction: row-reverse;
    }

    .offers-filter-by-date span {
        font-size: 18px;
        font-family: 'Nobel-Book';
        color: #292929;
    }

    .offers-filter-by-date > a,
    .mobile-category-contianer > a {
        display: flex;
        align-items: center;
        padding: 0 12px;
        width: 120px;
        height: 40px;
        background: #F2F2F2;
        border: thin solid #0f0f0f1f;
        font-size: 14px;
        color: #0f0f0f66;
        text-decoration: none;
        cursor: pointer;
        text-transform: capitalize;
        position: relative;
    }

        .offers-filter-by-date > a.active,
        .mobile-category-contianer > a.active {
            color: #0f0f0f;
        }

    .offers-by-date-option-dropdown,
    .offers-by-category-option-dropdown {
        margin: 0;
        padding: 0;
        list-style: none;
        position: absolute;
        top: 42px;
        right: 0;
        width: 120px;
        opacity: 0.0;
        display: none;
        background: #F2F2F2;
        transform: translateY(10px);
        border: thin solid #0f0f0f1f;
    }

        .offers-by-date-option-dropdown.active,
        .offers-by-category-option-dropdown.active {
            display: block;
            -webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
            animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        }

        .offers-by-date-option-dropdown > li,
        .offers-by-category-option-dropdown > li {
            height: 30px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            text-transform: capitalize;
            font-size: 14px;
            font-family: 'Nobel-Book';
            color: #0f0f0fb3;
            background: #F2F2F2;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

            .offers-by-date-option-dropdown > li:hover,
            .offers-by-category-option-dropdown > li:hover {
                color: #0f0f0fe6;
                background: #ffffff;
            }

    .mobile-category-contianer {
        display: none;
    }

        .mobile-category-contianer > a,
        .offers-by-category-option-dropdown.active {
            width: 170px;
        }

    @-webkit-keyframes slide-top {
        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1.0;
        }
    }

    @keyframes slide-top {
        100% {
            -webkit-transform: translateY(0);
            transform: translateY(0);
            opacity: 1.0;
        }
    }

    .news-body {
        gap: 0.8rem;
        display: grid;
        grid-auto-rows: 100px;
        grid-template-columns: repeat(24, 1fr);
    }

    .news-cards {
        height: 100%;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: flex-end;
        padding: 1rem 1.5rem;
    }

    html.rtl .news-cards {
        justify-content: flex-end;
    }

    .news-cards:nth-child(7n - 6),
    .news-cards:nth-child(7n - 3),
    .news-cards:nth-child(7n - 0),
    .news-cards:nth-child(7n - 2) {
        grid-row: span 4 / auto;
        grid-column: span 10 / auto;
    }

    .news-cards:nth-child(7n - 4),
    .news-cards:nth-child(7n - 5) {
        grid-row: span 4 / auto;
        grid-column: span 14 / auto;
    }

    .news-cards:nth-child(7n - 1) {
        grid-row: span 8 / auto;
        grid-column: span 14 / auto;
    }

    .news-cards > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: absolute;
        top: 0;
        left: 0;
    }

    .news-cards-mask {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.3s ease-in-out;
        background: linear-gradient(15deg, #000000a6 0%, #24263417 100%);
    }

    .news-cards:hover .news-cards-mask {
        background-color: hsla(0, 0%, 6%, 0.799);
    }

    .news-cards:hover .news-cards-content {
        transform: translateY(0);
    }

    .news-cards-content {
        position: relative;
        overflow: hidden;
        transform: translateY(113px);
        transition: all 0.3s ease-in-out;
    }

        .news-cards-content button {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            border-radius: 15px;
            padding: 0 15px;
            font-size: 10px;
            color: #FFFFFF;
            background: transparent;
            border: thin solid #fff;
            font-family: 'Nobel-Book', sans-serif;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            text-shadow: 0 0 2px #0000008c;
            box-shadow: 0 0 2px #0000008c;
        }

    html.rtl .news-cards-content button {
        margin-left: auto;
    }

    .news-cards-content span {
        display: block;
        font-size: 14px;
        color: #FFFFFF;
        font-family: 'Nobel-Book';
        margin-bottom: 1.5rem;
        text-shadow: 0 0 2px #0000008c;
    }

    html.rtl .news-cards-content span {
        text-align: right;
    }

    .news-cards-content > div h2 {
        font-size: 24px;
        font-family: 'Nobel-Book', sans-serif;
        color: #fff;
        letter-spacing: 2.5px;
        max-width: 530px;
        text-transform: uppercase;
        margin: 0;
        margin-bottom: 1.5rem;
        line-height: 30px;
        min-height: 90px;
    }

    html.rtl .news-cards-content > div h2 {
        text-align: right;
        font-family: "GE_SS_Two_Medium", sans-serif !important;
        letter-spacing: unset;
    }

    .news-cards-content > div a {
        width: 170px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        background: #ffffff26;
        border: thin solid #FFFFFF;
        text-transform: uppercase;
        position: relative;
    }

    html.rtl .news-cards-content > div a {
        margin-left: auto;
    }

    .news-cards-content > div a::after {
        content: "";
        width: 12px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 50%;
        right: 0;
    }

    /* load more btn */
    .news-load-more-btn {
        width: 100%;
        height: 80px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

        .news-load-more-btn button {
            width: 180px;
            height: 45px;
            margin: 0;
            padding: 0;
            background: transparent;
            font-size: 12px;
            font-family: 'Nobel-Book';
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            cursor: pointer;
            color: #292929;
            border: thin solid #292929;
        }

            .news-load-more-btn button::after {
                content: "";
                width: 15px;
                height: 1px;
                background: #292929;
                position: absolute;
                top: 50%;
                right: 0;
                display: block;
            }

    .no-offer-text {
        font-size: 24px;
        letter-spacing: 1px;
        color: #292929;
    }

    @media screen and (max-width: 992px) {
        .news-body {
            grid-auto-rows: 65px;
        }

        .news-cards-content button {
            margin-bottom: 0.5rem;
        }

        .news-cards-content span {
            margin-bottom: 1rem;
            font-size: 12px;
        }

        .news-cards-content > div h2 {
            margin-bottom: 0.8rem;
            font-size: 18px;
            letter-spacing: 1.5px;
            line-height: 24px;
            min-height: 72px;
            max-width: 300px;
        }

        .news-cards-content > div a {
            font-size: 12px;
            height: 35px;
            width: 140px;
        }

        .news-cards-content {
            transform: translateY(84px);
        }
    }

    @media screen and (max-width: 768px) {
        .msg-btn-container {
            top: unset;
            bottom: 60px;
        }

        .news-cards:nth-child(7n - 4),
        .news-cards:nth-child(7n - 5),
        .news-cards:nth-child(7n - 4),
        .news-cards:nth-child(7n - 5),
        .news-cards:nth-child(7n - 6),
        .news-cards:nth-child(7n - 3),
        .news-cards:nth-child(7n - 0),
        .news-cards:nth-child(7n - 1),
        .news-cards:nth-child(7n - 2) {
            grid-row: span 4 / auto;
            grid-column: span 12 / auto;
        }
    }

    @media screen and (max-width: 540px) {

        .news-cards:nth-child(7n - 4),
        .news-cards:nth-child(7n - 5),
        .news-cards:nth-child(7n - 4),
        .news-cards:nth-child(7n - 5),
        .news-cards:nth-child(7n - 6),
        .news-cards:nth-child(7n - 3),
        .news-cards:nth-child(7n - 0),
        .news-cards:nth-child(7n - 1),
        .news-cards:nth-child(7n - 2) {
            grid-row: span 4 / auto;
            grid-column: span 24 / auto;
        }
    }

    @media screen and (max-width: 420px) {
        .news-body {
            gap: 0.8rem 0;
            grid-auto-rows: 50px;
        }
    }

    /* end of news section */

    /* veiw news landing page section */
    .view-news-landing-section {
        width: 100%;
        height: 100vh;
        max-height: 600px;
        position: relative;
    }

        .view-news-landing-section img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
        }

        .view-news-landing-section .desktop-view {
            display: block;
        }

        .view-news-landing-section .mobile-view {
            display: none;
        }

    .view-news-mask {
        width: 100%;
        height: 100%;
        top: 0;
        z-index: 1;
        position: absolute;
        background: linear-gradient(180deg, #000000ba 8%, #0000006e 100%)
    }

    @media screen and (max-width: 768px) {
        .view-news-landing-section {
            max-height: 450px;
        }

            .view-news-landing-section .desktop-view {
                display: none;
            }

            .view-news-landing-section .mobile-view {
                display: block;
            }
    }

    @media screen and (max-width: 540px) {
        .view-news-landing-section {
            max-height: 300px;
        }
    }

    /* end of veiw news landing page section */

    /* news article section */
    .news-article-section {
        position: relative;
        z-index: 1;
    }

    .article-header {
        padding: 2rem 60px;
        padding-right: 0;
        background: #ffffff;
        max-width: 1000px;
        position: relative;
        top: -160px;
        margin-bottom: -140px;
    }

    html.rtl .article-header {
        text-align: right;
        padding-right: 2rem;
        padding-left: 0;
        margin-left: auto;
    }

    .article-header > span {
        font-family: 'Nobel-Book';
        color: #292929;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
    }

        .article-header > span::after {
            content: "";
            width: 110%;
            height: 1px;
            background: #29292985;
            position: absolute;
            bottom: -8px;
            left: 0;
        }

    html.rtl .article-header > span::after {
        left: unset;
        right: 0;
    }

    .article-header h1 {
        font-size: 54px;
        font-family: 'Nobel-Book', sans-serif;
        text-transform: uppercase;
        color: #292929;
        letter-spacing: 5px;
        line-height: 50px;
        max-width: 35rem;
        margin: 0;
        margin-top: 2.5rem;
        margin-bottom: 0.5rem;
    }

    html.rtl .article-header h1 {
        margin-left: auto;
        letter-spacing: unset;
        font-family: "GE_SS_Two_Medium", sans-serif !important;
        line-height: 1.2;
    }

    .article-header > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 35rem;
        flex-wrap: wrap;
    }

    html.rtl .article-header > div {
        margin-left: auto;
        flex-direction: row-reverse;
    }

    .article-actions,
    .article-author {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    html.rtl .article-author {
        flex-direction: row-reverse;
    }

    .article-author span {
        font-size: 14px;
        font-family: 'Nobel-Regular';
        letter-spacing: 1px;
        color: #0f0f0fba;
    }

    html.rtl .article-author span {
        font-family: "GE_SS_Two_Light", sans-serif !important;
    }

    .article-actions img,
    .article-author img {
        width: 30px;
        height: 30px;
        object-fit: cover;
        object-position: center;
    }

    .article-actions div {
        font-size: 14px;
        font-family: 'Nobel-Regular';
        letter-spacing: 1px;
        color: #0f0f0fba;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cta-container {
        display: flex;
        justify-content: flex-end;
    }

.article-contents, .cta-container {
    max-width: 1000px;
    padding: 2rem 0 2rem 60px ;
}

    html.rtl .article-contents, html.rtl .cta-container {
        margin-left: auto;
        margin-right: 2rem;
    }

    .article-contents p {
        font-size: 20px;
        font-family: 'Nobel-Book';
        letter-spacing: 0.5px;
        line-height: 22px;
        margin: 0;
        color: #292929;
        margin-bottom: 1.5rem;
    }

    html.rtl .article-contents p {
        line-height: 2;
    }
    .article-contents.the-second {
        margin-left: auto;
        margin-top: 2rem;
        max-width: 45rem;
    }

    html.rtl .article-contents.the-second {
        margin-left: unset;
        margin-right: auto;
    }

    @media screen and (max-width: 992px) {
        .article-header > span {
            letter-spacing: 1px;
            font-size: 14px;
        }

        .article-header h1 {
            font-size: 44px;
            line-height: 46px;
            letter-spacing: 2.5px;
            max-width: 30rem;
            margin-top: 1.5rem;
        }

        .article-header {
            top: -150PX;
        }

        .safety-img-container {
            grid-auto-rows: 45px;
        }
    }

    @media screen and (max-width: 768px) {
        .article-header > span {
            letter-spacing: 1px;
            font-size: 12px;
        }

        .article-header h1 {
            font-size: 28px;
            line-height: 30px;
            letter-spacing: 1.5px;
            margin-top: 0.8rem;
        }

        .article-contents p {
            font-size: 16px;
            line-height: 20px;
        }

        .article-header {
            padding: 2rem 30px;
            top: -114px;
        }

            .article-header > div {
                max-width: unset;
                width: calc(100% - 30px);
            }

        .article-contents {
            max-width: 100%;
            background: white;
            margin-left: 0;
            padding: 30px;
        }

        .cta-container {
            padding-right: 30px;
        }

        html.rtl .article-contents, html.rtl .cta-container {
            margin-right: 0;
        }

        .safety-img-container img:nth-of-type(1),
        .safety-img-container img:nth-of-type(2),
        .safety-img-container img:nth-of-type(3) {
            grid-column: span 8/ auto;
        }
    }

    @media screen and (max-width: 540px) {
        .article-header {
            top: -55px;
            margin-bottom: -45px;
        }

            .article-header > span::after {
                bottom: -5px;
            }

            .article-header > div {
                width: 100%;
            }

        .safety-img-container img:nth-of-type(1),
        .safety-img-container img:nth-of-type(2) {
            grid-column: span 12/ auto;
        }

        .safety-img-container img:nth-of-type(3) {
            grid-column: span 24/ auto;
        }
    }

    @media screen and (max-width: 420px) {
        .article-header {
            top: 0;
            margin-bottom: 0;
        }


            .article-header > span {
                letter-spacing: 0.5px;
                font-size: 10px;
            }

            .article-header h1 {
                font-size: 22px;
                line-height: 26px;
                margin-bottom: 1.5rem;
            }

            .article-header > div,
            .article-actions,
            .article-author {
                gap: 8px;
            }

        .article-actions {
            flex-direction: row-reverse
        }

        html.rtl .article-actions {
            flex-direction: unset;
        }

        .article-contents {
            margin-left: 0;
            padding: 10px;
        }

        html.rtl .article-contents {
            margin-right: 0;
        }

        .safety-img-container img:nth-of-type(1),
        .safety-img-container img:nth-of-type(2),
        .safety-img-container img:nth-of-type(3) {
            grid-column: span 24/ auto;
        }
    }

    /* end of news article section */

    /* Amazing experience section */
    .amazing-experience {
        padding-top: 80px;
        background: #0F0F0F;
        position: relative;
    }

        .amazing-experience .container {
            position: relative;
            z-index: 1;
        }

        .amazing-experience h3 {
            margin: 0;
            margin-left: 60px;
            color: #fff;
            font-size: 24px;
            margin-bottom: 2rem;
            font-family: 'Nobel-Bold', sans-serif;
        }

    html.rtl .amazing-experience h3 {
        text-align: right;
        margin-right: 2rem;
    }

    .amazing-experience-body {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
    }

    html.rtl .amazing-experience-body {
        direction: rtl;
    }

    .amazing-experience-content {
        width: calc(100% - 600px);
        margin-left: 60px;
        max-height: 385px;
        overflow: auto;
    }

    html.rtl .amazing-experience-content {
        margin-left: unset;
        margin-right: 2rem;
    }

    /* width */
    .amazing-experience-content::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    .amazing-experience-content::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .amazing-experience-content::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 100px;
    }

        /* Handle on hover */
        .amazing-experience-content::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    .amazing-experience-content p {
        color: #fff;
        font-size: 18px;
        font-family: 'Nobel-Book';
        line-height: 20px;
        margin: 0;
        margin-bottom: 0.8rem;
        letter-spacing: 0.5px;
    }

    .amazing-experience-img {
        width: 450px;
        height: 500px;
    }

        .amazing-experience-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .amazing-experience-mask {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 0;
        border-bottom: 130px solid white;
        border-right: 100vw solid transparent;
    }

    .amazing-experience-sub-contexts {
        max-width: 550px;
        margin: 80px auto;
        text-align: center;
        margin-bottom: 2.5rem;
    }

        .amazing-experience-sub-contexts p {
            font-size: 20px;
            font-family: 'Nobel-Book';
            letter-spacing: 0.5px;
            line-height: 22px;
            margin: 0;
            color: #292929;
            margin-bottom: 1.5rem;
        }

    .amazing-experience-sub-video-container {
        position: relative;
        width: calc(100% - 7.5%);
        margin-left: auto;
        max-height: 650px;
    }

    html.rtl .amazing-experience-sub-video-container {
        margin-left: unset;
        margin-right: auto;
    }

    .amazing-experience-sub-video-container > img {
        width: 100%;
        height: 650px;
        object-fit: cover;
        object-position: center;
    }

    .amazing-experience-sub-video-container .mask {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        background: #2929294d;
    }

    .amazing-experience-sub-video-container .play-button {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        width: 150px;
        height: 150px;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }


        .amazing-experience-sub-video-container .play-button > div {
            width: 100%;
            height: 100%;
            border-radius: 100px;
            background-color: #ffffff33;
            border: thin dashed #ffffff70;
        }

        .amazing-experience-sub-video-container .play-button:hover > div {
            animation: rotating 15s linear infinite;
        }

        .amazing-experience-sub-video-container .play-button img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            position: absolute;
        }

    .amazing-experience-sub-video-container .floating-container {
        position: absolute;
        left: 0;
        bottom: 0;
        min-width: 250px;
        background: #fff;
        z-index: 3;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        min-height: 95px;
        justify-content: center;
        border: thin solid #979797c7;
    }

    html.rtl .amazing-experience-sub-video-container .floating-container {
        left: unset;
        right: 0;
        text-align: right;
    }

    .amazing-experience-sub-video-container .floating-container span {
        font-size: 22px;
        font-family: 'Nobel-Regular';
        color: #292929;
        letter-spacing: 1px;
    }

    .amazing-experience-sub-video-container .floating-container p {
        font-size: 18px;
        font-family: 'Nobel-Book';
        letter-spacing: 0.5px;
        line-height: 22px;
        margin: 0;
        color: #292929;
    }

    @media screen and (max-width: 1200px) {
        .amazing-experience-img {
            width: 400px;
        }

        .amazing-experience-content {
            width: calc(100% - 500px);
        }

            .amazing-experience-content p {
                font-size: 16px;
            }
    }

    @media screen and (max-width: 992px) {
        .amazing-experience-body {
            gap: 1.5rem;
            flex-direction: column;
        }

        .amazing-experience-content {
            width: calc(100% - 120px);
            margin-right: 60px;
        }

        .amazing-experience-img {
            width: 100%;
            height: 380px;
        }

        .amazing-experience-sub-video-container,
        .amazing-experience-sub-video-container > img {
            max-height: 480px;
        }
    }

    @media screen and (max-width: 768px) {
        .amazing-experience h3 {
            margin-left: 30px;
        }

        .amazing-experience-content {
            margin-right: 30px;
            margin-left: 30px;
            width: calc(100% - 60px);
        }

        .amazing-experience-sub-contexts p {
            font-size: 16px;
            line-height: 20px;
        }

        .amazing-experience-sub-video-container {
            width: calc(100% - 35px);
        }
    }

    @media screen and (max-width: 540px) {
        .amazing-experience h3 {
            font-size: 20px;
            margin-bottom: 1rem;
        }

        .amazing-experience-img {
            height: 250px;
        }

        .amazing-experience-sub-contexts {
            width: calc(100% - 70px);
            margin: 25px auto;
            margin-top: 50px;
        }

        .amazing-experience-sub-video-container,
        .amazing-experience-sub-video-container > img {
            max-height: 320px;
        }

            .amazing-experience-sub-video-container .play-button {
                width: 90px;
                height: 90px;
            }

                .amazing-experience-sub-video-container .play-button img {
                    width: 25px;
                    height: 25px;
                }

            .amazing-experience-sub-video-container .floating-container {
                min-height: 60px;
                min-width: 280px;
            }
    }

    @media screen and (max-width: 420px) {

        .amazing-experience h3 {
            margin-left: 0;
            font-size: 18px;
        }

        html.rtl .amazing-experience-content,
        html.rtl .amazing-experience h3 {
            margin-right: 0;
        }

        .amazing-experience-content {
            margin: unset;
            width: 100%;
        }

        .amazing-experience-img {
            width: calc(100% + 70px);
            margin-left: -35px;
        }

        html.rtl .amazing-experience-img {
            width: 100%;
            margin-left: unset;
        }

        .amazing-experience-sub-video-container {
            width: 100%;
        }

            .amazing-experience-sub-video-container .floating-container {
                width: 100%;
                border: unset;
                background: #e5e5e5;
                padding: 0 35px;
            }

                .amazing-experience-sub-video-container .floating-container span {
                    font-size: 18px;
                    letter-spacing: 0.5px;
                }

                .amazing-experience-sub-video-container .floating-container p {
                    font-size: 14px;
                }
    }

    /* end of amazing experience section */

    /* more news section */
    .more-news-section {
        padding: 100px 0;
    }

    .more-news-header {
        margin-bottom: 1.5rem;
    }

        .more-news-header > span {
            display: block;
            font-size: 36px;
            font-family: 'Nobel-Regular';
            letter-spacing: 4px;
            color: #292929;
            margin-left: 60px;
            margin-bottom: 2.5rem;
            position: relative;
        }

    html.rtl .more-news-header > span {
        margin-left: unset;
        margin-right: 60px;
        text-align: right;
        font-family: "GE_SS_Two_Medium", sans-serif;
        letter-spacing: unset;
    }

    .more-news-header > span:after {
        content: "";
        width: 100px;
        height: 1px;
        background: #292929;
        display: block;
        position: absolute;
        top: -8px;
    }

    html.rtl .more-news-header > span:after {
        right: 0;
    }

    .more-news-header > p {
        font-size: 20px;
        font-family: 'Nobel-Book';
        letter-spacing: 0.5px;
        line-height: 22px;
        margin: 0;
        color: #292929;
        margin-left: 100px;
        max-width: 360px;
    }

    html.rtl .more-news-header > p {
        margin-left: auto;
        margin-right: 100px;
        font-family: "GE_SS_Two_Medium", sans-serif !important;
    }

    html.rtl .more-news-body {
        margin-left: unset;
        margin-right: auto;
    }

    .more-news-card {
        width: 450px;
        height: 350px !important;
        overflow: hidden;
        position: relative;
        padding: 1rem 1.5rem;
    }

        .more-news-card > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
        }

    .more-news-card-mask {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.3s ease-in-out;
        background: linear-gradient(15deg, #000000a6 0%, #24263417 100%);
    }

    .more-news-card:hover .more-news-card-mask {
        background-color: hsla(0, 0%, 6%, 0.799);
    }

    .more-news-card:hover .more-news-cards-content {
        transform: translateY(0px);
    }

    .more-news-cards-content {
        position: relative;
        overflow: hidden;
        transform: translateY(155px);
        transition: all 0.3s ease-in-out;
    }

        .more-news-cards-content button {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            border-radius: 15px;
            padding: 0 15px;
            font-size: 10px;
            color: #FFFFFF;
            background: transparent;
            border: thin solid #fff;
            font-family: 'Nobel-Book', sans-serif;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            text-shadow: 0 0 2px #0000008c;
            box-shadow: 0 0 2px #0000008c;
        }

    html.rtl .more-news-cards-content button {
        margin-left: auto;
    }

    .more-news-cards-content span {
        display: block;
        font-size: 14px;
        color: #FFFFFF;
        font-family: 'Nobel-Book';
        margin-bottom: 1.5rem;
        text-shadow: 0 0 2px #0000008c;
    }

    html.rtl .more-news-cards-content span {
        text-align: right;
    }

.more-news-cards-content > div h2 {
    font-size: 24px;
    font-family: 'Nobel-Book', sans-serif;
    color: #fff;
    letter-spacing: 2.5px;
    max-width: 530px;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 1.5rem;
    line-height: 30px;
    min-height: 90px;
}

    html.rtl .more-news-cards-content > div h2 {
        text-align: right;
        font-family:"GE_SS_Two_Medium", sans-serif;
        letter-spacing: unset;
    }

    .more-news-cards-content > div a {
        width: 170px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        background: #ffffff26;
        border: thin solid #FFFFFF;
        text-transform: uppercase;
        position: relative;
    }

    html.rtl .more-news-cards-content > div a {
        margin-left: auto;
    }

    .more-news-cards-content > div a::after {
        content: "";
        width: 12px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 50%;
        right: 0;
    }

    .more-news-body .slick-slide {
        margin: 0 8px;
    }

    .more-news-body .slick-list {
        margin: 0 -8px;
    }

    html.rtl .more-news-body .slick-track {
        left: -50px;
    }

    @media screen and (max-width: 768px) {
        .more-news-header > span {
            font-size: 32px;
            letter-spacing: 2px;
            margin-left: 30px;
            margin-bottom: 1.5rem;
        }

        .more-news-header > p {
            font-size: 18px;
            line-height: 20px;
            margin-left: 70px;
        }

        .more-news-card {
            width: 380px;
            height: 275px !important;
        }

        .more-news-cards-content {
            transform: translateY(130px);
        }

        .more-news-card:hover .more-news-cards-content {
            transform: translateY(0px);
        }

        .more-news-cards-content button {
            margin-bottom: 0.5rem;
        }

        .more-news-cards-content span {
            margin-bottom: 1rem;
            font-size: 12px;
        }

        .more-news-cards-content > div h2 {
            margin-bottom: 0.8rem;
            font-size: 18px;
            letter-spacing: 1.5px;
            line-height: 24px;
            min-height: 72px;
            max-width: 300px;
            
        }

        html.rtl .more-news-cards-content > div h2 {
            margin-left: auto;
        }

        .more-news-cards-content > div a {
            font-size: 12px;
            height: 35px;
            width: 140px;
        }

        .gallery-slider-dots .slick-dots {
            max-width: 380px;
        }
    }

    @media screen and (max-width: 540px) {
        .more-news-header > span {
            font-size: 22px;
            letter-spacing: 1px;
            margin-left: 0;
            margin-bottom: 1rem;
        }

        html.rtl .more-news-header > span {
            margin-right: unset;
        }

        .more-news-header > p {
            font-size: 16px;
            margin-left: 0;
        }

        html.rtl .more-news-header > p {
            margin-right: unset;
        }

        .gallery-slider-dots .slick-dots {
            max-width: 250px;
        }
    }

    @media screen and (max-width: 420px) {
        .more-news-body {
            width: 100%;
        }

        .gallery-slider-actions {
            flex-direction: column-reverse;
        }

        .more-news-card {
            width: 100vw;
        }

        .more-news-body .slick-slide {
            margin: 0;
        }

        .more-news-body .slick-list {
            margin: 0;
        }
    }

    /* end of more news sections */

    /* floating dialogue section */
    .lets-talk-dialogue-section {
        position: fixed;
        z-index: 11;
        top: 0;
        right: 0;
        width: 0;
        height: 100vh;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
        opacity: 0.0;
    }

        .lets-talk-dialogue-section.active {
            width: 100vw;
            opacity: 1.0;
        }

        .lets-talk-dialogue-section .mask {
            width: 0;
            height: 100%;
            position: absolute;
            top: 0;
            right: 0;
            background: #00000099;
        }

        .lets-talk-dialogue-section.active .mask {
            width: 100%;
        }

    .dialogue-body {
        width: 800px;
        height: 100%;
        margin-left: auto;
        padding: 4rem;
        background-color: #fff;
        position: relative;
        overflow: auto;
        transition: all 0.5s ease-in-out;
        opacity: 0.0;
        transform: translateX(100%);
    }

    .lets-talk-dialogue-section.active .dialogue-body {
        transform: translateX(0);
        opacity: 1;
    }

    /* width */
    .dialogue-body::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    .dialogue-body::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .dialogue-body::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 100px;
    }

        /* Handle on hover */
        .dialogue-body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

    .dialogue-body h4 {
        font-size: 34px;
        text-transform: uppercase;
        font-family: 'Nobel-Book';
        letter-spacing: 5px;
        color: #292929;
        margin: 0;
        margin-bottom: 2rem;
    }

    html.rtl .dialogue-body h4 {
        text-align: right;
    }

    .dialogue-body > p {
        font-size: 20px;
        font-family: 'Nobel-Book';
        letter-spacing: 0.5px;
        line-height: 22px;
        margin: 0;
        color: #292929;
        margin-bottom: 1rem;
    }

    .dialogue-body > img {
        display: block;
        margin: 2rem 0;
        width: 100%;
    }

    .dialogue-form {
        display: grid;
        grid-gap: 1rem;
        grid-template-columns: repeat(24, 1fr);
    }

        .dialogue-form > span {
            font-size: 20px;
            font-family: 'Nobel-Book';
            letter-spacing: 0.5px;
            margin: 0;
            color: #292929;
            margin-bottom: 1.5rem;
            display: block;
            text-transform: uppercase;
            grid-column: span 24;
        }

    html.rtl .dialogue-form > span {
        text-align: right;
    }

    .dialogue-form textarea:focus,
    .dialogue-form input:focus {
        outline: none;
    }

    .dialogue-form > div {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

        .dialogue-form > div:nth-of-type(1),
        .dialogue-form > div:nth-of-type(2),
        .dialogue-form > div:nth-of-type(3) {
            grid-column: span 8;
        }

        .dialogue-form > div:nth-of-type(4),
        .dialogue-form > div:nth-of-type(5) {
            grid-column: span 12;
        }

        .dialogue-form > div:nth-of-type(6),
        .dialogue-form > div:nth-of-type(7) {
            grid-column: span 24;
        }

        .dialogue-form > div label {
            text-transform: capitalize;
            font-family: 'Nobel-Book';
        }

    html.rtl .dialogue-form > div label {
        text-align: right;
    }

    .dialogue-form > div input[type="text"],
    .dialogue-form > div input[type="email"],
    .dialogue-form > div input[type="number"] {
        width: 100%;
        height: 45px;
        margin: 0;
        padding: 0 10px;
        border: thin solid;
        border-radius: 2px;
        border-color: #0f0f0f47;
        background-color: #0f0f0f0d;
        font-family: 'Nobel-Book';
    }

    .dialogue-form textarea {
        width: 100%;
        margin: 0;
        padding: 10px;
        border: thin solid;
        border-radius: 2px;
        border-color: #0f0f0f47;
        background-color: #0f0f0f0d;
        font-family: 'Nobel-Book';
        resize: none;
    }

    .dialogue-form > div:nth-of-type(7) {
        flex-direction: unset;
        font-size: 14px;
        margin-bottom: 2rem;
    }

    html.rtl .dialogue-form > div:nth-of-type(7) {
        flex-direction: row-reverse;
    }

    .dialogue-form button {
        grid-column: span 24;
        width: 180px;
        height: 45px;
        margin: 0;
        padding: 0;
        border: none;
        color: #ffffff;
        background: #0F0F0F;
        font-size: 14px;
        font-family: 'Nobel-Book';
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        cursor: pointer;
    }

        .dialogue-form button::after {
            content: "";
            width: 15px;
            height: 1px;
            background: #fff;
            position: absolute;
            top: 50%;
            right: 0;
            display: block;
        }

    .close-dialogue-btn {
        position: absolute;
        top: 2rem;
        right: 2.5rem;
        z-index: 5;
        cursor: pointer;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
    }

    @media screen and (max-width: 768px) {
        .dialogue-body {
            width: 100%;
        }
    }

    @media screen and (max-width: 540px) {
        .dialogue-body {
            padding: 2.5rem;
        }

            .dialogue-body h4 {
                font-size: 22px;
                letter-spacing: 1.5px;
                margin-bottom: 1.2rem;
            }

            .dialogue-body > p {
                line-height: 18px;
                font-size: 16px;
            }

            .dialogue-body > img {
                margin: 1.2rem 0;
            }

        .close-dialogue-btn {
            top: 1rem;
            right: 1.5rem;
        }
    }

    @media screen and (max-width: 420px) {

        .dialogue-form > div label {
            font-size: 14px;
        }

        .dialogue-form > div input[type="text"],
        .dialogue-form > div input[type="email"],
        .dialogue-form > div input[type="number"] {
            height: 35px;
        }

        .dialogue-form button {
            width: 100%;
            font-size: 12px;
        }

        .dialogue-form > span {
            font-size: 18px;
            margin-bottom: .5rem;
        }

        .dialogue-form {
            grid-gap: 0.5rem;
        }

            .dialogue-form > div:nth-of-type(1) {
                grid-column: span 24 / auto;
            }

            .dialogue-form > div:nth-of-type(2),
            .dialogue-form > div:nth-of-type(3) {
                grid-column: span 12 / auto;
            }

        .dialogue-body {
            padding: 1rem;
            padding-top: 3rem;
        }
    }

    /* end of floating dialogue section */

    /* offer landing page */
    .offer-page-landing-section {
        width: 100%;
        height: 100vh;
        max-height: 600px;
        position: relative;
    }

        .offer-page-landing-section > img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            object-fit: cover;
        }

        .offer-page-landing-section .mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #00000066;
        }

    .offer-langing-content {
        width: 100%;
        position: absolute;
        top: 45%;
        z-index: 1;
    }

        .offer-langing-content h3 {
            font-size: 16px;
            font-family: 'Nobel-Book';
            text-transform: uppercase;
            color: #FFFFFF;
            position: relative;
            letter-spacing: 2.5px;
            margin: 0;
            margin-bottom: 2rem;
        }

    html.rtl .offer-langing-content h3 {
        text-align: right;
    }

    .offer-langing-content h3::after {
        content: "";
        position: absolute;
        bottom: -12px;
        left: 0;
        background: #D8D8D8;
        width: 80px;
        height: 1px;
    }

    html.rtl .offer-langing-content h3::after {
        left: unset;
        right: 0;
    }

    .offer-langing-content h1 {
        font-size: 54px;
        font-family: 'Nobel-Book', sans-serif;
        text-transform: uppercase;
        color: #FFFFFF;
        letter-spacing: 6px;
        margin: 0;
        max-width: 36rem;
        line-height: 54px;
    }

    html.rtl .offer-langing-content h1 {
        margin-left: auto;
    }

    /* end of offer landing page */

    /* offers cards */
    .offers-body {
        display: grid;
        gap: 2.5rem 1rem;
        grid-template-columns: repeat(24, 1fr);
    }

        html.rtl .offers-body {
            direction: rtl;
        }

    .offers-cards {
        grid-column: span 8 / auto;
        width: 100%;
    }

    .offers-cards-img {
        width: 100%;
        /*height: 370px;*/
        margin-bottom: 2rem;
        display: block;
    }

        .offers-cards-img img, .offers-cards-img source {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

    .offers-cards-content h2 {
        margin: 0;
        font-size: 24px;
        font-family: 'Nobel-Book', sans-serif;
        color: #000000;
        letter-spacing: 1px;
        text-transform: uppercase;
        line-height: 30px;
        min-height: 60px;
        max-height: 60px;
        overflow: hidden;
    }

    html.rtl .offers-cards-content h2 {
        text-align: right;
    }

    .offers-cards-content p {
        margin: 0;
        font-size: 18px;
        max-height: 24px;
        min-height: 24px;
        overflow: hidden;
        letter-spacing: 0.8px;
        font-family: 'Nobel-Book';
    }

    .offers-cards-content a {
        width: 170px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        background: #0F0F0F;
        text-transform: uppercase;
        position: relative;
        margin-top: 0.8rem;
    }

    html.rtl .offers-cards-content a {
        margin-left: auto;
    }

    .offers-cards-content a::after {
        content: "";
        width: 12px;
        height: 2px;
        background: #fff;
        position: absolute;
        top: 50%;
        right: 0;
    }

    @media screen and (max-width: 992px) {
        .offer-langing-content h3 {
            margin-bottom: 1.5rem;
        }

        .offer-langing-content h1 {
            font-size: 38px;
            letter-spacing: 3px;
            max-width: 25rem;
            line-height: 42px;
        }

        .news-categories {
            margin-bottom: 1rem;
        }

            .news-categories ul {
                font-size: 14px;
                gap: 1rem;
            }

        .offers-body {
            gap: 2rem 1rem;
        }

        .offers-cards {
            grid-column: span 12 / auto;
        }
    }

    @media screen and (max-width: 768px) {
        .offer-page-landing-section {
            max-height: 450px;
        }

        .offer-langing-content {
            width: 40%;
        }

            .offer-langing-content h3 {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .offer-langing-content h1 {
                font-size: 28px;
                letter-spacing: 2px;
                width: 20rem;
                line-height: 36px;
            }

        .news-categories ul {
            font-size: 12px;
            gap: 12px;
        }
        .offers-cards {
            grid-column: span 24 / auto;
        }

        .offers-cards-img {
            /*height: 300px;*/
            margin-bottom: 12px;
        }

        .offers-cards-content h2 {
            font-size: 18px;
            line-height: 24px;
            min-height: 48px;
            max-height: 48px;
        }

        .offers-cards-content p {
            font-size: 16px;
        }

        .offers-cards-content a {
            font-size: 14px;
            width: 150px;
            height: 40px;
        }

        .news-categories > ul {
            display: none;
        }

        .mobile-category-contianer {
            display: block;
        }

        .news-categories {
            gap: .3rem;
            justify-content: unset;
        }
    }

    @media screen and (max-width: 540px) {
        .offer-page-landing-section {
            max-height: 300px;
        }

        .offer-langing-content h3 {
            margin-bottom: 0.8rem;
        }

            .offer-langing-content h3::after {
                bottom: -4px;
                width: 65px;
            }

        .offer-langing-content h1 {
            font-size: 24px;
            width: 15rem;
            line-height: 28px;
        }

        .news-categories ul {
            display: none;
        }

        .news-categories > div span {
            font-size: 14px;
        }

        .offers-body {
            gap: 1.8rem 0rem;
        }

        

        .offers-cards-img {
            /*height: 220px;*/
            margin-bottom: 8px;
        }

        .offers-cards-content p,
        .offers-cards-content h2 {
            min-height: unset;
            max-height: unset;
        }

        .offers-filter-by-date {
            width: 50%;
            gap: 0;
            z-index: 1;
        }


        .mobile-category-contianer {
            width: 50%;
        }

            .mobile-category-contianer > a,
            .offers-by-category-option-dropdown.active,
            .offers-by-date-option-dropdown.active,
            .offers-filter-by-date > a {
                width: 100%;
                height: 35px;
            }

        .news-categories > div span {
            display: none;
        }

        .news-section {
            padding-top: 60px;
            padding-bottom: 80px;
        }
    }

    /* end of offers cards */

    /* search container */
    .search-container {
        width: 100%;
        height: 100vh;
        background-color: #0C0C0C;
    }

    .header-search-container {
        width: calc(100% - 300px);
        height: 100%;
        display: flex;
        align-items: center;
    }

        .header-search-container > img {
            width: 25px;
        }

        .header-search-container input {
            width: 100%;
            height: 100%;
            border: none;
            margin: 0;
            padding: 12px;
            color: #fff;
            font-size: 18px;
            background: transparent;
            font-family: 'Nobel-Book';
            letter-spacing: 1px;
        }

        .header-search-container svg {
            width: 25px;
            height: 25px;
            cursor: pointer;
        }

        .header-search-container input::placeholder {
            font-size: 14px;
        }

        .header-search-container input:focus {
            outline: none;
        }

    /* end of search container */

    /* search explore section */
    .search-page-explore-container {
        padding-top: 200px;
    }

    .explore-section {
        padding: 100px 0;
    }

    .explore-header {
        margin-bottom: 1.5rem;
    }

        .explore-header > span {
            display: block;
            font-size: 36px;
            font-family: 'Nobel-Regular';
            letter-spacing: 4px;
            color: #292929;
            margin-left: 60px;
            margin-bottom: 2.5rem;
            position: relative;
        }

            .explore-header > span:after {
                content: "";
                width: 100px;
                height: 1px;
                background: #292929;
                display: block;
                position: absolute;
                top: -8px;
            }

        .explore-header > p {
            font-size: 20px;
            font-family: 'Nobel-Book';
            letter-spacing: 0.5px;
            line-height: 22px;
            margin: 0;
            color: #292929;
            margin-left: 100px;
            max-width: 360px;
        }

    .explore-body {
        width: calc(100% - 7.5%);
        margin-left: auto;
    }

    .explore-card {
        width: 450px;
        height: 350px !important;
        overflow: hidden;
        position: relative;
        padding: 1rem 1.5rem;
    }

        .explore-card > img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
        }

    .explore-card-mask {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.3s ease-in-out;
        background: linear-gradient(15deg, #000000a6 0%, #24263417 100%);
    }

    .explore-card:hover .explore-card-mask {
        background-color: hsla(0, 0%, 6%, 0.799);
    }

    .explore-card:hover .explore-cards-content {
        transform: translateY(70px);
    }

    .explore-cards-content {
        position: relative;
        overflow: hidden;
        transform: translateY(170px);
        transition: all 0.3s ease-in-out;
    }

        .explore-cards-content button {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            border-radius: 15px;
            padding: 0 15px;
            font-size: 10px;
            color: #FFFFFF;
            background: transparent;
            border: thin solid #fff;
            font-family: 'Nobel-Book', sans-serif;
            text-transform: uppercase;
            margin-bottom: 1rem;
            letter-spacing: 1px;
            text-shadow: 0 0 2px #0000008c;
            box-shadow: 0 0 2px #0000008c;
        }

        .explore-cards-content span {
            display: block;
            font-size: 14px;
            color: #FFFFFF;
            font-family: 'Nobel-Book';
            margin-bottom: 1.5rem;
            text-shadow: 0 0 2px #0000008c;
        }

        .explore-cards-content > div h2 {
            font-size: 24px;
            font-family: 'Nobel-Book', sans-serif;
            color: #fff;
            letter-spacing: 2.5px;
            max-width: 530px;
            text-transform: uppercase;
            margin: 0;
            margin-bottom: 1.5rem;
            line-height: 30px;
            min-height: 90px;
        }

        .explore-cards-content > div a {
            width: 170px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            background: #ffffff26;
            border: thin solid #FFFFFF;
            text-transform: uppercase;
            position: relative;
        }

            .explore-cards-content > div a::after {
                content: "";
                width: 12px;
                height: 2px;
                background: #fff;
                position: absolute;
                top: 50%;
                right: 0;
            }

    .explore-body .slick-slide {
        margin: 0 8px;
    }

    .explore-body .slick-list {
        margin: 0 -8px;
    }

    /* end of search explore section */

    /* search results styles */
    .search-result-container {
        padding-top: 140px;
    }

    .result-header ul {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 2rem;
        list-style: none;
    }

        .result-header ul li {
            color: #fff;
            font-family: 'Nobel-Book';
            letter-spacing: 1px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 7px;
            cursor: pointer;
        }

            .result-header ul li div {
                width: 13px;
                height: 13px;
                border-radius: 100px;
                border: 2px solid #fff;
                background: transparent;
                position: relative;
            }

                .result-header ul li div::after {
                    content: "";
                    position: absolute;
                    height: 0;
                    width: 0;
                    top: 50%;
                    left: 50%;
                    border-radius: 100px;
                    transition: all 0.3s ease-in;
                    transform: translate(-47%, -53%);
                    background-color: #ffffff;
                }

            .result-header ul li.active div::after {
                height: 12px;
                width: 12px;
            }

    .result-header {
        margin-bottom: 2rem;
    }

        .result-header p {
            margin-top: 1rem;
            margin-bottom: 0;
            font-size: 18px;
            font-family: 'Nobel-Regular';
            color: #fff;
            letter-spacing: 1px;
        }

    .result-body {
        display: grid;
        gap: 2rem;
    }

    .results-list {
        width: 100%;
    }

        .results-list button {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 30px;
            border-radius: 15px;
            padding: 0 15px;
            font-size: 10px;
            color: #FFFFFF;
            background: transparent;
            border: thin solid #fff;
            font-family: 'Nobel-Book', sans-serif;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            letter-spacing: 1px;
            text-shadow: 0 0 2px #0000008c;
            box-shadow: 0 0 2px #0000008c;
        }

        .results-list a {
            font-size: 18px;
            font-family: 'Nobel-Regular';
            letter-spacing: 0.5px;
            color: #fff;
            text-transform: uppercase;
        }

        .results-list p {
            font-size: 20px;
            font-family: 'Nobel-Book';
            letter-spacing: 0.5px;
            color: #fff;
            margin: 0;
            margin-top: 0.5rem;
            max-width: 50rem;
        }

    /* end of search results */

    .text-start {
        text-align: left;
    }

    .text-center {
        text-align: center;
    }

    .text-end {
        text-align: right;
    }

    html.rtl .text-start {
        text-align: right;
    }

    html.rtl .text-end {
        text-align: left;
    }

    .post-section-start {
        margin-left: 60px !important;
        margin: auto;
    }

    .post-section-end {
        margin-left: auto;
        margin-right: 0;
    }

    .post-section-center {
        margin-left: auto;
        margin-right: auto;
    }

    .lg-outer {
        z-index: 100000 !important;
    }

    .lg-backdrop {
        z-index: 99999 !important;
    }

    .message-block {
        display: block !important;
    }
    .message-block.gy{
        margin: 3rem 0;
    }
    .message-block-title {
        font-size: 28px;
        margin: unset;  
    }

    .message-block-text {
        font-size: 20px;
    }

    .message-block.error .message-block-title {
        color: red;
    }

    .message-block.error .message-block-text {
        color: crimson;
    }

    .gm-style-iw-chr{
        position: absolute;
        right: 0;
    }

    html.rtl .gm-style-iw-chr{
        right: unset;
        left: 0;
    }

    .gm-style-iw.gm-style-iw-c button.gm-ui-hover-effect {
        background: white !important;
        margin: 15px !important;
        width: auto !important;
        height: auto !important;
    }

    .gm-style-iw.gm-style-iw-c button.gm-ui-hover-effect span{
        width: 16px !important;
        height: 16px !important;
        margin: 8px !important;
    }

    html.rtl .gm-style-iw.gm-style-iw-c button.gm-ui-hover-effect {
        left: -6px;
    }

    .gm-style .gm-style-iw-tc::after {
        background: #292929;
    }

    @media (max-width: 768px) {
        .message-block-text {
            font-size: 24px;
        }
    }

