﻿@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/


/*Start Root*/
:root {
    --main-color: #BC1219;
    --second-color: #FF0812;
}

/*End Root*/


/*Start Global*/



* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a,
a:visited,
a:hover {
    text-decoration: none
}

ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

p {
    line-height: 1.5;
}

video {
    max-width: 100%
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif !important;
}

.TahomaFonts {
    font-family: Tahoma !important
}

.img-reponsive {
    max-width: 100%;
    max-height: 100%
}

.text-center {
    text-align: center
}

.section-title {
    text-align: center
}


.section-suptitle {
    color: #333333;
    text-align: center
}

.lnkWhatsapp,
.lnkWhatsapp:visited {
    background-color: #25D366;
    box-shadow: 4px 4px 10px #1d1d1d;
    transition: all .5s ease-in-out;
    color: #fff;
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: inline-block;
    font-size: 40px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    padding: 3px;
    z-index: 5000;
    animation-name: whatsapp_animation;
    animation-timing-function: ease-in-out;
    animation-direction: alternate-reverse;
    animation-duration: .9s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.lnkWhatsapp:hover {
    transition-duration: .2s;
    animation-play-state: paused;
    width: 70px;
    height: 70px;
    font-size: 45px;
    padding: 5px;
    color: #fff;
}

@keyframes whatsapp_animation {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(25px);
    }
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-50 {
    margin-bottom: 25px;
}

@media only screen and (max-width: 575px) {
    .hidden-xs {
        display: none !important;
    }

    .center-xs {
        text-align: center;
    }

    .margin-center-xs {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .hidden-sm {
        display: none !important;
        background-color: green
    }

    .center-sm {
        text-align: center;
    }

    .margin-center-sm {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .hidden-md {
        display: none !important;
        background-color: blue;
    }

    .center-md {
        text-align: center;
    }

    .margin-center-md {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hidden-lg {
        display: none !important;
    }

    .center-lg {
        text-align: center;
    }

    .margin-center-lg {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media only screen and (min-width: 1200px) {
    .hidden-xl {
        display: none !important;
    }

    .center-xl {
        text-align: center;
    }

    .margin-center-xl {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}




/*Start border-pagination */
.b-pagination-outer {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
    display: flex;
    margin-bottom: 100px;
}

.pagination {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    justify-content: center;
    margin: 50px 0px;
}

.paginationli {
    display: inline;
}

.pagination li a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    border: 1px solid #ddd;
    float: left;
}

.pagination li a {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s
}

.pagination li.active a {
    background-color: var(--main-color);
    color: #fff;
}

.pagination li:hover:not(.active) {
    background: #ddd;
}

/*End border-pagination */



/*Start Navbar*/

.MainNavBarHead {
    background-color: #565656;
}

.MainNavBarHead ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding: 7px 0px
}

.MainNavBarHead ul li {
    margin: 0px 4px
}

.MainNavBarHead ul li a {
    color: #fff;
    display: block;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    padding: 0px 7px
}

.MainNavBarHead ul li a:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px)
}


#MainNavbar {
    background-color: var(--main-color) !important;
}

#MainNavbar .nav-link {
    color: #fff;
    position: relative;
}


#MainNavbar .nav-link::after,
#MainNavbar .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 10px;
    height: 2px;
    background-color: #FF0812;
    margin: 0px 0px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    opacity: 0;
}

#MainNavbar .nav-link::after {
    right: -4px;
}

#MainNavbar .nav-link::before {
    left: -4px;
}

#MainNavbar .nav-link:hover::before,
#MainNavbar .nav-link:hover::after {
    opacity: 1
}


#MainNavbar .navbar-brand {
    width: 110px;
    padding-left: 20px;
    text-align: left;
}

#MainNavbar .navbar-brand img {
    width: 80px;
    -webkit-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform: translateY(-60px);
    position: absolute
}

#MainNavbar .navbar-nav {
    gap: 11px
}

#MainNavbar .navbar-nav {
    margin-right: auto !important;
}

#MainNavbar .link-language {
    color: #fff
}

/*End Navbar*/
/*Start Banner*/
.main-banner .owl-item img {
    max-height: 80vh;
}

/*End Banner*/
/* Start Types of elevators */
.types_elevators {
    margin-top: 50px
}

.types_elevators .types_elevators_item {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
    overflow: hidden;
    margin: 15px 0px
}

