*,
* button:focus {
    outline: 0;
}

// ------------------ colors -------------------
$subcolor: #00a1ed;
$maincolor: #15253c;

.main_color {
    color: $maincolor !important;
}

.sub_color {
    color: $subcolor !important;
}

.main_back {
    background-color: $maincolor !important;
    border-color: $maincolor !important;
}

.sub_back {
    background-color: $subcolor !important;
    border-color: $subcolor !important;
}

html::-webkit-scrollbar {
    height: 20px;
    width: 10px;
    background: #f1f1f1;
    border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
    background: #999;
    -webkit-border-radius: 0;
    border-radius: 10px;
}

html::-webkit-scrollbar-corner {
    background: #999;
    border-radius: 10px;
}

body {
    // font-family: 'Noto Sans Arabic', sans-serif;
    font-family: "Tajawal", sans-serif;
    text-decoration: none;
    font-size: 0.9em;
    overflow-x: hidden;
    position: relative;
    background-color: #fff;
    font-weight: 400;
    direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
}

body a:hover {
    text-decoration: none;
}

body a:focus {
    outline: 0;
}

body ul {
    list-style-type: none;
    margin: 0;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    transition: all 0.6s ease;
    outline: 0;
}

.form-control,
.form-select {
    min-height: 50px;
    background-color: #fff;
    border: 1px solid #9993;
    padding: 5px 15px;
    width: 100%;
    border-radius: 0;
    &:focus {
        box-shadow: none;
    }
}

/* ==================== global style ============================== */

a,
span,
img {
    display: inline-block;
    transition: all 0.3s ease;
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #999;
}

