@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir.ttf');
}


/******************************/
/******************************/
:root {
    --main: #0D3B66;
    --gold: #F3CF4A;
    --gray: #868686;
    --black: #000000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

body {
    font-family: 'Vazir', serif;
    color: var(--black);
    background: #fff;
    font-size: 16px;
}

p:last-of-type {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Vazir', serif;
    margin-top: 0;
    font-weight: bold;
    /*color: var(--white);*/
}

button,
li,
a {
    color: var(--black);
    transition: all 0.5s ease-in-out;
}

a {
    color: var(--black);
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul,
ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type="submit"],
a {
    transition: all 0.5s linear;
}

img,
iframe,
video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

.no-padding {
    padding: 0 !important;
}

.form-control {
    border-radius: 0;
    height: 50px;
    border: 1px solid #F5F5F7;
    background: #F4F4F4;

}

textarea.form-control {
    height: 200px;
}

.form-control:focus,
.form-control:hover {
    border-color: var(--main);
    box-shadow: none;
    outline: none;
    color: var(--black);
    transition: all .35s ease-in-out;
}

.main-btn {
    width: 200px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--black);
    border: 1px solid var(--black);
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: all .35s ease-in-out;
}

.main-btn-active {
    box-shadow: 0px 4px 4px 0px #00000040;
    color: var(--white);
    border: 1px solid var(--main);
    background: var(--main);
}

.main-btn:hover {
    box-shadow: 0px 4px 4px 0px #00000040;
    color: var(--white);
    border: 1px solid var(--main);
    background: var(--main);
}


.main-title {
    position: relative;
    color: var(--black);
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.main-title i {
    font-size: 20px;
}

@media (max-width: 992px){
    .main-btn {
        font-size: 12px;
        width: 120px;
        height: 40px;
        line-height: 40px;
    }
}
@media (max-width: 768px) {
    .main-btn {
        font-size: 12px;
        width: 100px;
        height: 35px;
        line-height: 35px;
    }
    .main-btn-active{
        width: 100%;
    }

    .main-title {
        font-size: 28px;
        margin: 10px 0;
    }
}


@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0;
        position: relative;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    html[dir="ltr"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 5px;
    }

    html[dir="rtl"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-start: 5px;
    }

    .nav-list > .menu-item.home i {
        font-size: 26px;
        color: var(--black);

    }

    .nav-list > .menu-item > a {
        display: flex;
        color: var(--white);
        font-size: 16px;
        position: relative;
        padding: 10px;
        transition: all 0.5s ease-in-out;
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f0d7";
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        margin-inline-start: 10px;
        color: var(--black);

        transition: all .35s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--gold);
    }

    .nav-list > .menu-item:hover > a:before,
    .nav-list > .menu-item.active a:before {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: var(--gold);
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 250px;
        background-color: rgba(255, 255, 255, 1);
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.2s ease-in-out;
    }

    .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

    .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: var(--black);
        padding-bottom: 10px;
        transition: all 0.5s ease-in-out;
    }


    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f324";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f323";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        color: var(--black);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .sub-menu li a:hover {
        color: var(--main);

    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: var(--gold);

    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }


    html[dir="rtl"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f104";
    }

    html[dir="ltr"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f105";
    }

    .nav-list > .menu-item-has-children > .sub-menu a:before {
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        display: inline-block;
        margin-inline-end: 10px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50%;
        background: var(--gray);
        color: var(--white);
        font-size: 14px;
        transition: all .35s ease-in-out;
    }

    .nav-list > .menu-item-has-children > .sub-menu a:hover:before {
        background: var(--main);
        color: var(--white);
    }


    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu-item-has-children {
        display: flex;
        width: 100%;
        align-items: center;

    }

    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }


    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-list > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        color: var(--black);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 100%;
        color: var(--black);
        background-color: var(--main);
        margin-inline-end: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-btn {
        margin-inline-end: 10px;
    }

    html[dir="ltr"] .nav-btn {
        margin-inline-start: 10px;
    }

    html[dir="ltr"] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
        right: 0;
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background-color: rgba(255, 255, 255, 1);
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 999;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid var(--secondary);
    }

    .mobile-nav-list .menu-item:not(:last-of-type) a {
    }

    .mobile-nav-list .menu-item > a {
        display: block;
        color: var(--black);
        padding: 15px;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item > a:hover,
    .mobile-nav-list .menu-item.active > a {
        color: var(--secondary);
    }

    html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid var(--black);
    }

    html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-right: 1px solid var(--black);
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: var(--black);
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: var(--secondary);
    }

    .sub-menu {
        list-style: none;
        background-color: var(--secondary);
    }

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .mobile-nav-list .sub-menu a {
        display: block;
        padding: 15px 25px;
        color: var(--white);

        transition: all .3s linear;
    }

    .mobile-nav-list .sub-menu a:hover {
        color: #393839;
    }

    .trans-none {
        transform: none !important;
    }

    html[dir="ltr"] .nav-overlay {
        right: 0;
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 99;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .35s ease-in-out;
    }
}


