body {
    overflow-x: hidden;
}


.Home-image {
    width: 100%;
    height: 450px;
    background: center / cover no-repeat url("../../images/bg.png");
}

.landing .img_header {
    height: 500px;
}

.landing {
    overflow: hidden;
}

.landing .img_header img {
    object-fit: cover;
}

.landing .content {
    color: #fff;
    top: 30%;
    left: 10%;
}

@media only screen and (max-width: 900px) {
    .landing .content {
        top: 20%;
    }
}

@media only screen and (min-width: 900px) {
    .landing .content {
        left: 30%;
    }
}


.landing2.Home-image {
    width: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image:url("../../images/senior.png");
}

.landing2 .img_header {
    height: 500px;
}

.landing2 {
    overflow: hidden;
}

.landing2 .img_header img {
    object-fit: cover;
}

.landing2 .content {
    color: #fff;
    top: 28%;
    /* left: 10%; */
    background-color: rgba(0, 0, 0, .5);
    border-radius: 48px;
    padding: 20px;
    width: 35%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 900px) {
    .landing2 .content {
        top: 33%;
        left: 5%;
        width: 92%;
        padding: 23px;

    }
}

@media only screen and (min-width: 900px) {
    .landing2 .content {
        left: 11%;
    }
}






.landing3.Home-image {
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image:url("../../images/house.webp");
}

.landing3 .img_header {
    height: 500px;
}

.landing3 {
    overflow: hidden;
}

.landing3 .img_header img {
    object-fit: cover;
}

.landing3 .content {
    color: #fff;
    top: 28%;
    /* left: 10%; */
    background-color: rgba(0, 0, 0, .5);
    border-radius: 48px;
    padding: 20px;
    width: 35%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 1200px) {
    .landing3 .content {
        top: 20%;   
         padding: 31px 20px;
    width: 76%; top: 28%;
    }
   

}

@media only screen and (min-width: 900px) {
    .landing3 .content {
        left: 11%;
    }
}







/*catgories*/
.catgories {
    overflow: hidden;
}

/* 
.catgories .catgory {
    height: 300px;
} */

/* .catgories .catgory::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    transition: 0.5s;
} */

.catgories .catgory img {
    object-fit: cover;
    transition: 0.3s;
}

.catgories .catgory:hover img {
    transform: scale(1.1);
}

.catgories .catgory .overlay {
    background-color: black;
    opacity: 0.1;
}

.catgories .desc {
    color: #a5a5a5;
}

.catgories .line {
    height: 1px;
    background-color: #a5a5a5;
}

.catgories .product {
    color: #fff;
    transition: 0.5s;
}

.catgories .number {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(100px);
    transition: 0.5s;
}

.catgories .catgory:hover .product,
.catgories .catgory:hover .number {
    transform: translateY(-5px);
}

.catgory {
    position: relative;
    overflow: hidden;
    /* Added overflow property*/
}

.catgory:hover img {
    transform: scale(1.1);
    transition: all 500ms linear;
}

.catgory:hover .overlay {
    background-color: black;
    opacity: 0.3;
}

/* .catgories .catgory:hover::before{
    background: rgb(0 0 0 / 50%);
} */

.sales_col {
    overflow: hidden;
}

.sales_col .par {
    color: #ff0000;
    font-weight: bold;
}

/*flash_sales*/
.flash_sales .item .img {
    height: 200px;
    overflow: hidden;
}

.flash_sales .time{
    background: var(--main);
    min-width: 3.7em;
    min-height: 3.7em;
    color: #fff;
}

/*collection*/
.collection .content {
    box-shadow: 0px 0px 4px 0px rgba(68.99999999999997, 168.99999999999994, 99.00000000000001, 0.46);
}

.collection .item {
    direction: rtl;
}

.collection .item .desc {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: clip;
    white-space: nowrap;
}

.collection .item .img {
    height: 250px;
    overflow: hidden;
}



/*explore*/
.explore .item {
    background-color: #f7f7f7;
}

.explore .item .desc {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: clip;
    white-space: nowrap;
}

.explore .item .img {
    height: 250px;
    overflow: hidden;
}




.explore .selected_product {
    position: relative;
    text-wrap: nowrap;
    color: rgba(51, 51, 51, 0.7);
    border: 0;
    background-color: transparent;
    margin-right: 10px;
}

.explore .selected_product::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    color: var(--main);
    background-color: var(--main);
    transition: 0.5s;
}

.explore .selected_product:hover::before {
    width: 100%;
}

.explore .selected_product.active::before {
    width: 100%;
}

