@charset "utf-8";

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1E1E1E;
  border-radius: 0;
}
#Subscriptions .table>:not(caption)>*>*{
    padding: .8rem .5rem;
}
.profile th{
    white-space: nowrap;
}
:root{
    --bs-breadcrumb-divider: ">";
    --primary-color: #181B1D;
    --border-color: #EBEEF7;
}

@font-face {
  font-family: Bahij;
  src: url(../fonts/Bahij_TheSansArabic-Plain.ttf);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: var(--primary-color);
}
[dir="rtl"] body{
    font-family: 'Bahij', sans-serif;
}

p {
  font-size: 16px;
  color: #767676;
  transition: all 0.3s;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

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

.rounded {
    border-radius: 15px !important;
}

.border {
    border: 1px solid var(--border-color) !important;
}

.bg-light{
    background-color: #F5F7FA !important;
}

.gap-20{
    gap:20px;
}

.btn {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    height: 45px;
    border: 1px solid var(--primary-color) !important;
    line-height: 43px;
    padding: 0 15px;
    font-size: 16px;
    flex-shrink: 0;
    transition: all .3s;
}

.btn:hover, .btn:focus{
  background-color: #fff;
  color: var(--primary-color);
  box-shadow: none !important;
}

.btn-light {
    color: var(--primary-color);
    background-color: #fff;
    border-color: #fff !important;
}

.btn-light:hover{
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color) !important;
}

.navbar {
    position: absolute;
    z-index: 999;
    padding: 15px 0;
    top: 0;
    width: 100%;
}

[dir="ltr"] .navbar {
    left: 0;
}

[dir="rtl"] .navbar {
    right: 0;
}

.navbar-nav {
    width: 80%;
    justify-content: center;
}

.navbar .navbar-brand{
    width: 130px;
}

.navbar .nav-item{
    position: relative;
}

.navbar .navbar-nav a.dropdown-item {
    color: #000;
}

.navbar .navbar-nav a.nav-link{
    font-size: 18px;
    margin: 0 1rem !important;
    padding: 0 !important;
    line-height: 67px;
    color: #fff;
    opacity: 0.8;
}

.navbar .navbar-nav li.active a,.navbar .navbar-nav li.active a,.navbar .navbar-nav .nav-item.active a {
    color: #fff;
    opacity: 1;
}

.navbar .navbar-nav a.nav-link:hover{
    color: #fff !important;
    opacity: 1;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 26px;
}

.navbar .navbar-nav li:hover:after,.navbar .navbar-nav li:hover:after,.navbar .navbar-nav .nav-item:hover:after {
    width: 45%;
    transition: all .25s ease-in-out
}

nav .dropdown .dropdown-menu {
/*    display: block;*/
    top: calc(100% + 20px);
    opacity: 0;
    z-index: -1;
    transition: all .3s;
}

nav .dropdown-toggle:hover + .dropdown-menu,nav .dropdown .dropdown-menu:hover {
    display: block;
    top: 90%;
    opacity: 1;
    z-index: 9;
}

.nav_left{
    gap: 15px;
    align-items: center;
}

.nav_left .dropdown .btn {
    background-color: transparent !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0;
    height: 35px;
    line-height: 35px;
}

[dir="ltr"] .nav_left .dropdown .btn {
    border-left: 1px solid hsl(0deg 0% 100% / 20%) !important;
}

[dir="rtl"] .nav_left .dropdown .btn {
    border-right: 1px solid hsl(0deg 0% 100% / 20%) !important;
}

.nav_left .login_user{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50px;
}

[dir="ltr"] .flag-icon {
    margin-right: 5px;
}

[dir="rtl"] .flag-icon {
    margin-left: 5px;
}

.hero{
    height: 100vh;
    padding-top: 100px !important;
}

.hero h1{
    width: 60%;
    margin-top: 60px;
}

.hero form{
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
    border:1px solid var(--border-color);
}

.hero form .form-group{
    position: relative;
    width: 100%;
}

.hero form .form-control,.hero form .form-select{
    height: 55px;
    font-size: 16px;
    border: none;
    border-radius: 0;
}

[dir="ltr"] .hero form .form-control,[dir="ltr"] .hero form .form-select{
    border-left: 1px solid var(--border-color);
    padding-left: 50px;
}

[dir="rtl"] .hero form .form-control,[dir="rtl"] .hero form .form-select{
    border-right: 1px solid var(--border-color);
    padding-right: 50px;
}

[dir="ltr"] .hero form .form-group:first-child .form-control{
    border-left: none;
}

[dir="rtl"] .hero form .form-group:first-child .form-control{
    border-right: none;
}

.hero form .form-control:focus, .hero form .form-select:focus{
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
}

