/*=================لطفا کد های این صفحه را ویرایش نکنید :) ==========*/


/*================Dont Touch This Page===========================*/

:root {
    --gray-site: #333333;
    --yellow-site: #FAF94F;
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-align: justify;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: SiteFont;
    direction: rtl;
}

.central {
    display: flex;
    align-items: center;
    justify-content: center;
}


/*------------- fonts ------------*/

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/materialIcons/MaterialIcons-Regular.eot');
    /* For IE6-8 */
    src: local('Material Icons'), local('MaterialIcons-Regular'), url('../fonts/materialIcons/MaterialIcons-Regular.woff') format('woff'), url('../fonts/materialIcons/MaterialIcons-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'SiteFont';
    src: url('../fonts/Dana-FaNum-Light.ttf') format('truetype');
    font-style: normal;
}


/*  
 @font-face {
     font-family: 'SiteFont';
     src: url('../fonts/nimrala/NirmalaB.ttf') format('truetype');
     font-style: normal;
     font-weight: bold;
 }
 
 @font-face {
     font-family: 'SiteFont';
     src: url('../fonts/nimrala/NirmalaS.ttf') format('truetype');
     font-style: normal;
     font-weight: lighter;
 } */

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    z-index: 1;
    vertical-align: text-bottom;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}

.number {
    font-family: IRSans;
}


/*---------------- button -----------------*/

.primary_btn {
    padding: 7px;
    border-radius: 20px 0 20px 20px;
    min-width: 130px;
    font-size: 14px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
    height: 42px;
    transition: all 0.5s;
    position: relative;
    background-color: #ECE9DB;
    box-shadow: 0 3px 8px 0 #4f4e4e;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 10;
    overflow: hidden;
}

.primary_btn::after {
    content: '';
    background: #891400;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0;
    z-index: -1;
    transition: 0.3s;
}

.primary_btn:hover,
.aboutBox:hover .primary_btn,
.home_gallery_info:hover .primary_btn,
.blogItem:hover .primary_btn {
    border-radius: 20px;
    color: #fff;
}

.primary_btn:hover::after,
.aboutBox:hover .primary_btn::after,
.home_gallery_info:hover .primary_btn::after,
.blogItem:hover .primary_btn::after {
    width: 100%;
}

.secondary_btn {
    padding: 7px;
    background-color: #ECE9DB;
    border-radius: 8px;
    min-width: 130px;
    font-size: 14px;
    color: #891400;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
    height: 42px;
    border: 3px solid #fff;
}

.secondary_btn:hover {
    background-color: #891400;
    color: #ECE9DB;
}

.default_btn {
    padding: 7px;
    background-color: #e0e0e0;
    border-radius: 8px;
    min-width: 130px;
    font-size: 14px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
}

.default_btn:hover {
    background-color: rgb(163, 163, 163);
    color: #fff;
}

.selectRadio {
    position: absolute;
    top: -13px;
    right: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border: 1px solid;
    border-radius: 50%;
}

.selectRadio:after {
    content: "";
    position: absolute;
    display: none;
}

.lable input:checked~.selectRadio:after {
    display: block;
}

.lable input:checked~.selectRadio {
    border: 1px solid #ffcc00;
}

.lable .selectRadio:after {
    left: 4px;
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffcc00;
    box-shadow: 0 0 2px 0 #ffcc00;
}

.lable {
    position: relative;
    padding-left: 35px;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    padding-right: 23px;
}

.pick_address .lable {
    padding-left: 0;
}

.lable input {
    position: absolute;
    visibility: hidden;
}

.btn:focus {
    box-shadow: unset !important;
}


/*-------------- end button --------------*/


/*-------------- textTags --------------*/

a,
a:hover {
    text-decoration: none;
    font-family: SiteFont;
    color: inherit;
}

a {
    color: inherit;
}

p {
    font-family: SiteFont;
    font-weight: normal;
    text-align: justify;
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-family: SiteFont;
    font-weight: bold;
}

label,
button,
select {
    font-family: SiteFont;
    font-weight: normal;
}

strong {
    font-family: SiteFont;
    font-weight: bold !important;
}

span,
b,
label,
p,
a,
tr,
figcaption {
    font-weight: normal;
    font-family: SiteFont;
}

ul {
    list-style-type: none;
    padding-right: 0;
}

.title {
    color: #fff;
    height: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: 80px;
}

.titleText {
    font-size: 17px;
    margin: 0;
}

.title svg {
    margin-left: 10px;
    width: 35px;
}

.innerPage {
    color: #333;
}

.complaint_form {
    padding: 30px 0;
}


/*-------------- End textTags --------------*/


/*------------inputs-------------------*/

input {
    height: 42px !important;
    border-radius: 8px !important;
}

textarea {
    border-radius: 8px !important;
    min-height: 100px;
}

input:focus,
textarea:focus {
    border: unset !important;
    box-shadow: 0 0 5px 0 rgb(202, 199, 199) !important;
}

input[type=checkbox]:focus,
input[type=radio]:focus {
    box-shadow: unset !important;
}


/*------------End inputs-------------------*/


/*--------------PlaceHolders------------*/

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: SiteFont;
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