.explore .item .close:hover {
    color: #6c757d;
}

.explore .item .product_modal {
    background-color: #ffffffc9;
    overflow-y: auto;
    overflow-x: hidden;
}

.explore .item .addToCartBtn {
    background-color: var(--main);
    border: 0 !important;
}

.explore .item .increse-decrese {
    background-color: rgb(237 64 0) !important;
}

.explore .item .decrese,
.explore .item .increse,
.explore .item .product-num {
    background-color: rgb(237 64 0) !important;
    border: 0 !important;
    width: auto !important;
}

.explore .rounded_img {
    position: relative;
}

.explore .rounded_img::after {
    content: "";
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    position: absolute;
    background-color: #333;
}

.explore .rounded_img:hover::after,
.explore .rounded_img:focus::after,
.explore .rounded_img.active::after {
    width: 100%;
}

/*shop*/
.shop .frame {
    height: 300px;
    object-fit: cover;
}

.shop .head {
    color: var(--main);
}

.shop .desc {
    color: rgba(51, 51, 51, 0.7);
}

/*tags*/
.tags .head {
    color: rgba(51, 51, 51, 0.7);
}

section.tags {
    border-top: 2px solid #333;
}

.tags .tag {
    border: 2px solid var(--main);
    color: var(--main);
    font-family: "Questv1";
}

/* shop */
.shop .icon i {
    font-size: 50px;
    color: var(--main);
    text-align: center;
}

.shop .des {
    color: #7a7a7a;
    text-align: center;
}

@media (max-width: 768px) {
    .TOP-VISITED {
        color: black;
    }

    .catgories .catgory p {
        font-size: 16px !important;
    }
}

/* .icons-home {
    right: -200px;
    background-color: white;
    padding: 5px;
    color: white;
    transition: 0.5s;
    top: 10px;
}

.item:hover .icons-home {
    right: 10px;
    color: black;
} */

.position-absolute.TOP-VISITED.top-50.start-50.text-center.translate-middle.w-100.overflow-hidden {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

@media (max-width: 567px) {

    .catgories .catgory p,
    .catgories .product {
        font-size: 14px !important;
    }
}

@media (max-width: 567px) {
    .img-sm {
        height: 300px;
        display: block;
        margin: auto;
        object-fit: contain;
    }
}

.card-img-circle {
    position: relative;
    z-index: 1;
}

/* new_collection  */
.new_collection  .img_col{
    height: 530px;
    /* transition: var(--main-transtion); */
    position: relative;
      
   }
   
   .new_collection  .img_col:hover   .img_new_collection{
       transform: scale(1.2);
   }
   
   .new_collection  .img_new_collection
   {
   object-fit: cover;
   transition: var(--main-transtion);
   
   }
   .new_collection  .col_name_head{
       color: #777;
   
   }
   
   .new_collection  .col_name{
       color: #c24d94;
   
   }
   
   .new_collection  .img_col  .shop{ 
    transition: var(--main-transtion);
    visibility: hidden;
    transform: translateY(100px);
   
   }    
   
   .new_collection  .img_col:hover .shop{
   visibility: visible;
   transform: translateY(0px);
   
   }
   
   .new_collection  .new_col_content
   {
       position: absolute;
       top: 10%;
       right: 35%;
   }
   .new_collection  .shop a{
       color: #333;
   
   border-bottom:2px  solid  var(--main);
   }
   .new_collection  .shop a:hover{
       color: #5b5858;
   }
   .col_name.man{
    color:#4d71c2;
    }
     
       /* color:#4d71c2; */

       .owl-theme .owl-dots .owl-dot span {
        border-color: #c1c1c1;
        border-width: 2px;
        border-style: solid;
        background: #fff !important;
        width: 12px !important;
        height: 12px !important;
    }
    
    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
        border-color: #696868;
        border-width: 2px;
        border-style: solid;
        background: #696868 !important;
        width: 12px !important;
        height: 12px !important;
    }
    
    .owl-carousel {
        position: relative;
    }
    
    /* .flash_sales:hover button.owl-next,
    .flash_sales:hover button.owl-prev, */
    .owl-carousel:hover  button.owl-next,.owl-carousel:hover button.owl-prev
    {
        display: block !important;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 26%;
        right: -20px;
        font-size: xx-large !important;
        display: none;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        position: absolute;
        top: 26%;
        left: -20px;
        font-size: xx-large !important;
        display: none;
    
    }
    
    .owl-theme .owl-nav [class*='owl-']:hover {
        background-color: unset !important;
        color: #869791 !important;
    }