.search-input::placeholder {
    color: var(--black);
}

.search-input option {
    color: var(--black);
}

/******************************/
/* && header &&*/
/******************************/
header{
   padding: 25px 0;
    background: #0D3B66;
}

.head-home-top-part{
    position: relative;

    /*height: 450px;*/
    background-image:url("../images/slider-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.head-home {
    padding: 30px 0;
    /*position: absolute;*/
    /*top: 0;*/
    /*right: 0;*/
    /*width: 100%;*/
    /*z-index: 9;*/
}
.header-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-icon .add-ads{
    background: #FF0000;
    width: 170px;
    border-radius: 15px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
}
.header-icon .header-user{
    
    /*width: 50px;*/
    /*height: 50px;*/
    border-radius: 15px;
    text-align: center;
    /*line-height: 50px;*/
    border: 1px solid var(--main);
    padding: 12px 10px;
}
.header-icon a {
    margin: 0 5px;
        color: var(--white);
}
.header-icon a.dropdown-item{
    color:   var(--main);
}
.header-icon .lang{
    width: 110px;
     height: 50px;
    border-radius: 15px;
    text-align: center;
    line-height: 50px;
    border: 1px solid var(--main);
}
.header-icon .lang .dropdown-toggle::after{
    color: var(--main);
}
.header-icon .lang a {
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-icon .lang .dropdown-menu.show a{
       color: var(--main);
}
.header-icon img{
    max-width: 25px;
}
.dropdown-menu.show{
    direction: rtl;
    text-align: start;
  }
.dropdown-item{
    margin: 0 !important;
}
@media (max-width: 992px) {
    .nav-btn{
        background: transparent;
    }
    .head-logo {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .header-icon {
        justify-content: center;
        margin-top: 10px;
    }
    .head-home{
            padding: 5px 0;
    }

}
@media (min-width: 992px) {

}
.add-ads-floating{
    position: fixed;
    top: 65%;
    left: 10px;
    background: #FF0000;
    width: 75px;
     border-radius: 15px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #d3d3d3;
    z-index: 9999;
    font-size: 10px;
}
.add-ads-floating img{
    max-width: 25px;
    max-height: 25px;
}
.pro-item-body{
    padding: 15px 0;
}
@media (max-width: 768px) {
    .add-ads-floating img{
        max-width: 20px;
        max-height: 20px;
    }
    header{
        padding: 10px 0;
    }
    .main-logo img{
        max-width: 85px;
    }
    .header-icon .lang{
        width: 35px;
        height: 35px;
        line-height: 35px;
        display: flex
    ;
    }
    .header-icon{
        margin-top: 0;
    }
    .header-icon .lang a{
         display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-icon img {
        max-width: 20px;
    }
    .header-icon .lang a span ,.header-icon .lang .dropdown-toggle::after{
        display: none;
    }
    .header-icon .add-ads{
        display: none;
    }
    .header-icon{
          justify-content: flex-end;

    }
    .header-icon .header-user{
        padding: 0 ;
        width: 100px;
        height: 35px;
        font-size: 12px;
        line-height: 35px;
        text-align: center;
    }

    .sec-tit{
        font-size: 24px;
    }
.main-header-col:first-of-type{
    order: -2;
}
    .main-header-col:last-of-type{
    order: -1;
}
    .head-home {
        position: relative;
    }

    .header-ads a{
        margin-bottom: 10px;
    }
}
@media (max-width: 500px) {
  
}

/******************************/
/* && top-part &&*/
/******************************/

.top-part{
    /*position: absolute;*/
    /*bottom: 5%;*/
    /*width: 100%;*/
}
.top-part .nav-tabs{
    border: none !important;
}
.top-part .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    color: var(--gold);
    background-color: var(--main);
    border: none;
    border-bottom: 4px solid var(--gold) !important;
 }
.top-part .nav-item{
    width: 100px;
    text-align: center;
    margin-inline-end: 5px;
}
.top-part .nav-tabs .nav-link{
    border: 1px solid var(--main);
}

.top-part .search-part {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: flex-end;
    justify-content: space-between;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 30px 0px #00000059;
    border-radius: 15px 0 15px 15px;
    padding:30px 10px;
}
.top-part .search-part .search-item {
    display: flex;
    flex-direction: column;
    width: 200px;
    padding-inline-end: 10px;
    margin: 0;
    border-inline-end: 2px solid var(--gray) ;
}
.top-part .search-part .search-item .label-name{
    color: var(--black);
    font-weight: bold;
}
.select2-results__option[aria-disabled=true] {
    color: #999 !important;
}
.select2-results__option {
    color: var(--black) !important;
}
.top-part .search-part .select2-selection__clear {
    display: none;
}
.top-part .search-part .search-item .select2-container--default .select2-selection--single {
    height: 50px;
}
.top-part .search-part .search-item .select2-container--default .select2-selection--single{
    border: none !important;
}
.top-part .search-part .search-item .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: rgba(0, 22, 25, 0.7)
}
.top-part .search-part .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
}
.top-part .search-part .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px;
    color: rgba(20, 38, 104, 1)
}
.top-part .search-part  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: rgba(20, 38, 104, 1) transparent transparent transparent !important;
    border-width: 7px 6px 0 6px !important;
}
.top-part .search-part .search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main);
    color: var(--gold);
    border: 1px solid var(--main);
    transition: all .35s ease-in-out;
    border-radius: 5px;
    width: 200px;
    height: 50px;
    cursor: pointer;
    font-size: 20px;
}
.top-part .search-part .search-btn:hover {
    background-color: var(--main);
    color: var(--white);
    border: 1px solid var(--main);
}
.top-part .search-part #search-part-btn i {
    margin: 0;
}