.types_elevators .types_elevators_item::after {
    content: '';
    background-color: #00000054;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 2;
}

.types_elevators .types_elevators_item h4 {
    position: absolute;
    bottom: 20%;
    color: #fff;
    z-index: 5;
    width: 100%;
    text-align: center
}

.types_elevators .types_elevators_item a {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: var(--main-color);
    color: #fff;
    z-index: 5;
    width: 180px;
    text-align: center
}

.types_elevators .types_elevators_item a span {
    background-color: var(--second-color);
    display: inline-block;
    width: 20px;
    text-align: center;
    position: absolute;
    left: 0px
}



@media(min-width:1200px) {
    .types_elevators .types_elevators_item img.large {
        height: 292.89px;
        width: 100%;
        max-height: unset !important;
        max-width: unset !important;
    }
}

/*End Types of elevators*/
/*Start Our Product*/
.our_product {
    margin-top: 50px
}

.our_product .our_product_types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.our_product .our_product_types li {
    width: 91px;
    padding: 7px;
    text-align: center;
    -webkit-box-shadow: 5px 5px 5px #d1d1d1, -5px -5px 5px #d1d1d1;
    box-shadow: 5px 5px 5px #d1d1d1, -5px -5px 5px #d1d1d1;
    border-radius: 15px;
    margin: 0px 10px;
    cursor: pointer
}

.our_product .our_product_types li.active {
    background-color: var(--main-color);
    color: #fff
}

.our_product .our_product_types li a,
.our_product .our_product_types li a:hover,
.our_product .our_product_types li a:visited {
    color: unset;
}



@media(max-width:500px) {
    .our_product .our_product_types li {
        margin: 0px 2px;
        width: auto;
        min-width: 60px;
    }
}

.our_product .products_list {
    margin-top: 50px
}

.products_list .product_item {
    border: 1px solid #8C8C8C;
    margin: 30px 0px;
    position: relative;
}

.products_list .product_item img.product_item_img {
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    max-height: 180px;
}

.products_list .product_item:hover img.product_item_img {
    -webkit-transform: scale(1.1) rotate(5deg);
    -ms-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg)
}