ul {
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.text,
.text * {
    font-size: 15px;
    line-height: 2;
    color: #1b1b1b;
}

small.text {
    font-size: 12px;
}

.bg_gray {
    background-color: #f5f6f8 !important;
}

.section_padding {
    padding: 50px 0;
}

.section_head {
    position: relative;
    margin-bottom: 30px;
    h6{
        color: $subcolor;
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 5px;
    }
    h2 {
        font-size: 30px;
        color: #2e2e2e;
        margin-bottom: 15px;
    }
    .text{
        color: #999;
    }
}

@-webkit-keyframes slide-left {
    0% {
        right: 0%;
    }
    100% {
        right: 100%;
    }
}
@keyframes slide-left {
    0% {
        right: 0%;
    }
    100% {
        right: 100%;
    }
}

.ob_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ob_cont {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

// ------------ swiper pag & nav -----------
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background-color: $subcolor;
    width: 20px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    &:hover {
        background-color: $subcolor;
        color: #fff;
    }
}

.swiper-container {
    padding-bottom: 80px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: $maincolor;
    font-size: 17px;
    font-weight: bold;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 50%;
    right: auto;
    transform: translateX(-120%);
    bottom: 0;
    top: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 50%;
    left: auto;
    transform: translateX(120%);
    bottom: 0;
    top: auto;
}

// ------------ buttons ------------

.butn {
    border: 1px solid $maincolor;
    padding: 12px 45px;
    border-radius: 10px;
    text-align: center;
    background-color: $maincolor;
    font-size: 14px;
    span {
        color: #fff;
        font-weight: 600;
    }

    &:hover {
        background-color: transparent;
        span {
            color: $maincolor;
        }
    }

    &.sub_butn {
        border: 1px solid $subcolor;
        background-color: $subcolor;
        &:hover {
            background-color: transparent;
            span {
                color: $subcolor;
            }
        }
    }

    &.brd_butn {
        border: 1px solid $maincolor;
        background-color: transparent;
        span {
            color: $maincolor;
        }
        &:hover {
            background-color: $maincolor;
            span {
                color: #fff;
            }
        }
    }

    &.radius {
        border-radius: 30px;
    }
}

// --------------- search --------------

.searching {
    position: fixed;
    background: #000000f1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
    form {
        margin-top: 40vh;
        width: 100%;
        .form-group {
            position: relative;
            width: 50%;
            min-width: 300px;
            margin: auto;
            border-radius: 50px;
            overflow: hidden;
            input {
                width: 100%;
                min-height: 50px;
                padding: 15px;
            }
            button {
                position: absolute;
                left: 0;
                top: 0;
                width: 60px;
                height: 100%;
                background-color: $maincolor;
                color: #fff;
                border: 0;
                font-size: 20px;
            }
        }
    }
    .close {
        position: absolute;
        top: 30px;
        left: 60px;
        color: #fff;
        opacity: 1;
        cursor: pointer;
    }
    input [type="text"] {
        background-color: #fff;
        height: 60px;
        padding: 16px 20px;
        font-size: 14px;
        border-radius: 0;
        border: 0;
        width: 100%;
    }

    .butn {
        background-color: #ecc235;
        border: 0;
        border-radius: 44px;
        padding: 16px 50px;
        font-size: 11px;
        color: #161414;
        &.sub_butn {
            background-color: #e04f3f;
            color: #fff;
        }
    }
}

// --------------- navbar  ----------------

.dropdown-toggle::after {
    position: relative;
    top: 5px;
    opacity: 0.5;
    display: none;
}
.dropdown-menu {
    min-width: 170px;
    padding: 10px 0;
    border-radius: 15px;
    border: 0;
    box-shadow: 0 0 20px #0001;
    top: calc(100% + 10px);
    .dropdown-item {
        padding: 6px 20px;
        font-size: 13px;
    }
}

// ----------- navbar ----------
.navbar {
    background-color: $maincolor;
    .navbar-brand {
        img {
            width: 140px;
        }
    }
    .navbar-nav {
        .nav-item {
            .nav-link {
                position: relative;
                margin: 0 12px;
                color: #fff;
                &::before {
                    position: absolute;
                    content: "";
                    right: 20%;
                    bottom: -5px;
                    width: 60%;
                    height: 20px;
                    border-radius: 50%;
                    border-bottom: 2px solid transparent;
                    transition: all 0.3s ease;
                }
                &.active,
                &:hover {
                    color: $subcolor;
                    &::before {
                        border-color: $maincolor;
                    }
                }
            }
        }
    }
    .nav_icons {
        display: flex;
        align-items: center;
        .icon {
            margin: 0 10px;
            font-size: 17px;
            color: #fff;
            i {
                height: 20px;
            }
        }
        .butn {
            border-color: #fff4;
            padding: 12px 15px;
            margin: 0 3px;
            span {
                color: #fff;
                font-weight: 400;
            }
            &:hover {
                background-color: #fff;
                span {
                    color: $maincolor;
                }
            }
            &.lang {
                background-color: #fff;
                span {
                    color: $maincolor;
                }
            }
        }
    }
    &.inner_navbar {
        background-color: #fff;
        .navbar-nav {
            .nav-item {
                .nav-link {
                    position: relative;
                    margin: 0 12px;
                    color: #555;
                    &::before {
                        display: none;
                    }
                    &.active,
                    &:hover {
                        color: $subcolor;
                        &::before {
                            border-color: $maincolor;
                        }
                    }
                }
            }
        }
        .nav_icons {
            .icon,
            .text-light {
                color: $maincolor !important;
            }
            .butn.sub_butn {
                border-color: $maincolor;
                background-color: $maincolor;
            }
        }
    }
}

/* --------------- header --------------- */
header {
    background-color: $maincolor;
    position: relative;
    padding: 50px 0 0;
    &::after {
        position: absolute;
        content: "";
        right: 0;
        bottom: -3px;
        background-color: #fff;
        width: 100%;
        height: 100px;
        clip-path: polygon(0 0, 100% 37%, 100% 100%, 0 100%);
        z-index: 0;
    }
    .info {
        padding-top: 5vw;
        position: relative;
        z-index: 5;
        h2 {
            font-size: 30px;
            color: #fff;
        }
        .text {
            font-size: 16px;
            color: #fff;
            opacity: 0.65;
            margin: 15px 0;
        }
        .butn {
            margin-top: 30px;
        }
    }
    .img {
        height: 450px;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        z-index: 5;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
}

/* ------------ about style ------------- */
.about {
    .info {
        .nav {
            button {
                background: transparent;
                border: 0;
                border-bottom: 1px solid #9993;
                padding: 12px 20px;
                &.active {
                    color: $subcolor;
                    border-bottom: 2px solid $subcolor;
                }
            }
        }
        .tab-content {
            margin-top: 30px;
            .text {
                font-size: 15px;
                line-height: 40px;
                color: #707070;
            }
        }
        .butn {
            margin: 30px 0 0 5px;
        }
    }
    .img {
        height: 350px;
        border-top-right-radius: 30px;
        overflow: hidden;
        position: relative;
        padding-top: 20px;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: $subcolor;
            font-size: 70px;
            z-index: 10;
        }
        .exp {
            position: absolute;
            top: 0;
            right: 0;
            padding: 30px;
            width: 120px;
            background: $maincolor;
            color: #fff;
            font-size: 25px;
            text-align: center;
            border-top-right-radius: 30px;
            border-bottom-left-radius: 100px;
            border-bottom-right-radius: 100px;
            &::after {
                position: absolute;
                content: "";
                top: 0;
                left: -20px;
                width: 20px;
                height: 20px;
                background: $maincolor;
                opacity: 25%;
                clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
            }
        }
    }
}
/* ------------ products style ------------- */
.product_box {
    position: relative;
    background-color: #fff;
    margin: 30px 15px;
    display: block;
    // filter: drop-shadow(0px 10px 15px rgba(164, 164, 164, 0.2));
    transition: all 0.3s ease;
    .img {
        text-align: center;
        display: block;
        height: 230px;
        overflow: hidden;
        position: relative;
        &:hover {
            img {
                // transform: scale(1.4);
            }
            .fancy {
                opacity: 1;
            }
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 3s ease;
        }
        .fancy {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            z-index: 5;
            opacity: 0;
        }
    }
    .info {
        padding: 20px;
        small {
            color: #999;
            font-size: 14px;
        }
        h6 {
            color: #666;
            font-weight: 500;
            font-size: 12px;
            margin: 10px 0 10px 15px;
            i {
                color: $subcolor;
            }
        }
        h5 {
            color: $maincolor;
            font-size: 25px;
        }
        .price {
            color: $subcolor;
            font-size: 22px;
            font-weight: bold;
        }
    }

    .fav_icon {
        position: absolute;
        top: 15px;
        right: 30px;
        z-index: 2;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: #fff;
        color: #9995;
        i {
            margin: 12px 14px;
            display: inline-block;
            font-size: 16px;
        }

        &.active,
        &:hover {
            color: red;
        }
    }
}

.prog_banner_slider {
    .img {
        display: block;
        height: 300px;
        overflow: hidden;
        position: relative;
        border-radius: 20px;
        &::after {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: $maincolor;
            opacity: 0.6;
        }
        &:hover {
            img {
                transform: scale(1.4);
            }
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 5s ease;
        }
        .info {
            position: absolute;
            z-index: 4;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            background-color: $maincolor;
            padding: 20px 30px;
            border-radius: 20px;
            h5 {
                color: #fff;
                font-size: 18px;
            }
        }
    }
    &.det_slider {
        // margin-bottom: 50px;
        h2 {
            border-bottom: 1px solid #9993;
            padding-bottom: 20px;
        }
        .img {
            height: 575px;
            &::after {
                opacity: 0.3;
            }
        }
    }
}

.chart_filter {
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    margin: 15px 1vw;
    .form-group {
        label {
            margin-bottom: 15px;
        }
    }
}

/* ------------ features style ------------- */
.features {
    .feat_box {
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 0 15px #0001;
        text-align: center;
        padding: 30px 40px;
        margin: 12px;
        min-height: 270px;
        .img {
            img {
                width: 60px;
                height: 60px;
                object-fit: contain;
            }
        }
        .info {
            margin-top: 20px;
            h6 {
                font-size: 18px;
                line-height: 30px;
                color: #242321;
                font-weight: 400;
                margin-bottom: 10px;
            }
            .text {
                font-size: 14px;
                color: #929091;
            }
        }
    }
}
/* ------------ numbers style ------------- */
.numbers {
    position: relative;
    .content {
        .top_cont {
            display: flex;
            justify-content: center;
            .icon {
                margin: 0 15px;
            }
            .inf {
                h5 {
                    color: $subcolor;
                    font-size: 25px;
                    font-weight: 500;
                    span {
                        font-weight: 400;
                    }
                }
                p {
                    margin-top: 10px;
                    font-size: 18px;
                    line-height: 35px;
                    color: #fff;
                    font-weight: 300;
                }
            }
        }
        .num_cont {
            margin-top: 40px;
            .num_item {
                text-align: center;
                h2 {
                    font-size: 30px;
                    line-height: 35px;
                    color: #fff;
                    margin-bottom: 15px;
                }
                p {
                    font-size: 18px;
                    line-height: 33px;
                    color: #fff;
                    opacity: 0.59;
                }
            }
        }
    }
    .cup_shap {
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.03;
        pointer-events: none;
    }
}
/* ------------ cons_request style ------------- */
.cons_request {
    background-image: url(../images/cons.png);
    background-size: cover;
    background-repeat: no-repeat;
    .form {
        padding: 30px;
        background-color: #fff;
        .top_cont {
            margin-bottom: 15px;
            h3 {
                color: #0b1313;
                font-size: 25px;
                margin-bottom: 15px;
            }
            .text {
                color: #4d504b;
            }
        }
        .form-group {
            margin-bottom: 5px;
        }
    }
}
/* ------------ footer style ------------- */
footer {
    background: $maincolor;
    padding-top: 40px;
    .title {
        color: #fff;
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 17px;
    }
    .info {
        .logo {
            margin-bottom: 20px;
            width: 120px;
        }
        .text {
            color: #fff;
            opacity: 0.8;
            font-size: 13px;
            margin: 25px 0;
        }
    }
    .socail_icons {
        margin-top: 30px;
        a {
            color: #fff !important;
            opacity: 0.8;
            font-size: 15px;
            margin-left: 15px;
        }
    }
    .links {
        margin-top: 30px;
        a {
            color: #fff;
            opacity: 0.8;
            font-size: 13px;
            margin: 8px 0;
            i {
                color: $maincolor;
            }
        }
    }

    .foot {
        padding: 15px 0;
        margin-top: 20px;
        border-top: 1px solid #9993;
        p,
        a {
            color: #fff;
            opacity: 0.8;
            margin: 0;
            // margin: 0 15px;
        }
    }
    .subscribe_form {
        .form-group {
            margin: 20px 0 10px;
            input {
                width: 100%;
                min-height: 45px;
                background-color: #fff;
                border-radius: 8px;
                padding: 0 15px;
                border: 1px solid #9992;
            }
        }
    }
}

/* ------------ modals style ------------- */
.modal-content {
    border: 0;
    padding: 3vw;
    border-radius: 30px;
}

.order_modal .check_icon {
    font-size: calc(3vw + 20px);
    color: $subcolor;
}
.order_modal .check_inf {
    line-height: 1.6;
    color: #444;
    font-size: calc(0.6vw + 12px);
    font-weight: 400;
}

/* -------------------- pages style ------------------------- */
// ----------- inner header -----------
.inner_header {
    position: relative;
    padding: 15px 0;
    background-color: $maincolor;
    position: relative;
    border-top: 1px solid #fff1;
    overflow: hidden;
    .inner_shap {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 150px;
        height: auto;
    }
    .links {
        position: relative;
        z-index: 2;
        margin-bottom: 15px;
        li {
            display: inline-block;
            padding: 0 10px;
            position: relative;
            margin: 0 5px;
            &::after {
                position: absolute;
                content: "";
                left: -16px;
                bottom: 10px;
                width: 12px;
                height: 3px;
                background-size: contain;
                background-repeat: no-repeat;
                background-color: #fff;
            }
            a {
                color: #fff;
                i {
                    font-size: 18px;
                }
            }
            &:last-of-type {
                &::after {
                    display: none;
                }
            }
        }
    }
    h4 {
        color: #fff;
        // margin-bottom: 30px;
        padding: 0 10px;
        font-size: 22px;
        text-align: initial;
        position: relative;
        z-index: 2;
        text-align: center;
        // margin-top: 60px;
    }
    p {
        position: relative;
        z-index: 2;
    }

    &.back_img {
        background: url(../images/contact.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        &::after {
            position: absolute;
            content: "";
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: $maincolor;
            opacity: 0.7;
        }
        .inner_shap {
            display: none;
        }
    }
}

/* ------------ project details style ------------- */
.proj_det {
    .img_card {
        padding: 10px;
        border: 1px solid #9993;
        border-radius: 15px;
        background-color: #fcfcfc;
        margin-top: 90px;
        .img {
            position: relative;
            height: 300px;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            iframe {
            }
            .float_icons {
                position: absolute;
                right: 15px;
                top: 15px;
                a {
                    margin: 5px;
                    width: 40px;
                    height: 40px;
                    background-color: #fff;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    &:hover {
                        background-color: $subcolor;
                        color: #fff;
                    }
                }
            }
        }
        .info {
            padding: 15px 10px;
            .r_side {
                h4 {
                    font-weight: 500;
                    font-size: 25px;
                    color: #0b1313;
                    margin-bottom: 0;
                }
                h6 {
                    font-weight: 300;
                    font-size: 20px;
                    color: #545d5d;
                }
            }
            .l_side {
                display: flex;
                justify-content: flex-end;
                .cont {
                    text-align: center;
                    p {
                        font-size: 17px;
                        color: #252525;
                    }
                    .price {
                        font-weight: 600;
                        font-size: 40px;
                        color: #00a1ed;
                        small {
                            color: #222;
                            font-size: 30px;
                        }
                    }
                }
            }
        }
        .socail_icons {
            margin-top: 25px;
            a {
                margin-left: 15px;
                i {
                    font-size: 16px;
                    width: 35px;
                    height: 35px;
                    border-radius: 8px;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    color: #fff;
                    background-color: $maincolor;
                    transition: all 0.3s ease;
                    &.bi-facebook {
                        &:hover {
                            background-color: #3d5a96;
                        }
                    }
                    &.bi-instagram {
                        &:hover {
                            background-color: #c21975;
                        }
                    }
                    &.bi-snapchat {
                        &:hover {
                            background-color: #fffc00;
                            color: $maincolor;
                        }
                    }
                    &.bi-twitter {
                        &:hover {
                            background-color: #2aa3ef;
                        }
                    }
                }
            }
        }
    }
    .details {
        padding: 30px;
        border: 1px solid #9992;
        border-radius: 5px;
        .form {
            margin-top: 20px;
        }
        .form-group {
            margin: 12px 0;
        }
    }
}

.add_more {
    display: block;
    font-size: 14px;
    margin-top: 10px;
    .qt-plus,
    .qt-minus {
        width: 40px;
        height: 40px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        color: $maincolor;
        font-size: 16px;
        vertical-align: middle;
        background-color: #ececec;
        i {
            font-weight: bold;
            font-size: 20px;
        }
    }
    .cen_qt {
        padding: 5px;
        text-align: center;
        background: #fafafa;
        display: inline-block;
        .qt {
            font-size: 20px;
            font-weight: bold;
            line-height: 1.44;
            color: #000;
            vertical-align: middle;
            margin-right: 5px;
            margin-left: 5px;
            min-width: 30px;
            text-align: center;
        }
    }
}

.proj_more_det {
    padding: 30px 0;
    .content {
        background-color: #fff;
        margin: 30px 0;
        .nav-tabs {
            border-bottom: 1px solid #9991;
            background-color: #fcfcfc;
            padding: 10px;
            .nav-item {
                .nav-link {
                    border: 0;
                    margin: 0;
                    padding: 15px 20px;
                    color: #888;
                    background-color: transparent;
                    border-radius: 5px;
                    &.active {
                        color: $subcolor;
                    }
                }
                &.last {
                    margin-right: auto;
                    .nav-link {
                        background-color: #0001;
                    }
                }
            }
        }
        .tab-content {
            padding: 30px;
            ul {
                li {
                    display: flex;
                    justify-content: space-between;
                    margin: 25px 0;
                }
            }
            .text {
                margin: 25px 0;
                color: #666;
            }
        }
    }
}

.simillar_proj {
    .product_box {
        border-radius: 15px;
        position: relative;
        .float_icons {
            position: absolute;
            right: 15px;
            top: 15px;
            a {
                margin: 5px;
                width: 40px;
                height: 40px;
                background-color: #f2f2f2;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: #ccc;
                border-radius: 8px;
                &:hover,
                &.active {
                    color: red;
                }
            }
        }
        .img {
            padding: 10px;
            height: max-content;
            position: relative;
            img {
                border-radius: 15px;
                height: 150px;
            }
        }
        .info {
            h5 {
                font-size: 18px;
            }
            .price {
                font-size: 21px;
            }
            .text {
                font-size: 12px;
                margin-top: 0;
                a{
                    font-size: 12px;
                    margin: 0 5px;
                }
            }
        }
        .butn {
            padding: 8px;
            margin-top: 10px !important;
        }
    }
    &.blog {
        .product_box {
            border-radius: 0;
            background: transparent;
            display: flex;
            padding: 12px;
            border-radius: 20px;
            background-color: #fff;
            margin: 20px 0;
            .img {
                padding: 0;
                position: relative;
                border-radius: 15px;
                overflow: hidden;
                height: 210px;
                width: 30%;
                flex-shrink: 0;
                img {
                    border-radius: 8px;
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                }
                // .day{
                //     position: absolute;
                //     padding: 5px 20px;
                //     background-color: #fff;
                //     left: 0;
                //     bottom: 0;
                //     color: $maincolor;
                //     font-size: 10px;
                //     font-weight: bold;
                //     border-top-right-radius: 20px;
                //     i{
                //         margin-left: 5px;
                //     }
                // }
            }
            .info {
                width: 70%;
                padding: 20px;
                position: relative;
                // top: -30px;
                border-radius: 8px;
                z-index: 5;
                // width: 90%;
                // right: 5%;
                background-color: #fff;
                h5 {
                    font-size: 25px;
                    font-weight: 500;
                    margin-bottom: 10px;
                    color: #15253c;
                }
                .text {
                    font-size: 14px;
                    color: #2e2e2e;
                    margin-bottom: 10px;
                }
                a.more {
                    color: $subcolor;
                    font-size: 12px;
                }
                .date {
                    // padding: 0 10px;
                    // margin: 0 10px;
                    border-right: 1px solid #9994;
                    font-size: 12px;
                }
            }
        }
    }
}
/* ------------ projects_pg style ------------- */
.projects_pg {
    padding: 50px 0;
    .top_banner {
        background-color: #fff;
        .img {
            img {
                height: 230px;
            }
        }
        .info {
            h5 {
                font-size: 30px;
            }
            h3 {
                font-size: 40px;
                font-weight: 400;
            }
        }
    }
}
.pagination {
    justify-content: center;
    li {
        a {
            margin: 5px;
            border-color: #9994;
            color: $maincolor;
            background: transparent;
            border-radius: 5px;
        }
    }
}

.grid_list {
    display: flex;
    // justify-content: flex-end;
    align-items: center;
    padding-left: 30px;
    span {
        margin: 0 5px;
    }
    .form-select {
        min-height: auto;
        background-color: transparent;
        border: 1px solid #9993;
        padding: 5px 15px;
        width: 100%;
        border-radius: 5px;
        font-size: 13px;
    }

    .grid_btn {
        font-size: 25px;
        margin: 0 5px;
        cursor: pointer;
        &.active {
            color: $subcolor;
        }
    }

    .list_btn {
        font-size: 28px;
        margin: 0 5px;
        cursor: pointer;
        &.active {
            color: $subcolor;
        }
    }
}

.grid_list_content {
    display: flex;
    flex-wrap: wrap;
    .product_box {
        width: 31%;
        margin: 1%;
    }
    &.list {
        .product_box {
            width: 48%;
            display: flex;
            .img {
                width: 40%;
                img {
                    height: 225px;
                }
            }
            .info {
                width: 60%;
            }
        }
    }
}
/* ------------ about_pg style ------------- */
.about_pg {
    .info {
        h6 {
            font-weight: 400;
            font-size: 20px;
            color: #15253c;
        }
        h2 {
            font-weight: bold;
            font-size: 40px;
            margin-bottom: 30px;
            line-height: 1.5;
        }
        .text {
            font-size: 15px;
            color: #707070;
            margin-bottom: 50px;
        }
        .ab_box {
            padding: 20px 15px;
            background-color: #fff;
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            .icon {
                width: 55px;
                height: 55px;
                background-color: #f5f5f5;
                border-radius: 8px;
                display: inline-flex;
                justify-content: center;
                align-items: center;
            }
            .inf {
                width: calc(100% - 75px);
                h6 {
                    font-size: 18px;
                }
                p {
                    font-size: 13px;
                }
            }
        }
    }
    .img {
        display: flex;
        align-items: center;
        .img_content {
            width: 50%;
            overflow: hidden;
            padding: 10px;
            img {
                border-radius: 20px;
                box-shadow: 0 0 20px #0001;
                width: 100%;
                object-fit: cover;
                margin: 10px 0;
            }
            .s_img {
                height: 300px;
            }
            .l_img {
                height: 430px;
            }
        }
    }
}
/* ------------ ab_numbers style ------------- */
.ab_numbers {
    background-image: url(../images/ab_numbers.png);
    background-size: cover;
    background-position: bottom;
    .content {
        h3 {
            text-align: center;
            margin-bottom: 50px;
        }
        .num_content {
            .items {
                margin: 20px 0;
                h2 {
                    color: $subcolor;
                    font-size: 40px;
                    .icon {
                        width: 30px;
                    }
                }
                small {
                    color: #5b6761;
                    font-size: 16px;
                }
            }
        }
    }
}
/* ------------ blog_det style ------------- */
.blog_det {
    position: relative;
    &::before {
        position: absolute;
        content: "";
        left: 0;
        top: -2px;
        width: 100%;
        height: 250px;
        background-color: $maincolor;
    }
    .container {
        position: relative;
        z-index: 10;
    }
    .main_img {
        height: 500px;
        position: relative;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .img_info {
        padding: 25px;
        box-shadow: 0 0 20px #0001;
        border-radius: 20px;
        position: relative;
        transform: translateY(-50%);
        z-index: 3;
        background-color: #fff;
        .inf_list {
            display: flex;
            flex-wrap: wrap;
            p {
                width: 50%;
                margin: 5px 0;
            }
        }
        p {
            font-size: 16px;
            color: #15253c;
            margin: 0 15px;
            display: inline-block;
            small {
                color: #999;
            }
            i {
                color: $subcolor;
                font-size: 14px;
                margin: 0 5px;
            }
        }
    }
    .blog_info {
        .text {
            font-size: 18px;
            line-height: 30px;
            color: #071c74;
            margin: 20px 0;
        }
        .socail_icons {
            ul {
                li {
                    margin: 15px 0;
                    display: inline-block;
                    a {
                        // width: 45px;
                        // height: 45px;
                        padding: 10px 30px;
                        border-radius: 8px;
                        background-color: #fff;
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 17px;
                        margin-left: 10px;
                        i {
                            margin-left: 10px;
                        }
                        &:hover {
                            background-color: $maincolor;
                            color: #fff;
                            span {
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}
/* ------------ cart style ------------- */
// --------------- cart ---------------
.cart {
    .content {
        padding: 3vw;
        border-radius: 20px;
        background-color: #fff;
        margin-top: 50px;
    }
    .cart_table {
        .table {
            th {
                font-weight: 500;
            }
            .prod_name {
                display: flex;
                .img {
                    width: 55px;
                    height: 50px;
                    margin-left: 15px;
                    img {
                        object-fit: contain;
                    }
                }
                .info {
                    p {
                        font-size: 14px;
                    }
                    small {
                        font-size: 12px;
                    }
                }
            }
            .form-select,
            .form-control {
                border-radius: 30px;
                min-height: 35px;
                width: 80px;
                border: 1px solid #9993;
                text-align: center;
            }
            .price {
                display: flex;
                justify-content: space-between;
                align-items: center;
                .dlt {
                    border: 0;
                    background: #ee6868;
                    width: 35px;
                    height: 35px;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    border-radius: 50%;
                    color: #fff;
                }
            }
        }

        tbody,
        td,
        tfoot,
        th,
        thead,
        tr {
            padding: 20px 10px !important;
        }
    }

    .pay_option {
        padding: 50px 30px;
        background-color: #f7f7f7;
        border-radius: 20px;
        ul {
            padding-bottom: 30px;
            border-bottom: 1px solid #9993;
            li {
                display: flex;
                justify-content: space-between;
                line-height: 1.5;
                margin: 15px 0;
            }
        }
        .pay_imgs {
            margin-top: 30px;
            h6 {
                margin-bottom: 20px;
                width: 100%;
            }
            .cont {
                display: flex;
                .form-check {
                    padding: 0;
                    position: relative;
                    padding: 5px;
                    margin: 5px;
                    .form-check-input {
                        margin-left: 0;
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 100%;
                        height: 100%;
                        border: 0;
                        border-radius: 5px;
                        opacity: 0;
                        margin: 0;
                        &:checked {
                            opacity: 1;
                            background: transparent;
                            border: 2px solid $maincolor;
                        }
                    }
                    label {
                        img {
                            width: 70px;
                            height: 40px;
                            object-fit: contain;
                        }
                    }
                }
            }
        }
    }
}
/* ------------ order_details style ------------- */
.order_details {
    .form {
        .form_box {
            padding: 30px;
            background-color: #fff;
            border-radius: 20px;
            margin: 30px 0;
            .prod_name {
                display: flex;
                .img {
                    width: 110px;
                    height: 100px;
                    margin-left: 15px;
                    img {
                        object-fit: contain;
                        border-radius: 20px;
                    }
                }
                .info {
                    padding-top: 10px;
                    p {
                        font-size: 16px;
                        margin: 7px 0;
                    }
                    small {
                        font-size: 12px;
                    }
                }
            }
            .dlt {
                border: 0;
                background: #ee6868;
                width: 35px;
                height: 35px;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                border-radius: 50%;
                color: #fff;
            }
            .pay_imgs {
                margin-top: 30px;
                h6 {
                    margin-bottom: 20px;
                    width: 100%;
                }
                .cont {
                    display: flex;
                    justify-content: center;
                    .form-check {
                        padding: 0;
                        position: relative;
                        padding: 5px;
                        margin: 5px;
                        .form-check-input {
                            margin-left: 0;
                            position: absolute;
                            left: 0;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            border: 0;
                            border-radius: 5px;
                            opacity: 0;
                            margin: 0;
                            &:checked {
                                opacity: 1;
                                background: transparent;
                                border: 2px solid $subcolor;
                            }
                        }
                        label {
                            img {
                                width: 100px;
                                height: 60px;
                                object-fit: contain;
                            }
                        }
                    }
                }
            }
            .form_cont {
                margin-top: 50px;
                .form-group {
                    margin-bottom: 30px;
                    label {
                        margin-bottom: 10px;
                    }
                    .form-control {
                        border-radius: 8px;
                        background-color: #f9f9f9;
                    }
                }
            }
            .avatar-upload {
                position: relative;
                .avatar-edit {
                    position: relative;
                    z-index: 1;
                    height: 200px;
                    input {
                        opacity: 0;
                        position: absolute;
                        left: 0;
                        top: 0;
                        width: 100%;
                        height: 100%;
                        z-index: 5;
                    }
                }
                .avatar-preview {
                    width: 100%;
                    height: 200px;
                    position: absolute;
                    top: 0;
                    border-radius: 10px;
                    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
                    > div {
                        width: 100%;
                        height: 100%;
                        border-radius: 10px;
                        background-size: cover;
                        background-repeat: no-repeat;
                        background-position: center;
                    }
                }
            }
        }
    }
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    line-height: 2;
}
/* ------------ profile style ------------- */
.profile {
    .prof_content {
        background-color: #fff;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
    }
    .side-r {
        padding: 50px 1vw;
        background-color: $maincolor;
        height: 100%;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
        .user_img {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding-bottom: 30px;
            margin-bottom: 40px;
            border-bottom: 2px solid #fff2;
            text-align: center;
            .img {
                width: 90px;
                height: 90px;
                border-radius: 50%;
                // overflow: hidden;
                margin: 5px auto;
                position: relative;
                img {
                    width: 100%;
                    height: 100%;
                    overflow: hidden;
                    border-radius: 50%;
                }
                .up__btn,
                #input-profile {
                    position: absolute;
                    bottom: -12px;
                    z-index: 10;
                    right: 25px;
                    width: 30px;
                    height: 30px;
                    background: #fff;
                    border-radius: 50%;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    border: 2px solid $maincolor;
                }
                #input-profile {
                    opacity: 0;
                    z-index: 50;
                }
            }
            .info {
                width: 100%;
                margin-top: 20px;
                h6 {
                    color: #fff;
                    font-size: 14px;
                }
                p {
                    color: #fff;
                    font-size: 13px;
                    opacity: 0.8;
                }
            }
        }
        .profile-info {
            text-align: center;
            border-bottom: 1px solid #9994;
            padding-bottom: 10px;
            .profile-pic {
                width: 120px;
                height: 120px;
                border: 1px solid $maincolor;
                border-radius: 50%;
                object-fit: cover;
                display: block;
                margin: auto;
            }
            h6 {
                margin-top: 1rem;
                margin-bottom: 0.4rem;
                color: #333;
            }
            p {
                color: #fff;
            }
            .balance {
                padding: 15px 30px;
                margin: 15px 0;
                background-color: $maincolor;
                border-radius: 20px;
                display: flex;
                align-items: center;
                .icon {
                    i {
                        font-size: 40px;
                        opacity: 0.2;
                        color: #fff;
                    }
                }
                .info {
                    margin-right: 20px;
                    p,
                    h4 {
                        color: #fff;
                        margin: 5px 0;
                    }
                }
            }
        }
        .nav {
            margin-top: 10px;
            .nav-link {
                padding: 10px 0;
                color: #fff;
                font-size: 13px;
                font-weight: 500;
                text-align: center;
                margin: 3px 0;
                i {
                    margin: 0 10px;
                    font-size: 17px;
                    position: relative;
                    top: 2px;
                }
                &.active {
                    background-color: #fff;
                    border-radius: 30px;
                    color: $maincolor;
                }
            }
        }
    }
    .tab-content {
        padding: 50px 30px;
        background-color: #fff;
        height: 100%;
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
    }

    .form_box {
        .form-group {
            position: relative;
            margin: 20px 0;
            .form-control,
            .form-select {
                background-color: #fafafa;
                padding: 12px 15px;
                border: 1px solid #9992;
                border-radius: 10px;
            }
            label {
                margin-bottom: 10px;
                font-size: 13px;
            }
            .icon {
                position: absolute;
                right: 15px;
                bottom: 8px;
                z-index: 5;
                font-size: 15px;
                height: 25px;
            }
        }

        &.read_only {
            .form-control {
                background-color: #fafafa;
                padding: 10px 15px;
                border: 1px solid #9992;
                border-radius: 10px;
            }
        }
    }

    .adress_tab {
        .adress_box {
            background-color: #fff;
            border: 1px solid #9992;
            border-radius: 10px;
            overflow: hidden;
            .adr_head {
                padding: 15px;
                display: flex;
                align-items: center;
                border-bottom: 1px solid #9993;
                .icon {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    margin-left: 20px;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    background-color: #f9f9f9;
                    font-size: 21px;
                }
                h5 {
                    font-weight: 400;
                    margin: 0;
                }
            }
            .adr_cont {
                padding: 30px 15px;
                display: flex;
                position: relative;
                padding-left: 150px;
                .links {
                    position: absolute;
                    left: 30px;
                    top: 30px;
                    a {
                        font-size: 14px;
                        margin: 0 5px;
                    }
                }
                .img {
                    width: 80px;
                    height: 80px;
                    background-color: #c4131510;
                    padding: 10px;
                    margin-left: 20px;
                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                    }
                }
                .info {
                    width: calc(100% - 100px);
                }
            }
        }
    }
    .order_tab {
        .rev_box {
            padding: 20px;
            display: flex;
            border-radius: 30px;
            align-items: center;
            background-color: #f9f9f9;
            margin: 10px 0;
            flex-wrap: wrap;
            .img {
                width: 130px;
                height: 130px;
                margin-left: 20px;
                border-radius: 20px;
                overflow: hidden;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            .info {
                width: calc(100% - 170px);
                .top_inf {
                    display: flex;
                    justify-content: space-between;
                    .price {
                        font-size: 20px;
                        color: $maincolor;
                    }
                }
                .text {
                    margin-top: 15px;
                }
            }
            .rate {
                padding: 15px;
                border-radius: 20px;
                background-color: #e9ce20;
                margin: 0 10px;
            }
        }
    }
}

.new_adress {
    .new_adress_form {
        display: none;
    }
}
/* ------------ login style ------------- */
.login {
    position: relative;
    overflow: hidden;
    .container {
        position: relative;
        z-index: 10;
    }

    .login_info {
        position: relative;
        height: 100%;
        text-align: center;
        .logo {
            margin-bottom: 30px;
            position: relative;
            z-index: 10;
            img {
                max-width: 60%;
            }
        }
    }

    .contact_form {
        background-color: #fff;
        padding: 30px;
        // border: 7px solid $maincolor;
        // border-radius: 15px;
        position: relative;
        z-index: 10;
        .form-control {
            background-color: #f9f9f9;
            border-radius: 12px;
            padding: 15px;
        }
    }
}

.code_input {
    .code-container {
        input {
            width: 50px;
            height: 50px;
            text-align: center;
            border-radius: 5px;
            border: 1px solid #9993;
            margin: 3px;
        }
    }
}
/* ------------ contact_pg style ------------- */
.contact_pg {
    .info {
        padding: 3vw;
        .ab_box {
            .icon {
                    width: 45px;
                    height: 45px;
                i {
                    font-size: 20px;
                    color: $subcolor;
                }
            }
            .inf {
                width: calc(100% - 60px);
            }
        }
        .socail_icons {
            margin-top: 50px;
            a {
                margin-left: 15px;
                i {
                    font-size: 16px;
                    width: 35px;
                    height: 35px;
                    border-radius: 8px;
                    display: inline-flex;
                    justify-content: center;
                    align-items: center;
                    color: #fff;
                    background-color: $maincolor;
                    transition: all 0.3s ease;
                    &.bi-facebook {
                        &:hover {
                            background-color: #3d5a96;
                        }
                    }
                    &.bi-instagram {
                        &:hover {
                            background-color: #c21975;
                        }
                    }
                    &.bi-snapchat {
                        &:hover {
                            background-color: #fffc00;
                            color: $maincolor;
                        }
                    }
                    &.bi-twitter {
                        &:hover {
                            background-color: #2aa3ef;
                        }
                    }
                }
            }
        }
    }
}

.faq {
    position: relative;
    .faq_img {
        position: absolute;
        left: 3%;
        top: 5%;
        opacity: 0.2;
    }
    .accordion {
        position: relative;
        z-index: 2;
    }
    .accordion-item {
        border-radius: 20px !important;
        overflow: hidden;
        margin: 20px 0;
        border: 0;
        box-shadow: 0 0 30px #0001;
    }
    .accordion-button {
        padding: 30px;
        &:focus {
            box-shadow: none;
            background-color: transparent;
        }
    }
    .accordion-button:not(.collapsed) {
        color: $maincolor;
        background: transparent;
        border-bottom: 1px solid #9993;
    }
    .accordion-header {
    }
}

.jop {
    .content {
        // background-color: #fff;
        // padding: 2vw;
        // border-radius: 30px;
    }
    .items {
        padding: 20px 30px;
        background-color: #fff;
        box-shadow: 0px 15px 98px rgba(3, 11, 97, 0.1);
        margin: 12px 0;
        .head {
            padding-bottom: 10px;
            margin-bottom: 20px;
            border-bottom: 1px solid #9993;
            h6 {
                color: $maincolor;
            }
            p {
                color: $maincolor;
                opacity: 0.5;
            }
        }
    }
    .cont {
        // padding-top: 30px;
        h5 {
            font-size: 20px;
            color: $subcolor;
            margin-bottom: 30px;
        }
        h6 {
            margin-bottom: 15px;
            color: $maincolor;
        }
        li {
            margin: 15px 0;
            color: $maincolor;
            font-size: 13px;
            i {
                font-size: 7px;
            }
        }
        .butn {
            margin-top: 20px;
        }
    }
    .img {
        height: 280px;
        img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 30px;
        }
    }

    .jop_header {
        padding: 50px 0 100px;
        background-image: url(../images/jop_banner.png);
        background-size: cover;
        .container {
            display: flex;
            justify-content: end;
        }
        .cont {
            display: flex;
            align-items: center;
            .inf {
                text-align: center;
                h3 {
                    color: #fff;
                }
                p {
                    color: #fff;
                    font-size: 17px;
                    opacity: 0.5;
                }
            }
            .icon {
                width: 35px;
                height: 35px;
                background-color: #fff;
                border-radius: 50%;
                color: $maincolor;
                display: inline-flex;
                justify-content: center;
                align-items: center;
            }
        }
    }
    .mt_5 {
        margin-top: -50px;
    }

    .form {
        .form-group {
            label {
                display: block;
                margin-bottom: 10px;
            }
            .form-control {
                border-radius: 10px;
                background-color: #f9f9f9;
                border: 1px solid #9992;
            }
            .form-check {
                margin-top: 15px;
            }
        }
    }
    .avatar-upload {
        position: relative;
        .avatar-edit {
            position: relative;
            z-index: 1;
            height: 115px;
            input {
                opacity: 0;
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                z-index: 5;
            }
        }
        .avatar-preview {
            width: 100%;
            height: 115px;
            position: absolute;
            top: 0;
            border-radius: 10px;
            box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
            > div {
                width: 100%;
                height: 100%;
                border-radius: 10px;
                background-size: cover;
                background-repeat: no-repeat;
                background-position: center;
            }
        }
    }
}

.brdr_title {
    margin-bottom: 40px;
    h5 {
        display: inline-block;
        padding: 20px 5px;
        position: relative;
        &::before {
            position: absolute;
            content: "";
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 100px;
            height: 2px;
            background-color: $subcolor;
        }
    }
}

.map {
    iframe {
        margin-bottom: -10px;
    }
}


// ------------- new_index -------------
.new_index{
    .new_head_slider{
        position: relative;
        &.index4{
              .swiper-button-next, .swiper-button-prev{
                  bottom: 30px;
              }
            .content{
                height: 450px;
                min-height: auto;
                .info{
                    h2{
                        font-size: calc(1.5vw + 15px);
                    }
                }
            }
        }
        .content{
            position: relative;
            display: flex;
            align-items: center;
            height: 650px;
            min-height: 100vh;
            &::after{
                position: absolute;
                content: "";
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background-color: $maincolor;
                opacity: 0.3;
            }
            .back_img{
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .info{
                position: relative;
                z-index: 10;
                h2{
                    color: #fff;
                    margin-bottom: 30px;
                    font-size: calc(2vw + 20px);
                    line-height: 1.5;
                    opacity: 0;
                    transform: translateY(20px) scale(0.8);
                    filter: blur(2px);
                    transition: all 0.3s ease;
                    transition-delay: 0.7s;
                }
                .text{
                    color: #fff;
                    margin-bottom: 30px;
                    opacity: 0;
                    transform: translateY(20px);
                    filter: blur(2px);
                    transition: all 0.3s ease;
                    transition-delay: 1s;
                }
                .butn{
                    opacity: 0;
                    transform: scale(0.5);
                    filter: blur(2px);
                    transition: all 0.3s ease;
                    transition-delay: 1.2s;
                }
            }
        }
        .swiper-slide-active{
            .content{
                .info{
                    h2,
                    .text,
                    .butn{
                        opacity: 1;
                        transform: translateY(0) scale(1);
                        filter: blur(0);
                    }
                }
            }
        }
        .swiper-button-next, .swiper-button-prev{
            bottom: 15px;
            background: transparent;
            border: 1px solid #fff;
            width: 40px;
            height: 40px;
            &::after{
                color: #fff;
                font-size: 12px;
                font-weight: 400;
            }
        }
    }
    .new_charts{
        .new_charts_slider{
            position: relative;
            .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
                right: -20px;
                top: calc(50% - 35px);
                bottom: auto;
            }
            .swiper-button-prev, .swiper-container-rtl .swiper-button-next {
                left: -20px;
                top: calc(50% - 35px);
                bottom: auto;
            }
        }
        .new_chart_box{
            padding: 10px;
            background-color: #fff;
            border-radius: 20px;
            box-shadow: 0 0 20px #0001;
            margin: 12px 0;
            .img{
                height: 200px;
                border: 1px solid #9993;
                border-radius: 20px;
                background-color: #fafafa;
                display: block;
                img{
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    object-position: center;
                }
            }
            .info{
                padding: 20px;
                h5{
                    margin-bottom: 10px;
                    color: $maincolor;
                }
            }
            .butn{
                padding: 10px 20px;
                span{
                    font-size: 12px;
                    font-weight: 400;
                }
            }
        }
        &.new_adv{
            background: url(../images/sld3.jpg);
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            background-attachment: fixed;
            &::after{
                position: absolute;
                content: "";
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(to right , #ffffffd0 , #fff ,#fff , #fff , #ffffffd0);
            }
            .container{
                position: relative;
                z-index: 5;
            }
        }
        &.ftr_adv{
            position: relative;
            &::after{
                position: absolute;
                content: "";
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: url(../images/map.png);
                background-size: cover;
                background-repeat: no-repeat;
                background-position: bottom;
                background-attachment: fixed;
                opacity: 0.02;
            }
            .container{
                position: relative;
                z-index: 5;
            }
        }
    }
}
/* -------------------- responsive style ------------------------- */

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 991px) {
    header .info h2 {
        margin-top: 30px;
        font-size: 30px;
        line-height: 35px;
    }

    header::after {
        display: none;
    }

    header .img {
        height: 300px;
    }

    .section_padding {
        padding: 40px 0;
    }

    .about .info .butn {
        width: 45%;
        padding: 15px;
        margin: 0;
    }

    .about .info .tab-content .text {
        margin-bottom: 15px;
    }

    .about .img {
        margin-top: 30px;
    }

    .numbers .content .top_cont .inf h5 {
        font-size: 25px;
    }

    .numbers .content .top_cont .inf p {
        font-size: 18px;
    }

    .numbers .content .num_cont .num_item {
        padding: 30px;
        background-color: #fff2;
        margin: 10px;
    }

    .numbers .content .num_cont {
        margin: 0;
    }

    .cons_request .form .top_cont h3 {
        font-size: 25px;
    }

    footer .links {
        margin-top: 30px;
    }

    footer .title {
        margin-bottom: 10px;
    }

    footer {
        .foot {
            text-align: center;
            line-height: 3;
            .text-end {
                text-align: center !important;
            }
        }
    }
    .blog_det .blog_info .socail_icons ul {
        text-align: center;
    }
    .blog_det .blog_info .socail_icons ul li {
        display: inline-block;
        margin: 15px 5px;
    }
    .blog_det .img_info,
    .blog_det .img_info .text-end {
        text-align: center !important;
        p {
            font-size: 14px;
            margin: 8px 0;
        }
    }
    .profile .order_tab .rev_box .img {
        width: 100%;
        margin: 0;
    }
    .profile .order_tab .rev_box .info {
        width: 100%;
        margin-top: 20px;
    }

    .navbar.inner_navbar {
        .navbar-toggler {
            filter: invert(0%) sepia(85%) saturate(7500%) hue-rotate(324deg) brightness(0%) contrast(113%);
        }
    }

    .blog_det .img_info .inf_list p {
        width: 100%;
    }

    .blog_det .img_info {
        transform: translateY(-50px);
    }

    .simillar_proj.blog .product_box {
        margin: 15px 0;
    }

    .cart_table {
        overflow-x: auto;
    }

    .cart_table .table {
        min-width: 500px;
    }

    .grid_list {
        justify-content: flex-start !important;
        display: none;
    }

    .grid_list_content .product_box {
        width: 100%;
    }

    .login .login_info .logo {
        padding: 20px 0;
    }

    .jop .content .cont .butn {
        margin-bottom: 50px;
        padding: 10px 25px;
    }

    .profile .order_tab .rev_box {
        padding: 0;
    }

    .simillar_proj .product_box {
        margin: 15px 0;
    }

    .proj_det .img_card .info .l_side {
        justify-content: flex-start;
        margin-top: 20px;
        .cont {
            text-align: initial;
        }
    }

    .proj_det .img_card .info .col-6 {
        width: 100%;
    }

    .prog_banner_slider .img .info {
        width: 70%;
        text-align: center;
        h5 {
            line-height: 1.6;
        }
    }

    .chart_filter .form-group {
        margin: 10px 0;
    }

    .simillar_proj.blog .product_box{
        flex-wrap: wrap;
        .img{
            width: 100%;
        }
        .info{
            width: 100%;
        }
    }
}

/* ======== */

@media screen and (max-width: 787px) {
}

/* ======= */

@media screen and (max-width: 480px) {
}