@media (max-width: 992px) {

    .top-part .search-part .search-btn{
        margin: 10px auto;
    }
}


@media (max-width: 768px) {
    .top-part{
        position: relative;
     }
    .top-part .search-part .search-item {
        width: 100%;
        border-inline-end: none;
        border-bottom: 2px solid var(--gray);
    }

    .top-part .search-part .search-item .select2-container {
        width: 100% !important;
    }

    .top-part .search-part .search-btn {
        width: 100%;
    }
}
@media (max-width: 500px) {
    .top-part .search-part .search-item {
        /*width: 49%;*/
    }
}

/******************************/
/* && category &&*/
/******************************/
.category{
    padding: 50px 0;
}
.side-ads img{
    max-height: 700px;
}
.category-items{
    display: flex;
    flex-wrap:wrap ;
    justify-content: space-between;
}
.category-items-content-img{
     background: #0D3B66;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 50%;
}
.category-items-content{
    margin: 0 auto 0;
     text-align: center;
    display: table;
     transition: all .35s ease-in-out;
 }

.category-items-content img{
    transform: scale(1);
    transition: all .35s ease-in-out;
    max-width: 75px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(310deg) brightness(107%) contrast(104%) !important;
}
.category-items-content .tit{
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
}
.category-items-content:hover img{
    transition: all .35s ease-in-out;
    transform: scale(1.1);
}
.category-items-content:hover .tit{
    transition: all .35s ease-in-out;
 color: #4379F2
}
@media (max-width: 992px) {
    .category-items-content-img {
        width: 80px;
        height: 80px;
        line-height: 80px;
           margin: 0 auto 10px;
    }
    .category-items{
        justify-content: space-evenly;
    }

}
@media (max-width: 768px) {
    .category{
    padding: 10px 0;
}
    .category{
        /*margin-top: 50px;*/
    }
    .category-items-content-img {
        width: 45px;
        height: 45px;
           margin: 0 auto 5px;
        line-height: 45px;
    }
    .category-items-content .tit{
        font-size: 12px;
    }
    .category-items-content img{
        max-width: 30px;
    }
}