::-moz-placeholder {
    /* Firefox 19+ */
    font-family: SiteFont;
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

:-ms-input-placeholder {
    /* IE 10+ */
    font-family: SiteFont;
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

:-moz-placeholder {
    /* Firefox 18- */
    font-family: SiteFont;
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

::-webkit-select-placeholder {
    /* Chrome/Opera/Safari */
    font-family: SiteFont;
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}

:-ms-select-placeholder {
    /* IE 10+ */
    font-family: SiteFont;
    font-weight: lighter;
    font-size: 11px;
    color: #918e8e;
}


/*------------EndPlaceHolderds-------------------*/


/*==============pagination=========================*/

.pagination {
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 55px;
}

.pagination .active {
    background: #891400 !important;
    color: #fff !important;
}

.pagination .btn {
    width: 35px;
    height: 35px;
    background-color: #fff;
    border-radius: 0;
    margin: 0;
}

.pagination .pagination_btn.active,
.pagination .pagination_btn:hover {
    background-color: #891400;
    color: #fff;
}

@media (min-width: 991px) {
    .container {
        max-width: 90%;
    }
}


/*---------------------check box and radio-------------*/

.radioBox,
.checkBox {
    margin: 10px;
    display: flex;
    align-items: center;
}

.radioBox input,
.checkBox input {
    display: none;
}

.radioBox input:checked+div {
    background: radial-gradient(#7d1810 50%, #fff 50%);
}

.radioBox .selector {
    border: 2px solid #7d1810;
    height: 15px;
    width: 15px;
    margin-left: 5px;
    border-radius: 50%;
}

.radioBox label {
    cursor: pointer;
    padding-right: 30px;
    margin-right: -30px;
    margin-bottom: 0;
    z-index: 1000;
}


/*---------------------End check box and radio-------------*/


/*----------------------------------breadcrumb----------------------------*/

.page_addres {
    background: #ECE9DB;
}

.page_addres .breadcrumb {
    background-color: unset;
    margin-bottom: 0;
}

.page_addres .breadcrumb-item+.breadcrumb-item::before {
    padding: 0 .5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #8b0f04;
}


/*---------------------search-------------*/

.serachBox {
    width: 100%;
    position: relative;
    border-left: 1px dashed #333;
    margin-left: 10px;
}

.searchForm {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 5px;
    padding: 0 5px;
    background-color: #fff;
}

.searchForm input {
    border: 1px solid #3333;
    border-radius: 0 20px 20px 0 !important;
    background-color: #ECE9DB !important;
    width: 70px;
    transition: 0.5s;
    box-shadow: 2px 2px 14px -5px #333;
}

/* .searchForm input:focus {
    box-shadow: 2px 2px 14px -5px #333 !important;
    background: #ECE9DB;
    width: 100%;
} */
.searchForm input.exp_box {
    box-shadow: 2px 2px 14px -5px #333 !important;
    background: #ece9db8f !important;
    width: 100% !important;
}

.search_result {
    position: absolute;
    top: 38px;
    background-color: #f6f4f4;
    left: 35px;
    right: 0;
    z-index: 10000;
    text-align: right;
    border-radius: 0 0 5px 5px;
    padding: 0px 10px;
    box-shadow: 0 5px 10px -5px;
}

.search_result ul {
    line-height: 2;
}

.search_result>div:first-child {
    margin-top: 11px;
}

.searchBtn {
    background-color: #fff;
    border-radius: 5px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*-------------------------------modals---------------------------*/

.modal-content {
    border-radius: 20px;
    overflow: hidden;
    border: unset;
    text-align: right;
}

.modal-header {
    background-color: #cecdc9;
    color: #fff;
    justify-content: center;
}

.modal-body {
    text-align: justify;
}


/*--------------------end modals---------------------*/


/*---------------------------productBox------------------*/

.product_img img {
    width: 230px;
    height: 200px;
}

.product_btns {
    text-align: center;
    margin-top: 80px;
}

.product_btn {
    width: 45px;
    height: 45px;
    background-color: #000 !important;
    border-radius: 10px;
    margin: 1px;
}

.icon_Basket {
    background: url('../images/crane-shop.png') 762px 303px;
    background-color: #ffcc00 !important;
}

.icon_Favorites {
    background: url(../images/crane-shop.png) 855px 251px;
}

.icon_comapre {
    background: url(../images/crane-shop.png) 951px 250px;
}


/*---------------------------end productBox------------------*/


/*--------------------blog---------------------*/

.lastBlog {
    background: url(../images/event3.jpg);
    background-size: cover;
    background-attachment: fixed;
    min-height: 600px;
}

.lastBlog .blogItem {
    background-color: rgba(255, 255, 255, 0.8);
    min-height: 200px;
}

.lastBlog .blogItemImage {
    height: 187px;
}

.searchBlog {
    background-color: #fff;
    display: flex;
}

.searchBlog .searchBox {
    background: #fff;
    box-shadow: unset;
    border-radius: 0;
    width: 100%;
}

.searchBlog .searchBox input {
    width: 100%;
}

.searchBlog input {
    border: 0;
}

.blogSort {
    background: #fff;
    width: 100%;
    display: flex;
    padding-right: 20px;
    padding-left: 20px;
    height: 40px;
}

.blogSearch {
    padding-bottom: 30px;
    background-color: #EFEFEF;
}

.blogMostViewBox li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.blogMostViewBox li a {
    transition: all 0.2s;
}

.blogMostViewBox li:hover a {
    font-size: 17px;
}

.blogMostViewBox {
    border: 1px solid #3333;
    padding: 5px;
    background: #f2f2f2;
}

.blogMostViewBox li+li {
    border-top: 1px solid #3333;
}

.blogMostViewBox .counter {
    background: #7d1810;
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogItem {
    border: 1px solid transparent;
    padding: 5px;
    margin-bottom: 5px;
    transition: 0.5s;
    border-radius: 10px;
}

.blogItem:hover {
    border-color: #9f2015;
    background: #f2f2f2;
}

.blogItem:hover .default_btn {
    background-color: rgb(163, 163, 163);
    color: #fff;
}

.blogItemImage {
    width: 100%;
    height: 190px;
    border-radius: 0;
    overflow: hidden;
}

.blogItemImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.blogItemContent {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 2px solid #fff;
}

.itemStats {
    display: flex;
    justify-content: space-between;
    color: #AFAAA5;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.itemStats .material-icons {
    font-size: 15px;
    margin-left: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog_inner .itemStats {
    font-size: 13px;
    color: #282828a1;
    display: flex;
    padding-top: 1rem;
    background-color: #c2c0c0;
    padding: 15px;
}

.blog_News {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.seen_News {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.blog_News .material-icons {
    padding-left: 7px;
}

.seen_News .material-icons {
    padding-left: 7px;
}

.blog_inner .blog_topBox {
    border-radius: 20px;
    overflow: hidden;
    margin: 15px 0;
}

.blog_inner_img_box {
    overflow: hidden;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blog_inner_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-summary {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #e1e1e1;
}

.blog_inner_txt p {
    line-height: 28px;
    font-size: 15px;
}

.blogSummary_txt {
    padding: 15px;
}

.blog_inner_txt {
    margin-bottom: 1rem;
}

.blog_inner {
    padding: 30px 0;
    text-align: right;
}

.blog {
    padding: 30px 0;
}

.blog_cover:after {
    content: '';
    background-color: rgba(70, 69, 69, 0.466);
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
}

.content-tags i {
    vertical-align: top;
}

.content-tags {
    width: 100%;
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.content-tags a {
    background: #333;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    margin-right: 0.8rem;
    padding: 5px;
    margin-top: 1.5rem;
    border-radius: 5px;
}

.autor_blog {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    border-top: 1px solid #EEE;
    padding-top: 1rem;
}

.autor-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.autor-img {
    width: 75px;
    height: 75px;
    margin-left: 10px;
}

.autor-img img {
    border-radius: 50%;
    border: 1px solid var(--gray-dark);
    width: 100%;
    height: 100%;
}

.author img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #333;
    margin: 0 20px;
}

.name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.relatedArticles {
    border-top: 1px solid rgba(202, 197, 197, 0.657);
    margin-top: 20px;
    padding-top: 20px;
    position: relative;
}

.related_card {
    border: 1px solid #7f838180;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: gray !important;
    text-align: center;
    width: 100%;
    font-size: 13px;
}

.related_img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.related_img img {
    width: 100%;
    height: 100%;
}

.related_card:hover img {
    transform: scale(1.1);
    transition: 0.6s
}

.relatedArticles_slider .item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
    margin: 0 10px;
}

.relatedArticles_slider .owl-stage {
    display: flex;
}

.text-blue {
    color: #4A90E2;
}

.blogSearch .blogItem .default_btn {
    background-color: #891400;
    color: #fff;
}

@media only screen and (max-width: 575px) {
    .blog_box_top .special_card {
        flex-direction: column;
    }

    .last_news_img_item {
        max-height: 350px;
        max-width: 100%;
    }

    .news_detail_box {
        padding: 15px 0;
    }

    .last_news_info {
        flex-direction: unset;
        align-items: center;
    }

    .news_seen {
        padding: 5px 0;
    }

    .news_continue {
        margin-right: 12px;
    }
}


/*-------------------end blog-----------------*/


/*----------------- 404 page ----------------*/

.image-404 {
    width: 50%;
    height: 60vh;
    display: flex;
    justify-content: center;
}

.not-found-page {
    width: 100%;
    color: #FFC107;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-image: radial-gradient(circle at center center, transparent, rgb(0, 0, 0)), linear-gradient(87deg, rgba(80, 80, 80, 0.05) 0%, rgba(80, 80, 80, 0.05) 50%, rgba(6, 6, 6, 0.05) 50%, rgba(6, 6, 6, 0.05) 100%), linear-gradient(105deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.05) 50%, rgba(155, 155, 155, 0.05) 50%, rgba(155, 155, 155, 0.05) 100%), linear-gradient(212deg, rgba(130, 130, 130, 0.05) 0%, rgba(130, 130, 130, 0.05) 50%, rgba(81, 81, 81, 0.05) 50%, rgba(81, 81, 81, 0.05) 100%), linear-gradient(139deg, rgba(65, 65, 65, 0.05) 0%, rgba(65, 65, 65, 0.05) 50%, rgba(181, 181, 181, 0.05) 50%, rgba(181, 181, 181, 0.05) 100%), linear-gradient(331deg, rgba(8, 8, 8, 0.05) 0%, rgba(8, 8, 8, 0.05) 50%, rgba(120, 120, 120, 0.05) 50%, rgba(120, 120, 120, 0.05) 100%), linear-gradient(117deg, rgba(135, 135, 135, 0.05) 0%, rgba(135, 135, 135, 0.05) 50%, rgba(63, 63, 63, 0.05) 50%, rgba(63, 63, 63, 0.05) 100%), radial-gradient(circle at center center, hsl(127, 1%, 24%), hsl(127, 1%, 24%));
}

.image-404 img {
    width: 100%;
    height: 100%;
}

.btn404 {
    margin-top: 30px !important;
    background-color: #FFC107;
    font-size: 16px;
    font-weight: bold;
}

.btn404:hover {
    color: #221E1F;
}


/*----------------- end 404 page style ----------------*/


/*-----------------about us ----------------*/

.about_us {
    /* padding-bottom: 30px; */
    text-align: right;
    /* background-image: linear-gradient(90deg, rgba(165, 165, 165, 0.03) 0%, rgba(165, 165, 165, 0.03) 8%, rgba(235, 235, 235, 0.03) 8%, rgba(235, 235, 235, 0.03) 9%, rgba(7, 7, 7, 0.03) 9%, rgba(7, 7, 7, 0.03) 14%, rgba(212, 212, 212, 0.03) 14%, rgba(212, 212, 212, 0.03) 17%, rgba(219, 219, 219, 0.03) 17%, rgba(219, 219, 219, 0.03) 95%, rgba(86, 86, 86, 0.03) 95%, rgba(86, 86, 86, 0.03) 100%), linear-gradient(67.5deg, rgba(80, 80, 80, 0.03) 0%, rgba(80, 80, 80, 0.03) 11%, rgba(138, 138, 138, 0.03) 11%, rgba(138, 138, 138, 0.03) 17%, rgba(122, 122, 122, 0.03) 17%, rgba(122, 122, 122, 0.03) 24%, rgba(166, 166, 166, 0.03) 24%, rgba(166, 166, 166, 0.03) 27%, rgba(245, 245, 245, 0.03) 27%, rgba(245, 245, 245, 0.03) 89%, rgba(88, 88, 88, 0.03) 89%, rgba(88, 88, 88, 0.03) 100%), linear-gradient(67.5deg, rgba(244, 244, 244, 0.03) 0%, rgba(244, 244, 244, 0.03) 4%, rgba(16, 16, 16, 0.03) 4%, rgba(16, 16, 16, 0.03) 10%, rgba(157, 157, 157, 0.03) 10%, rgba(157, 157, 157, 0.03) 20%, rgba(212, 212, 212, 0.03) 20%, rgba(212, 212, 212, 0.03) 83%, rgba(5, 5, 5, 0.03) 83%, rgba(5, 5, 5, 0.03) 84%, rgba(237, 237, 237, 0.03) 84%, rgba(237, 237, 237, 0.03) 100%), linear-gradient(90deg, #ffffff, #ffffff); */
    background-position: center;
    background-size: 100% 100%;
    background-attachment: fixed;
    color: #333;
}

.about_us_content p {
    line-height: 26px;
    font-size: 14px;
}

.about_devider {
    shape-outside: polygon(100% 100%, -0.18% 2px, 0px 100%);
    width: 35%;
    height: 200px;
    float: right;
    opacity: .2;
    display: block;
}

.about_img {
    position: absolute;
    left: unset;
    top: 0;
    height: 180px;
    width: 33%;
    padding: 10px;
    border: unset;
    right: 0;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about_us_content {
    position: relative;
    /* min-height: 350px; */
    margin: 30px 0;
}

.aboutUsBaner img {
    height: auto;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
    max-height: 400px;
}

.about_us .companies {
    background: #e3e3e3;
    padding: 20px 0;
}

.about_us>div:nth-child(4) {
    background-color: #828282 !important;
}

.about_us .companyName {
    font-size: 16px;
    color: #333 !important;
    margin: 10px 0;
    display: block;
}

/* .about_txt{
    padding-top: 30px;
} */

.iso {
    position: relative
}

.iso .companyBox:hover {
    border: 4px solid #891400;
    border-radius: 50%;
}

.iso .item img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.btn.prev,
.btn.next {
    color: #891400 !important;
}

.iso .sliderNavigation .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 45%;
    z-index: 10;
}

.iso .sliderNavigation .next {
    left: 0%;
}

.iso .sliderNavigation .prev {
    right: 0%;
}

@media only screen and (max-width:600px) {
    .about_img {
        width: 100%;
        position: initial;
    }

    .about_devider {
        display: none;
    }
}


/*----------------- end about us ----------------*/


/*----------------- service inner----------------*/

.service_inner {
    padding: 30px 0;
    background-image: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255) 25%, rgb(255, 255, 255) 75%, transparent 100%), repeating-linear-gradient(90deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 5px), repeating-linear-gradient(0deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 5px), repeating-linear-gradient(0deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 15px), repeating-linear-gradient(90deg, rgba(98, 98, 98, 0.06) 0px, rgba(98, 98, 98, 0.06) 1px, transparent 1px, transparent 15px), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

.sevice_img img {
    border-radius: 5px;
    width: 100%;
    height: 300px;
}

.service_txt {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service_txt p {
    margin-bottom: .5rem;
}


/*----------------- end service----------------*/


/*----------------- ruls---------------*/

.ruls {
    background-image: linear-gradient(90deg, transparent 0%, rgb(255, 255, 255) 20%, rgb(255, 255, 255) 80%, transparent 100%), repeating-linear-gradient(0deg, rgba(9, 113, 206, 0.06) 0px, rgba(9, 113, 206, 0.06) 1px, transparent 1px, transparent 13px), repeating-linear-gradient(90deg, rgba(9, 113, 206, 0.06) 0px, rgba(9, 113, 206, 0.06) 1px, transparent 1px, transparent 13px), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    background-position: center;
    background-attachment: fixed;
    background-size: 100% 100%;
    padding: 30px 0;
    text-align: right;
    line-height: 26px;
}

.ruls_content p {
    margin-bottom: 2rem;
}

.ruls_us_title {
    padding: 20px;
}


/*-----------------end ruls---------------*/


/*-----------------complaint---------------*/

.complaint_form input {
    margin-bottom: 1rem;
}

.complaint {
    padding: 30px 0;
    text-align: right;
    background: #EFEFEF;
}

.complaintImg {
    height: 600px;
    object-fit: cover;
}

.whiteBox {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #fff;
    ;
}

.complaint_form .secondary_btn {
    background: #891400;
    color: #fff;
}

@media (max-width:991px) {
    .complaintImg {
        height: 200px;
    }


}

/*-----------------------basket-------------------------*/

.basket {
    color: #6e6b6b;
}

.basketIcon {
    width: 75px;
    height: 75px;
    filter: brightness(2);
}

.sendinfo_icon {
    background: url('../images/basketIcons.png') 89px 89px;
}

.payment_icon {
    background: url(../images/basketIcons.png) 159px 89px;
}

.confirm_icon {
    background: url(../images/basketIcons.png) 294px 89px;
}

.bill_icon {
    background: url(../images/basketIcons.png) 228px 89px;
}

.tab_span.activeT .basketIcon {
    filter: grayscale(0);
}

.basket .nav_tabs {
    border-bottom: 0 !important;
    position: relative;
}

.bas_Tab {
    display: flex;
    justify-content: center;
    text-align: center;
}

.tab_span.activeT {
    filter: brightness(0);
}

.tab_span {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #c7c1c1;
}

.tab_span::after {
    content: '';
    background-color: #fff;
    border: 2px solid #585353d6;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    bottom: -18px;
    left: 45%;
    z-index: 10;
}

.basket .nav_tabs::after {
    content: '';
    background-color: #585353d6;
    height: 3px;
    width: 100%;
    position: absolute;
    bottom: -14px;
    left: 0;
    right: 0;
    z-index: -1;
}

.tab_span.activeT::after {
    background-color: #ffcc00;
}

.tab_content .active {
    display: block !important
}

.basket .tab_pane {
    text-align: right;
    background-color: #fff;
    border-radius: 15px;
}

.basketpro_titles {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 12px;
    font-size: 14px;
}

.tab_content {
    margin: 35px 0;
}

.basketProInfo {
    padding: 15px;
    text-align: center;
}

.infoPrime {
    font-size: 11px;
    display: flex;
    margin-top: 10px;
}

.productprice,
.productCount {
    display: flex;
    align-items: center;
    justify-content: center;
}

.no_item {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basketbtns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.colorSpan {
    padding: 5px;
    border-radius: 5px;
}

.formLbl {
    text-align: right;
    display: flex;
    align-items: center;
}

.formLbl span {
    color: red;
    margin-left: 5px;
}

.formInput input {
    border: 0;
    background-color: unset
}

.formInput {
    border: 1px solid #e9ecef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.username_icon,
.password_icon {
    border-left: 1px solid #e9ecef;
}

.login_links {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.login_links .btn:hover {
    color: #ffcc00;
}

.navbarTxt {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-align: center;
}


/*==success==*/

.basket_bill {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 2;
    padding: 60px 0;
    font-weight: bold;
    line-height: 3
}


/*==address==*/

.address_line {
    display: flex;
    align-items: center;
}

.address_info {
    align-items: start;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.user_address_item {
    border-top: 1px solid #504d4d59;
    padding: 5px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.userAddress_card {
    border: 1px solid #3333;
    padding: 20px;
    border-radius: 10px;
}

.address_title {
    border-bottom: 1px solid #94919161;
    padding: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address_delete,
.address_edit {
    border-radius: 50%;
    color: #fff !important;
    background-color: #ffcc00;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address_edit {
    background-color: #c1c4c5;
}

.address_edit:hover {
    background-color: #bebfc0;
}

.address_delete:hover {
    background-color: #000;
}

.address_btns {
    display: flex;
    align-items: center;
}

.address_modal_input {
    margin-top: 10px;
    font-size: 14px;
}

.pick_address .lable {
    padding-left: 0;
}


/*==basketProducts==*/

.payment_information {
    border: 1px solid rgba(153, 149, 149, 0.452);
    border-radius: 10px;
    overflow: hidden;
}

.basketOrders {
    padding: 20px;
}

.basketproduct img {
    width: 100px;
    height: 100px;
}

.pro_plus_count {
    background-image: radial-gradient(#ffffff, #f1f1f1, #dedede);
    color: #000;
    padding: 4px 8px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
}

.pro_minus_count {
    background-image: radial-gradient(#ffcc004f, #ffcc006e, #ffcc00);
    color: #000;
    padding: 3px 9px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
}

.deleteProBtn {
    position: absolute;
    left: 20px;
    top: -3px;
    color: #525050;
}

.deleteProBtn:hover {
    color: #ffcc00;
}

.shop_product_item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(153, 149, 149, 0.452);
}

.text-primary {
    color: #ffcc00;
}

.shop_totalprice {
    text-align: left;
    font-size: 13px;
    width: 100%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.mobile_title {
    display: none;
}

.basket_shopname {
    text-align: center;
    margin-top: 10px;
}

.total_ine {
    text-align: left;
}

.basketpaymentItems .paymentItem+.paymentItem {
    border-top: 1px solid rgba(207, 205, 205, 0.671);
}


/*==basket invoice==*/

.invoice_info .basketpro_titles {
    display: flex !important;
    align-items: center;
    padding-top: 15px;
    border: 1px solid #dee2e6;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
}

.invoice_logo .navbar-brand {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.invoice_prices {
    box-shadow: 0 0 8px 0px #e6e4e4;
    padding: 11px;
    border-radius: 10px;
    margin-top: 20px;
}

.invoice_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.invoice_prices ul {
    width: 100%;
    line-height: 3;
    font-size: 13px;
    margin-bottom: 0;
}

.invoice_price_total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffcc00;
    font-size: 16px;
}

.invoice_table {
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 0;
}

.invoiceProducts {
    border-radius: 10px;
    padding: 8px 0;
}

.invoice .basketpro_titles {
    min-width: 1319px;
    border-bottom: 0;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
    height: 46px;
}

.reciever_info {
    border: 1px solid rgba(153, 149, 149, 0.452);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 10px;
    background-color: #e0e0e0;
}

.shop_table_one {
    overflow-y: visible;
}

.shop_table_one .infoPrime {
    justify-content: center;
}

.discountCode {
    display: flex;
    align-items: center;
    width: 50%;
    margin: 20px 0;
}

.discountCode input {
    border-radius: 20px;
}

.merchant-container .selectRadio {
    top: 40%;
}

.invoice .pro_total {
    text-align: center;
}


/*==basket invoice(single)==*/


/* .invoice_info .basketpro_titles .tab_titlee {
    width: 20%;
    text-align: center;
}
.invoice_table.table td {
    min-width: 263px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
}

.invoice_table.table th {
    min-width: 263px;
    text-align: center;
} */


/*==basket invoice(several)==*/

.invoice_info .basketpro_titles .tab_titlee {
    width: 17%;
    text-align: center;
}

.invoice_table.table td {
    min-width: 219px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
}

.invoice_table.table th {
    min-width: 219px;
    text-align: center;
}

.invoice .shop_totalprice {
    border-right: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    width: 1317px;
}

.invoiceProducts {
    border-bottom: 1px solid #dee2e6;
}

@media only screen and (max-width:1400px) {
    .invoice .invoiceProducts {
        overflow-x: scroll;
    }

    .homeategory .prev {
        position: absolute;
        top: calc(50% - 230px);
        right: 40px;
        z-index: 100;
    }

    .homeategory .next {
        position: absolute;
        top: calc(50% - 230px);
        left: 40px;
        z-index: 100;
    }

}

@media only screen and (max-width:600px) {
    .invoiceProducts .basketpro_titles {
        display: block;
    }

    .invoice .productprice,
    .invoice .productCount,
    .invoice .pro_total {
        justify-content: center;
    }

    .discountCode {
        width: 100%;
        flex-direction: column;
    }
}

@media only screen and (max-width:991px) {
    .homeategory .prev {
        position: absolute;
        top: calc(60% - 230px);
        right: 40px;
        z-index: 100;
    }

    .homeategory .next {
        position: absolute;
        top: calc(60% - 230px);
        left: 40px;
        z-index: 100;
    }

    .infoPrime {
        display: flex;
        flex-wrap: wrap;
        line-height: 2.5;
        margin-top: 0;
    }

    .basketProInfo {
        padding: 0;
    }

    .deleteProBtn {
        left: -7px;
        top: -9px;
    }
}

@media only screen and (max-width:600px) {
    .homeategory .next {
        position: absolute;
        top: 200px !important;
        left: 0px !important;
        z-index: 100;
    }

    .homeategory .prev {
        position: absolute;
        top: 200px !important;
        right: 0px !important;
        z-index: 100;
    }

    .basket .nav_tabs {
        font-size: 11px;
    }

    .user_address_item {
        flex-direction: column;
    }

    .deleteProBtn {
        left: -15px;
        top: -135px;
    }

    .basketOrders .basketpro_titles {
        display: none;
    }

    .mobile_title {
        display: block;
    }

    .basket .tab_content {
        padding: 5px;
    }

    .productprice {
        font-size: 13px;
        justify-content: flex-start;
    }

    .pro_total {
        justify-content: space-between !important;
        width: 100%;
        display: flex;
    }

    .productCount {
        justify-content: flex-end;
    }

    .address_title {
        padding: 0;
    }
}


/*------------- end basket -----------*/


/*------------------compare----------------*/

.compare_table td {
    min-width: 265px;
    text-align: right;
}

.compare_table tr td:first-child {
    min-width: 145px;
}

.remove_td {
    background-color: rgb(211, 206, 206);
    border-radius: 50%;
    margin-bottom: 5px;
}

.compare_search {
    margin-bottom: 20px;
}


/*--------- end compare ------------*/


/***********************profile *********************/

.userImgBox img {
    width: 100%;
    height: 100%;
}

.loginRegister {
    min-height: 500px;
    background: url(../images/loginBack.png );
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px 0;
}

.loginBox .from-group {
    margin-bottom: 15px;
}

.loginBox .captcha {
    display: flex;
}

.loginBox .captchaImg {
    background: #fff;
    border-radius: 8px;
    height: 42px;
    border: 1px solid #3333;
    margin-right: 10px;
    width: 50%;
}

.loginBox .loginFooter {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.loginBox .loginFooter button {
    margin: 0;
}

.profile {
    padding: 50px 0;
    background: #f9f9f9;
}

.userImgBox {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
    margin: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-top: auto;
    border: 1px solid #3333;
    padding: 5px;
    margin-top: -50px;
    margin-bottom: 10px;
    background: #fff;
}

.userBox {
    border: 1px solid #3333;
    border-radius: 5px;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    background: #fff;
}

.panelOptions {
    border: 1px solid #3333;
    border-radius: 5px;
    margin-top: 10px;
    padding: 10px;
    text-align: right;
    font-size: 12px;
    margin-bottom: 0;
    color: #a0a0a0;
    background: #fff;
}

.panelOptions .optionItem {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: 0.2s;
}

.optionItem img {
    width: 30px;
    height: 30px;
}

.panelOptions li:hover {
    background-color: #d3d3d317;
}

.panelOptions li+li {
    border-top: 1px solid #3333;
}

.editeDashboard,
.back2Dashboard {
    border: 1px solid #3333;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    top: 10px;
    transition: 0.2s;
}

.back2Dashboard {
    right: 10px;
}

.editeDashboard {
    left: 10px;
}

.editeDashboard img,
.back2Dashboard img {
    width: 30px;
    height: 30px;
}

.optionItem span {
    margin-right: 10px;
    color: #404040;
    transition: 0.2s;
}

.profileTitle {
    height: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #010101;
    position: relative;
}

.profileTitle h6::after {
    content: "";
    height: 1px;
    background: #3333;
    width: calc(100% - 170px);
    left: 0;
    top: 14px;
    position: absolute;
}

.profileBox {
    border: 1px solid #bfbfbf33;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    background: #FFF;
    text-align: center;
}

.profileBox>div {
    height: 80px;
    border: 1px solid #bfbfbf33;
    width: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 5px 10px;
}

.profileBox .seeMore {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.profileBox .seeMore button {
    font-size: 12px;
    transition: 0.2s;
    border: 0;
    background: #fff;
}

.lastOrders>div {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.lastOrders>div>img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.lastOrders span,
.lastOrders strong {
    font-size: 12px;
    text-align: right;
}

.lastOrders .del {
    position: absolute;
    height: 30px;
    width: 30px;
    border: 1px solid #3333;
    top: 20px;
    left: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profileBox>div>span {
    color: #a0a0a0;
    font-size: 12px;
}

.profileBox>div>strong {
    color: #a0a0a0;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 14px;
}

.bankCart strong {
    direction: ltr;
}

.profileBox table td,
.profileBox table th {
    min-width: 100px;
}

@media only screen and (max-width:500px) {
    .profileBox>div {
        width: 100%;
    }
}

.addressItem .dropright,
.lastItem .dropright {
    position: absolute;
    left: 10px;
    top: 10px;
}

.addressItem {
    font-size: 13px;
    line-height: 30px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    padding-left: 10px;
    padding-left: 50px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #3333;
    margin-bottom: 10px;
    position: relative;
}

.addressItem .dropright button,
.lastItem .dropright button {
    border-radius: 5px !important;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.addAddress {
    background: #333;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    box-shadow: 0 0 10px -5px #333;
    margin-right: auto;
    transition: 0.5s;
}

.addAddress:hover {
    transform: rotate(90deg);
    color: #FFF;
}

.orderTitle {
    justify-content: flex-start;
    width: 100%;
}

.orderTitle .active {
    background-color: #fff !important;
    border: 2px solid #01b16e !important;
    color: #01b16e !important;
    font-weight: bold;
}

.orderTitle input:checked+label {
    background: #ffce12;
    color: #010101 !important;
    border: 1px solid #010101;
}

.orderTitle input {
    display: none;
}

.orderTitle input+label {
    border: 1px solid #3333;
    padding: 5px 10px;
    border-radius: 5px;
    color: #a0a0a0;
    margin-left: 10px;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
}

.ordersContent {
    height: auto;
    border: 1px solid #3333;
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}

.orderItem {
    border: 1px solid #3333;
    border-radius: 5px;
    margin-bottom: 10px;
}

.orderItem .itemHeader {
    height: 30px;
    width: 100%;
    border-bottom: 1px solid #3333;
    display: flex;
    justify-content: space-between;
    padding: 5px 7px;
    font-size: 12px;
}

.orderSumrize {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 70px;
    padding: 0 10px;
}

.orderItem .itemFooter {
    height: 30px;
    display: flex;
    width: 100%;
    border-top: 1px solid #3333;
    justify-content: space-between;
    padding: 5px 7px;
    font-size: 12px;
}

.orderItem img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.orderItemContent {
    min-height: 100px;
    border: 1px solid #3333;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #f9f9f9;
    display: none;
}

.orderItemContent table th,
.orderItemContent table td {
    min-width: 100px;
}

.orderItemContent table {
    font-size: 12px;
    font-weight: normal;
    text-align: center;
}

.lastItem {
    display: flex;
    background: #fff;
    border: 1px solid #3333;
    padding: 10px;
    padding-left: 10px;
    border-radius: 5px;
    position: relative;
    padding-left: 50px;
    margin-bottom: 10px;
}

.lastItem img {
    width: 80px;
    height: 80px;
}

.lastItem .lastItemTxt {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-right: 19px;
    justify-content: space-between;
}

s .addressItem .dropright,
.lastItem .dropright {
    position: absolute;
    left: 10px;
    top: 10px;
}

.lastItem>button {
    position: absolute;
    border: 1px solid #3333;
    bottom: 10px;
    left: 10px;
    font-size: 13px;
}

.comentParent {
    overflow: hidden;
}

.commentBox {
    height: 281px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #3333;
    overflow: hidden;
}

.commentBox>div {
    height: 80px;
    border: 1px solid #bfbfbf33;
    width: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 5px 10px;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    font-size: 13px;
}

.commentBox img {
    width: 50px;
}

.closeMsg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    background: #b00e0e !important;
    color: #fff;
    font-size: 13px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 5px;
    box-shadow: 4px 0 10px -5px #000;
    opacity: 1;
    z-index: 1000;
}

.product_rating {
    color: #fac74b;
}

.homCategory {
    padding: 40px 0;
}

@media (min-width: 576px) {
    .suggestionModal .modal-dialog {
        max-width: 850px;
    }
}


/*--------------- end profile ------------*/


/*---------------------service--------------------*/

.services {
    background: #EFEFEF;
}

.serviceFilter {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    height: 90px;
    transition: all .3s ease-in-out;
}

.height_auto {
    height: auto;
}

.filter_manager_state_js {
    position: absolute;
    top: 5px;
    left: 10px;
    padding: 0;
    margin: 0;
}


.serviceFilter>button {
    margin: 10px 5px;
    border-radius: 10px;
}

.serviceFilter>button.active {
    background: #891400 !important;
    color: #fff;
}

.service_img {
    height: 200px;
    width: 100%;
    display: block;
}

.service_img img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.service_info {
    text-align: justify;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

.service_btn {
    display: flex;
    justify-content: flex-end;
}

.service_txt p {
    overflow: hidden;
    font-size: 14px;
    color: #aaa9a9;
    margin-top: 10px;
    line-height: 26px;
}

.service_item {
    border: 1px solid #d2cfcf8a;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    background: #fff;
}

.service_search {
    margin-bottom: 20px;
    border-bottom: 1px solid #d2cfcf8a;
    padding-bottom: 20px;
}

@media only screen and (max-width:991px) {
    .service_img {
        height: 100px;
        width: 100px;
        margin-right: auto;
    }
}

@media only screen and (max-width:600px) {
    .service_title {
        position: absolute;
        top: -50%;
        left: 40%;
        right: 5%;
        height: 100px;
        overflow: hidden;
    }

    .service_txt p {
        max-height: 117px;
        height: auto;
    }

    .service_info {
        height: 220px;
    }
}


/*------------------ end service ------------------*/


/*--------------------- recruitment ------------------*/

.Recruitment {
    padding: 30px 0 50px;
}

.site_title {
    color: var(--gray-dark);
    padding: 20px 0;
    transition: all .5s;
}

.site_title h1::before {
    content: '#';
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    right: -15px;
    opacity: 0;
    transition: all .3s !important;
}

.site_title h1:hover::before {
    opacity: 1;
}

.Recruitment input {
    transition: .2s;
    border-radius: 0 !important;
    border: 0;
    border-bottom: 1px solid var(--dark);
}

.Recruitment input:focus::placeholder {
    color: var(--blue);
}

.Recruitment input:focus {
    box-shadow: initial !important;
    border-bottom: 1px solid var(--primary) !important;
    font-weight: bold;
}

.recruitment_img img {
    width: 100%;
    height: 320px;
    border-radius: 5px;
}

.Recruitment input::placeholder {
    font-size: 15px;
}

.upload_btn {
    height: 40px;
    width: 100px;
}


/*------------------ commnet --------------*/

.comment_page::after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    width: 50%;
    height: 100%;
    z-index: 1;
    background: #0000009e;
}

.comment_page {
    background-image: url(../images/12014.jpg);
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: relative;
}

.comment_page .title {
    color: #fff;
    position: relative;
    z-index: 99;
    padding-bottom: 0px;
}

.compForm {
    padding: 30px 50px;
    position: relative;
    z-index: 2;
}

.captcha {
    margin-bottom: 1rem;
}

.siteForm {
    border-radius: 15px !important;
    margin-bottom: 1rem;
    height: 50px !important;
}

.complaimentText {
    width: 100%;
    margin-top: 1rem;
    border-radius: 15px 15px 0 0 !important;
}

.captcha p {
    color: #fff;
}

.captcha_question {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
    color: var(--dark);
    background-color: #fff;
    border-radius: 0px;
    height: 42px;
    width: 100%;
}

.captcha_question p {
    margin: 0;
    padding: 0 0 0 20px;
}

.captcha_question p {
    color: var(--black-site);
    padding-left: 1rem;
}

.submitBtn {
    display: flex;
    justify-content: flex-end;
}

.submit {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 120px;
    background-color: var(--dark);
    color: #fff;
    border-radius: 0px;
    border: 1px solid #fff !important;
}

.comment_page .title::before {
    content: '';
    position: unset;
    height: unset;
    width: unset;
    background-color: unset;
    top: unset;
    margin: unset;
}


/*-------------------------------------login----------------------------------------*/

.loginRegister .btn:focus {
    box-shadow: unset !important;
}

.loginRegister input {
    height: 50px !important;
    border-radius: 8px !important;
}

.loginRegister textarea {
    border-radius: 8px !important;
    min-height: 100px;
}

.loginRegister input:focus,
.loginRegister textarea:focus {
    border-color: rgb(202, 199, 199) !important;
    box-shadow: 0 0 5px 0 rgb(202, 199, 199) !important;
}

.loginRegister input[type=checkbox]:focus,
.loginRegister input[type=radio]:focus {
    box-shadow: unset !important;
}

.loginRegister .page_title {
    text-align: center;
    margin: 30px 0;
    color: var(--dark);
}

.loginRegister {
    min-height: 500px;
    background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.02) 0%, rgba(116, 116, 116, 0.02) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.02) 96%, rgba(177, 177, 177, 0.02) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.02) 0%, rgba(148, 148, 148, 0.02) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.02) 0%, rgba(16, 16, 16, 0.02) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.02) 71%, rgba(181, 181, 181, 0.02) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    background-size: cover;
    background-repeat: no-repeat;
    padding: 15px 0;
}

.loginBox .from-group {
    margin-bottom: 15px;
}

.loginBox .captcha {
    display: flex;
}

.loginBox .captchaImg {
    background: #fff;
    border-radius: 8px;
    height: 50px;
    border: 1px solid #3333;
    margin-right: 10px;
    width: 50%;
}

.loginBox .loginFooter {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.loginBox .loginFooter button {
    margin: 0;
}

.recoverPass_btn {
    margin-top: -6px;
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    text-align: right;
    text-decoration: underline;
    color: var(--blue);
}

@media only screen and (max-width:600px) {
    .registerBox {
        /* border-top: 1px solid rgba(180, 177, 177, 0.623); */
        margin-top: 50px;
    }
}


/*---- EDIT TEMPLATE 1399-06-24 ----*/

.itemFooter .material-icons {
    font-size: 18px;
}


/*------------------------products-----------------------*/

.filtering_item {
    border-bottom: 1px solid #a59f9f7a;
    text-align: right;
    padding: 20px 10px;
    padding-bottom: 15px;
}

.Filter_Product h1 {
    font-size: 17px;
    text-align: right;
}

.Filter_Product {
    border: 1px solid #c1bebe85;
    border-radius: 10px;
    height: 100%;
}

.product_filter_item {
    margin-top: 10px;
}

.product_filter_item .panel_slide {
    padding-right: 40px;
}

.brand_filter input {
    margin-left: 5px;
}

.products_filter_slide {
    text-align: right;
    padding: 7px 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.products_filter_slide:hover {
    color: #ffcc00;
}

.filter_item_icon {
    margin-left: 5px;
}

.products_filter_slide:hover .filter_item_icon .fIcon_line,
.categoryExoand .filter_item_icon .fIcon_line {
    background-color: #ffcc00;
}

.categoryExoand {
    color: #ffcc00;
}

.filter_slide_body {
    line-height: 2;
    display: none;
}

.brand_filter {
    padding: 5px;
    font-size: 13px;
}

.brand_filter a {
    color: #525050;
}

.brand_filter:hover,
.brand_filter:focus,
.subCat_filter_slide:hover,
.subCat_filter_slide:focus {
    background-image: linear-gradient(90deg, #fffdf6, #fffae4, #fff8dc, #fff7d2);
    border-radius: 10px;
}

.closeFilter {
    display: none;
    position: absolute;
    top: 10px;
    left: 12px;
    background-color: #000;
    color: #fff !important;
    border-radius: 10px;
}

.showFilter {
    display: none;
    margin-right: auto;
    background-color: #ffcc00;
    padding: 10px;
}

.fIcon_line {
    width: 10px;
    height: 2px;
    background-color: #000;
}

.fI_line2 {
    transform: rotate(90deg);
    margin-top: -2px;
    transition: 0.5s;
}

.filter_subslide_body {
    line-height: 2;
    display: flex;
    align-items: center;
}

.filter_subslide_body ul {
    display: none;
}

.subCat_filter_slide {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.lable {
    position: relative;
    padding-left: 35px;
    margin: 0;
    cursor: pointer;
    font-size: 16px;
    padding-right: 23px;
}

.lable input {
    position: absolute;
    visibility: hidden;
}

.selectMark {
    position: absolute;
    top: 4px;
    right: 0px;
    height: 16px;
    width: 16px;
    background-color: white;
    border: 1px solid #999595;
    border-radius: 5px;
}

.lable input:checked~.selectMark {
    background-color: #fff;
}

.selectMark:after {
    content: "";
    position: absolute;
    display: none;
}

.lable input:checked~.selectMark:after {
    display: block;
}

.lable .selectMark:after {
    left: 3px;
    top: 3px;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    background-color: #891400;
    box-shadow: 0 0 2px 0 #891400;
}

.irs--flat .irs-line {
    height: 5px !important;
}

.irs--flat .irs-bar {
    height: 5px !important;
}

.irs--flat .irs-handle>i:first-child {
    background-color: #ffcc00;
    top: -2px;
    width: 15px;
    height: 15px;
    box-shadow: 0 0 3px 0 #ffcc00;
}

.irs--flat .irs-bar {
    background-color: #ffcc00;
}

.irs--flat .irs-min,
.irs--flat .irs-max {
    padding: 5px;
    top: -5px;
}

.irs-from,
.irs-to,
.irs-single {
    top: -4px !important;
    padding: 3px !important;
    background-color: #000000 !important;
}

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
    border-top-color: #000 !important;
}

.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child {
    background-color: #ffcc00;
}

.filter_btn .btn {
    margin: 0;
}

.filter_btn {
    margin: 20px;
}

.filter_search .searchForm {
    width: 100%;
}

.subCat_slide_body {
    display: none;
}

.productImages_slider .item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.productImages_slider.owl-carousel .owl-item img {
    width: 270px;
    height: 250px;
}

.product_price {
    color: #919191;
}

.product_images {
    position: relative;
}

.imageShow {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.product_images img {
    width: 100%;
    height: 300px;
}

.totalproducts {
    background-color: #EFEFEF;
}

.product_box {
    border-radius: 15px;
    border: 1px solid #3333;
    overflow: hidden;
    background-color: #fff;
}

.product_info {
    text-align: center;
    display: flex;
    justify-content: space-between;
    height: 100px;
    padding: 0 10px;
    align-items: center;
}

.productImages_slider .owl-dots {
    position: absolute;
    bottom: -100px;
    width: 100%;
    text-align: center;
}

.product_btns {
    text-align: center;
    margin-top: 80px;
}

.product_btn {
    width: 45px;
    height: 45px;
    background-color: #000 !important;
    border-radius: 10px;
    margin: 1px;
}

.icon_Basket {
    background: url('../images/crane-shop.png') 762px 303px;
    background-color: #ffcc00 !important
}

.icon_comapre {
    background: url(../images/crane-shop.png) 951px 250px
}

.icon_Favorites {
    background: url(../images/crane-shop.png) 855px 251px
}

.filter_body {
    overflow: hidden;
    position: relative;
}

.filter_body::after {
    content: '';
    background-color: #151414a6;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 10;
}

.filter_box {
    height: 100%;
}

.sort {
    border-bottom: 1px solid #3333;
    display: flex;
    align-items: center;
    height: auto;
    justify-content: center;
    padding: 30px 10px;
}

.sort ul {
    display: flex;
    align-items: center;
    margin: 0;
}

.sort ul li {
    font-size: 12px;
    margin: 5px;
}

.sort ul li {
    font-size: 12px;
}

.sort ul li label {
    margin-bottom: 0;
    text-align: center;
    height: 70px;
    min-width: 150px;
    background: #fff;
    display: flex;
    justify-content: center;
    box-shadow: 1px 1px 5px -2px #333;
    align-items: center;
    border-radius: 15px;
    font-size: 15px;
    cursor: pointer;
}

.sort ul li input:checked+label {
    background: #891400;
    padding: 4px;
    color: #fff;

}

.sort ul li input {
    display: none;
}

.totalpro_box .sort ul {
    flex-wrap: wrap;
}

@media only screen and (max-width:991px) {
    .productImages_slider.owl-carousel .owl-item img {
        width: 145px;
        height: 139px;
    }

    .showFilter,
    .closeFilter {
        display: block;
    }

    .Filter_Product {
        position: fixed;
        top: 0;
        right: -130%;
        bottom: 0;
        background-color: #fff;
        transition: 0.5s;
        z-index: 1000;
        border-radius: 0;
        padding-top: 40px;
    }

    .slideFilter {
        right: 0;
        transition: 0.5s;
        height: 100vh;
        overflow: scroll;
        width: 50%;
    }

    .totalpro_box .col-lg-3 {
        position: initial;
    }

    .product_images img {
        height: 160px;
    }

    .product_info {
        flex-direction: column;
        justify-content: center;
    }
}

@media only screen and (max-width:600px) {
    .product_btns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .slideFilter {
        width: 70%;
    }

    .sort strong {
        display: none;
    }
}


/*----------------------END  PRODUCT--------------------*/


/*------------------PRODUCT DETAIL--------------------------*/

.proDetail_img img {
    width: 200px;
    height: 200px;
}

.proDetail_img {
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product_details {
    padding: 20px 0;
}

.proDetail_part {
    text-align: right;
    line-height: 2
}

.proDetail_line {
    display: flex;
    align-items: flex-start;
    padding: 10px;
    flex-direction: column;
}

.proDetail_line .discountPro .firstPrice::after {
    width: 80px;
    right: -10px;
    top: 14px;
}

.proDetail_line .discount_percent {
    left: -50px;
}

.proDetail_line .discountPro {
    width: fit-content;
}

.proDetails {
    padding-bottom: 20px
}

.add_to_basket {
    text-align: right;
    margin-top: auto;
}

.add_to_basket .btn {
    margin: 5px 2px;
}

.basket-page .discountPro {
    width: 50%;
}

.basket-page .discountPro .firstPrice::after {
    width: 56px;
    height: 1px;
    position: absolute;
    right: 30%;
    top: 11px;
}

.basket-page .discount_percent {
    left: -2px;
    position: absolute;
    color: #fff !important;
    top: 4px;
}

.proDetail_name {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.proDetail_name h1 {
    font-size: 25px;
}

.proDetail_box {
    text-align: right;
    line-height: 2
}

.bordered_title {
    font-size: 19px;
    position: relative;
}

.bordered_title::after {
    content: '';
    height: 1px;
    background-color: #dee2e6;
    position: absolute;
    width: 88%;
    top: 23px;
    left: 0%;
}

.specification_one {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.specification_title,
.specification_text {
    width: 50%;
    padding: 5px 10px;
    margin: 5px;
    text-align: right;
    background-color: #fff;
}

.product_comments {
    border-radius: 10px
}

.comment_name_date {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.comment_name_date span {
    font-size: 13px
}

.comment_userImg {
    width: 60px;
    height: 60px;
    position: relative;
}

.comment_userImg img {
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.comment_info {
    display: flex;
    align-items: center
}

.comment_item {
    padding: 20px;
    background-color: #f5f4f4;
    text-align: justify
}

.comment_item+.comment_item {
    margin-top: 20px;
    border-top: 1px solid #bebcbc4f
}

.reply_item {
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    background-color: #fff;
}

.comment_text {
    padding: 20px 0
}

.product_explainations {
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    overflow: hidden;
}

.product_explainations .nav-tabs .nav-link.active {
    background-color: #f5f4f4;
    color: #333;
    border-bottom: 0 !important
}

.product_explainations .tab-content .tab-pane {
    padding: 20px;
    background-color: #f9f9f952;
    border-radius: 0 0 5px 5px;
}

.product_explainations .nav-tabs {
    background-color: #fdfdfd;
    font-size: 15px;
}

.offline_user::after,
.online_user::after {
    content: '';
    width: 25%;
    height: 25%;
    position: absolute;
    z-index: 0 !important;
    right: 10%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #3c3a3a;
    top: 0;
}

.offline_user::after {
    background: #aeb4b7;
}

.online_user::after {
    background-color: #01b16e
}

.product_rating {
    color: #fac74b;
}

.discountPro {
    display: flex;
    flex-direction: column;
    position: relative;
}

.discountPro .firstPrice {
    color: rgba(158, 154, 154, 0.438)
}

.discountPro .firstPrice::after {
    content: '';
    background-color: rgba(158, 154, 154, 0.17);
    /* width: 100%;
	*/
    height: 1px;
    position: absolute;
    right: 35%;
    top: 21px;
    left: 30%;
}

.discount_percent {
    background-color: #ff0000bf;
    padding: 0px 14px;
    border-radius: 20px;
    font-size: 13px;
    /* height: 35px;
	*/
    left: 30px;
    position: absolute;
    color: #fff !important;
}

.thumbnails-style-shaded.mz-thumb img {
    width: 100px;
    height: 100px;
}

.magic_big_img img {
    height: 300px !important;
    width: 300px !important;
    max-height: 300px !important;
    max-width: 300px !important
}

.magic_big_img {
    display: flex;
}

.magic_options {
    margin-top: auto;
    justify-content: center;
    flex-wrap: wrap;
}

.magic_options img {
    padding: 10px;
    width: 70px;
    height: 70px
}

.product-detail-magiczoom {
    border: 1px solid #a5a2a28c;
    border-radius: 5px;
    padding: 20px 0;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 0 10px -5px;
    display: flex;
    flex-direction: column;
}

[id^="crM"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.p_color .btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 5px;
}

.Size:focus {
    padding: 10px;
    box-shadow: inset 0 0 5px 0px grey;
}

.Size {
    padding: 10px;
}

.p_color .btn:focus {
    box-shadow: 0 0 5px 3px
}

.p_size select {
    padding: 5px 10px;
    border: 1px solid #c5c4c4;
}

.selectColor,
.selectSize {
    border: 1px solid #33333340;
    box-shadow: 0 0 4px 0px #000;
}

.p_size .btn-size {
    background: #fff !important;
    color: #333 !important;
    text-shadow: unset !important;
    border: 1px solid #3333;
    border-radius: 5px;
}

.btn-color {
    border-radius: 5px;
}

.selectColor {
    box-shadow: unset !important;
    border-radius: 5px !important;
}

.selectColor {
    position: relative
}

.selectColor::after {
    content: ' ';
    position: absolute;
    top: -10px;
    background: #fff url(../images/checked.png);
    height: 24px;
    width: 24px;
    border-radius: 50%;
    right: -10px;
    transform: scale(0.8);
    z-index: 1000
}

.sharePro {
    height: 60px;
    border: 1px dashed #333;
}

.share {
    position: absolute;
    left: 10px;
    bottom: 0;
}

.shareItem {
    width: 40px;
    margin-right: 2px;
    padding: 4px;
    box-shadow: 0 0 10px -5px;
    border-radius: 5px;
    filter: grayscale(0.9);
    transition: 0.5s
}

.shareItem:hover {
    filter: grayscale(0);
}

.priCeBox {
    padding: 10px;
    border: 1px solid #3333;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px -5px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.buyPreInfo {
    text-align: right;
    font-size: 12px;
    margin: 11px;
}

.counterProduct {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    padding-right: 0px;
}

.counterProduct>button {
    margin-top: 10px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.addcount {
    width: 65px;
    margin-right: 10px;
    height: 39px;
    padding: 0 5px;
}

.likeAndcomp {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-right: -5px;
    padding-left: -5px;
}

.likeAndcomp a,
.likeAndcomp button {
    border-radius: 5px !important;
    width: 49%;
    margin: 0 !important;
}

.seller-list-item {
    background-color: #f9f9f952;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #e3e3e3;
    font-size: 14px;
}

.active-sell {
    border: 2px solid #b7b7b7;
}

.pro-seller-detail {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #7b7777;
    width: 100%;
}

.pro-seller-detail button {
    display: flex;
    align-items: center;
}

.specialOption {
    position: absolute;
    right: 46%;
    background: #fdfdfd;
    z-index: 100;
    top: 0;
    border: 1px solid #3333;
    padding: 0 10px;
    border-radius: 20px;
    color: #837f7f;
}

.specification_one>div {
    height: 45px;
    border: 1px solid #a2a2a233;
    border-radius: 5px;
    background: #f9f9f9;
    height: 45px
}

.specification_one {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-qr {
    border-bottom: 3px solid #5f5f5f;
    margin-bottom: 28px;
    margin-top: 10px
}

.product-qr img {
    width: 50px;
    background: #fff;
    margin-bottom: -12px;
}

.product-qr {
    border-bottom: 3px solid #5f5f5f;
    margin-bottom: 45px;
    margin-top: 0;
}

@media only screen and (max-width:991px) and (min-width:600px) {
    .thumbnails-style-shaded.mz-thumb img {
        width: 70px;
        height: 70px;
    }

    .magic_big_img img {
        height: 200px !important;
        width: 200px !important;
        max-height: 200px !important;
        max-width: 200px !important;
    }

    .product_details .product_info_list {
        margin-bottom: 3rem;
    }

    .product_details .productprice {
        flex-direction: column;
    }

    .product_details .add_to_basket button {
        width: 100%;
        padding: 12px;
        font-size: 12px;
    }

    .likeAndcomp {
        flex-direction: column;
        width: 100%;
    }
}

@media only screen and (max-width:991px) {
    .bordered_title::after {
        display: none
    }

    .bordered_title {
        border-bottom: 1px solid #bec1c0
    }
}

@media only screen and (max-width:600px) {

    .add_to_basket,
    .proDetail_part {
        text-align: center
    }

    .proDetail_part {
        margin-top: 30px;
    }

    .proDetail_line {
        justify-content: center
    }

    .discount_percent {
        background-color: unset;
        padding: 0px;
        left: 17px;
        position: absolute;
        color: #f60606 !important;
        top: 6px;
    }

    .variety {
        border-top: 1px solid #3333
    }

    .share {
        bottom: 20px;
    }

    .product-qr {
        margin-bottom: 70px;
    }

    .likeAndcomp {
        width: 100%;
        justify-content: space-around;
    }

    .likeAndcomp>.btn {
        margin: 10px 5px;
        width: 50%;
    }

    .pro-seller-detail {
        display: flex;
        align-items: center;
        justify-content: flex-start !important;
        height: 60px;
    }

    .pro-seller-detail .btn-basket {
        width: 100%;
        justify-content: center
    }

    .pro-seller-detail>div:first-child,
    .btn-basket>div:first-child {
        transform: scale(0.7);
    }

    .specialOption {
        right: 35%;
        margin-top: 4px;
    }

    .product_explainations .nav-link {
        padding: 4px 4px;
    }

    .specification_one {
        flex-direction: column
    }

    .specification_one>div {
        width: 100% !important;
    }
}


/*================================Header===========================*/

header {
    min-height: 85px;
    box-shadow: 0 0 10px -7px;
    border-bottom: 1px solid #d2cfcf8a;
}

header .navbar-brand {
    margin-right: 0px;
}

header .navbar-brand a {
    margin: 0;
}

header .navbar-brand img {
    width: 130px;
    height: 80px;
    object-fit: contain;
}

header .nav-item {
    border-radius: 0;
    padding: 5px;
    transition: all 0.5s;
}

header .nav-item.active,
header .nav-item:hover {
    background: linear-gradient(#fff 95%, #8b0f04 95%);
}



header .nav-item.active a {
    font-weight: bold;
}

header .line {
    width: 20px;
    height: 2px;
    background-color: #3333;
    margin-right: 10px;
}

.header_top {
    padding-bottom: 10px;
}

.headerMenu {
    display: flex;
    align-items: center;
}

header .navbar {
    justify-content: space-between;
    padding: 0;
}

.headerinfo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 14px;
    margin-top: 5px;
}

.headerinfo a {
    margin-left: 12px !important;
    font-weight: bold;
}

.header_btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_btns .default_btn {
    padding: 5px !important;
    background-color: #e0e0e0;
    border-radius: 20px;
    min-width: 60px;
    font-size: 12px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 5px;
}

.searchAndLang {
    display: flex;
}

.siteLang .active {
    background: #891400;
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: unset;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem;
    right: 0;
    background: rgb(51 51 51 / 85%);
    z-index: 100000;
    border-radius: 0;
}

.dropdown-item {
    color: #fff;
    text-align: right;
    display: flex !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
    border-radius: 0;
}

/* .dropdown-menu li a::before {
    content: "•";
    color: transparent;
    transition: 0.5s;
    margin-left: 10px;
} */

/* .dropdown-menu li:hover a::before {
    color: #8b0f04;
} */

.userProfile_icon {
    padding: 5px 10px;
    color: #736f6f !important;
    border: 1px solid rgba(192, 190, 190, 0.644);
    border-radius: 5px;
    width: 130px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.profile_items {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    top: 43px;
    text-align: right;
    padding: 10px 22px;
    z-index: 100;
    right: 0;
    width: 140px;
}

.profile_items a {
    color: #736f6f !important;
    width: auto;
    font-size: 13px;
}

.profile_items span {
    font-size: 11px;
    color: #ffcc00;
}

.profile_items strong {
    font-size: 15px;
}

.prfile_item_name {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #d3d0d09c;
}

.userProfile {
    position: relative;
}

.body_filter {
    height: 100vh;
    overflow: hidden;
}

.toggler_line {
    width: 20px;
    height: 3px;
    background-color: #000;
    margin-top: 5px;
}

.navbar-toggler {
    border-radius: 10px;
    padding: 6px 14px 9px;
    transition: 0.5s;
}

.collapsrBar {
    transition: 0.5s;
}

.collapsrBar .toggler_line:last-child {
    display: none;
}

.collapsrBar .toggler_line.line1 {
    margin-top: 10px;
    transform: rotate(45deg);
    transition: 0.5s;
}

.collapsrBar .toggler_line.line2 {
    transform: rotate(-45deg);
    margin-bottom: 6px;
    margin-top: -3px;
    transition: 0.5s;
}

.contact_link {
    display: none;
}

@media only screen and (max-width:991px) {
    .navbar-brand {
        justify-content: flex-end;
    }

    .headerMenu {
        position: initial;
    }

    header .navbar-collapse {
        position: absolute;
        background-color: #edecec;
        right: 0;
        left: 0;
        top: 85px;
        border-radius: 10px;
        text-align: right;
        font-size: 13px;
        z-index: 10000
    }

    header .navbar {
        position: initial;
        padding-bottom: 40px;
    }

    .header_top .col-md-5 {
        position: initial;
    }

    header .nav-item:hover {
        background: #8b0f04;
    }

    header .nav-item:hover .nav-link {
        color: #fff !important;
    }
}

@media only screen and (max-width:600px) {
    header .navbar {
        position: initial;
        padding-bottom: 0;
    }

    header .navbar-collapse {
        position: absolute;
        background-color: #edecec;
        right: 0;
        left: 0;
        top: 55px;
        border-radius: 10px;
        text-align: right;
        font-size: 13px;
        z-index: 10000;
    }

    .homeategory .title {
        height: 85px;
        background: #828282;
        border-radius: 0 0 20px 20px !important;
        width: 99%;
        margin: auto;
        padding: 0 20px;
    }

    .itemsParent .select img {
        height: 150px;
    }

    .header_btns {
        justify-content: space-between;
    }

    .header_btns .btn {
        margin: 5px 3px;
        font-weight: bold;
        padding: 5px !important;
        min-width: auto !important;
        font-size: 11px;
    }

    .header_top {
        padding-bottom: 60px;
        position: relative;
    }

    .header_top .row .col-lg-5 {
        position: initial;
    }

    .header_top .row {
        align-items: center !important;
    }

    .header_top .searchAndLang .serachBox {
        position: absolute;
        bottom: 10px;
        right: 0;
        left: 0;
        border: 0;
    }

    .headerinfo a {
        display: none;
    }

    .header_top .searchAndLang {
        padding: 0;
        justify-content: flex-end;
    }

    .contact_link {
        display: block;
    }

    header .navbar-brand img {
        height: 60px;

    }

    header.sticky .serachBox {
        display: none;
    }

    header.sticky .header_top {
        padding-bottom: 0;
    }

    .nav-item.dropdown:hover {
        background: unset !important;
    }

    header .nav-item:hover .nav-link {
        color: #333 !important;
    }
}


@media only screen and (max-width:991px) and (min-width:600px) {
    /* .header_btns {
        position: absolute;
        top: -95px;
        left: -3px;
        justify-content: center;
    } */

}

@media only screen and (max-width: 450px) {
    header .line {
        display: none;
    }

    header .navbar {
        padding: 0;
        padding-bottom: 10px;
    }
}


/*================================ End Header ===========================*/


/*-------------------------------------------mega menu-------------------------------------------*/

.category_link {
    display: flex;
    align-items: center;
    color: rgba(0, 0, 0, .5) !important;
    padding: 10px 20px;
    cursor: pointer;
}

.dropDownContent {
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 44px;
    width: 100%;
    background-color: #efefef;
    display: none;
    z-index: 1000;
    flex-direction: column;
    border: 1px solid #efefef;
}

.dropDownContent.show {
    display: flex;
}

.dropTitle {
    max-height: 100%;
    width: 200px;
    background-color: #efefef;
}

.dropItem {
    padding: 10px;
    position: relative;
    border-bottom: 1px solid #d6d6d693;
}

.dropItem:hover {
    background-color: #efefef;
}

.dropItem.active {
    background-color: #fff;
}

.dropItem.active::after {
    content: '';
    height: 10px;
    width: 10px;
    position: absolute;
    left: -10px;
    z-index: -3;
    background-color: #fff;
    top: 38%;
}

.selectedContent {
    width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.selectedContent>div {
    background-color: #fff;
    padding: 20px;
    height: 100%;
    display: none;
}

header .navbar .col-md-9,
.category_item.dropdown {
    position: initial;
}

.proSubCategory {
    text-align: right;
}

.proSubCategory strong {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.proSubCategory strong .material-icons {
    font-size: 15px;
}

.proSubCategory .subcat_link {
    font-size: 13px;
}

.dropItem a {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    align-items: center;
    text-align: right;
}

.dropItem:hover a {
    color: #000;
    text-shadow: 0 0 1px;
}

.dropItem .material-icons {
    font-size: 13px;
}

.subcat_items {
    line-height: 2;
}

.subcat_link:hover a {
    margin-right: 10px;
    transition: 0.4s;
    color: #000;
}

.navbar-light .navbar-nav .nav-link {
    padding: 0 0px;
    font-weight: bold;
    font-size: 12px;
    color: #333;

}

@media (min-width:1400px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
    }
}

.closeSide {
    display: none;
    transition: 0.5s;
}

.dropDownContent_body {
    display: flex;
    width: 100%;
}

.dropDownContent_title {
    display: none;
    transition: 0.5s;
    min-height: 100px;
}

.showsidebar {
    display: flex !important;
    overflow: visible !important;
    transition: 0.5s;
    width: 100% !important;
}

@media only screen and (max-width:991px) {
    .category_item .category_link {
        position: absolute !important;
        top: 50px;
        right: 95px;
        padding: 10px 0;
    }

    .dropDownContent {
        right: 0%;
        top: 0;
        height: 100%;
        width: 0%;
        overflow: hidden;
        padding-top: 50px;
        transition: 0.5s;
        display: block;
        padding: 0;
    }

    .dropDownContent_title {
        display: flex;
        width: 100%;
        align-content: center;
        align-items: center;
        justify-content: space-between;
    }

    .dropTitle {
        width: 280px;
    }

    .dropItem a {
        pointer-events: none;
    }

    .selectedContent>div {
        height: 100vh;
        overflow: scroll;
    }

    .closeSide {
        display: block;
    }
}


/*=-----------------------city modal----------------------------=*/

.selectItems {
    height: 140px;
    background: #c8c8c833;
    border-radius: 5px;
    border: 1px solid #3333;
    overflow-y: scroll;
}

.noResult {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.selectItems .selector {
    display: none
}

.selectItems label:focus {
    font-weight: bold
}

.selectItems {
    display: block;
}

.selectBox .radioBox {
    padding: 10px;
    margin: 0;
}

.radioBox,
.checkBox {
    margin: 10px;
    display: flex;
    align-items: center;
}

.radioBox input,
.checkBox input {
    display: none;
}

.selectBox .selector {
    display: none;
}

.selectBox .radioBox label {
    width: 100%;
}

.radioBox label {
    cursor: pointer;
    padding-right: 30px;
    margin-right: -30px;
    margin-bottom: 0;
    z-index: 1000;
}


/*=-----------------------end city modal----------------------------=*/


/*================================ Main Slider ===========================*/

.mainSlider {
    position: relative;
    min-height: 250px;
}

.mainSlider img {
height: auto;
    object-fit: contain;
}

.mainSlider .carousel-caption {
    background-color: #0000007d;
    position: initial;
    display: none;
    align-items: center;
    right: 0;
    left: auto;
    width: fit-content;
    width: -moz-fit-content;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
}

.mainSlider .carousel-caption .btn {
    margin-right: 20px;
}

.mainSlider .mainSlider_txt {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 10%;
}

.mainSlider .sliderNavigation .btn {
    position: absolute;
    top: 0%;
    z-index: 1000;
    border: 1px solid #fff;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.4);
    height: 100%;
    border-radius: 0;
    width: 65px;
}

.mainSlider .sliderNavigation .btn .material-icons {
    font-size: 80px;
    color: #333;
}

.mainSlider .sliderNavigation .prev {
    right: 0%;
}

.mainSlider .sliderNavigation .next {
    left: 0%;
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 5px;
    margin: 5px 7px;
    background: #869791;
    display: block;
    /* -webkit-backface-visibility: visible; */
    transition: .2s !important;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #8b0f04;
    width: 70px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: -24px;
    z-index: 100000;
    position: relative;
}

.mainSlider .prev__icon__slider svg {
    transform: rotate(180deg);
    width: 40px;
    height: 75px;
}

.mainSlider .next__icon__slider svg {
    width: 40px;
    height: 75px;
}

@media (max-width: 991px) {
   /* .mainSlider img {
        height: 350px;
    }*/

    .mainSlider .sliderNavigation .btn {
        width: 40px;
    }

    .mainSlider .sliderNavigation .btn .material-icons {
        font-size: 30px;
    }
}
/*@media (max-width: 600px) {
    .mainSlider img {
        height: 250px;
    }
}*/
/*================================ End Main Slider ===========================*/


/*================================ Contact Us  ===========================*/

.contactUsBaner img {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

.conection {
    padding: 30px;
    ;
}



.contactUs .footerAddress {
    color: #fff;
}

.contactUs .conectionLine {
    color: #fff;
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    ;
}

.conectionIcon {
    margin-right: 20px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emailBox {
    display: flex;
    flex-direction: column;
}

.senMessage {
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
}

.senMessage .btn {
    border-radius: 0 0 15px 15px !important;
}

.contact_right .form-control {
    margin-bottom: 10px;
}

.maps_box {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.maps_box img {
    width: 100%;
    height: 100%;
}

.contact_line {
    padding-right: 50px;
}

.contact_us .companies {
    background-color: #EEEEEE;
}

.contact_us .companies .companyName {
    color: #333;
}

@media (max-width:600px) {
    .contactUsBaner img {
        height: 250px;
    }
}

/*================================ End Contact Us ===========================*/


/*================================ questions ===========================*/

.question_item:hover {
    border: 2px solid #ffce12;
}

.question_item:hover .default_btn {
    background-color: rgb(163, 163, 163);
    color: #fff;
}

.questionFilter ul {
    display: flex;
}

.questionBox {
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    padding: 20px;
}

.question_item {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e0dddd9e;
    padding: 30px;
    border-radius: 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: .1s;
    border: 2px solid transparent;
}

.question_item,
.morebtn {
    border-radius: 5px !important;
}

.question {
    padding: 50px 0;
    position: relative;
}

.question .question_search {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin: 50px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
}

.question .question_search .searchBox {
    width: 100%;
}

.question_item:nth-child(1) {
    margin-top: 0;
}

.question_cover {
    z-index: -1;
    position: absolute;
    top: 0;
    background-image: linear-gradient(135deg, rgba(180, 142, 8, 0.2) 0%, rgba(180, 142, 8, 0.2) 16.667%, rgba(195, 74, 7, 0.2) 16.667%, rgba(195, 74, 7, 0.2) 33.334%, rgba(190, 97, 7, 0.2) 33.334%, rgba(190, 97, 7, 0.2) 50.001%, rgba(175, 165, 9, 0.2) 50.001%, rgba(175, 165, 9, 0.2) 66.668%, rgba(170, 188, 9, 0.2) 66.668%, rgba(170, 188, 9, 0.2) 83.335%, rgba(185, 120, 8, 0.2) 83.335%, rgba(185, 120, 8, 0.2) 100.002%), linear-gradient(90deg, rgba(180, 142, 8, 0.2) 0%, rgba(180, 142, 8, 0.2) 16.667%, rgba(195, 74, 7, 0.2) 16.667%, rgba(195, 74, 7, 0.2) 33.334%, rgba(190, 97, 7, 0.2) 33.334%, rgba(190, 97, 7, 0.2) 50.001%, rgba(175, 165, 9, 0.2) 50.001%, rgba(175, 165, 9, 0.2) 66.668%, rgba(170, 188, 9, 0.2) 66.668%, rgba(170, 188, 9, 0.2) 83.335%, rgba(185, 120, 8, 0.2) 83.335%, rgba(185, 120, 8, 0.2) 100.002%), linear-gradient(45deg, rgba(180, 142, 8, 0.2) 0%, rgba(180, 142, 8, 0.2) 16.667%, rgba(195, 74, 7, 0.2) 16.667%, rgba(195, 74, 7, 0.2) 33.334%, rgba(190, 97, 7, 0.2) 33.334%, rgba(190, 97, 7, 0.2) 50.001%, rgba(175, 165, 9, 0.2) 50.001%, rgba(175, 165, 9, 0.2) 66.668%, rgba(170, 188, 9, 0.2) 66.668%, rgba(170, 188, 9, 0.2) 83.335%, rgba(185, 120, 8, 0.2) 83.335%, rgba(185, 120, 8, 0.2) 100.002%), linear-gradient(90deg, rgb(233, 192, 114), rgb(255, 206, 18));
    background-repeat: no-repeat;
    /* background-size: 100% 100%; */
    background-repeat: no-repeat !important;
    background-position: bottom !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    height: 50%;
    width: 100%;
    right: 0;
}

.questionFilter {
    background: #f9f9f9;
    text-align: right;
    padding: 10px;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #3333;
}

.questionParent {
    border: 1px solid #3333;
    border-radius: 5px;
    box-shadow: 0 0 10px -5px;
}

.question_inner {
    padding: 50px 0;
    text-align: right;
    background-image: linear-gradient(0deg, transparent 0%, transparent 58%, rgba(104, 104, 104, 0.05) 58%, rgba(104, 104, 104, 0.05) 92%, transparent 92%, transparent 100%), linear-gradient(45deg, transparent 0%, transparent 34%, rgba(104, 104, 104, 0.05) 34%, rgba(104, 104, 104, 0.05) 77%, transparent 77%, transparent 100%), linear-gradient(0deg, transparent 0%, transparent 33%, rgba(104, 104, 104, 0.05) 33%, rgba(104, 104, 104, 0.05) 53%, transparent 53%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
    background-repeat: no-repeat;
    background-size: cover;
}

.question_title {
    color: #1d1d35;
    text-align: right;
    margin-bottom: 30px;
    font-size: 20px;
}

.question_detail {
    padding: 1rem 0;
    display: flex;
    justify-content: flex-start;
}

.question_title h5 {
    display: inline-block;
    border-bottom: 2px solid #221E1F;
    padding-bottom: 1rem;
}

.question__News {
    font-size: 13px;
    margin-right: 30px;
}

.question_answer {
    text-align: justify;
    padding: 25px;
    line-height: 2;
}

.author {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/*================================ end questions ===========================*/


/* ==========================home category ============================= */

.homaCategoryItem {
    position: relative;
    cursor: pointer;
}

.homaCategoryItem .name {
    position: absolute;
    bottom: 0px;
    z-index: 1000;
    right: 0;
    color: #fff;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homeategory {
    /* background-color: #333; */
    /* background: url(../images/itemsBack.png); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
	border-top: 4px solid #b9b8b8;
}

.homeategory .prev {
    position: absolute;
    top: calc(50% - 195px);
    right: 40px;
}

.homeategory .next {
    position: absolute;
    top: calc(50% - 195px);
    left: 40px;
}

.homeategory .title {
    height: 85px;
    background: #828282;
    border-radius: 0 0 70px 70px;
    width: 99%;
    margin: auto;
    padding: 0 20px;
}

.homeategory .prev__icon__slider svg,
.homeategory .next__icon__slider svg {
    width: 40px;
    height: 40px;
}

.homeategory .prev__icon__slider {
    transform: rotate(180deg);
}

.homaCategoryItem img {
    height: 120px;
    border-radius: 0 0 15px 15px;
    transition: 0.5s;
    object-fit: cover;
}

.itemsParent {
    height: 235px;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
}

/* .homaCategoryItem:hover img{
    border: 2px solid rgba(199, 199, 199, 0.692);
    border-top: 0;
    border-radius: 0 0 35px 35px;
    height: 150px;
} */
.itemsParent .select img {
    height: 180px;
}

.itemsParent .select::after {
    content: url("../images/down.png");
    display: flex;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.itemsInfo {
    height: 300px;
    background-color: #ece9dbb4;
    border-radius: 60px 60px 0 0;
}

.itemImage {
    border-radius: 50%;
    width: 130px;
    height: 130px;
    object-fit: cover;
    background: #333;
    box-shadow: 0px 0px 20px -2px #333;
    border: 1px solid #eaeaea;
}

.name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
}

.author img {
    width: 200px;
    height: 200px;
}

@media (max-width:991px) {
    .itemsInfo {
        height: auto;
        padding: 20px;
    }

    .homeategory .title,
    .companies .title {
        height: auto;
        min-height: 85px;
    }
}

/* ==========================end home category ============================= */

.aboutAndCompany {
    /* background-color: #333; */
    /* background-image: url(../images/companyBac.png); */
    min-height: 500px;
    border-top: 4px solid #a0a0a0;
    background-blend-mode: exclusion;
    background-size: 100% calc(100% + 420px);
    background-position: bottom;
    background-repeat: no-repeat;
}

.home_back {
    background-color: #333;
    background-image: url(../images/companyBac.png);
    background-attachment: fixed;
    /* background-size: contain; */
    background-position: 100% 90%;
    background-repeat: no-repeat;
    background-size: 100% 1400px;
}

.aboutBox {
    position: relative;
    z-index: 10;
}

.aboutBox::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #7373734a;
    z-index: -1;
}

.companies {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.companyName {
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
    display: block;
}

.companyBox {
    border-radius: 10px;
    border: 4px solid transparent;
    padding: 10px;
    transition: 0.5s;
    display: block;
}

.companies.iso .companyBox {
    display: flex;
    align-items: center;
    justify-content: center;
    /* max-width: 240px;
	max-height: 240px; */
    width: 220px;
    height: 220px;
}

.companyBox img {
      height: 250px;
    object-fit: cover;
}

.companies.iso .sliderNavigation {
    position: initial;
}

.companies.iso .sliderNavigation .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    z-index: 10;
    margin: unset;
    transform: translateY(-50%);
}

.down2top {
    cursor: pointer;
}

.companyBox:hover {
    border: 4px solid #891400;
}

.companyBox .primary_btn {
    min-width: 80px;
}

.companyBox:hover .primary_btn {
    background: #891400;
}

.companyBox .primary_btn svg path {
    stroke: #a0a0a0;
}

.companyBox:hover .primary_btn svg path {
    stroke: #fff;
}

.companies .title {
    height: 60px;
}

.homeAbout {
    padding-bottom: 30px;
    color: #fff;
}

.homeBlog {
    height: 400px;
    overflow: hidden;
}

.homeBlog .specialBlog img {
    width: 100%;
    height: 400PX;
    object-fit: cover;
    filter: contrast(80%) brightness(80%);
}

.homeBlog .specialBlog .home_gallery_info {
    position: absolute;
    top: 0;
    right: 0;
    background: unset;
}


/*================================ store ===========================*/

.store {
    padding: 30px 0px;
    text-align: justify;
}

.storeBreand img {
    width: 150px;
    height: 150px;
}

.rateParent {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rateReport {
    display: flex;
    flex-direction: column;
    border: 1px solid #333;
    background: #00c1774d;
    border-radius: 5px;
    padding: 10px;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
}

.rateBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    border: 1px solid #3333;
    border-radius: 5px;
    margin-right: 10px;
    padding: 0 10px;
    width: calc(100% - 80px);
    background: #f4f4f4;
}

.star-rating {
    direction: ltr;
    display: inline-block;
    padding: 20px
}

.star-rating input[type=radio] {
    display: none
}

.star-rating label {
    color: #bbb;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label {
    color: #f2b600
}


/*================================ end store ===========================*/


/*=====================footer ======================================*/

footer {
    min-height: 400px;
}

.copyRight {
    padding: 150px 0 20px;
    font-size: 14px;
}

.footerList {
    border-left-width: 1px;
    border-left-style: solid;
    border-image: linear-gradient(to bottom, #3333, #3333, transparent) 1 100%;
    padding: 0 5px;
    font-size: 14px;
    height: 100%;
}

.footerList>strong {
    font-size: 14px;
}

.footerList li {
    padding: 5px;
    height: 35px;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 5px;
}

.footerList li svg {
    width: 25px;
    height: 25px;
    margin-left: 15px !important;
    filter: grayscale(1);
    transition: all .5s;
}

.footerList li:hover svg {
    filter: grayscale(0);
}

.footerList li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footerList li a svg {
    margin: 0 5px
}

.footerList li:hover {
    border: 1px solid #3333;
    box-shadow: 0 0 10px -5px #3333;
}

.conectionLine {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.conectionLine.location {
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 80px;
}

.conectionLine.location span {
    width: calc(100% - 30px);
}

.conectionLine.phone strong {
    background: #891400;
    margin: 0 20px;
    color: #fff;
    padding: 3px 15px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footerLogo img {
    width: 180px;
    max-width: 100%;
    height: 100px;
    object-fit: contain;
}

.footerTop {
    height: 50px;
    background: #891400;
    margin-bottom: 40px;
    position: relative;
    border-top: 3px solid #fff;
}

.down2top {
    position: absolute;
    right: 9%;
    top: -35px;
    z-index: 100;
    width: 100px;
    height: 70px;
    background: unset;
    border: unset;
    z-index: 10000;
}

.down2top svg {
    width: 60px;
    height: 60px;
}

/*-------------------------------------home gallery------------------------------------------------*/

.gallery_slider .sliderNavigation .btn {
    position: absolute;
    top: 0%;
    z-index: 1000;
    border: 1px solid #fff;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 100%;
    border-radius: 0;
    width: 50px;
}

.gallery_slider .sliderNavigation .btn .material-icons {
    font-size: 50px;
    color: #333;
}

.gallery_slider .sliderNavigation .prev {
    right: 0%;
}

.gallery_slider .sliderNavigation .next {
    left: 0%;
}

.home_gallery_info {
    background-color: #676767;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    justify-content: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
}

.gallery_box {
    height: 500px;
    display: block;
    position: relative;
}

.gallery_box img {
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    height: 0;
    right: 0;
    left: 0;
    background-color: #67676796;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-align: center;
    overflow: hidden;
}

.gallery_box:hover .overlay {
    height: 100%;
}

.gallery_slider .owl-carousel {
    width: calc(100% - 100px);
    margin: auto;
}

@media (max-width:991px) {
    .gallery_slider .sliderNavigation .btn {
        width: 50px;
    }

    .gallery_slider .owl-carousel {
        width: calc(100% - 100px);
        margin: auto;
    }
}

@media (max-width:600px) {
    .gallery_box {
        height: 350px;
    }
}


/* Style the Image Used to Trigger the Modal */

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}


/* The Modal (background) */

.modal.mediaModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 20px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100;
    /* Fu1ll height */
    max-height: 100vh !important;
    overflow: hidden;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}


/* Modal Content (Image) */

.mediaModal .modal-content {
    margin: auto;
    display: block;
    width: 80vh;
    max-width: 80%;
    height: 80vh;
}


/* Add Animation - Zoom in the Modal */

.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}


/* The Close Button */

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.mediaModal.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
}

.mediaModal {
    z-index: 1000;
}

@media only screen and (max-width: 700px) {
    .mediaModal .modal-content {
        width: 100%;
        height: 250px;
    }
}

@media only screen and (min-width:600px) and (max-width:991px) {
    .mediaModal .modal-content {
        width: 100%;
        height: 450px;
    }
}

/*------------------------------complint follow------------------------------*/
.complaint_follow {
    background-color: #EFEFEF;
}

.complaint_table tr th {
    background-color: #F5F3F3;
}

.complaint_table table {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0;
}

.complaint_table {
    box-shadow: 0 3px 10px 0 #dad8d8;
    border-radius: 20px;
}

.text-green {
    color: #2CB818;
}

.complaint_slogen {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.complaint_form {
    background-color: #fff;
}

.complaint_form {
    position: relative;
}

.complaint_follow .complaint_form::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 14px solid #EFEFEF;
    right: calc(50% - 7px);
}

.complaint_form .form-control {
    background-color: #EFEFEF;
}

.sample {
    padding-bottom: 30px;
}

.sampleImages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #3333;
    border-radius: 20px;
    padding: 15px;
    background: #f7f7f7;
    box-shadow: inset 0 0 10px;
}

.tinyImg img {
    width: 70px;
    height: 70px;
    margin: 5px;
}

.tinyImg {
    display: flex;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bigImg img {
    width: 100%;
    height: 230px;
}

.galleryText {
    margin-bottom: 50px;
}

/*--------------------------------------edit---------------------------------------*/
.totalproducts .sort li a {
    margin-bottom: 0;
    text-align: center;
    height: 70px;
    min-width: 150px;
    background: #fff;
    display: flex;
    justify-content: center;
    box-shadow: 1px 1px 5px -2px #333;
    align-items: center;
    border-radius: 15px;
    font-size: 15px;
    cursor: pointer;
}

.totalproducts .sort li a.active {
    background-color: #891400;
    color: #fff;
}

.pagepadding,
.product_details,
.contact_us,
.about_us {
    padding-bottom: 70px !important;
}

@media (max-width:600px) {
    .titleText {
        font-size: 17px;
    }

    .homaCategoryItem .name {
        font-size: 12px;
    }
}

.closeResult {
    background-color: gainsboro;
    border-radius: 50%;
    margin: 5px 0;
}

@media(max-width:991px) {

    footer .row .col-6:nth-child(2) .footerList,
    footer .row .col-6:nth-child(4) .footerList,
    footer .row .col-lg-3 .footerList {
        border-left-style: unset !important;
        border-left: unset !important;
        padding-right: 1rem;
    }

    .searchForm input {
        width: 100%;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 15px 10px;
        font-weight: bold;
        font-size: 12px;
        color: #333;
    }
}

.material-icons {
    opacity: 0;
}

.ops1 {
    opacity: 1;
}

.nav-item.dropdown a {
    position: relative;
}

.nav-item.dropdown:hover {
    background: #fff;
}

.nav-item.dropdown .dropdown-item .dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-item.dropdown .nav-link svg {
    position: absolute;
    bottom: -9px;
    right: 50%;
    opacity: 1;
    width: 17px;
    height: 6px;
    transform: translateX(50%);
}


.nav-item.dropdown a:hover svg {
    opacity: 1;
}


.complaint_form textarea.form-control {
    background-color: #EFEFEF;
    min-height: 229px;
}

.companies .sliderNavigation {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.companies .sliderNavigation a {
    margin-top: -200px;
    z-index: 10000;
}

.iso .sliderNavigation a {
    margin-top: -100px;
    z-index: 10000;
}

.homeategory .itemsParent .owl-stage {
    display: flex;

    flex-wrap: nowrap;
}


@media (max-width: 1500px) and (min-width:1200px) {
    header .nav-item {
        border-radius: 0;
        padding: 5px 5px;
        transition: all 0.5s;
    }
}

header.sticky {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000000;
}

.blogSearch .title.innerPage .titleText {
    background-color: #891400;
    padding: 10px 30px;
    border-radius: 10px;
    border: 3px solid #fff;
    color: #ffff;
    font-size: 18px;
    z-index: 10;
}

.blogSearch .title.innerPage {
    position: relative;
    margin: 30px 0;
}

.blogSearch .title.innerPage::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    background-color: #fff;
    height: 2px;
}

.blogSearch .blogItem .default_btn {
    position: relative;
    border-radius: 0;
    padding: 6px;
    min-width: auto;
    font-size: 12px;
}

.blogSearch .blogItem .default_btn::after {
    content: '';
    background-color: #891400;
    top: -1px;
    bottom: -1px;
    left: 0;
    width: 15px;
    clip-path: polygon(0 50%, 100% 100%, 100% 0);
    position: absolute;
    right: 100%;
}

.complaint_content .whiteBox .title.innerPage {
    width: 100%;
    height: auto;
}

.size_txt {
    background-color: #4B565C;
    color: #fff;
    border-radius: 20px 20px 20px 0;
    width: fit-content;
    width: -moz-fit-content;
    padding: 7px 10px;
    font-size: 12px;
}

.products_size {
    position: relative;
    margin: 15px 0;
}

.products_size::after {
    content: '';
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 15px;
    background-color: #4b565cab;
}

@media (min-width:991px) {
    .footerLogo {
        margin-top: -50px;
        margin-left: -50px;
    }
}


.complaint .whiteBox p {
    width: 100%;
}

.page_addres .breadcrumb .breadcrumb-item:first-child a {
    cursor: unset
}

.mobile_dropdown {
    display: none;
}

#map_nogwhi {
    position: relative;
    /*        width: 600px;
*/
    height: 250px;
    max-width: 100%;
}

.contact_card_loc .titleText {
    font-size: 25px;
}

.contact_card_loc .LOC {
    font-size: 20px;
}

.contact_us_content {
    margin-top: 30px;
}

.companyBox img {
    border-radius: 20px;
    border: 1px soldi #3333;
}

button:focus {
    outline: 0;
}

.row {
    width: 100%;
    margin: 0;
}

.blogSearch .col-md-12.infinity-div {
    padding: 0 !important;
}

.dropdown-item.dropdown .dropdown-menu {
    left: 0;
    right: 100%;
    top: 0;
}

.dropdown-item.dropdown:hover svg path {
    fill: #333;
}

.contact_us_content .container .row {
    border: 1px solid #8080804f;
    border-radius: 20px;
    margin-top: 30px;
    padding: 10px;
}

.surveyanswer-form strong {
    font-size: 14px;
}

@media (max-width:991px) {
    .home_back {
        background-color: #333;
        background-image: url(../images/companyBac.png);
        background-attachment: fixed;
        /* background-size: contain; */
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .homeBlog {
        height: auto;
    }

    .homeBlog .row {
        flex-direction: column-reverse;
    }

    .mobile_dropdown {
        display: block;
    }

    .dropdown-item.dropdown .dropdown-menu {
        position: absolute;
        right: 0;
        top: 30px;
        left: 0;
    }

    .nav-item.dropdown .nav-link svg {
        opacity: 1;
        transform: translate(0);
        position: initial;
    }

    .dropdown-item.dropdown .dropdown-link svg {
        display: none;
    }
}

@media (max-width:600px) {
    .footerLogo {
        margin-top: 1rem;
    }

    footer .col-6:nth-child(3) .footerList,
    footer .col-6:nth-child(4) .footerList {
        padding-bottom: 1rem;
    }

    .footerTop {

        margin-bottom: 1rem;
    }

    footer .col-lg-3 .footerList {
        margin-top: 1rem;
    }

    .footerList {
        border-bottom: 1px solid #3333;
        border-left: 1px solid #3333;
        border-image: unset;
        padding: 10px;
        margin: 0;
    }

    .footerList li {
        height: auto;
        line-height: 0.5;
    }

    .copyRight {
        padding: 15px;
    }

    footer .container .row .p-1 {
        padding: 0 !important;
    }

    header.sticky {
        background-color: #ffffffe6;
    }

    .blogItemContent {
        margin-top: 10px;
        border-bottom: 0;
    }

    .blogSearch .blogItem {
        border: 1px solid #83808078;
        margin-bottom: 10px;
    }

    .page_addres .breadcrumb {
        padding: 5px 0;
        font-size: 13px;
    }

    .contact_line {
        padding-right: 0;
    }


}

.conectionLine.phone span,
.conectionLine.phone a,
.conectionLine.phone strong {
    font-size: 13px;
}

.itemsInfo .btnBox .btn:first-child {
    margin-bottom: 15px;
}

@media (max-width:1200px) {

    .conectionLine.phone span,
    .conectionLine.phone a,
    .conectionLine.phone strong {
        font-size: 11px;
    }

    .conectionLine.phone strong {
        padding: 1px 10px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 11px;
    }
}

.tenders_box .whiteBox {
    align-items: flex-start;
}

.tenders_box .whiteBox span {
    margin-right: auto;
    font-size: 14px;
    color: #6f7f90;
}

.homeategory .btnBox .primary_btn span {
    color: #891717;
}

.homeategory .btnBox .primary_btn:hover span {
    color: #fff;
}

.companyName {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}
.map__company{
    margin-top: 2rem;
}
.map__company iframe{
    width: 100%;
    height: 300px;
    border-radius: 20px;
}
.companyBox iframe {
	width: 100%;
	height: 200px;
	border: 1px solid #33333354 !important;
	min-height: 200px;
	border-radius: 8px;
}
.contact_us .companies .companyBox {

	min-height: 320px;
	display: flex;
	flex-direction: column;
}
.contact_us .companies .companyBox .companyName{
    margin-top: auto;
}
.maps_box iframe {
	width: 100%;
	height: 100%;
}
.centeral {
	display: flex;
	justify-content: center;
	align-items: center;
}
.direction-ltr{
    direction: ltr
}
.homaCategoryItem a {
    display: block;
}
.companyBox{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.companyBox .company_name{
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    transition: 0.3s;
    background-color: #454343bd;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 0;
}
.companyBox:hover .company_name{
height: 100%;
}
.homaCategoryItem.select .name{
	    padding-bottom: 50px;
    height: 100%;
}
.service_item_img img{
	width:100%;
	border-radius:10px
}
.service_item_img{
	margin-bottom:20px
}