.hero form .form-group i,.hero form .form-group img{
    color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

[dir="ltr"] .hero form .form-group i,[dir="ltr"] .hero form .form-group img{
    left: 15px;
}

[dir="rtl"] .hero form .form-group i,[dir="rtl"] .hero form .form-group img{
    right: 15px;
}

.hero form .btn{
    width: 150px;
    height: 55px;
}

[dir="ltr"] .hero form .btn i{
    margin-right: 10px;
}

[dir="rtl"] .hero form .btn i{
    margin-left: 10px;
}

.hero .category_box {
    border-radius: 8px;
    background-color: transparent;
    padding: 20px;
    transition: all .3s;
}

.hero .category_box:hover{
    background-color: rgb(255 255 255 / 10%);
}

.hero .category_box a{
    color: #fff !important;
    display: block;
}
.hero .category_box img{
    width: 50px;
    height: 50px;
}

.how-it-works{
    background-color: #F5F7FA;
}

.how-it-works h2{
    font-size: 40px;
}

.how-it-works .card{
    height: 100%;
    border-radius: 10px;
    background-color: #ffffff;
    text-align: initial;
}

.how-it-works .card .icon{
    height: 60px;
}

.how-it-works .card .num{
    position: absolute;
    top: 0;
    color: var(--border-color);
    font-weight: normal !important;
}

[dir="ltr"] .how-it-works .card .num{
    right: 0;
}

[dir="rtl"] .how-it-works .card .num{
    left: 0;
}

.how-it-works .card .card-title{
    margin-bottom: 15px;
}

/* Featured Ads Card */
section{
    padding: 80px 0;
}

.featured-ads{
    background-image: url(../images/ads_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ad-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    position: relative;
    transition: all 0.3s ease-in-out;
}

[dir="ltr"] .ad-card:hover .content{
    /*transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);*/
    background: linear-gradient(90deg, #FFF8E2, transparent);
}

[dir="rtl"] .ad-card:hover .content{
    background: linear-gradient(-90deg, #FFF8E2, transparent);
}

.ad-card:hover{
    border-color: #FFC61C;
}

.ad-card img {
    width: 40%;
    height: 250px;
    object-fit: cover;
}

.ad-card .content {
    width: 60%;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease-in-out;
}

.badge {
    font-size: 14px;
    color: #636A80;
    padding: 5px 7px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-weight: normal;
}

.badge i{
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    color: #fff !important;
    font-size: 10px;
    background-color: #FF4F4F;
    border-radius: 50px;
}

.badge.bg-danger{
    background-color: #FFE5E5 !important;
    color: #992F2F !important;
}

.badge.bg-danger i {
    background-color: #FF4F4F;
}

.badge.bg-warning{
    background-color: #FFF8E0 !important;
    color: #997300 !important;
}

.badge.bg-success{
    background-color: #E4F9E0 !important;
    color: #104E00 !important;
}

.badge.bg-success i{
    background-color: #27C200;
}

.badge.bg-info{
    background-color: #3D7A81 !important;
    color: #fff !important;
}

.ad-card h5 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #191F33;
}

.ad-card ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.ad-card ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ad-card .price {
    font-size: 20px;
    color: #ff4d4f;
    font-weight: bold;
}

.ad-card .card_bottom{
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.ad-card .card_bottom .heart_btn {
    background-color: transparent;
    border: none;
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

/* Heart Button */
.heart-btn {
    border: none;
    color: #ff4d4f;
    font-size: 18px;
    transition: all 0.3s ease;
}

.heart-btn:hover {
    background: #ff4d4f;
    color: white;
}

.heart_btn {
    border: none;
    color: #ff4d4f;
    background-color: transparent;
    font-size: 18px;
    transition: all 0.3s ease;
}

.heart_btn:hover {
    /*background: #ff4d4f;*/
    color: #ff4d4f;
}
/* Restaurant Promotion Section */
.restaurant-promotion {
    position: relative;
    overflow: hidden;
}

.restaurant-promotion .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    top: 0;
}

[dir="ltr"] .restaurant-promotion .overlay {
    left: 0;
}

[dir="rtl"] .restaurant-promotion .overlay {
    right: 0;
}

.promotion-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

[dir="ltr"] .promotion-bg {
    left: 0;
}

[dir="rtl"] .promotion-bg {
    right: 0;
}

.promotion-video,.promotion-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    object-fit: cover;
    pointer-events: none; /* Disable interaction with the iframe */
    background-position: center;
    background-size: cover;
}

[dir="ltr"] .promotion-video,[dir="ltr"] .promotion-img {
    left: 0;
}

[dir="rtl"] .promotion-video,[dir="rtl"] .promotion-img {
    right: 0;
}

.promo-text{
    width: 400px;
    max-width: 70%;
}

.promo-text h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
}

.promo-text p {
    font-size: 16px;
    color: #ddd;
}

.promo-text .btn{
    border-radius: 50px;
}

.promo-video{
    width: 30%;
}

.promo-play {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.promo-play:hover {
    transform: scale(1.1);
    background-color: #f8f9fa;
}

.promo-play i {
    font-size: 36px;
    color: #333;
}

.modal-dialog{
    width: 900px;
    max-width: 100%;
}

/* Popular Locations */
.popular-locations {
/*    background-color: #f8f9fc;*/
}

.location-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 5px;
    margin-top: 80px;
    padding-top: 160px;
    margin-bottom: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
/*    transform: translateY(-5px);*/
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.location-card img {
    width: 86%;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
    position: absolute;
    top: -80px;
}

[dir="ltr"] .location-card img {
    left: 7%;
}

[dir="rtl"] .location-card img {
    right: 7%;
}

/* Recently Posted Ads */
.recent-ads {
    background-color: #F5F7FA;
}

.ad-card.vertical {
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-card .urgent {
    background-color: #FF4F4F;
    color: #fff;
    position: absolute;
    top: 25px;
    border-radius: 0;
    padding: 5px 15px;
    width: 140px;
    justify-content: center;
}

[dir="ltr"] .ad-card .urgent {
    left: -35px;
    transform: rotate(-45deg);
}

[dir="rtl"] .ad-card .urgent {
    right: -35px;
    transform: rotate(45deg);
}

.ad-card.vertical img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ad-card.vertical .content {
    justify-content: flex-start;
    width: 100%;
}

[dir="ltr"] .ad-card.vertical .content {align-items: baseline;}

[dir="rtl"] .ad-card.vertical .content {align-items: flex-start;}

.ad-card.vertical .badge i{
    color: #636A80;
}

.ad-card.vertical .card_bottom{
    padding-top: 10px;
}

.ad-card h5 {
    font-size: 16px;
    margin: 10px 0;
}

.ad_register{
    position: relative;
}

.ad_register img{
    height: 160px;
    object-fit: cover;
    position: absolute;
    top: 0;
}

[dir="ltr"] .ad_register img{
    left: 0;
}

[dir="rtl"] .ad_register img{
    right: 0;
}

.ad_register .row {
    height: 160px;
    z-index: 9;
    position: relative;
    align-items: center;
    justify-content: flex-end;
}

.ad_register .btn {
    border-radius: 50px;
    background-color: #52C4AC;
    border-color: #52C4AC !important;
    padding: 0 25px;
    width: auto;
}

/* Pricing Section */
.pricing-section {
    background-image: url(../images/packages_bg.png);
    background-position: center center;
    background-size: 80%;
    background-repeat: no-repeat;
}

.pricing-section .btn-group{
    background-color: #E5E5E5;
    border-radius: 50px;
    padding: 10px;
}

.pricing-section .btn-group .btn {
    background-color: #E5E5E5;
    color: #191F33;
    border: none !important;
    border-radius: 50px !important;
    font-size: 14px;
    padding: 0px 30px;
}

.pricing-section .btn-group .btn.active{
    background-color: #1E1E1E;
    color: #fff;
}

.pricing-section .card {
    border: 1px solid #EAEAEA;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.pricing-section .card .icon {
    width: 60px;
    height: 60px;
    background-color: #E5E5E5;
    border-radius: 10px;
    text-align: center;
    line-height: 60px;
}

[dir="ltr"] .pricing-section .card .icon {
    margin-right: 15px;
}

[dir="rtl"] .pricing-section .card .icon {
    margin-left: 15px;
}

.pricing-section .card .price-text small{
    font-size: 18px;
}

.pricing-section .card h5 span {
    display: block;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    font-size: 14px;
    padding: 3px 10px;
    margin-top: 10px;
}

[dir="ltr"] .pricing-section .card ul {
    padding-left: 0;
}

[dir="rtl"] .pricing-section .card ul {
    padding-right: 0;
}

.pricing-section .card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-section .card p{
    color: #191F33;
}

.pricing-section .btn-group .btn.active {
    background-color: #000;
    color: #fff;
}

.pricing-section .card.bg-dark {
    background-color: #1E1E1E !important;
    color: white;
}

.pricing-section .card.bg-dark .btn {
    background-color: white;
    color: #343a40;
}

.pricing-section .card.bg-dark .icon{
    background-color: #fff;
}

.pricing-section .card.bg-dark .text-muted,.pricing-section .card.bg-dark p{
    color: #fff !important;
}

.pricing-section .btn{
    background-color: #fff;
    color: var(--primary-color);
    padding: 0 30px;
}

/* Testimonials Section */
.testimonials-section {
    background-image: url(../images/clients_bg.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials-section .text{
    width: 470px;
    max-width: 100%;
}

.testimonials-section .text h2{
    font-size: 34px;
    line-height: 44px;
}

.testimonials-section .carousel-item{
    min-height: 290px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgb(76 87 125 / 10%);
    margin: 5px;
    height: 96%;
}

.testimonial-card p {
    font-size: 16px;
    text-align: justify;
    border-bottom: 1px solid #EAEAEA;
    padding: 20px;
}

.testimonial-card p i{
    display: block;
    font-size: 30px;
    color: #1E1E1E;
}
[dir="rtl"] .testimonial-card p i{
    transform: rotateY(180deg);
    display: table;
}
.testimonial-card .client_info{
    padding: 20px;
}

.testimonial-card .client_info img{
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.testimonials-section .slide{
    margin-top: 70px;
}

.testimonials-section .carousel-control-next, .testimonials-section .carousel-control-prev {
    width: auto;
    height: 35px;
    display: block;
    top: -50px;
}

[dir="ltr"] .testimonials-section .carousel-control-next{
    right: auto;
    left: 60px;
}

[dir="rtl"] .testimonials-section .carousel-control-next{
    left: auto;
    right: 60px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 35px;
    height: 35px;
    color: #000;
    border: 2px solid #fff;
    padding: 5px;
    filter: invert(1);
    background-color: #000;
    background-size: 22px;
    background-position: center;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    filter: invert(0);
}

/* Blog Section */

.blog-main-section .blog-card {
    background: white;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-main-section .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.blog-main-section .blog-card .img_box{
    position: relative;
}

.blog-main-section .blog-card .img_box:after{
    content: "";
    background-color: #1E1E1E;
    height: 110%;
    width: 30%;
    position: absolute;
    top: -5%;
    border-radius: 10px;
}

[dir="ltr"] .blog-main-section .blog-card .img_box:after{
    right: 0;
}

[dir="rtl"] .blog-main-section .blog-card .img_box:after{
    left: 0;
}

.blog-main-section .blog-card img {
    width: calc(100% - 10px);
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    z-index: 9;
    position: relative;
}

.blog-main-section .blog-card h5 {
    font-size: 18px;

    margin: 10px 0;
    line-height: 1.4;
}

.blog-main-section .blog-card p {
    font-size: 14px;
    line-height: 1.6;
}

.blog-main-section .blog-card a {
    font-size: 14px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-main-section .blog-card a:hover {
    color: #007bff;
}

/* Premium Membership Section */
.premium-cta-section {
    background-color: var(--primary-color);
    background-image: url('../images/Pattern.png'); /* Replace with actual background pattern */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    padding: 50px;
}

.premium-cta-section h2 {
    font-size: 28px;
}

.premium-cta-section hr{
    height: 2px;
    background-color: #fff;
    width: 50px;
    opacity: 1;
}

.premium-cta-section .btn {
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.premium-cta-section .btn:hover {
    background-color: #000;
    color: #fff;
}

/* Footer Section */
.footer-section {
    background-color: #1E1E1E;
}

.footer-section .footer_logo{
    width: 150px;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-section h6 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer-section p{
    font-size: 14px;
    line-height: 26px;
}

.footer-section ul a {
    opacity: 0.4;
    line-height: 30px;
    transition: all 0.3s ease;
}

.footer-section ul a:hover {
    opacity: 1;
}

.footer-section .social-icons a i {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50px;
    background-color: transparent;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-section .social-icons i:hover {
    background-color: #fff;
    color: #000;
}

.footer-section .img-fluid{
    border-radius: 8px;
}

/* Copyright Section */
.copyright-section {
    font-size: 14px;
    position: relative;
}

.copyright-section a {
    color: #767E94;
    transition: all 0.3s ease;
}

.copyright-section a.text-dark{
    color: #000;
}

.copyright-section a:hover {
    color: #000;
}

.copyright-section .totop {
    position: absolute;
     top: -25px; 
    border-radius: 50px;
    border: 5px solid #fff !important;
    height: 50px;
    width: 50px;
    color: #fff;
    padding: 0;
    font-size: 30px; 
}

[dir="ltr"] .copyright-section .totop {
    right: 3%; 
}

[dir="rtl"] .copyright-section .totop {
    left: 3%; 
}

.navbar.bg-dark{
    background-color: var(--primary-color) !important;
    position: static;
}

.sub_head-section {
    background-image: url('../images/Breadcrumbs.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: white;
}

.sub_head-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sub_head-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.sub_head-section .breadcrumb-item+.breadcrumb-item::before{
    content: "/" !important;
}

.sub_head-section .breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: .8;
    transition: all 0.3s ease;
}

.sub_head-section .breadcrumb a:hover {
    opacity: 1;
}

.sub_head-section .breadcrumb-item.active {
    color: #fff;
    font-weight: bold;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    width: 80%;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}

.feature-list li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.feature-list li img{
    width: 80px;
}

.feature-list li h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.feature-list li p {
    margin-bottom: 0;
}

.signin-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 24px 100px 0 rgb(0 29 73 / 12%);
    padding: 40px 30px;
}

.signin-card h2 {    
    font-size: 40px;
    margin-bottom: 20px;
    font-family: "Nunito Sans", sans-serif;
}
[dir="rtl"] .signin-card h2{
    font-family: 'Bahij', sans-serif;
}

.signin-card .social-login .btn{
    flex: 1;
    border: 1px solid var(--border-color) !important;
    border-radius: 6px;
}

[dir="ltr"] .signin-card .social-login .btn img{
    margin-right: 15px;
}

[dir="rtl"] .signin-card .social-login .btn img{
    margin-left: 15px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    margin: 40px 0;
    color: #6c757d; /* Light gray for text */
    font-size: 14px; /* Smaller font size */
    font-weight: 500;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color); /* Light border color */
    margin: 0 10px; /* Spacing around the text */
}

.divider span {
    background: transparent; /* Match form background color */
    padding: 0 15px; /* Space around the text */
    white-space: nowrap; /* Prevent text wrapping */
    font-size: 14px;
}

form .form-control,form .form-select  {
    height: 50px;
    line-height: 40px;
    border-radius: 5px;
    border-color: var(--border-color);
}

form .form-control:focus,form .form-select:focus {
    box-shadow: none;
    border-color: #000;
}

form textarea.form-control{
    height: auto;
    line-height: normal;
    min-height: 100px;
}

.signin-card .form-control[type=file] {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 45px 10px;
    line-height: 30px;
    height: 160px;
    width: 160px;
    font-size: 14px;
    background-color: #e9ecef;
    white-space: break-spaces;
}

.signin-card .btn {
    height: 50px;
    font-size: 16px;
}

.signin-card .btn-dark {
    background-color: var(--primary-color);
    border: none;
}

.signin-card .btn-dark:hover {
    background-color: #fff;
}

.signin-card .text-muted {
    font-size: 14px;
}
/* Styling for the password toggle button */
.btn-eye {
    background: transparent;
    border: none;
    position: absolute;
    top: 50%; /* Adjust position as needed */
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d; /* Light gray color */
    font-size: 18px;
    z-index: 2;
}

[dir="ltr"] .btn-eye {
    right: 15px;
}

[dir="rtl"] .btn-eye {
    left: 15px;
}

.btn-eye:hover {
    color: #000; /* Darker color on hover */
}

.signin-card .text-muted a{
    color: #000;
}

.listing{

}

.hero_form{
    height: auto !important;
    padding-top: 1.5rem !important;
    margin: 0 !important;
}

.results-summary {
    border-bottom: 1px solid #ebebeb;
}

.results-summary .btn {
    border-radius: 5px;
    font-size: 14px;
    padding: 0 25px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd !important;
    transition: all 0.3s ease;
}

.results-summary .dropdown-menu {
    min-width: 150px;
}

.results-summary span {
    font-size: 16px;
}

.filter-sidebar {
    border-radius: 10px;
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 15px 0;
}

.filter-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.filter-group {
    margin-bottom: 15px;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-color);
}

.filter-title i {
    font-size: 14px;
    color: #1E1E1E;
    transition: transform 0.3s ease;
}

[dir="ltr"] .filter-title[aria-expanded="true"] i {
    transform: rotate(180deg);
}

[dir="rtl"] .filter-title[aria-expanded="true"] i {
    transform: rotate(-180deg);
}

.collapse {
    transition: height 0.3s ease;
}

.filter-list li {
    margin-bottom: 0px;
}

#categoryFilter .filter-list label{
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

#categoryFilter .filter-list .subcat label{
    border-bottom: none;
}

.filter-list label {
    cursor: pointer;
    font-size: 16px;
    color: #464D61;
    padding: 8px 0;
}

.filter-list label i{
    color: #1E1E1E;
    font-size: 18px;
}

.form-check-input {
    width: 18px;
    height: 18px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
}
/*.form-control {
    font-size: 14px;
    height: 40px;
    border-radius: 5px;
}*/
.range-slider .form-range {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #e4e4e4;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

.range-slider .form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

.range-slider .form-range::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

.range-slider input[type="text"] {
    border: 1px solid #ddd;
    background-color: transparent;
    border-radius: 5px;
    padding: 5px;
    font-size: 14px;
    width: 48%;
    box-shadow: none !important;
}

.range-slider {
    position: relative;
    width: 100%;
}

.range-slider .form-range {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: transparent;
}

.range-slider .form-range::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    z-index: 3;
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #000;
    cursor: pointer;
}

.range-slider .slider-track {
    position: absolute;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    width: 100%;
    z-index: 1;
}

.range-slider .slider-track-active {
    background: #000;
}

.banner {
    position: relative;
    margin-bottom: 20px;
}

.banner img{
    width: 100%;
    border-radius: 8px;
}

.banner .text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20%;
    text-align: center;
    width: 100%;
}

[dir="ltr"] .banner .text {
    left: 0;
}

[dir="rtl"] .banner .text {
    right: 0;
}

.banner .text h3 {
    color: #fff;
    font-size: 55px;
    line-height: 70px;
    margin-bottom: 20px;
}

.banner .text h3 span {
    font-size: 32px;
    line-height: 30px !important;
}

.banner .btn {
    border-radius: 50px;
    background-color: #52C4AC;
    border-color: #52C4AC !important;
    padding: 0 25px;
    width: 200px;
    max-width: 100%;
}
/*ad details*/
.productCarousel{
    margin: 20px 0;
}

.productCarousel .owl-item{
    background-color: var(--border-color);
}

.productCarousel img {
    height: 600px;
    width: 80% !important;
    margin: 0 auto;
    object-fit: cover;
}

.owl-thumbs {
    display: flex;
    padding: 0 50px;
    overflow-x: auto;
    justify-content: center;
    margin: 0 auto;
    margin-top: 10px;
    width: calc(100% - 100px);
}

.owl-thumbs .owl-thumb-item {
    height: 112px;
    width: 112px;
    background: transparent;
    border: 1px solid transparent;
    overflow: hidden;
    margin: 0 7px;
    padding: 5px;
    opacity: .6;
    flex-shrink: 0;
    transition: all .3s;
}

.owl-thumbs .owl-thumb-item img{
  width: 100% !important;
  height:100%;
  object-fit: cover;
}

.owl-thumbs .owl-thumb-item.active{
    border-color: #000;
    opacity: 1;
}

.owl-thumbs .owl-thumb-item:hover{
    opacity: 0.9;
}

.owl-dots{
  position:absolute;
  bottom:20px;
  left:0;
  right:0;
}

.owl-theme .owl-nav {
    height: 112px;
    margin-top: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

[dir="ltr"] .owl-theme .owl-nav {
    left: 0;
}

[dir="rtl"] .owl-theme .owl-nav {
    right: 0;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
/*    width: 45px;
    height: 45px;*/
    background-color: transparent;
    border-radius: 4px;
    opacity: 1;
    font-size: 30px;
    margin: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover{
    background-color: #000;
}

.fullscreen_btn {
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--primary-color);
    display: block;
    position: absolute;
    top: 15px;
    line-height: 50px;
    font-size: 20px;
}

[dir="ltr"] .fullscreen_btn {
    right: 15px;
}

[dir="rtl"] .fullscreen_btn {
    left: 15px;
}

.ad_details .feature_list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.ad_details .container > h2 img{
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}
.ad_details .feature_list li{
    color: #464D61;
    width: 48%;
    margin-bottom: 10px;
}

.ad_details .fav_btn{
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #ECECEC;
    color: #000;
    font-size: 20px;
    border-radius: 5px;
}

.ad_details .price,
.ad_details .contact,
.ad_details .seller,
.ad_details .info,
.ad_details .report
{
    border-bottom: 1px solid var(--border-color);
}

.ad_details .contact a{
    color: #636A80;
}
.ad_details .contact a.btn,.ad_details .seller a.btn{
    color: #fff;
}
.ad_details .contact a.btn:hover,.ad_details .seller a.btn:hover{
    color: var(--primary-color);
}
.ad_details .contact button{
    height: 50px;
    border-radius: 6px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: bold;
}
[dir="rtl"] .ad_details .contact button{
    font-family: 'Bahij', sans-serif;
}

.ad_details .contact button i{
    font-size: 20px;
}

.ad_details .seller img{
    width: 60px;
    height: 60px;
    border-radius: 50px;
}

.ad_details .seller h6{
    font-size: 14px;
    color: #767E94;
}

.ad_details .seller h3{
    font-size: 16px;
    color: var(--primary-color);
}

.ad_details .seller h3 i{
    color: #27C200;
}

.ad_details .seller a{
    color: var(--primary-color);
}

.ad_details .seller ul{
    margin-top: 20px;
}

.ad_details .seller ul li,.ad_details .seller ul li a{
    color: #636A80;
    margin-bottom: 10px;
}

.ad_details .seller ul li i{
    color: #000;
}

[dir="ltr"] .ad_details .seller ul li i{
    margin-right: 5px;
}

[dir="rtl"] .ad_details .seller ul li i{
    margin-left: 5px;
}

.ad_details #map{
    width: 100%;
    border-radius: 8px;
    height: 350px;
}

.ad_details .info .table>:not(caption)>*>*,
.ad_details_2 .table>:not(caption)>*>*{
    border-bottom: none;
}

.ad_details .info .table th,
.ad_details_2 .table th{
    font-weight: normal;
    padding: 0;
    padding-bottom: 10px;
}

.ad_details .info .table td,
.ad_details_2 .table td{
    color: #636A80;
    padding: 0;
    padding-bottom: 10px;
}

[dir="ltr"] .ad_details .info .table td,
[dir="ltr"] .ad_details_2 .table td{
    text-align: right;
}

[dir="rtl"] .ad_details .info .table td,
[dir="rtl"] .ad_details_2 .table td{
    text-align: left;
}

.ad_details .report a{
    color: #464D61;
}

.share ul{
    margin-bottom: 0;
}

.share li a{
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    display: block;
    text-align: center;
    line-height: 40px;
}

.share li a.facebook{background-color: #3B5998}

.share li a.twitter{background-color: #1DA1F2}

.share li a.whatsapp{background-color: #2DA54B}

.share li a.linkedin{background-color: #0077B5}

.share li a.pinterest{background-color: #CB2027}

.share li a.link{background-color: #636A80}


/*ad_details_2 */

.ad_details .breadcrumb-item li,
.ad_details_2 .breadcrumb-item li,
.ad_details_3 .breadcrumb-item li{
    color: #9CA3AF;
}

.ad_details .breadcrumb-item a,
.ad_details_2 .breadcrumb-item a,
.ad_details_3 .breadcrumb-item a{
    color: #333D4C;
}

.images_section img{
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.images_section .gallery_slider{
    height: 450px;
}

.images_section .gallery_slider img{
    height: 100%;
}

.gallery_slider video {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
}

.images_section img.main_img{
    height: 450px;
}

.images_section img.small_img{
    height: 220px;
}

.images_section .overlay_plus {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background-color: rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    opacity: 0;
    transition: all .3s ease-in-out;
}

[dir="ltr"] .images_section .overlay_plus {
    left: 0;
}

[dir="rtl"] .images_section .overlay_plus {
    right: 0;
}

.images_section .img_box{
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.ad_details .images_section .img_box{
    margin-bottom: 0;
    height: 450px;
    padding: 0 2px;
}

.images_section .img_box:hover .overlay_plus{
    opacity: 1;
}

.location-filters .btn {
    border-radius: 50px;
    flex: 1;
    font-size: 13px;
    padding: 0 5px;
    background-color: transparent !important;
    color: #333D4C;
    border: 1px solid #E0E5EB !important;
    transition: all 0.3s;
}

.location-filters .btn.active,
.location-filters .btn:hover {
    background-color: #F5F7FA !important;
    color: #1E1E1E;
    border-color: #1E1E1E !important;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: 0;
}

.amenities-list i {
    font-size: 18px;
    color: #6c757d;
    flex-shrink: 0;
}

.amenities-list span {
    font-size: 14px;
    color: #6c757d;
    flex-grow: 1;
}

.work_hour span{
    flex-grow: 0 !important;
}

.amenities-list.list2 span {
    flex-grow: 0;
}

.amenities-list .col {
    display: flex;
    gap: 10px;
    align-items: center;
}

.amenities-list .col img{
    width: 18px;
}

.property-header h2 {
    font-size: 24px;
}

.property-header p {
    font-size: 14px;
}

.property-header .badge {
    font-size: 12px;
    display: inline-block;
    line-height: 1.5;
}

.property-header i {
    color: #6c757d;
    transition: color 0.3s ease;
}

.property-header .heart_btn{
    border: none;
    background-color: transparent;
    color: #6c757d;
}

.property-header .alert {
    background-color: #F5F7FA;
    border: 1px solid #E0E5EB;
    font-size: 14px;
}

.ad_details_2 .table th{
    width: 200px;
}

[dir="ltr"] .ad_details_2 .table td{
    text-align: left;
}

[dir="rtl"] .ad_details_2 .table td{
    text-align: right;
}

.agent-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.agent-card h5 {
    font-size: 18px;
    margin-bottom: 0;
}

.agent-card small {
    font-size: 14px;
    color: #767676;
}

.agent-card .contact-info p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #4E5562;
}

.agent-card .contact-info p a {
    color: #4E5562;
}

.agent-card .btn {
    height: 50px;
    border-radius: 8px;
}

.agent-card .btn-outline-dark {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: transparent;
    transition: all 0.3s ease;
}

.agent-card .btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.agent-card .divider{
    margin:20px 0;
}

.publish-details {
    font-size: 14px;
    color: #6c757d;
    padding: 20px 0;
}

.publish-details .fw-bold {
    color: var(--primary-color);
}

.publish-details .action-icons i {
    font-size: 16px;
    color: var(--primary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.ad_details_3 .badge{
    color: #fff !important;
    border-radius: 4px;
}

.ad_details_3 .badge i{
    background-color: transparent;
}

.ad_details_3 .badge.bg-success{
    background-color: #33B36B !important;
}

.ad_details_3 .fa-star{
    color: #FC9231;
}

.ad_details_3 .banner h3{
    font-size: 40px;
    line-height: 50px;
}

.ad_details_3 iframe{
    min-height: 250px;
}

.reviews-section h2 {
  font-size: 24px;
}

.reviews-section .nav-tabs {
    border-bottom: none;
}

.reviews-section .nav-tabs .nav-link {
    height: 40px;
    padding: 0 25px;
  border-color: #E0E5EB !important;
  border-radius: 50px;
  font-size: 14px;
  background-color: #fff;
  color: #333D4C;
}

.reviews-section .nav-tabs .nav-link.active,.nav-tabs .nav-link:hover {
  border-color: #333D4C !important;
  color: #333D4C;
  background-color: #F5F7FA !important;
}

.reviews-section .btn-light {
    border: 1px solid var(--primary-color) !important;
    border-radius: 50px;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  margin: 0;
}

.review-item small {
  font-size: 14px;
}

.review-item .text-warning i {
  font-size: 16px;
}

.review-item p {
  font-size: 14px;
  line-height: 1.6;
}

.like_btns .btn {
  font-size: 14px;
  border: none !important;
  padding: 0;
  color: #6C727F;
  background-color: transparent !important;
  height: auto;
  line-height: normal;
}

.like_btns span {
    color: #E0E5EB;
    line-height: normal;
    margin-top: -3px;
}

.pagination {
    margin-bottom: 30px;
}

[dir="ltr"] .pagination .page-item{
    margin-right: 5px;
}

[dir="rtl"] .pagination .page-item{
    margin-left: 5px;
}

.pagination .page-link {
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    padding: 0;
    color: #333D4C;
    border-radius: 50px !important;
    border: none;
    margin: 0 !important;
    font-weight: bold;
}

.pagination .page-item.active .page-link {
  background-color: #EEF1F6;
  color: #333D4C;
}

.top-places-section h2 {
  font-size: 18px;
  margin-bottom: 20px;
}

.top-places-section .place-card{
    width: 100%;
}

.top-places-section .place-img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.top-places-section .place-info h5 {
  font-size: 16px;
  margin: 0;
}

.top-places-section .place-info .text-muted {
  font-size: 14px;
  line-height: 1.5;
}

.top-places-section .place-info i {
  font-size: 14px;
}

/*blog-page*/

.blog-page{
    font-family: "Nunito Sans", sans-serif;
}
[dir="rtl"] .blog-page{
    font-family: 'Bahij', sans-serif;
}
.blog-page .blog-card-list {
    display: flex;
    flex-direction: column;
}
.blog-page .col-lg-4 .col-4 .img-fluid {
    width:100%;
    height: 112px;
}
.blog-page .blog-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    background-color: #fff;
}

.blog-page .blog-card .blog-image {
    position: relative;
    flex-shrink: 0;
    width: 250px;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-page .blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-page .blog-card .blog-video {
  position: relative;
  flex-shrink: 0;
  width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.blog-page .blog-card .blog-video iframe {
  display: none; /* Initially hide iframe */
  width: 100%;
  height: 100%;
  border: none;
}

.blog-page .blog-card .blog-video .video-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}

[dir="ltr"] .blog-page .blog-card .blog-video .video-overlay {
  left: 0;
}

[dir="rtl"] .blog-page .blog-card .blog-video .video-overlay {
  right: 0;
}

.blog-page .blog-card .blog-video .video-overlay .video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

[dir="ltr"] .blog-page .blog-card .blog-video .video-overlay .video-poster {
  left: 0;
}

[dir="rtl"] .blog-page .blog-card .blog-video .video-overlay .video-poster {
  right: 0;
}

.blog-page .blog-card .blog-video .play-button {
    width: 60px;
    height: 60px;
    z-index: 9;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 36px;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 60px;
    text-align: center;
    transition: all .3s;
}

.blog-page .blog-card .blog-video .play-button:hover {
  background: var(--primary-color);
  color: #fff;
}

.blog-page .blog-card .blog-video iframe.active {
  display: block; /* Display iframe after clicking play */
}

.blog-page .blog-card .blog-video .video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.blog-page .blog-card .blog-video iframe.active {
  display: block; /* Show the iframe */
}

.blog-page .blog-card .blog-video .video-overlay.hidden {
  display: none; /* Hide the overlay */
}

.blog-page .blog-card .blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.blog-page .blog-card .blog-meta span{
  font-size: 14px;
  color: #464D61;
}

.blog-page .blog-card .blog-meta span i{
    font-size: 18px;
    color: var(--primary-color);
}

.blog-page .blog-card .blog-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-page .blog-card .blog-excerpt {
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-page .blog-card .read-more {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

.blog-page .blog-card .read-more:hover {
  text-decoration: underline;
}

.blog-page .pagination .page-link {
  border: none;
  background-color: transparent;
  color: #636A80;
  border-radius: 4px !important;
}

.blog-page .pagination .page-item.active .page-link{
    background-color: var(--primary-color);
  color: #fff;
}

.blog-page .pagination .page-link:hover {
    color: var(--primary-color);
}

.blog-page .Search_form{
    position: relative;
}

.blog-page .Search_form .form-control {
    border: 1px solid var(--border-color);
    height: 48px;
    border-radius: 5px;
}

[dir="ltr"] .blog-page .Search_form .form-control {
    padding-left: 45px;
}

[dir="rtl"] .blog-page .Search_form .form-control {
    padding-right: 45px;
}

.blog-page .Search_form i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

[dir="ltr"] .blog-page .Search_form i {
    left: 15px;
}

[dir="rtl"] .blog-page .Search_form i {
    right: 15px;
}

.blog-page .Category_galery{
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.blog-page .Category_galery a{
    display: block;
    width: 47%;
    height: 60px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.blog-page .Category_galery a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-page .Category_galery a .overlay{
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    color: #fff;
}

[dir="ltr"] .blog-page .Category_galery a .overlay{
    left: 0;
}

[dir="rtl"] .blog-page .Category_galery a .overlay{
    right: 0;
}
.blog-page .tags{

}

.blog-page .tags a {
    display: block;
    background-color: #fff;
    border-radius: 50px;
    color: #464D61;
    height: 36px;
    padding: 0 10px;
    line-height: 36px;
    font-size: 14px;
    transition: all .3s;
}

.blog-page .tags a:hover{
    background-color: var(--primary-color);
    color: #fff;
}
.blog-page .post-card{}

.blog-page .post-card img{
    width: 100px;
    height: 80px;
    border-radius: 6px;
}

.blog-page .post-card h5{
    font-size: 14px;
}

.blog-page .post-card span{
    font-size: 11px;
}

.blog-page .post-card i{
    font-size: 8px;
}

.single_blog .user_img{
    width: 60px;
    height: 60px;
}

.single_blog p.bg-light{
    color: var(--primary-color);
    font-size: 20px;
    align-items: baseline;
}

.single_blog p.bg-light i{
    font-size: 24px;
}

.comment-section img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.comment-section .comment {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
}

.comment-section .comment:last-child {
    border-bottom: none;
}

.heart_btn.active i {
    color: red; 
}


/*second part*/

.profile .profile-overview {
    margin-bottom: 20px;
}

.profile .profile-pic {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile .username {
    font-size: 18px;
    font-weight: bold;
}

.profile .nav-tabs {
    border-bottom: none;
}

.profile .nav-item{
    margin-bottom: 5px;
}

.profile .nav-tabs .nav-link {
    padding: 10px 15px;
    border-radius: 8px;
    color: #333D4C;
    border: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-tabs .nav-link i {
    font-size: 20px;
}

.profile .nav-tabs .nav-link.active {
    background-color: #EEF1F6;
    color: #111827;
}

.profile .profile-header{
    gap: 2%;
}

.profile .wallet{
    width: 49%;
    background-color: #EBF7F0;
    border-radius: 8px;
}

.profile .wallet a{
    color: #288B53;
}

.profile .profile-completion{
    width: 49%;
    background-color: #FFF4EA;
    border-radius: 8px;
}

.progress-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
}

.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.progress-circle span {
    position: absolute;
    top: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #ff9800;
}

[dir="ltr"] .progress-circle span {
    left: 50%;
    transform: translate(-50%, -50%);
}

[dir="rtl"] .progress-circle span {
    right: 50%;
    transform: translate(50%, -50%);
}

.circular-chart {
    width: 100%;
    height: 100%;
}

[dir="ltr"] .circular-chart {
    transform: rotate(-90deg);
}

[dir="rtl"] .circular-chart {
    transform: rotate(90deg);
}

.circular-chart .circle-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 3.8;
}

.circular-chart .circle {
    fill: none;
    stroke: #ff9800;
    stroke-width: 3.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    from {
        stroke-dasharray: 0, 100;
    }

    to {
        stroke-dasharray: 65, 100;
    }
}

.profile-tasks h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.profile-tasks ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-tasks ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.profile .profile-info-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.profile .profile-info .btn{
    border-radius: 8px;
    margin-top: 20px;
}

.listings-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
}

.profile .view-all {
    color: #333D4C;
    font-size: 16px;
    text-decoration: none;
}

.listing-item {
    display: flex;
    gap: 20px;
    border-radius: 8px;
    border: 1px solid #E0E5EB;
    width: 100%;
}

.listing-image img {
    width: 240px;
    height: 220px;
    object-fit: cover;
}

[dir="ltr"] .listing-image img {
    border-radius: 8px 0 0 8px;
}

[dir="rtl"] .listing-image img {
    border-radius: 0 8px 8px 0;
}

.listing-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    align-items: flex-start;
}

.listing-details .badge {
    background-color: #EEF1F6;
    color: #333D4C;
    font-size: 12px;
    border-radius: 4px;
}

.listing-details h3 {
    margin: 10px 0;
    font-size: 24px;
    color: var(--primary-color);
    transition: all .3s;
}
.listing-details h3:hover{
    color: #ff4f4f;
}

.listing-details p{
    font-size: 14px;
}

.listing-details .size {
    font-size: 14px;
    color: #111827;
}

.listing-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
}

.listing-actions .created-date {
    font-size: 14px;
    color: #6C727F;
}

.listing-actions .btn {
    font-size: 14px;
    padding: 0 13px;
    border-radius: 8px;
     border-color: #E0E5EB !important;
}

.listing-actions .listing-stats {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #4E5562;
}

.listing-actions .listing-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sup-tabs .nav-pills .nav-link {
    border-radius: 50px;
    padding: 8px 15px;
    color: #333D4C;
    border: 1px solid #E0E5EB;
}

[dir="ltr"] .sup-tabs .nav-pills .nav-link {
    margin-right: 10px;
}

[dir="rtl"] .sup-tabs .nav-pills .nav-link {
    margin-left: 10px;
}

.sup-tabs .nav-pills .nav-link.active {
    border-color: #111827;
    background-color: #F5F7FA;
    color: #111827;
}

.tabs-actions a,.tabs-actions label{
    color: #333D4C;
    cursor: pointer;
}

.tabs-actions input[type="checkbox"]{
    width: 20px;
    height: 20px;
}

.reviews-container{
    background-color: #F5F7FA;
    border-radius: 8px;
    padding: 30px;
}

.reviews-container hr{
    opacity: .1;
}

.summary-title {
    font-size: 14px;
/*    color: #666666;*/
    margin-bottom: 5px;
}

.summary-value {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

.summary-value i {
    color: #ff9800;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

[dir="ltr"] .reviewer-img {
    margin-right: 15px;
}

[dir="rtl"] .reviewer-img {
    margin-left: 15px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.review-date {
    font-size: 12px;
    color: #888888;
    margin: 0;
}

.review-on {
    font-size: 14px;
    margin-bottom: 10px;
    color: #555555;
}

.review-text {
    font-size: 14px;
    color: #555555;
    margin-bottom: 10px;
}

.review-rating {
    color: #ff9800;
}

.review-rating i {
    font-size: 14px;
}

.reviews_tab .reply{
    background-color: #F5F7FA;
    border-radius: 8px;
    padding: 20px;
}

.reviews_tab .review-item {
    border-bottom: 1px solid #E0E5EB;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

#reviews_by_you .reviewer-img{
    width: 110px;
    height: 110px;
    border-radius: 8px;
}

.favorites-container .favorite-card {
    border: 1px solid #E0E5EB;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.favorites-container .favorite-card:hover {
    transform: translateY(-5px);
}

.favorites-container .image-container {
    position: relative;
    overflow: hidden;
}

.favorites-container .image-container img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.favorites-container .image-container .badges{
    position: absolute;
    top: 10px;
}

[dir="ltr"] .favorites-container .image-container .badges{
    left: 10px;
}

[dir="rtl"] .favorites-container .image-container .badges{
    right: 10px;
}

.favorites-container .image-container .badge {
    font-size: 10px;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

.favorites-container .image-container .badge i{
    background-color: transparent;
    width: auto;
    height: auto;
    line-height: normal;
}

.favorites-container .image-container .badge.new {
    background-color: var(--primary-color);
}

.favorites-container .image-container .badge.featured {
    background-color: #3D7A81;
}

.favorites-container .image-container .badge.verified {
    background-color: #3D7A81;
}

.favorites-container .favorite-btn {
    position: absolute;
    top: 10px;
    background-color: #fff;
    border: none;
    color: #F03D3D;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    height: 30px;
    width: 30px;
    line-height: 34px;
    padding: 0;
    border: none !important;
}

[dir="ltr"] .favorites-container .favorite-btn {
    right: 10px;
}

[dir="rtl"] .favorites-container .favorite-btn {
    left: 10px;
}

.favorites-container .card-details {
    padding: 15px;
}

.favorites-container .card-details .sale-type {
    display: inline-block;
    font-size: 12px;
    background-color: #EEF1F6;
    color: #333D4C;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.favorites-container .card-details h3 {
    font-size: 18px;
    font-weight: bold;
}

.favorites-container .card-details p {
    font-size: 14px;
    margin-bottom: 10px;
}

.favorites-container .card-details .size {
    font-size: 12px;
    color: #111827;
    font-weight: 600;
}

.favorites-container .card-details .icons {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #464646;
    margin-top: 10px;
}

.favorites-container .card-details .icons span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.favorites-container .card-details .icons i {
    font-size: 16px;
}

.help-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.help-cards {
    gap: 2%;
}

.help-card {
    width: 49%;
}

.help-icon {
    font-size: 26px;
    margin-bottom: 15px;
}

.help-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.help-card p {
    font-size: 14px;
    margin: 0;
}

.payment-details-container {

}

.payment-card {
    border: none;
    border-radius: 12px;
    padding: 20px;
}

.payment-card .card-header {
    background-color: transparent !important;
    border-bottom: none !important;
}

.payment-card .card-brand img{
   width: 50px;
}

.payment-card .badge {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.payment-card .badge.primary-badge {
    background-color: #fff;
    color: #111827;
}

.payment-card .badge.expired-badge {
    background-color: #F03D3D;
    color: #fff;
}

.payment-card .btn-link {
    background: none;
    border: none !important;
    padding: 5px 10px !important;
    color: #1D2735;
}

.payment-card .card-body {
    margin-top: 10px;
}

.payment-card .card-number {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.payment-card .card-label {
    font-size: 12px;
    color: #6C727F;
    margin: 0;
}

.payment-card .card-value {
    font-size: 14px;
    font-weight: bold;
    margin-top: 6px;
    color: #111827;
}

.payment-card .card-body .d-flex {
    gap: 20px;
}

.profile form .form-label {
    font-weight: bold;
}

.profile form .form-control,.profile form .form-select {
    border-radius: 8px;
    border: 1px solid #CAD0D9;
    font-size: 14px;
    height: 50px;
}

.profile form .input-group-text {
    border-radius: 8px;
    font-size: 14px;
    padding: 5px 10px;
    background-color: #f8f9fa;
    color: #333D4C;
}

.profile form .text-danger {
    color: #FF6B6B !important;
}

.profile form .text-success {
    color: #28A745 !important;
}

.profile form textarea.form-control {
    resize: none;
    height: 180px;
}

.profile form .btn {
    border-radius: 8px;
    font-size: 14px;
}

.profile form .btn-light {
    background-color: #f8f9fa;
    color: #333D4C;
    border: 1px solid #E0E5EB;
}

.profile form .btn-light:hover {
    background-color: #e2e6ea;
}

.profile form .btn-dark {
    background-color: #333D4C;
    color: #ffffff;
}

.profile form .btn-dark:hover {
    background-color: #000000;
}

@media (max-width: 768px) {
    .profile-form-container {
        padding: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-card {
        margin-bottom: 20px;
    }
}

.device-history-container {
    max-width: 100%;
    width: 650px;
    margin: 30px 0;
}

.profile .section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.device-history-container .device-card {
    padding: 15px;
    border: 1px solid #E0E5EB;
    border-radius: 8px;
    transition: box-shadow 0.2s ease-in-out;
    margin-bottom: 20px;
}

.device-history-container .device-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.device-history-container .device-info {
    font-size: 16px;
    font-weight: bold;
    color: #333D4C;
}

.device-history-container .device-info i {
    margin-bottom: 2px;
    font-size: 22px;
    color: #6C727F;
    display: block;
}

.device-history-container .session-info {
    font-size: 14px;
    color: #6C727F;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.device-history-container .active-badge {
    background-color: #E6F7EE;
    color: #28A745;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
}

[dir="ltr"] .device-history-container .active-badge {
    margin-left: 10px;
}

[dir="rtl"] .device-history-container .active-badge {
    margin-right: 10px;
}

.device-history-container .session-time {
    color: #6C727F;
    font-size: 12px;
}

.device-history-container .btn-link {
    background: none;
    border: none !important;
    color: #333D4C;
    font-size: 15px;
    padding: 0 5px;
    cursor: pointer;
    height: 30px;
    line-height: normal;
}

.device-history-container .sign-out-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
}

.device-history-container .sign-out-link:hover {
    text-decoration: underline;
}

.profile .btn-outline{
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 8px;
}

.profile .settings_sec{
    border-bottom: 1px solid #E0E5EB;
}

.membership h2{
    font-size: 40px;
}

.membership p{
    font-size: 18px;
}

.membership .blog-video {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

.membership .blog-video iframe {
  display: none; /* Initially hide iframe */
  width: 100%;
  height: 100%;
  border: none;
}

.membership .blog-video .video-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-in-out;
}

[dir="ltr"] .membership .blog-video .video-overlay {
  left: 0;
}

[dir="rtl"] .membership .blog-video .video-overlay {
  right: 0;
}

.membership .blog-video .video-overlay .video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

[dir="ltr"] .membership .blog-video .video-overlay .video-poster {
  left: 0;
}

[dir="rtl"] .membership .blog-video .video-overlay .video-poster {
  right: 0;
}

.membership .blog-video .play-button {
    width: 60px;
    height: 60px;
    z-index: 9;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 36px;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 60px;
    text-align: center;
    transition: all .3s;
}

.membership .blog-video .play-button:hover {
  background: var(--primary-color);
  color: #fff;
}

.membership .blog-video iframe.active {
  display: block; /* Display iframe after clicking play */
}

.membership .blog-video .video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.membership .blog-video iframe.active {
  display: block; /* Show the iframe */
}

.membership .blog-video .video-overlay.hidden {
  display: none; /* Hide the overlay */
}

.membership-benefits {
    padding: 60px 0;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.benefit-card {
    display: flex;
    gap: 15px;
    padding: 30px;
    border-radius: 12px;
    background-color: #ffffff;
    transition: box-shadow 0.2s ease-in-out;
}

.benefit-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle i {
    font-size: 26px;
    color: #fff;
}

.benefit-card h4 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.benefit-card p {
    margin: 0;
    font-size: 16px;
}

.title_p{
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.service-item p{
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item i {
    font-size: 22px;
    color: var(--primary-color);
}

.service-title {
    font-size: 14px;
    color: #767E94;
    margin-bottom: 10px;
}

.service-value {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: var(--primary-color);
}

.divider {
    width: 1px;
    height: 40px;
    background-color: #E0E5EB;
}

#priceModal .table>:not(caption)>*>* {
    border-bottom: none;
    padding: 12px 5px;
}

@media (max-width: 768px) {
    .divider {
        display: none;
    }
}

.new_ad .main_img[type=file] {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 45px 10px;
    line-height: 30px;
    height: 160px;
    width: 160px;
    font-size: 14px;
    background-color: #e9ecef;
    white-space: break-spaces;
}

.new_ad form .half{
    width: 48%;
}

.new_ad form{
    width: 900px;
    max-width: 100%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 24px 100px 0 rgb(0 29 73 / 12%);
    padding: 40px 30px;
    margin: 0 auto;
}
.new_ad table td{
    text-align:right;
    width: 100%;
}
.select2-container{
    padding: 0 !important;
}
.select2-container .select2-search--inline .select2-search__field{
    height: 35px !important
}
.select2-container--default .select2-selection--multiple{
    height: 50px;
    line-height: 40px;
    border-radius: 5px;
    border-color: var(--border-color);
    padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice{
    margin-top: 3px !important;
    background-color: var(--primary-color) !important;
    border: 1px solid  var(--primary-color) !important;
    color: #fff !important;
}

.Faqs{
    width: 700px;
    max-width: 100%;
    margin: 0 auto;
}

.Faqs .nav-pills .nav-link {
    width: 200px;
    height: 140px;
    border-radius: 12px;
    padding: 5px;
    font-size: 18px;
    color: var(--primary-color);
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.Faqs .nav-pills .nav-link:after {
    content: "";
    border: 5px solid var(--border-color);
    border-color: var(--border-color) transparent transparent transparent;
    position: absolute;
    bottom: -10px;
    transition: all 0.3s ease;
}

.Faqs .nav-pills .nav-link:hover{
    background-color: #eee ;
}

.Faqs .nav-pills .nav-link.active {
    color: #ffffff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.Faqs .nav-pills .nav-link.active:after{
    border-color: var(--primary-color) transparent transparent transparent;
}

/* Accordion */
.Faqs .faq-accordion .faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.Faqs .faq-question {
    background-color: #ffffff;
    color: var(--primary-color) !important;
    font-size: 16px;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

[dir="ltr"] .Faqs .faq-question {
    text-align: left;
}

[dir="rtl"] .Faqs .faq-question {
    text-align: right;
}

.Faqs .faq-question.active {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 18px 40px 0 rgb(0 26 102 / 12%);
    border-radius: 8px 8px 0 0;
}

.Faqs .faq-question:hover {
    background-color: #ffffff;
}

.Faqs .faq-answer {
    padding: 15px;
    background-color: #ffffff;
    font-size: 14px;
    color: #767E94;
    display: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 40px 0 rgb(0 26 102 / 10%);
}

.Faqs .faq-item .faq-question.active + .faq-answer {
    display: block;
}

.Faqs .open-btn,
.Faqs .close-btn {
    font-size: 24px;
    color: var(--primary-color);
}

[dir="rtl"] .bi-arrow-right:before{
    content: "\F12F" !important;
}
[dir="rtl"] .bi-chevron-right:before{
    content: "\F284" !important;
}
 
#loom-companion-mv3{
    display:none;
}
 
/*responsive*/

@media (max-width:991px){
    .navbar{
        height: 83px;
        overflow: hidden;
    }

    .navbar-toggler{
        order: 1;
    }

    .navbar-collapse{
        order: 2;
    }

    .collapse:not(.show){
        display: block !important;
    }

    .navbar-collapse.collapse{
        background-color: var(--primary-color);
        position: fixed;
        top: 0;
        width: 280px !important;
        height: 0 !important;
        overflow: hidden;
        z-index: 9;
        transition: all .2s ease ;
    }

    [dir="ltr"] .navbar-collapse.collapse{
        left: 0;
    }

    [dir="rtl"] .navbar-collapse.collapse{
        right: 0;
    }

    .navbar-collapse.collapse.show{
        height: 100vh !important;
    }

        .navbar .navbar-nav a.nav-link {
        padding: 10px 0 !important;
        font-size: 16px;
        line-height: normal;
    }

    .navbar-nav {
        width: 100%;
        justify-content: center;
        padding-top: 60px;
    }

    .hero {
        height: auto;
    }

    .hero h1{
        width: 100%;
    }

    .blog-page .blog-card{
        flex-direction: column;
    }

    .blog-page .blog-card .blog-image,
    .blog-page .blog-card .blog-video{
        width: 100%;
    }

    [dir="ltr"] .blog-page .blog-card .blog-content{margin-left: 0 !important}

    [dir="rtl"] .blog-page .blog-card .blog-content{margin-right: 0 !important}

    .banner img {
        max-height: 600px;
        object-fit: cover;
    }

    .location-card img {
    height: 150px;
    top: -50px;
}

.location-card {
    margin-top: 30px;
    padding-top: 120px;
}

.location-card h5{
    font-size: 18px;
}

.images_section img.main_img,.ad_details .images_section .img_box,.images_section .gallery_slider {
    height: 350px;
}

.profile .profile-header {
    gap: 15px;
    flex-direction: column;
}

.profile .profile-completion,.profile .wallet{width: 100%}

.profile .profile-info ul li.list-inline-item{
    display: block;
    margin-bottom: 5px;
}

.sidebar{margin-bottom: 20px}

.reviews-summary{
    flex-wrap: wrap;
}

.reviews-summary div{
    width: 50%;
}

.listing-item .listing-actions{padding: 12px}

.listing-item .listing-details{padding: 12px 0;}

.listing-item{gap: 10px}

.profile .sup-tabs .nav-pills{justify-content: space-between;}

    .sup-tabs .nav-pills .nav-link{padding: 5px 10px;font-size: 14px;}

    .Error_Page .w-50{width: 80% !important}
}

@media (max-width:768px){
    .images_section .gallery_slider{
        margin-top: 20px;
    }

    .images_section img.main_img,.images_section img.small_img,.images_section img.main_img, .ad_details .images_section .img_box, .images_section .gallery_slider{
        height: auto;
        min-height: 180px;
    }

    .sub_head-section h1{font-size: 26px;}

    section {
        padding: 40px 0;
    }

    .owl-thumbs {
        width: 100%;
    }

    .owl-thumbs .owl-thumb-item{
        width: 90px;
        height: 90px;
        margin: 0 3px;
    }

    .productCarousel img{
        width: 100% !important;
        height: 400px;
    }

    .owl-theme .owl-nav{display: none;}

    .ad_details .feature_list li{flex: 100%}

    .badge{font-size: 12px;}

    .reviews-section .nav-tabs .nav-link{padding: 0 14px}

    .gap-sm-2{gap:.5rem!important}

    .testimonials-section .text h2{
        font-size: 24px;
        line-height: 34px;
    }

    p.info2{
    white-space: pre-line;
    font-size: 14px;
    line-height: normal;
}

.new_ad form .half{
    width: 100%;
}

.benefit-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .icon-circle {
        margin-bottom: 10px;
    }

    .pricing-section .btn-group{justify-content: center;}

    .Faqs .nav-pills .nav-link {
        width: 150px;
        height: 110px;
        font-size: 15px;
    }

    .Faqs .nav-pills .nav-link i{
        font-size: 24px;
    }

    .Error_Page .w-50{width: 100% !important}
    .hero form{
        flex-direction: column;
    }
    .hero form .btn{width: 100%}

    [dir="ltr"] .hero form .form-control, [dir="ltr"] .hero form .form-select{border-left: none;}

    [dir="rtl"] .hero form .form-control, [dir="rtl"] .hero form .form-select{border-right: none;}
}

@media (max-width:640px){
    
#reviews_by_you .reviewer-img{width:50px;height:50px;}
    .location-filters{flex-wrap: wrap;}

    .location-filters .btn{
        width: 48%;
        flex: none;
    }

    .breadcrumb-item{
        font-size: 14px;
    }

    .sub_head-section h1{font-size: 22px}

    .promo-text h2{font-size: 28px;}

    .ad_register .row{padding: 0 15px;}

    .testimonial-card p{font-size: 14px;padding: 12px}

    .testimonial-card h6{
        font-size: 14px;
    }

    .testimonial-card h6 + small{font-size: 12px;}

    .testimonial-card .client_info img{width: 40px;height: 40px;}

    .testimonial-card .client_info{padding: 12px}

    .listing-item,.help-cards{flex-wrap: wrap;gap: 10px}

    .listing-item .listing-image,.listing-item .listing-details,.listing-item .listing-actions,.help-card{
        width: 100%;
    }

    .listing-item .listing-image img {
        width: 100%;
        height: 200px;
        border-radius: 8px 8px 0 0;
    }

    .listing-item .listing-details{padding: 20px;padding-bottom: 0}

    .listing-item .listing-actions {
        align-items: flex-start;
        padding-top: 0;
        gap: 10px;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .Faqs .nav-pills{
        flex-direction: column;
    }

    .Faqs .nav-pills .nav-link{width: 100%}
}

@media (max-width:460px){
    .btn{font-size: 14px;}

    .nav_left{gap: 0}

    .breadcrumb-item{
        font-size: 13px;
    }

    .navbar{height: 75px}

    .navbar .navbar-brand{
        width: 80px;
    }

    [dir="ltr"] .nav_left{margin-left: 0 !important}

    [dir="rtl"] .nav_left{margin-right: 0 !important}

    .navbar-toggler{padding: 0}
}