@media (max-width: 500px) {
   .col-cat:first-of-type{
       order: -2;
   }
    .col-cat:last-of-type{
       order: -1;
   }
    .side-ads img{
        max-height: 350px;
        object-fit: cover;
    }

    .category-items-content .tit{
        font-size: 8px;
    }

}

/******************************/
/* && latest-product &&*/
/******************************/
.latest-product{
    padding: 50px 0 100px;
}
.product-items{
    border-radius: 20px;
    border:1px solid rgba(240, 239, 251, 1);
    transition: all .35s ease-in-out;

    margin-bottom: 30px;
}
.product-items .thumb{
    height : 250px;
}
.product-items .thumb a{
     height: 100%;
     display:block;
}
.product-items .thumb img{
    border-radius:20px;
    height: 100%;
 
}
 .product-items .content-product{
    background:var(--white);
     border-radius: 20px 0  0 20px ;
    padding: 10px 15px;
     min-height: 260px;
}
 .product-items:hover .content-product{
     transition: all .35s ease-in-out;
}
 .product-items .content-product .price{
    font-size: 18px;
    font-weight: bold;
    color: var(--gray);
}
.product-items:hover .content-product .price{
    color: var(--gold);
    transition: all .35s ease-in-out;
}
.product-items .content-product .title{
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
    color: var(--black);
}
 .product-items:hover .content-product .title{
    color: var(--black);
    transition: all .35s ease-in-out;
}

.product-items .content-product .address{
    color: rgba(0, 9, 41, 1);
    font-size: 14px;
}
.product-items:hover .content-product .address{
    color: var(--black);
    transition: all .35s ease-in-out;
}
.product-items .content-product .address i {
    color: var(--main);
    font-size: 24px;
    margin-inline-end: 5px;
}
 .product-items:hover .content-product .address i {
    color: var(--gold);
    transition: all .35s ease-in-out;
}
 .product-items .content-product .information-prod{
    display: flex;
    align-items: center;
    padding-top: 25px;
    margin-top: 20px;
    border-top: 2px solid var(--gray);
    color: rgba(0, 9, 41, 1);
}
 .product-items:hover .content-product .information-prod{
    transition: all .35s ease-in-out;
    color: var(--black);
}
 .product-items .content-product .information-prod i {
    color: var(--black);
}
.product-items:hover .content-product .information-prod i {
    color: var(--gold);
    transition: all .35s ease-in-out;
}
.product-items .content-product .information-prod .item{
    margin-inline-end: 5px;
}
.latest-product-slider .owl-nav {
    /*position: absolute;*/
    /*left: 50%;*/
    /*bottom: -20%;*/
    /*transform: translate(-50%, 0);*/
    margin-top : 50px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.latest-product-slider .owl-nav div {
    margin: 0 10px;
    padding: 12px 18px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--gold);
    background: var(--primary);
    transition: all .35s ease-in-out;
}