.products_list .product_item>div:first-of-type {
    height: 220px;
    position: relative;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.products_list .product_item>div:first-of-type a {
    display: inline-block
}

.products_list .product_item>div:nth-of-type(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.products_list .product_item>div:nth-of-type(2) div {
    text-align: center;
    width: 33.3%;
}

.products_list .product_item>div:nth-of-type(2) div p {
    font-size: 10px;
    margin-bottom: 2px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.products_list .product_item>div:nth-of-type(2) div span {
    font-size: 13px;
    font-weight: bold;
    font-family: 'tahoma';
}

.products_list .product_item>div:last-of-type {
    background-color: #8C8C8C;
    text-align: center
}

.products_list .product_item>div:last-of-type a {
    color: #fff;
    display: block;
    padding: 5px 0px;
}



.products_list .product_item .product_item_links {
    min-width: 125px;
    text-align: center;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 5;
    color: #fff;
    font-size: 11.5px;
}

.products_list .product_item .product_item_links span {
    display: inline-block;
    width: 20px;
    text-align: center;
    position: absolute;
    left: 0px;
}


.products_list .product_item .product_item_links:first-of-type {
    background-color: var(--main-color);
}


.products_list .product_item .product_item_links:first-of-type span {
    background-color: var(--second-color);
}


.products_list .product_item .product_item_links:nth-of-type(2) {
    top: 23px;
    background-color: #202020;
}


.products_list .product_item .product_item_links:nth-of-type(2) span {
    background-color: #686868;
}




/*End Our Product*/
/*Start galary*/
.galary {
    margin-top: 50px
}

/*End galary*/
/*Start Media center*/
.media_center {
    margin-top: 50px
}

.media_center .media_center-banner {
    margin-top: 27px
}

.media_center video+p {
    font-size: 12px;
}

.media_center .media_center-banner .item {
    padding: 0px 10px;
}

/*End Media center*/
/*Start our brand*/
.our_brand {
    position: relative;
    margin-top: 50px;
}

.our_brand::after {
    content: '';
    background-color: #000000a1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    z-index: 2;
}

.our_brand .our_brand_image {
    position: absolute;
    z-index: 5;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    top: 85px;
}

/* .our_brand h1 {
        z-index: 5;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 16%;
        color: #fff;
    }*/


/*End our brand*/
/*Start our brand icon*/
.our_brand_icon {
    margin-top: 25px;
    margin-bottom: 50px;
}

.our_brand_icon .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.our_brand_icon img {
    max-width: 160px
}

@media(max-width:860px) {
    .our_brand .our_brand_image {
        top: 50%;
        /* right: 40px;*/
        -webkit-transform: translateY(-50%) translateX(50%);
        -ms-transform: translateY(-50%) translateX(50%);
        transform: translateY(-50%) translateX(50%);
        max-height: calc(100% - 10px);
    }

    /*
    body.rtl .our_brand .our_brand_image {
        right: unset;
        left: 40px;
    }*/

    .our_brand_icon .container-fluid {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    /*   .our_brand h1 {
        font-size: 18px
    }*/
}

/*End our brand*/
/*Start FormPage*/
.form_title {
    background-color: #D8D8D8;
    text-align: center;
    font-size: 25px;
    padding: 2px 0px;
    color: #565656;
    margin-top: 40px;
}

.FormPage {
    padding: 40px 0px;
}

.FormPage .input_style {
    width: 100%;
    display: block;
    outline: none;
    border: 1px solid #707070;
    padding: 5px;
}

.FormPage .button_style {
    background-color: var(--main-color);
    color: #fff;
    outline: none;
    display: inline-block;
    min-width: 145px;
    border: 1px solid var(--main-color);
    padding: 4px 0px;
    margin-top: 15px;
}

/*End FormPage*/
/*Start Who Are We*/
.title_section {
    background: url(../imgs/who_are_we_banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.title_section h1 {
    font-weight: bold;
}

.who_are_we_information p {
    font-size: 15px;
    margin-top: 15px;
    line-height: 2;
}

.who_are_we_feature {
    margin-top: 50px;
}

.who_are_we_feature>div {
    text-align: center
}

.who_are_we_feature>div h4 {
    font-weight: bold;
    margin-bottom: 2px;
}

.who_are_we_feature>div p {
    font-size: 14px;
}

.who_are_we_feature img {
    height: 60px;
    margin-bottom: 7px;
}

.who_are_we_article {
    background-color: #dfdddd;
    margin-top: 70px;
}

.who_are_we_article>div {
    background: url(../imgs/map.png);
    padding-top: 50px;
    padding-bottom: 50px;
}

.who_are_we_article article .who_are_we_article_title {
    background-color: #fff;
    display: inline-block;
    font-size: 25px;
    margin-bottom: 15px;
    padding-right: 10px;
    color: #797979;
}

.who_are_we_article article.article_red .who_are_we_article_title {
    color: var(--main-color);
}

.who_are_we_article article .who_are_we_article_title img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    height: 44px;
}

.who_are_we_article article .who_are_we_article_text {
    font-size: 18px;
    line-height: 1.8;
}

.who_are_we_article article .who_are_we_article_text:before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 21px;
    background-color: #797979;
}

.who_are_we_article article.article_red .who_are_we_article_text:before {
    background-color: var(--main-color);
}

/*End Who Are We*/

/*Start Our Product*/
.search_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #565656;
}

.search_container input {
    display: inline-block;
    outline: none;
    border: none;
    width: calc(100% - 50px);
    font-size: 17px;
    padding: 5px;
}

.search_container button {
    color: #fff;
    background-color: #565656;
    outline: none;
    border: none;
    width: 50px;
    height: 50px;
}

.sort_container {
    background-color: #d8d8d8;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 15px;
}

.sort_container select {
    background-color: transparent;
    outline: none;
    border: none;
    color: #565656;
    font-weight: bold;
}

.category_container .category_container_title {
    border-bottom: 1px solid #999999;
    padding-bottom: 2px;
}

.category_container .category_container_title span {
    color: var(--main-color);
    border-bottom: 2px solid var(--main-color);
    font-size: 18px;
    font-weight: bold;
}

.category_container .category_tap_title {
    color: var(--main-color);
    font-weight: bold;
    margin-top: 21px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.category_container .category_tap_title:before {
    content: '>';
    padding: 0px 5px;
    display: inline-block
}

.category_container .category_tap_title.active:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.category_container ul:not(.open) {
    display: none;
}

.category_container ul li {
    margin: 3px 0px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.category_container ul li:hover {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px)
}

.category_container ul li:before {
    content: '-';
    color: #888888;
}

.category_container ul li a {
    color: #888888;
    font-weight: bold;
    display: inline-block;
}


.product_review_modal .modal-content {
    border-radius: 50px;
    border: 2px solid #777575;
    overflow: hidden
}

.product_review_modal .modal-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.product_review_modal .modal-content .product_review_data {}

.product_review_modal .modal-content .product_review_data div {
    padding: 5px 0px;
}

.product_review_modal .modal-content .product_review_data div:nth-child(odd) {
    color: #676767;
}


.product_review_modal .modal-content .product_review_type {
    background-color: #8C8C8C;
    color: #fff;
    position: absolute;
    right: 0px;
    bottom: 43px;
    min-height: 45px;
    padding: 5px 7px;
    min-width: 130px;
    font-weight: bold;
    opacity: .8;
}

.product_review_modal .modal-content .product_review_links {
    min-width: 125px;
    text-align: center;
    position: absolute;
    right: 0px;
    top: 65px;
    z-index: 5;
    color: #fff;
    font-size: 15px;
    background-color: var(--main-color);
}


.product_review_modal .modal-content .product_review_links span {
    display: inline-block;
    width: 20px;
    text-align: center;
    position: absolute;
    right: 0px;
    background-color: var(--second-color);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.product_review_modal .close {
    position: absolute;
    left: 39px;
}

@media(max-width:991px) {


    .product_review_modal .modal-content .modal-body .row>div:last-of-type {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (min-width: 576px) {
    .product_review_modal .modal-dialog {
        max-width: 800px;
        margin: 1.75rem auto;
    }
}

/*End Our Product*/
/*Start installation request*/
.installation_request_modal .input_style {
    width: 100%;
    display: block;
    outline: none;
    border: 1px solid #707070;
    padding: 5px;
}

.installation_request_modal textarea.input_style {
    resize: none
}

.installation_request_modal .button_style {
    background-color: var(--main-color);
    color: #fff;
    outline: none;
    display: inline-block;
    min-width: 145px;
    border: 1px solid var(--main-color);
    padding: 4px 0px;
    margin-top: 15px;
    margin-right: 3px;
    margin-left: 3px;
}

.installation_request_modal .button_style.close_button {
    background-color: transparent;
    color: #000;
}

.installation_request_modal .installation_request_modal_title {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 25px;
}

.installation_request_modal .installation_request_modal_title:before,
.installation_request_modal .installation_request_modal_title:after {
    content: '';
    display: inline-block;
    background-color: var(--main-color);
    width: 25px;
    height: 3px;
    margin-bottom: 4px;
    margin-right: 5px;
    margin-left: 5px;
}

/*End installation request*/
/*Start MainFooter*/
.MainFooter {
    background-color: #212121;
    color: #fff;
}

.MainFooter .container .row {
    padding: 55px 0px;
}

.MainFooter .MainFooterLogo_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.MainFooter .MainFooterLogo_container div b {
    display: block;
    color: #fff;
}

.MainFooter .MainFooterLogo {
    width: 75px;
}

.MainFooter .MainFooter_description {
    font-size: 12px;
    margin-top: 18px;
}

.MainFooter .MainFooter_description p {
    margin-bottom: 3px;
}

.MainFooter .footer_section_title {
    border-left: 2px solid #fff;
    padding: 0px 5px;
    margin-bottom: 25px;
}



.MainFooter .footer_list li a {
    color: #fff;
    font-size: 12px;
    display: inline-block;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.MainFooter .footer_list li a:hover {
    -webkit-transform: translateX(3px);
    -ms-transform: translateX(3px);
    transform: translateX(3px)
}

.MainFooter .footer_list li a img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-right: 3px;
    width: 7px;
}

.MainFooter .company_info {
    padding-bottom: 15px;
    text-align: center;
    margin: 0px;
}

.MainFooter .company_info a {
    color: var(--second-color)
}

@media(max-width:992px) {
    .MainFooter .footer_section_title {
        text-align: center
    }

    .MainFooter .footer_list {
        text-align: center
    }

    .MainFooter .MainFooter_description {
        text-align: center
    }

    .MainFooter .MainFooterLogo_container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .MainFooter>.container>.row>div:not(:last-of-type) .footer_list li a {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 8px auto;
        grid-template-columns: 8px auto;
    }

    .MainFooter .footer_section_title {
        margin-top: 25px;
    }

    .MainFooter>.container>.row>div:first-of-type {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .MainFooter>.container>.row>div:nth-of-type(2) {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .MainFooter>.container>.row>div:nth-of-type(3) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .MainFooter>.container>.row>div:last-of-type {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}

@media(max-width:767px) {
    .MainFooter .footer_list:not(.open) {
        display: none
    }

    .MainFooter .footer_list {
        background-color: #393939;
        padding: 5px;
    }

    .MainFooter .footer_section_title:after {
        content: '>';
        display: inline-block;
        position: absolute;
        right: 20px;
        font-size: 25px;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    body.rtl .MainFooter .footer_section_title:after {
        right: unset;
        left: 20px;
    }

    .MainFooter .footer_section_title {
        border: none;
        border-bottom: 1px solid #6e6e6e;
        padding-bottom: 12px;
        margin-bottom: 2px
    }

    .MainFooter .footer_list li a {
        margin: 15px 0px;
    }
}

/*End MainFooter*/



/* FAQ card */
.faq-content {
    padding: 9px 25px 3rem;
    margin: 50px 0px 70px 0px;
}

.faq-content h1 {
    font-size: 32px;
    text-align: center;
    color: var(--primary-dark-color);
}

.faq-accordion {
    padding: 8px 0;
    border-bottom: 1px solid hsl(240, 5%, 91%);
}


input.tgg-title {
    appearance: unset;
    all: unset;
}

.faq-accordion-title label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.faq-accordion-title h2 {
    font-size: 17px;
    font-weight: 400;
    color: var(--neutral-dark-color);
}

.faq-accordion-title span {
    margin-left: auto;
    transition: transform .4s ease-in-out;
    color: var(--main-color);
}


.faq-accordion-content {
    color: var(--neutral-soft-color);
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease-in-out;
}


.faq-accordion-title:hover h2 {
    color: var(--primary-soft-color)
}

.faq-accordion .tgg-title:checked+div>label>h2 {
    font-weight: 700;
}

.faq-accordion .tgg-title:checked+div>label>span {
    will-change: transform;
    transform: rotate(180deg);
}

.faq-accordion .tgg-title:checked~.faq-accordion-content {
    will-change: max-height;
    max-height: 80px;
}


/* FAQ card */


/*Start RTL*/
body.rtl {
    direction: rtl;
    font-family: 'Tajawal', sans-serif !important;
    text-align: right
}

body.rtl #MainNavbar .navbar-nav {
    margin-right: unset !important;
    margin-left: auto !important;
}

body.rtl #MainNavbar .navbar-brand {
    text-align: right;
}

body.rtl .types_elevators .types_elevators_item {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: 30px;
}

body.rtl .types_elevators .types_elevators_item a {
    left: unset;
    right: 0px;
}

body.rtl .types_elevators .types_elevators_item a span {
    right: 0px;
    left: unset;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

body.rtl .products_list .product_item .product_item_links {
    left: unset;
    right: 0px
}

body.rtl .products_list .product_item .product_item_links span {
    left: unset;
    right: 0px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

body.rtl .our_brand h1 {
    right: 16%;
    left: unset;
}

body.rtl .MainFooter .footer_section_title {
    border-left: unset;
    border-right: 2px solid #fff;
}

body.rtl .MainFooter .footer_list li a img {
    margin-right: unset;
    margin-left: 3px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset
}

body.rtl .who_are_we_article article .who_are_we_article_title img {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

body.rtl .who_are_we_article article .who_are_we_article_title {
    padding-right: unset;
    padding-left: 10px
}

body.rtl .category_container ul li:hover {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px)
}

body.rtl .MainFooter .footer_list li a:hover {
    -webkit-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px)
}

body.rtl .product_review_modal .modal-content .product_review_links,
body.rtl .product_review_modal .modal-content .product_review_type,
body.rtl .product_review_modal .modal-content .product_review_links span {
    right: unset;
    left: 0px;
}

body.rtl .product_review_modal .modal-content .product_review_links span {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

body.rtl .product_review_modal .close {
    left: unset;
    right: 39px;
}

body.rtl .faq-accordion-title span {
    margin-right: auto;
    margin-left: unset;
}

/*End RTL*/