.latest-product-slider .owl-nav div:hover {
    border: 1px solid rgba(218, 218, 238, 1);
    color: var(--white);
    background: rgba(218, 218, 238, 1);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .latest-product .main-title{
                font-size: 22px;
        margin: 5px 0;
    }
.latest-product {
    padding: 10px 0 50px;
}
@media (max-width: 500px) {
}

/******************************/
/* && product-rent-buy &&*/
/******************************/

.product-rent-buy{
    padding: 50px 0 100px;
}
.product-rent-buy .product-items{
    border-radius: 20px;
    border:1px solid rgba(240, 239, 251, 1);
    transition: all .35s ease-in-out;
    min-height: 365px;
}
.product-rent-buy .product-items .thumb {
    height : 250px;
}
.product-rent-buy .product-items .thumb img{
    border-radius: 20px 20px 0 0;
    max-height : 100%;
    object-fit: contain;
}
.product-rent-buy .product-items .content-product{
    background:var(--white);
    border-radius:0 0 20px 20px ;
    padding: 20px 15px;
}
.product-rent-buy .product-items:hover .content-product{
    background:var(--main);
    transition: all .35s ease-in-out;
}
.product-rent-buy .product-items .content-product .price{
    font-size: 24px;
    font-weight: bold;
    color: var(--gray);
}
.product-rent-buy .product-items:hover .content-product .price{
    color: var(--gold);
    transition: all .35s ease-in-out;
}
.product-rent-buy .product-items .content-product .title{
    font-size: 20px;
    font-weight: bold;
    margin: 15px 0;
    color: var(--black);
}
.product-rent-buy .product-items:hover .content-product .title{
    color: var(--white);
    transition: all .35s ease-in-out;
}

.product-rent-buy .product-items .content-product .address{
    color: rgba(0, 9, 41, 1);
    font-size: 14px;
}
.product-rent-buy .product-items:hover .content-product .address{
    color: rgba(255, 255, 255, 1);
    transition: all .35s ease-in-out;
}
.product-rent-buy .product-items .content-product .address i {
    color: var(--main);
    font-size: 24px;
    margin-inline-end: 5px;
}
.product-rent-buy .product-items:hover .content-product .address i {
    color: var(--gold);
    transition: all .35s ease-in-out;
}
.product-rent-buy .product-items .content-product .information-prod{
    display: flex;
    align-items: center;
    padding-top: 25px;
    margin-top: 20px;
    border-top: 2px solid var(--gray);
    color: rgba(0, 9, 41, 1);
}
.product-rent-buy .product-items:hover .content-product .information-prod{
    transition: all .35s ease-in-out;
    color: rgba(255, 255, 255, 1);
}
.product-rent-buy .product-items .content-product .information-prod i {
    color: var(--black);
}
.product-rent-buy .product-items:hover .content-product .information-prod i {
    color: var(--gold);
    transition: all .35s ease-in-out;
}
.product-rent-buy .product-items .content-product .information-prod .item{
    margin-inline-end: 5px;
}
.product-rent-buy .owl-nav {
    /*position: absolute;*/
    /*left: 50%;*/
    /*bottom: -20%;*/
    /*transform: translate(-50%, 0);*/
    margin-top:50px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.product-rent-buy .owl-nav div {
    margin: 0 10px;
    padding: 12px 18px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--gold);
    background: var(--primary);
    transition: all .35s ease-in-out;
}

.product-rent-buy .owl-nav div:hover {
    border: 1px solid rgba(218, 218, 238, 1);
    color: var(--white);
    background: rgba(218, 218, 238, 1);
    transform: translateY(-5px);
}
.product-rent-buy-tab .product-nav-tabs{
    background: rgba(240, 239, 251, 1);
    border-radius: 15px;
    padding: 10px 30px;
}
.product-rent-buy-tab .product-nav-tabs .nav-link{
    color: var(--gray);
    padding: 10px 15px;
}
.product-rent-buy-tab .product-nav-tabs .nav-link.active {
    color: var(--main);
    background: var(--white);
    border-radius: 10px;
}
.product-rent-buy-tab .product-nav-tabs .nav-link i {
    margin-inline-end: 5px;
}
@media (max-width: 768px) {

}
@media (max-width: 500px) {
}

/******************************/
/* && car-product &&*/
/******************************/

.car-product{
    padding: 50px 0 100px;
}
.car-product .product-items{
    border-radius: 20px;
    border:1px solid rgba(240, 239, 251, 1);
    transition: all .35s ease-in-out;
}

.car-product .product-items .thumb{
    padding:30px 0;
}
.car-product .product-items .thumb img{
    border-radius: 20px 20px 0 0;
    max-height: 145px;
}
.car-product .product-items .content-product{
    background:var(--white);
    border-radius:0 0 20px 20px ;
    padding: 20px 15px;

}
.car-product .product-items:hover .content-product{
    background:var(--main);
    transition: all .35s ease-in-out;
}
.car-product .product-items .content-product .price{
    font-size: 24px;
    font-weight: bold;
    color: var(--gray);
}
.car-product .product-items:hover .content-product .price{
    color: var(--gold);
    transition: all .35s ease-in-out;
}
.car-product .product-items .content-product .title{
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
    color: var(--black);
}
.car-product .product-items:hover .content-product .title{
    color: var(--white);
    transition: all .35s ease-in-out;
}

.car-product .product-items .content-product .address{
    color: rgba(0, 9, 41, 1);
    font-size: 14px;
}
.car-product .product-items:hover .content-product .address{
    color: rgba(255, 255, 255, 1);
    transition: all .35s ease-in-out;
}
.car-product .product-items .content-product .address i {
    color: var(--main);
    font-size: 24px;
    margin-inline-end: 5px;
}
.car-product .product-items:hover .content-product .address i {
    color: var(--gold);
    transition: all .35s ease-in-out;
}
.car-product .product-items .content-product .information-prod{
    display: flex;
    align-items: center;
    padding-top: 25px;
    margin-top: 20px;
    border-top: 2px solid var(--gray);
    color: rgba(0, 9, 41, 1);
}
.car-product .product-items:hover .content-product .information-prod{
    transition: all .35s ease-in-out;
    color: rgba(255, 255, 255, 1);
}
.car-product .product-items .content-product .information-prod i {
    color: var(--black);
}
.car-product .product-items:hover .content-product .information-prod i {
    color: var(--gold);
    transition: all .35s ease-in-out;
}

.car-product .product-items .content-product .information-prod .item{
    margin-inline-end: 5px;
}
.car-product .owl-nav {
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: center;
    align-items: center;


}

.car-product .owl-nav div {
    margin: 0 10px;
    padding: 12px 18px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    color: var(--gold);
    background: var(--primary);
    transition: all .35s ease-in-out;
}
@media (max-width: 768px) {

}
@media (max-width: 500px) {
}


/******************************/
/* && footer &&*/
/******************************/
footer{
    padding: 50px 0;
    background: rgba(10, 0, 54, 1);
}
.social{
    margin-top: 20px;
}
.social a{
    margin-inline-end: 10px;
}
.social a i{
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
}
.footer-list li {
    padding-bottom: 10px;
    width: 50%;
    float: right;
    color: var(--white);
    text-align: start;
}
.footer-list li a{
    color: var(--white);
    font-size: 14px;
}

.footer-list li:before {
    content: "-";
    font-family: "Font Awesome 5 free";
    font-weight: 900;
    font-size: 24px;
    margin-inline-end: 10px;
    color: var(--white);
}
.footer-info .info{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer-info .info .icon{
    margin-inline-end: 10px;
}
.footer-info .info .icon i{
    color: rgba(212, 87, 198, 1);
    font-size: 20px;
}
.footer-desc{
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-info .info .text .desc{
    color: var(--white);
}
.footer-info .info .text .tit{
    font-size: 18px;
    font-weight: bold;
    color: var(--main);
    margin-bottom: 5px;

}
.copy-write-items {
    text-align: center;
}
.copy-write{
    padding-top: 50px;
}
.copy-write-items{
    color: var(--white);
}
.copy-write-items a{
    color: rgba(212, 87, 198, 1);
}
@media (max-width: 768px) {
    footer .col-12{
        margin-bottom: 20px;
    }
}
    /******************************/
/* && card &&*/
/******************************/
.card {
    border: none;
}
.card-body{
    padding: 0 !important;
}




/**/
.head-btn.dropdown-toggle{
    padding: 12px 10px;
    margin: 0 5px;
    border-radius: 10px;
}
.breadcrumb-area{
    padding : 30px 0;
    color: #fff;
    background-color: #4379f2
}
.breadcrumb-area a{
    color: #F3CF4A
}

.content{
    padding : 50px 0;
}

.property-section-wrap{
    margin-bottom : 30px;
    padding-bottom : 30px;
    border-bottom : 1px solid #e0def7 ;
}
.block-title-wrap{
    color: var(--gold);
    margin-bottom : 30px;
}
.property-overview-data-item{
    background-color: #e0def7;
    border-radius: 15px;
    padding: 15px 10px;
}
.property-edit-publish{
     color: var(--primary);
}
.detail-wrap-item{
border-radius: 20px;
    border: 1px solid #f0effb;
    margin-bottom: 30px;
    padding: 15px;
}
.detail-wrap-icon{
    height : 150px;
    margin-bottom: 10px;
}
.detail-wrap-icon img{
     max-height : 100%;
}

@media (max-width: 768px) {
    .head-btn.dropdown-toggle span{
        display : none;
    }
    .product-items{
        margin-bottom: 2px;
    }
    .product-items .content-product .title{
        margin: 8px 0;
    }
    .product-items .thumb{
        height: 100px;

    }
    .product-items .thumb img{
        max-height: 100px;
     }
    .product-items .content-product .information-prod .item{
        font-size: 12px;
    }
    .product-items .content-product .information-prod{
        margin-top: 10px;
        padding-top: 10px;
    }
    .product-items .thumb{
        height: 100px;
    }
    .product-items .content-product{
        min-height: 100px;

    }
    .product-items .content-product .title,.product-items .content-product .price,.product-items .content-product .address i{
        font-size: 13px;
    }
    .product-items .row{
        flex-direction: row-reverse;
    }
    .hide-mobile{
        display:none;
    }
}
.card{
    margin-bottom : 15px;
}
.blockquote-footer {
    padding: 5px;
    background-color: transparent;
}

.thumb-sell {
    position: relative;
}
.thumb-sell span{
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 10px;
    font-size: 14px ;
    border-radius: 5px;
    background: red;
    color: var(--gold);
}
.subCats .cat-item{
    margin-bottom: 20px;
}
.subCats .cat-item-url{
    color: #4379F2;
    border: 2px solid #4379F2;
    padding: 15px 5px;
    border-radius: 10px;
    width: 100%;
}
.subCats .cat-item-url:hover{
    color: rgba(212, 87, 198, 1);
     border: 2px solid  rgba(212, 87, 198, 1);
}
.pro-item {
    margin-bottom: 30px;
}

.pro-item .pro-thumb img{
    width: 100%;
    min-height: 200px;
    border-radius: 0 10px 10px 0;
}
.pro-item .pro-tit{
    color: #4379F2;
}
.whats-app{
    position: fixed;
    top: 65%;
    right:   10px;
    z-index: 99999;
}
.whats-app img{
    max-width: 50px;
}
.contact-buttons {
    display: flex;
    gap: 30px;
  width: 80%;
    margin: 30px auto;
}

.contact-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.whatsapp-btn {
    background-color: #25d366;
}

.call-btn {
    background-color: #f44336;
}
/* حاوية الـ dots */
.property-carousel .owl-dots {
    text-align: center;
         position: absolute;
    bottom: 0;
    left: 50%;
}

/* كل dot */
.property-carousel .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

/* شكل النقطة */
.property-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    background: var(--main);
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* النقطة النشطة */
.property-carousel .owl-dot.active span {
    background: var(--gold); /* أخضر (ممكن تغيره لأي لون) */
    transform: scale(1.3);
}
.sticky-widget {
    position: fixed !important;
    bottom: -10px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
 
    background: #fff !important;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.15) !important;
    border-top: 4px solid var(--main) !important;
    padding: 2px 0 !important;
}

/* العناصر الفردية */
.sticky-widget-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--gray) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 4px 2px !important;
    height: 56px !important;
    transition: all 0.25s ease !important;
}

.sticky-widget-item i {
    font-size: 20px !important;
    margin-bottom: 1px !important;
}

/* العنصر الأساسي (الأزرق في المنتصف) */
.sticky-widget-main {
    color: #fff !important;
    background: linear-gradient(135deg, var(--main), #1e5f99) !important;
    border-radius: 12px !important;
    margin-top:0 !important;
    height: 64px !important;
    box-shadow: 0 4px 15px rgba(13,59,102,0.4) !important;
    position: relative;
    z-index: 2;
}

.sticky-widget-main i {
    color: var(--gold) !important;
    font-size: 22px !important;
}

/* التفاعل */
.sticky-widget-item:hover {
    color: var(--main) !important;
    transform: translateY(-3px) !important;
}

.sticky-widget-main:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(13,59,102,0.5) !important;
}

/* إخفاء على الشاشات الكبيرة */
@media (min-width: 992px) {
    .sticky-widget {
        display: none !important;
    }

}

/* مساحة أسفل المحتوى */
@media (max-width: 991.98px) {
     .sticky-widget .col-2 {
         flex: 0 0 20% !important;
    max-width: 20% !important;
 }
 
    
    .admin-bar .sticky-widget {
        bottom: 46px !important; /* للـ WordPress admin bar */
    }
}