/* Google Fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500;600;700&family=Montserrat:wght@400;500;600&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

/* -----------------------------------------
Variables CSS
----------------------------------------- */
@import url("header/header.css");
@import url("header/header-2.css");
@import url("home/home-1.css");
@import url("home/home-2.css");
@import url("home/home-3.css");
@import url("pages/inner-pages.css");

:root {
--font-family-base: "Alexandria", serif;
--font-body: "Alexandria", serif;
--font-family-fontawesome: "Alexandria", serif;
--font-base: 16px;
--font-sm: 14px;
--font-xsm: 10px;
--font-lg: 18px;
--font-medium: 500;
--font-normal: 400;
--font-bold: 600;
--font-size--h1: 64px;
--font-size--h2: 48px;
--font-size--h3: 24px;
--font-size--h4: 20px;
--font-size--h5: 18px;
--font-size--h6: 16px;
/* --color-primary: #F57F4B; */
--color-secondary: #255056;
--color-red: #EB4C4C;
--color-green: #00D5AE;
--color-blue: #0061DF;
--color-cyan: #21C4DF;
--color-pink: #FF7294;
--color-purple: #6231F0;
--color-yellow: #FDC040;
--color-orange: #F59872;
--color-white: #ffffff;
--color-dark: #2b3138;
--color-medium: #8D8D8D;
--color-light: #F2F2F2;
/* --color-primary-rgb: 37, 80, 86; */
--color-secondary-rgb: 254, 117, 1;
--color-red-rgb: 235, 76, 76;
--color-green-rgb: 0, 213, 174;
--color-blue-rgb: 0, 97, 223;
--color-cyan-rgb: 33, 196, 223;
--color-pink-rgb: 255, 114, 148;
--color-purple-rgb: 98, 49, 240;
--color-yellow-rgb: 253, 192, 64;
--color-orange-rgb: 245, 152, 114;
--color-white-rgb: 255, 255, 255;
--color-dark-rgb: 25, 27, 30;
--color-medium-rgb: 141, 141, 141;
--color-light-rgb: 242, 242, 242;
--border-color: #eaeaea;
--bg-light: #F7F9FC !important;
--gradient-bg: linear-gradient(90deg, var(--color-primary) 14.17%, var(--color-primary-shade) 94.83%);
}

/* -----------------------------------------
Typography CSS
----------------------------------------- */
body {
font-family: var(--font-body);
font-size: var(--font-base);
font-weight: var(--font-medium);
color: var(--color-medium);
overflow-x: hidden;
}
.hall-banner-2 .swiper-slide {
    padding: 130px 0px;
}
.go-top{
    right:0px;
}
.social-link.disabled {
    color: #999 !important;  /* Light Grey Color */
    pointer-events: none;     /* Disable Click */
    cursor: not-allowed;      /* Show Disabled Cursor */
    opacity: 0.5;             /* Make it look faded */
}
.swiper-button-prev.hall-slider-prev {
    left: 50px;
}
.cat12 .swiper-button-prev:after {
    font-size: 12px !important;
    background: #ff5a3c;
    padding: 10px 13px !important;
}

.swiper-button-next.hall-slider-next {
    right: 50px;
}
.cat12 .swiper-button-next:after {
    font-size: 12px !important;
    padding: 10px 13px !important;
}
section.home-banner.home-banner-2.cat12 {
    padding-top: 130px;
    padding-bottom: 130px;
}
iframe {
    width: 100%;
}
.footer-area .footer-widget p {
color: #5C5C5C;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
div#home-swiper-button-prev {
left: 50px;
right: auto;
}
div#home-swiper-button-next {
right: 50px;
}
.footer-top {
    padding: 50px 10px;
}

.swiper-button-prev.custom-slider-prev {
left: 50px;
}
.swiper-button-next.custom-slider-next {
right: 50px;
}
.custom-slider-prev:after{
background: #ff5a3c!important;
}
.swiper-button-next:after, .swiper-button-prev:after {
font-family: swiper-icons;
font-size: 16px!important;
text-transform: none !important;
letter-spacing: 0;
font-variant: initial;
line-height: 1;
}

.faq-area {
padding: 50px 0px;
}
.blog-area {
padding: 50px 0px;
}
.blog-details-area {
padding: 50px 0px;
}
section.about-area {
padding: 50px 0px;
}
h1.color-white {
font-size: 44px;
}
a {
color: var(--color-dark);
text-decoration: none;
outline: 0 !important;
transition: all 0.3s ease-out;
}

a:hover {
color: var(--color-primary);
text-decoration: none;
}

:focus {
outline: 0 !important;
box-shadow: none !important;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
font-family: var(--font-family-base);
color: var(--color-dark);
font-weight: 600;
line-height: 1.3;
}

h1 {
font-size: var(--font-size--h1);
}

h2,
.h2 {
font-size: var(--font-size--h2);
}

h3,
.h3 {
font-size: var(--font-size--h3);
}

h4,
.h4 {
font-size: var(--font-size--h4);
}

h5,
.h5 {
font-size: var(--font-size--h5);
}

h6,
.h6 {
font-size: var(--font-size--h6);
}

p {
line-height: 1.8;
}

.font-lg {
font-size: var(--font-lg) !important;
}

.font-sm {
font-size: var(--font-sm) !important;
}

.font-xsm {
font-size: var(--font-xsm) !important;
}

/* -----------------------------------------
Reset CSS
----------------------------------------- */
:focus {
outline: none;
}

img {
max-width: 100%;
}

.form-control:focus {
box-shadow: none;
}

ul {
list-style: none;
padding: 0;
}

figure,
blockquote,
ul {
margin-bottom: 0;
}
.rcolm-image img.lazyloaded {
width: 40%;
}
table,
th,
td {
vertical-align: middle;
}

.bg-light-1 {
background-color: var(--color-light-1);
}

/* margin CSS*/
.mb-10 {
margin-bottom: 10px !important;
}

.mb-15 {
margin-bottom: 15px !important;
}

.mb-20 {
margin-bottom: 20px !important;
}

.mb-30 {
margin-bottom: 30px !important;
}

.mb-40 {
margin-bottom: 40px !important;
}

.mt-10 {
margin-top: 10px !important;
}

.mt-15 {
margin-top: 15px !important;
}

.mt-20 {
margin-top: 20px !important;
}

.mt-30 {
margin-top: 30px !important;
}

.mt-40 {
margin-top: 40px !important;
}

/* Padding CSS*/
.pt-10 {
padding-top: 10px !important;
}

.pt-20 {
padding-top: 20px !important;
}

.pt-30 {
padding-top: 30px !important;
}

.pt-40 {
padding-top: 40px !important;
}

.pt-60 {
padding-top: 60px !important;
}

.pb-10 {
padding-bottom: 10px !important;
}

.pb-20 {
padding-bottom: 20px !important;
}

.pb-30 {
padding-bottom: 30px !important;
}

.pb-40 {
padding-bottom: 40px !important;
}

.pb-60 {
padding-bottom: 60px !important;
}

.pt-100 {
padding-top: 100px;
}

.ptb-100 {
padding-top: 100px;
padding-bottom: 100px;
}

.pt-70 {
padding-top: 70px;
}

.ptb-70 {
padding-top: 70px;
padding-bottom: 70px;
}

.pb-100 {
padding-bottom: 100px;
}

.pb-70 {
padding-bottom: 70px;
}

/* Border */
.border,
.border-top,
.border-bottom,
.border-end,
.border-start {
border-color: var(--border-color) !important;
}

/* Border Radius */
.radius-0 {
border-radius: 0 !important;
}

.radius-sm {
border-radius: 5px !important;
}

.radius-md {
border-radius: 10px !important;
}

.radius-lg {
border-radius: 15px !important;
}

.radius-xl {
border-radius: 20px !important;
}


/* Tooltip CSS */
.tooltip .tooltip-inner {
background-color: var(--color-primary);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
border-top-color: var(--color-primary);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
border-right-color: var(--color-primary);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
border-bottom-color: var(--color-primary);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
border-left-color: var(--color-primary);
}

.no-animation {
transform: none;
animation: none;
}

/* Badge CSS */
.badge {
padding: 8px 16px;
font-size: var(--font-xsm);
}

.badge.bg-success {
color: var(--color-green);
background: rgba(var(--color-green-rgb), 0.2) !important;
}

.badge.bg-info {
color: var(--color-blue);
background: rgba(var(--color-blue-rgb), 0.2) !important;
}

.badge.bg-danger {
color: var(--color-red);
background: rgba(var(--color-red-rgb), 0.2) !important;
}

.badge.bg-warning {
color: var(--color-yellow);
background: rgba(var(--color-yellow), 0.2) !important;
}

/* Card CSS */
.card {
border: none;
border-radius: 10px;
}

.card .card-title {
margin-bottom: 20px;
}

.card .card-text {
color: var(--color-medium);
}

.overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--color-dark);
opacity: 0.3;
z-index: -1;
}


.download-modal-content {
width: 50%!important;
text-align: center;
position: relative;
}
.project-footer.hallsp {
margin-left: 27px!important;
width: 389.063px!important;
height: 185px!important;
flex-shrink: 0;
margin-top: -2px;
padding: 30px 0px 0px;
border-radius: 0px 0px 13.544px 13.544px;
border: 0.871px solid #FE625B;
box-shadow: 2.682px 6.705px 20.116px 0px rgba(0, 0, 0, 0.03);
}
.projectsp .overlay-img {
margin-top: -202px !important;
left: 30px !important;
}
.search-section.ptb-100.aos-init.aos-animate {
background: #f7f9fc;
padding: 10px 150px!important;
}
.hall-section .col-lg-3.col-md-4.col-sm-6.mb-4 {
width: 25%;
}
div#advertisement-slider-prev {
left: 1252px!important;

}
div#advertisement-slider-next {
left: 1310px!important;

}
.container {
max-width: 1400px;
}
.overlay-img {
margin-top: -259px !important;
position: relative;
left: 47px !important;
z-index: 0;
}



.gap-10 {
gap: 10px;
}

.gap-15 {
gap: 15px;
}

.gap-20 {
gap: 20px;
}

.gap-25 {
gap: 25px;
}

/* clear fix */
.masonry-gallery .grid:after {
content: "";
display: block;
clear: both;
}

/* ---- .grid-item ---- */
.masonry-gallery .grid-item img {
display: block;
width: 100%;
}

.quantity-input {
display: flex;
align-items: center;
}

.quantity-input .qty-btn {
display: flex;
align-items: center;
text-align: center;
justify-content: center;
padding: 0;
width: 35px;
height: 35px;
border: 1px solid var(--border-color);
color: var(--color-dark);
}
footer .navbar-brand img {
margin: 0px;
max-height: 100%;
width: 40%;
height: auto;
}

.quantity-input input {
height: 35px;
width: 50px;
text-align: center;
border: 1px solid var(--border-color);
border-inline: unset;
background-color: transparent;
}

/* -----------------------------------------
Color CSS
----------------------------------------- */
/* Theme Color CSS */
.theme-color-1 {
--color-primary: #F57F4B;
--color-secondary: #255056;
--color-primary-rgb: 37, 80, 86;
--color-secondary-rgb: 254, 117, 1;
}

.theme-color-2 {
--color-primary: #BDA588;
--color-secondary: #283E5C;
--color-primary-rgb: 189, 165, 136;
--color-secondary-rgb: 40, 62, 92;
}

.theme-color-3 {
--color-primary: #04A6FB;
--color-primary-rgb: 4, 166, 251;
}

/* Color CSS*/
.color-primary {
color: var(--color-primary) !important;
}

.color-white {
color: var(--color-white) !important;
}

.color-dark {
color: var(--color-dark) !important;
}

.color-medium {
color: var(--color-medium) !important;
}

.color-secondary {
color: var(--color-secondary) !important;
}

.color-blue {
color: var(--color-blue) !important;
}

.color-green {
color: var(--color-green) !important;
}

.color-red {
color: var(--color-red) !important;
}

.color-yellow {
color: var(--color-yellow) !important;
}

.color-purple {
color: var(--color-primary) !important;
}

.color-orange {
color: var(--color-orange) !important;
}

.bg-primary {
background: var(--color-primary) !important;
}

.bg-secondary {
background: var(--color-secondary) !important;
}

.bg-light {
background: var(--bg-light) !important;
}

.border-primary {
border-color: var(--color-primary) !important;
}

/* -----------------------------------------
Button CSS
----------------------------------------- */
button,
.btn {
cursor: pointer;
border: none;
background: inherit;
}

button:focus,
button:active,
.btn:focus,
.btn:active {
outline: none;
box-shadow: none;
}

button:hover,
.btn:hover {
outline: none;
}

.btn {
position: relative;
overflow: hidden;
font-size: 16px;
font-weight: 700;
text-transform: capitalize;
border-radius: 0;
letter-spacing: 0.05em;
transition: all 0.3s ease-out;
}

.icon-start i {
margin-inline-end: 5px;
}

.icon-end i {
margin-inline-start: 5px;
}

.btn-lg {
border-radius: 8px;
padding: 15px 34px;
}

.btn-md {
border-radius: 5px;
padding: 10px 24px;
font-size: var(--font-sm);
}

.btn-sm {
border-radius: 4px;
padding: 8px 16px;
font-size: var(--font-sm);
}

.btn-primary {
color: var(--color-white);
background-color: var(--color-primary);
transition: background 0.3s ease-out;
z-index: 1;
}

.btn-primary::before {
position: absolute;
content: "";
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--color-white);
border: 1px solid var(--color-white);
opacity: 0;
visibility: hidden;
transition: all 0.4s ease-out;
z-index: -1;
}

.btn-primary:hover {
color: var(--color-white);
border-color: var(--color-primary);
background-color: var(--color-primary);
}

.btn-primary:hover::before {
opacity: 0.1;
left: 0;
visibility: visible;
}

.btn-danger {
border: 1px solid var(--color-red);
background-color: var(--color-red);
transition: background 0.3s ease-out;
}

.btn-danger:hover {
border-color: var(--color-red);
background-color: var(--color-red);
}

.btn-outline {
border: 1px solid var(--color-primary);
color: var(--color-primary);
}

.btn-outline:hover {
color: var(--color-primary);
border-color: var(--color-primary);
}

.btn-remove {
padding: 0;
width: 30px;
height: 30px;
line-height: 30px;
padding: 0;
background: var(--color-primary);
color: var(--color-white);
}

.btn-text {
line-height: 1;
text-decoration: underline;
}

.disabled {
cursor: not-allowed !important;
pointer-events: initial !important;
}
.blog-details-area .item-single .content p {
color: #5C5C5C;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}

.blog-area .card .card-text{
font-size: 13.961px;
font-style: normal;
font-weight: 400;
line-height: 20.942px;
display: -webkit-box;
-webkit-line-clamp: 2;
max-height: 4em;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
padding: 0px;
overflow: hidden;
clor: #5C5C5C;
font-family: Alexandria;
}
.text.summernote-content {
color: #5C5C5C;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 30px;
}
.text.summernote-content p {
font-size: 16px!important;
line-height: 28px!important;
margin-bottom: 10px!important;

}
.long-dec h2 {
font-size: 20px;
}
.infop a {
color: #212121;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
gap: 8px;
}
.infop a:hover {
color: #ff5a3c;

}
.dinfo a:hover{
color:#3d3d3d;
}
h2 {
font-size: 34px!important;
}
h3.card-title {
font-size: 18px;
}
/*
Video Btn CSS */
.video-btn {
position: relative;
width: 75px;
height: 75px;
padding: 0;
font-size: 22px;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
border-radius: 50%;
color: var(--color-primary);
background: var(--color-white);
}

.video-btn:hover {
background-color: var(--color-white);
color: var(--color-primary);
}

.video-btn::after {
content: "";
position: absolute;
left: -8px;
top: -8px;
width: calc(100% + 16px);
height: calc(100% + 16px);
animation: ripple 3s linear infinite;
background: var(--color-white);
border-radius: 50%;
z-index: -2;
}

.video-btn::before {
content: "";
position: absolute;
left: -8px;
top: -8px;
width: calc(100% + 16px);
height: calc(100% + 16px);
animation: ripple 3s 1s linear infinite;
background: var(--color-white);
border-radius: 50%;
z-index: -1;
}

.video-btn.p-absolute {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
}

/* -----------------------------------------
Form CSS
----------------------------------------- */
.form-control {
border: 1px solid var(--border-color);
border-radius: 5px;
height: 55px;
line-height: 55px;
padding: 0;
padding-inline-start: 18px;
padding-inline-end: 10px;
font-size: 16px;
}

.form-control:focus {
color: var(--color-dark);
background-color: transparent;
}

:is(input:not([type=radio], [type=checkbox]), textarea, .nice-select):is(:focus, :visited, :focus-within, :focus-visible) {
border-color: #86b7fe !important;
}

select.form-select {
background-size: 11px !important;
}

textarea {
height: auto;
}

textarea.form-control {
min-height: 200px;
}

::-moz-placeholder {
color: var(--color-medium);
}

::placeholder {
color: var(--color-medium);
}

.custom-radio .form-radio-label {
position: relative;
cursor: pointer;
position: relative;
cursor: pointer;
padding: 0;
vertical-align: middle;
padding-inline-start: 20px;
}

.custom-radio .form-radio-label::before {
position: absolute;
content: "";
left: 0;
top: 50%;
transform: translateY(-50%);
height: 14px;
width: 14px;
border: 1px solid var(--color-primary);
border-radius: 50%;
}

.custom-radio input[type=radio]:checked+.form-radio-label::after {
opacity: 1;
}

.custom-radio input[type=radio]+.form-radio-label::after {
content: "";
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 2px;
opacity: 0;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: var(--color-primary);
transition: all 0.2s ease-out;
}

.custom-radio .input-radio {
display: none;
}

.form-check-label,
.form-select,
.form-check {
cursor: pointer;
}

.custom-checkbox .form-check-label {
position: relative;
cursor: pointer;
position: relative;
cursor: pointer;
padding: 0;
vertical-align: middle;
padding-inline-start: 22px;
}

.custom-checkbox .form-check-label::before {
position: absolute;
content: "";
left: 0;
top: 50%;
transform: translateY(-50%);
height: 15px;
width: 15px;
border: 1px solid var(--color-primary);
border-radius: 2px;
}

.custom-checkbox input[type=checkbox]:checked+.form-check-label::after {
opacity: 1;
}

.custom-checkbox input[type=checkbox]+.form-check-label::after {
content: "";
width: 11px;
position: absolute;
top: 50%;
left: 2px;
opacity: 0;
height: 5px;
border-left: 2px solid var(--color-white);
border-bottom: 2px solid var(--color-white);
transform: translateY(-65%) rotate(-45deg);
transition: all 0.2s ease-out;
}

.custom-checkbox .input-checkbox {
display: none;
}

input[type=checkbox]:checked+.form-check-label::before,
input[type=radio]:checked+.form-check-label::before {
background-color: var(--color-primary);
border-color: var(--color-primary);
}

input[type=checkbox]:checked+.form-check-label::after,
input[type=radio]:checked+.form-check-label::after {
opacity: 1;
}

.form-group {
position: relative;
}

.form-inline .input-group {
flex-wrap: nowrap;
padding: 3px;
background-color: rgba(255, 255, 255, 0.259);
}

.form-inline .input-group .form-control {
height: auto;
line-height: 1;
border: none;
padding: 15px 25px;
background-color: transparent;
}

.show-password-field {
position: absolute;
right: 0;
left: 0;
margin-inline-start: auto;
margin-inline-end: 16px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
text-align: end;
}

.show-password-field .show-icon {
font-family: var(--font-family-fontawesome);
font-style: normal;
}

.show-password-field .show-icon::before {
content: "\f06e";
}

.show-password-field .show-icon.show::before {
content: "\f070";
}

.search-form {
display: flex;
padding: 6px;
padding-inline-start: 16px;
border: 1px solid var(--border-color);
}

.search-form .search-input {
display: block;
width: 100%;
border: none;
outline: 0;
height: 40px;
line-height: 40px;
border-radius: 5px 0 0 5px;
background: transparent;
}

.search-form .btn-search {
text-align: center;
height: 40px;
width: 40px;
line-height: 40px;
color: var(--color-medium);
background: var(--color-white);
}

.review-form .ratings .btn-text,
.comment-reply .ratings .btn-text {
color: var(--color-secondary);
}

.review-form .form-control,
.comment-reply .form-control {
border-color: var(--border-color);
}

.filter-form {
padding: 30px 30px 10px;
border: 1px solid var(--color-primary);
background: var(--color-white);
}

.filter-form .grid {
display: grid;
grid-template-columns: repeat(1, 250px) repeat(3, 160px) repeat(1, 250px) 1fr;
grid-gap: 20px;
align-items: center;
}

.filter-form .grid .grid-item {
margin-bottom: 20px;
}

.filter-form .form-group {
position: relative;
}

.filter-form .form-group i {
position: absolute;
top: 50%;
left: 0;
right: 0;
margin-inline-start: 15px;
margin-inline-end: 0;
transform: translateY(-50%);
color: var(--color-primary);
z-index: 5;
}

.filter-form .price-value {
margin-bottom: 5px;
}

.filter-form .price-value span {
margin-inline-start: 10px;
color: var(--color-primary);
}

.filter-form .form-control,
.filter-form .nice-select {
border: 0;
background: var(--bg-light);
padding-inline-start: 40px;
color: var(--color-medium);
}

.filter-form .nice-select::after {
margin-inline-end: 5px;
}
/* -----------------------------------------
SHOW V2 CSS
----------------------------------------- */
.showv2 {
background-image: url(https://staging.onlinepropertyexpo.in/public/assets/images/bg23.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 200px 0px 100px;
}
.pv2 img.lightbox-image{
height: 586px;
width: 100%;
}
.pv2 .slider-container {
position: relative;
width: 100%;
max-width: 1000px;
height: 586px;
margin: auto;
overflow: hidden;
border-radius: 30px;
}
.showv2 .psv2 {
background: #F3F3F3;
padding: 0px 20px;
}
.lights img {
width: 100%;
margin-top: -159px;
}
.vimg {
margin: 0px -20px;
}
.v2about p.description {
margin-top: 15px;
}
.sidebar-v2 {
background: white;
margin-top:-30px;
padding: 50px 20px 70px;
}

.showv2 .long-dec p {
font-size: 18px;
margin-top: 0px;
line-height: 30px;
    word-wrap: break-word;
color: #333;
}
.v2about {
display: flex;
background-color: #f3f3f3;
justify-content: center;
margin: -24px -20px;
align-items: flex-end;
border-left: 5px solid #3D3D3D;
padding: 30px 20px 0px;
border-right: 5px solid #3d3d3d;
}
.v2about .rcolm-image img.lazyloaded {
width: 30%;

}
.sv2 {
width: 100%;
text-align: center;
display: block;
justify-content: center;
align-items: center;
}

.sidebar-v2 .infop a:hover{
color:#FF5A3C;
}

.svd2{
width: 100%;
text-align: center;
display: flex;
justify-content: center;
margin-bottom:10px;
align-items: center;
}

.sidebar-v2 .dinfo a {
color: #FF5A3C;
leading-trim: both;
text-edge: cap;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
}
.sidebar-v2 .dinfo a:hover {
color: #3d3d3d;
}
.sidebar-v2 .dowload-info {
border-radius: 20px;
background: #FFEFEB;
padding: 30px 25px;
}
.sidebar-v2 button.download-more {
text-align: center;
text-decoration: underline;
margin-top: 26px;
width: 100%;
}
.sidebarv2 {
padding: 0px 20px;
}
.v-img {
margin: -31px -16px 0px;
}
.showv2 div#video-slider-prev {
left: 1215px;
}
.showv2 div#project-section-prev {
left: 1215px;
}

.showv2 div#project-section-next {
left: 1270px;
}
.showv2 div#video-slider-next {
left: 1270px;
}
.sidebar-v2 .dtitile {
color: #FFF;
font-size: 20px;
margin: 33px 50px 0px;
font-style: normal;
font-weight: 500;
font-family: Alexandria;
text-align: center;
line-height: 47px;
border-radius: 20px 20px 0px 0px;
border: 1px solid #FF5A3C;
background: #FF5A3C;
}
.sidebar-v2 .infop a {
color: #212121;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
gap: 8px;
}

.svd2 i {
padding: 15px 18px!important;
background: #ff5a3c!important;
}

.sidebar-v2 .infop i {
padding-bottom: 20px;
background: black;
color: white;
border-radius: 100%;
text-align: center;
padding: 30px;
font-size: 24px;
max-width: 100%;
width: 45.225px;
margin-left: 0px;
margin-bottom: 10px;
height: 45.225px;
flex-shrink: 0;
align-items: center;
justify-content: center;
display: flex
;
}
.sidebar-v2 .information {
display: block;
text-align: center;
}

.sidebar-v2 .psocial li {
display: list-item;
gap: 10px;
}
.sidebar-v2 .psocial {
padding: 10px 0px 20px;
border-bottom: 1px solid #CACACA;
}
.v2about .vendor-name p {
color: #212121;
font-size: 16px;
margin-top: 15px;
font-style: normal;
font-weight: 300;
text-align: center;
line-height: normal;
text-transform: capitalize;
}
/* -----------------------------------------
Ratings CSS
----------------------------------------- */
.ratings {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 5px;
}

.ratings .rate {
background-image: url(../images/rate-star.png);
background-position: 0 -13.5px;
background-repeat: repeat-x;
height: 13.5px;
transition: all 0.5s ease-out 0s;
width: 90px;
margin-inline-start: -2px;
}

.ratings .rating-icon {
background-image: url(../images/rate-star.png);
background-position: 0 0;
background-repeat: repeat-x;
height: 13.5px;
width: 87%;
}

.ratings .ratings-total {
font-size: 12px;
line-height: normal;
}

.ratings.size-md .rate {
background-image: url(../images/rate-star-md.png);
background-position: 0 -15.5px;
height: 15.5px;
width: 115px;
}

.ratings.size-md .rating-icon {
background-image: url(../images/rate-star-md.png);
height: 15.5px;
}

.ratings.size-md .ratings-total {
font-size: 14px;
}

.ratings.size-lg .rate {
background-image: url(../images/rate-star-lg.png);
background-position: 0 -20.5px;
height: 20.5px;
width: 145px;
}

.ratings.size-lg .rating-icon {
background-image: url(../images/rate-star-lg.png);
height: 20.5px;
}

.ratings.size-lg .ratings-total {
font-size: 16px;
}

/* -----------------------------------------
Lazyload CSS
----------------------------------------- */
.lazy-container {
position: relative;
overflow: hidden;
display: table;
table-layout: fixed;
width: 100%;
background-color: var(--color-light);
z-index: 1;
}

.lazy-container::after {
position: absolute;
content: "\f03e";
font-family: "Font Awesome 5 Pro";
top: 50%;
left: 50%;
font-size: 30px;
transform: translate(-50%, -50%);
color: var(--color-medium);
z-index: -1;
}

.lazy-container img {
position: absolute;
top: 0;
left: 0;
width: 0px;
height: 0px;
max-width: 100%;
min-width: 100%;
max-height: 100%;
min-height: 100%;
-o-object-fit: cover;
object-fit: cover;
}

.lazy-container img.lazy-load {
opacity: 0.02;
transition: opacity 0.5s;
}

.lazy-container img.lazyloaded {
opacity: 1;
}

.ratio::before {
content: "";
display: block;
padding-bottom: 56.25%;
}

.ratio.ratio-1-1::before {
padding-bottom: 100%;
}

.ratio.ratio-1-2::before {
padding-bottom: 114%;
}

.ratio.ratio-1-3::before {
padding-bottom: 127.14%;
}

.ratio.ratio-2-3::before {
padding-bottom: 66.66%;
}

.ratio.ratio-16-11::before {
padding-bottom: 53.57%;
}

.ratio.ratio-16-8::before {
padding-bottom: 50%;
}

.ratio.ratio-21-9::before {
padding-bottom: 42.85%;
}

.ratio.ratio-21-8::before {
padding-bottom: 38.0952380952%;
}

.ratio.ratio-5-3::before {
padding-bottom: 60%;
}

.ratio.ratio-5-4::before {
padding-bottom: 80%;
}

.ratio.ratio-4-3::before {
padding-bottom: 75%;
}

.ratio.ratio-vertical::before {
padding-bottom: 150%;
}

.blur-up {
filter: blur(2px);
transition: filter 400ms;
}

.lazyloaded.blur-up {
filter: blur(0);
}

/* -----------------------------------------
Nice Select CSS
----------------------------------------- */
.nice-select {
float: unset;
}

.nice-select:after {
right: 10px;
}

.nice-select.open .list {
width: 100%;
opacity: 1;
pointer-events: auto;
transform: scale(1) translateY(0);
max-height: 300px;
}

.nice-select .option {
display: block;
}
.home-button-prev:after {
font-family: swiper-icons;
font-size: 20px;
text-transform: none !important;
letter-spacing: 0;
padding: 13px 18px;
font-variant: initial;
box-shadow: 0px 0px 5px 0px #a7a7a7a1;
line-height: 20px;
background: #ff5a3c;
color: white;
border-radius: 100%;
}
.home-swiper-button-prev:after {
background: #ff5a3c!important;

}
/* -----------------------------------------
Preloader CSS
----------------------------------------- */
#preLoader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--color-white);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
z-index: 1050;
}

#preLoader .loader {
width: 54px;
height: 54px;
position: relative;
}

#preLoader .loader svg {
display: block;
width: 100%;
height: 100%;
}

#preLoader .loader svg rect {
fill: none;
stroke: var(--color-primary);
stroke-width: 6px;
stroke-linejoin: round;
stroke-linecap: round;
}

#preLoader .loader svg rect {
stroke-dasharray: 192 64 192 64;
stroke-dashoffset: 0;
animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

#preLoader .loader .icon {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
animation: pulse 2s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathRect {
25% {
stroke-dashoffset: 64;
}

50% {
stroke-dashoffset: 128;
}

75% {
stroke-dashoffset: 192;
}

100% {
stroke-dashoffset: 256;
}
}

/* -----------------------------------------
Price Range Slider CSS
----------------------------------------- */
.noUi-target {
border: none;
box-shadow: none;
border-radius: 30px;
height: 8px;
background: rgba(var(--color-medium-rgb), 0.6);
}

.noUi-connect {
background: var(--color-primary);
}

.noUi-horizontal .noUi-handle {
width: 20px;
height: 20px;
right: -8px;
border-radius: 50%;
border-width: 3px;
box-shadow: none;
background: var(--color-primary);
border: 3px solid var(--color-white);
cursor: grab;
}

.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after {
content: none;
}



/* -----------------------------------------
video Swiper Slider CSS
----------------------------------------- */
.video-container {
position: relative;
padding-bottom: 53%;
height: 0;
border: 1px solid #ff5a3c;
overflow: hidden;
max-width: 100%;
border-radius: 20px;
background: #ffffff;
margin: 0px 10px;
}

.video-slider .swiper-slide {
width: 33.33%!important;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

/* -----------------------------------------
Swiper Slider CSS
----------------------------------------- */
.swiper-container {
position: relative;
overflow: hidden;
}

.swiper-pagination .swiper-pagination-bullet {
width: 10px;
height: 10px;
border-radius: 30px;
opacity: 1;
background-color: #e9e9e9;
}

.swiper-pagination .swiper-pagination-bullet-active {
background: var(--color-primary);
}

.pagination-fraction .swiper-pagination-bullet {
position: relative;
width: auto;
height: auto;
border-radius: 0;
margin: 0;
margin-inline: 5px;
padding-bottom: 5px;
text-align: center;
font-size: var(--font-lg);
color: var(--color-medium);
background: transparent;
}

.pagination-fraction .swiper-pagination-bullet::before {
position: absolute;
content: "";
left: 0;
right: 0;
bottom: 0;
height: 2px;
border-radius: 5px;
background: var(--color-primary);
transform: scaleX(0);
transition: transform 0.4s ease-out;
}

.pagination-fraction .swiper-pagination-bullet-active {
color: var(--color-primary);
}

.pagination-fraction .swiper-pagination-bullet-active::before {
transform: none;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
line-height: 1;
bottom: 0;
}

.slider-navigation {
z-index: 3;
}

.slider-navigation .slider-btn {
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
border-radius: 5px;
border: transparent;
background: var(--color-primary);
color: var(--color-white);
font-size: 24px;
transition: all 0.4s ease-out;
}

.slider-navigation .slider-btn:last-child {
margin-inline-start: 10px;
}

.slider-navigation .slider-btn i {
transition: transform 0.4s ease-out;
}

.slider-navigation .slider-btn:hover.slider-btn-prev i {
transform: translateX(-4px);
}

.slider-navigation .slider-btn:hover.slider-btn-next i {
transform: translateX(4px);
}

.slider-navigation .slider-btn:disabled {
cursor: not-allowed;
}

/* -----------------------------------------
Nav Tabs CSS
----------------------------------------- */
.tabs-navigation::-webkit-scrollbar {
height: 5px;
}

.tabs-navigation .nav {
display: inline-flex;
border: none;
gap: 15px;
z-index: 1;
position: relative;
overflow: hidden;
}

.tabs-navigation .nav li {
flex: 0 0 auto;
}

.tabs-navigation .nav .nav-link {
color: var(--color-primary);
font-weight: var(--font-medium);
border: 1px solid var(--color-primary);
margin: 0;
cursor: pointer;
}

.tabs-navigation .nav .nav-link:is(.active) {
color: var(--color-white);
background-color: var(--color-primary);
}

.tabs-navigation .nav .nav-link:is(.active, :hover, .mixitup-control-active) {
color: var(--color-white);
background: var(--color-primary);
}

.product-1 .tabs-navigation .nav .nav-link {
color: var(--color-secondary);
border: 1px solid var(--color-secondary);
}

.product-1 .tabs-navigation .nav .nav-link:is(.active, :hover, .mixitup-control-active) {
color: var(--color-white);
background: var(--color-secondary);
}

.tab-switch .text {
font-size: 18px;
color: var(--color-dark);
}

.switch-toggle {
position: relative;
display: inline-block;
width: 70px;
height: 30px;
margin: 0 10px;
}

.switch-toggle .toggle-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 30px;
background-color: var(--color-primary);
border: 1.5px solid var(--color-primary);
transition: 0.4s;
}

.switch-toggle .toggle-slider::before {
position: absolute;
content: "";
height: 24px;
width: 24px;
left: 2px;
bottom: 2px;
border-radius: 50%;
background-color: var(--color-white);
transition: 0.4s;
}

.switch-toggle input {
opacity: 0;
width: 0;
height: 0;
}

.switch-toggle input:checked+.toggle-slider::before {
transform: translateX(40px);
}

.tab-pane.fade {
transition: all 0.2s;
transform: translateY(1rem);
}

.tab-pane.fade.show {
transform: translateY(0rem);
}

/* -----------------------------------------
Go top CSS
----------------------------------------- */
.go-top {
position: fixed;
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
right: 0;
width: 45px;
height: 45px;
opacity: 0;
cursor: pointer;
text-decoration: none;
color: var(--color-light);
font-size: 28px;
background-color: var(--color-primary);
background-image: var(--gradient-bg);
transition: 0.4s;
transform: translateX(15%);
z-index: 100;
}

.go-top.active {
opacity: 1;
transform: none;
}

.go-top:hover {
transform: translateY(-3px);
}

/* -----------------------------------------
Title CSS
----------------------------------------- */
.section-title .subtitle {
color: var(--color-primary);
font-weight: var(--font-medium);
margin-bottom: 10px;
display: inline-block;
}

.section-title .subtitle .line {
position: relative;
bottom: 3px;
display: inline-block;
margin-inline-end: 5px;
width: 25px;
height: 2px;
border-radius: 30px;
background: var(--color-primary);
}

.section-title.title-inline {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
}

.section-title.title-inline .title {
margin-bottom: 0;
}

.section-title.title-center {
text-align: center;
}

.section-title.title-center .subtitle {
padding-inline-start: 0;
}

.section-title.title-center .subtitle::before {
content: none;
}

.section-title.title-center .title {
max-width: 600px;
text-align: center;
margin-left: auto;
margin-right: auto;
}

.title-bottom-line {
position: relative;
padding-bottom: 15px;
border-bottom: 2px solid var(--border-color);
}

.title-bottom-line::before {
position: absolute;
content: "";
bottom: -2px;
left: 0;
width: 40%;
height: 2px;
background-color: var(--color-primary);
}

.content-title .subtitle {
color: var(--color-primary);
font-weight: var(--font-medium);
margin-bottom: 10px;
}

.content-title .subtitle .line {
position: relative;
bottom: 3px;
display: inline-block;
margin-inline-end: 5px;
width: 25px;
height: 2px;
border-radius: 30px;
background: var(--color-primary);
}

.content-title h2 {
margin-bottom: 10px;
}

.content-title p {
margin-bottom: 0;
}
.home-banner.home-banner-2 {
padding-top: 220px;
padding-bottom: 230px;
}

/* -----------------------------------------
Animation CSS
----------------------------------------- */
@keyframes pulse {
from {
transform: scale3d(1, 1, 1);
}

50% {
transform: scale3d(1.2, 1.2, 1.2);
}

to {
transform: scale3d(1, 1, 1);
}
}

@keyframes slideUp {
0% {
opacity: 0;
transform: translateY(10%);
}

100% {
opacity: 1;
transform: translateY(0);
}
}

@keyframes slideDown {
from {
opacity: 0;
transform: translateY(-50%);
}

to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes rotate {
from {
transform: rotate(0);
}

to {
transform: rotate(360deg);
}
}

@keyframes moveAround {
0% {
transform: translate(0px, 0px) rotate(0deg);
}

20% {
transform: translate(73px, -1px) rotate(36deg);
}

40% {
transform: translate(141px, 72px) rotate(72deg);
}

60% {
transform: translate(83px, 122px) rotate(108deg);
}

80% {
transform: translate(-40px, 72px) rotate(144deg);
}

100% {
transform: translate(0px, 0px) rotate(0deg);
}
}

@keyframes moveUpDown {
0% {
transform: translateY(0);
}

50% {
transform: translateY(-20px);
}

100% {
transform: translateY(0);
}
}

@keyframes moveLeftRight {
0% {
transform: translateX(0);
}

50% {
transform: translateX(-20px);
}

100% {
transform: translateX(0);
}
}

@keyframes ripple {
0% {
opacity: 0.25;
}

100% {
opacity: 0;
transform: scale(2);
}
}

/* -----------------------------------------
Home Banner CSS
----------------------------------------- */
.home-banner {
position: relative;
overflow: hidden;
}

.home-banner .content .subtitle {
color: #FFF;
text-align: center;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
text-transform: uppercase;
font-weight: 500;
line-height: normal;
letter-spacing: 4.051px;
}
button.btn.btn-danger.home {

width: 220px;
padding: 16px 37px;
margin-top: 50px;
gap: 10px;
border-radius: 79.426px;
color: #FFF;
text-align: center;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
background: #FF5A3C;
}
.home-banner.home-banner-2 .content .title {
margin-bottom: 0;
color: #FFF;
text-align: center;
font-family: Alexandria;
font-size: 44px;
font-style: normal;
font-weight: 700;
line-height: normal;
}
.home-banner.home-banner-2 .content {
text-align: center;
max-width: 1200px!important;
margin-inline: auto;
}
.home-banner .content .title span {
color: var(--color-primary);
}

.home-banner .content .text {
font-size: var(--font-lg);
max-width: 500px;
margin-bottom: 0;
}

.home-banner .banner-filter-form .grid {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 15px;
justify-content: space-between;
}

.home-banner .banner-filter-form .grid .grid-item {
flex: 0 0 auto;
width: calc(100% / 8 - 5px);
}

.home-banner .banner-filter-form .tabs-navigation {
display: flex;
}

.home-banner .banner-filter-form .nav {
display: inline-flex;
gap: 12px;
border: none;
}

.home-banner .banner-filter-form .nav .nav-item:not(:last-child) .nav-link:not(.active)::before {
content: "";
}

.home-banner .banner-filter-form .nav .nav-link {
position: relative;
color: var(--color-dark);
border: 1px solid var(--color-white);
cursor: pointer;
}

.home-banner .banner-filter-form .nav .nav-link:is(.active, :hover) {
color: var(--color-white);
border-color: var(--color-primary);
background-color: var(--color-primary);
}

.home-banner .banner-filter-form .nav .nav-link:is(.active, :hover)::before {
content: none;
}

.home-banner .banner-filter-form .tab-content,
.home-banner .banner-filter-form .form-wrapper {
padding: 30px;
border-radius: 10px;
border: 2px solid var(--color-primary);
background: var(--color-white);
box-shadow: 0px 20px 80px rgba(31, 31, 31, 0.1);
}

.home-banner .banner-filter-form .form-group {
position: relative;
display: flex;
flex-direction: column;
}

.home-banner .banner-filter-form .form-group::after {
position: absolute;
content: "";
top: 0;
right: 0;
left: 0;
margin-inline-start: auto;
margin-inline-end: 0;
bottom: 0;
width: 1px;
height: 100%;
background: var(--border-color);
}

.home-banner .banner-filter-form .form-group ::-moz-placeholder {
color: var(--color-dark);
opacity: 1;
}

.home-banner .banner-filter-form .form-group ::placeholder {
color: var(--color-dark);
}

.home-banner .banner-filter-form label {
font-size: var(--font-sm);
font-weight: var(--font-medium);
margin-bottom: 10px;
display: block;
line-height: 1;
color: var(--color-medium);
}

.home-banner .banner-filter-form select {
cursor: pointer;
}

.home-banner .banner-filter-form .nice-select,
.home-banner .banner-filter-form .form-control {
padding-inline: 0;
border: 0;
height: auto;
line-height: 1;
font-size: var(--font-sm);
font-weight: var(--font-medium);
background-color: transparent;
color: var(--color-dark);
}

.home-banner .select2-container,
.home-banner .select2-container--default .select2-selection--single {
height: auto;
}

.home-banner .select2-container .select2-selection--single .select2-selection__rendered {
border: 0;
height: auto;
line-height: 1;
font-size: var(--font-sm);
font-weight: var(--font-medium);
background-color: transparent;
color: var(--color-dark);
}

.home-banner .select2-container--default .select2-selection--single .select2-selection__arrow {
height: 10px;
}

.home-banner .banner-filter-form .nice-select .list {
width: 100%;
margin-top: 10px;
color: var(--color-dark);
border-radius: 3px;
box-shadow: 0px 0px 30px 0px rgba(var(--color-dark-rgb), 0.15);
}

.home-banner .banner-filter-form .nice-select .list li,
.home-banner .banner-filter-form .form-control option {
line-height: 30px;
min-height: 30px;
}

.home-banner .banner-filter-form .price-value {
margin-bottom: 12px;
}

.home-banner .banner-filter-form .price-value span {
color: var(--color-dark);
font-size: var(--font-sm);
}

.home-banner .banner-filter-form .btn-filter {
font-size: 24px;
color: var(--color-primary);
}

.home-banner .noUi-target {
height: 3px;
width: 80%;
}

.home-banner .noUi-connect {
background: var(--color-primary);
}

.home-banner .noUi-horizontal .noUi-handle {
width: 12px;
height: 12px;
right: -8px;
top: -5px;
background: var(--color-white);
border-color: var(--color-primary);
}

.zoomContainer {
z-index: 9;
}

.zoomWindow {
z-index: 9;
}

.product-single .zoomContainer {
z-index: 99;
}

.product-single .zoomWindow {
z-index: 99;
}

/* -----------------------------------------
Counter CSS
----------------------------------------- */
.counter-area {
position: relative;
overflow: hidden;
}

.counter-area .card {
background: transparent;
}

.counter-area .card-icon {
font-size: 50px;
color: var(--color-primary);
line-height: 1;
}

.counter-area .card h2 {
line-height: 1;
color: var(--color-primary);
}

.counter-area.with-radius {
border-radius: 50px 50px 0 0;
}

/* -----------------------------------------
Category CSS
----------------------------------------- */
.category {
position: relative;
}

.category .category-item {
padding: 25px;
cursor: pointer;
transition: all 0.4s ease-out;
}

.category .category-item .category-icon {
position: relative;
margin-bottom: 25px;
margin-inline: auto;
width: 76px;
height: 76px;
padding-top: 25px;
z-index: 1;
font-size: 55px;
color: var(--color-primary);
}

.category .category-item .category-icon::after {
position: absolute;
content: "";
top: 0;
left: 50%;
width: 100%;
height: 100%;
transform: translateX(-50%);
border-radius: 50%;
z-index: -1;
background: rgba(var(--color-primary-rgb), 0.13);
}

.category .category-item .category-title {
font-size: var(--font-lg);
}

.category .category-item:hover {
box-shadow: 0px 5px 30px -5px rgba(31, 31, 31, 0.1);
}

.category .color-1 .category-icon {
color: #0D6EFD;
}

.category .color-1 .category-icon::after {
background: rgba(13, 110, 253, 0.13);
}

.category .color-2 .category-icon {
color: #E41010;
}

.category .color-2 .category-icon::after {
background: rgba(228, 16, 16, 0.13);
}

.category .color-3 .category-icon {
color: #14C6AF;
}

.category .color-3 .category-icon::after {
background: rgba(20, 198, 175, 0.13);
}

.category .color-4 .category-icon {
color: #2CC3F3;
}

.category .color-4 .category-icon::after {
background: rgba(44, 195, 243, 0.13);
}

.category .color-5 .category-icon {
color: #F57A09;
}

.category .color-5 .category-icon::after {
background: rgba(245, 122, 9, 0.13);
}

.category .color-6 .category-icon {
color: #6B76FF;
}

.category .color-6 .category-icon::after {
background: rgba(107, 118, 255, 0.13);
}

.category .color-7 .category-icon {
color: #ED798E;
}

.category .color-7 .category-icon::after {
background: rgba(237, 121, 142, 0.13);
}

.category .color-8 .category-icon {
color: #B3CDE3;
}

.category .color-8 .category-icon::after {
background: rgba(179, 205, 227, 0.13);
}

.category-2 .swiper-slide:nth-child(even) {
margin-top: 30px;
}

.category-2 .category-item .category-icon {
overflow: hidden;
padding-top: 0;
}

.category-2 .category-item .category-icon i {
vertical-align: sub;
}

.category-2 .category-item .category-icon::after {
top: unset;
bottom: -50%;
}

.category-2 .color-1 .category-item {
background: rgba(13, 110, 253, 0.03);
}

.category-2 .color-1 .category-icon {
color: #0D6EFD;
}

.category-2 .color-1 .category-icon::after {
background: rgba(13, 110, 253, 0.13);
}

.category-2 .color-2 .category-item {
background: rgba(228, 16, 16, 0.03);
}

.category-2 .color-2 .category-icon {
color: #E41010;
}

.category-2 .color-2 .category-icon::after {
background: rgba(228, 16, 16, 0.13);
}

.category-2 .color-3 .category-item {
background: rgba(20, 198, 175, 0.03);
}

.category-2 .color-3 .category-icon {
color: #14C6AF;
}

.category-2 .color-3 .category-icon::after {
background: rgba(20, 198, 175, 0.13);
}

.category-2 .color-4 .category-item {
background: rgba(44, 195, 243, 0.03);
}

.category-2 .color-4 .category-icon {
color: #2CC3F3;
}

.category-2 .color-4 .category-icon::after {
background: rgba(44, 195, 243, 0.13);
}

.category-2 .color-5 .category-item {
background: rgba(245, 122, 9, 0.03);
}

.category-2 .color-5 .category-icon {
color: #F57A09;
}

.category-2 .color-5 .category-icon::after {
background: rgba(245, 122, 9, 0.13);
}

.category-2 .color-6 .category-item {
background: rgba(107, 118, 255, 0.03);
}

.category-2 .color-6 .category-icon {
color: #6B76FF;
}

.category-2 .color-6 .category-icon::after {
background: rgba(107, 118, 255, 0.13);
}

.category-2 .color-7 .category-item {
background: rgba(237, 121, 142, 0.03);
}

.category-2 .color-7 .category-icon {
color: #ED798E;
}

.category-2 .color-7 .category-icon::after {
background: rgba(237, 121, 142, 0.13);
}

.category-2 .color-8 .category-item {
background: rgba(179, 205, 227, 0.03);
}

.category-2 .color-8 .category-icon {
color: #B3CDE3;
}

.category-2 .color-8 .category-icon::after {
background: rgba(179, 205, 227, 0.13);
}

.category .shape img {
position: absolute;
z-index: -1;
}

.category .shape img.shape-1 {
top: 13%;
right: 5%;
animation: moveLeftRight 10s linear infinite;
}

.category .shape img.shape-2 {
top: 70%;
left: 4%;
animation: moveLeftRight 5s linear infinite;
}

.category .shape img.shape-3 {
bottom: 10%;
right: 8%;
animation: moveUpDown 5s linear infinite;
}

.category .shape img.shape-4 {
top: 14%;
left: 6%;
animation: moveUpDown 5s linear infinite;
}

.category .shape img.shape-5 {
top: 18%;
left: 50%;
animation: moveAround 20s linear infinite;
}

/* -----------------------------------------
About CSS
----------------------------------------- */
.about-area {
position: relative;
overflow: hidden;
}

.about-area .img-content {
position: relative;
}

.about-area .img-content .image {
display: flex;
gap: 30px;
padding-bottom: 20px;
}

.about-area .img-content .image img {
border-radius: 10px;
flex: 0 0 auto;
max-width: calc(55% - 15px);
}

.about-area .img-content .image img:last-child {
margin-bottom: -20px;
margin-top: 50px;
max-width: calc(45% - 15px);
}

.about-area .img-content .absolute-text {
position: absolute;
top: -30px;
left: 0;
right: 0;
margin-inline: auto;
width: 180px;
height: 180px;
padding: 10px;
border-radius: 50%;
background: var(--color-primary);
}

.about-area .img-content .absolute-text .center-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}

.about-area .img-content .absolute-text .center-text span {
display: block;
color: var(--color-white);
}

.about-area .img-content .absolute-text .center-text .h2 {
color: var(--color-secondary);
margin-bottom: 0;
line-height: 1;
}

.about-area .img-content .absolute-text #curveText {
color: var(--color-white);
font-size: var(--font-lg);
}

.about-area .img-content .absolute-text #curveText .char {
position: absolute;
top: 5px;
left: 50%;
transform-origin: 0 85px;
}

.about-area .content .about-list {
margin-top: 30px;
margin-bottom: 20px;
}

.about-area .content .about-list li {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.about-area .content .about-list .icon {
flex: 0 0 auto;
width: 80px;
height: 80px;
border-radius: 8px;
text-align: center;
line-height: 80px;
background: var(--color-primary);
font-size: 42px;
color: var(--color-white);
}

.about-area .content .about-list .icon.blue {
background: var(--color-blue);
}

.about-area .content .about-list .icon.cyan {
background: var(--color-cyan);
}

.about-area .content .about-list h3 {
margin-bottom: 0;
}

.about-area .content .about-list p {
line-height: 1.5;
margin-bottom: 0;
}

.about-area .content .btn {
margin-top: 15px;
}

.about-area .content .clients {
margin-top: 15px;
}

.about-area .content .clients img {
max-width: 50px;
border-radius: 50%;
}

.about-area .content .clients img:not(:first-child) {
margin-inline-start: -20px;
}

.about-area.about-2 .bg-overlay {
position: absolute;
top: -8%;
right: 0;
width: auto;
z-index: -1;
}

.about-area.about-2 .img-content {
height: 100%;
padding-bottom: 100px;
}

.about-area.about-2 .img-content .img-1 {
margin-inline-start: auto;
margin-inline-end: 0;
border-radius: 10px;
overflow: hidden;
max-width: 75%;
}

.about-area.about-2 .img-content .img-2 {
position: absolute;
left: 0;
right: 0;
margin-inline-start: 0;
margin-inline-end: auto;
bottom: 0;
max-width: 40%;
border-radius: 10px;
overflow: hidden;
}

.about-area.about-2 .img-content .img-2::after {
position: absolute;
content: "";
top: 0;
left: 0;
bottom: 0;
right: 0;
background: var(--color-dark);
opacity: 0.3;
}

.about-area .shape img {
position: absolute;
z-index: -1;
}

.about-area .shape img.shape-1 {
top: 13%;
right: 5%;
animation: moveLeftRight 10s linear infinite;
}

.about-area .shape img.shape-2 {
top: 70%;
left: 4%;
animation: moveLeftRight 5s linear infinite;
}

.about-area .shape img.shape-3 {
bottom: 10%;
right: 8%;
animation: moveUpDown 5s linear infinite;
}

.about-area .shape img.shape-4 {
top: 14%;
left: 6%;
animation: moveUpDown 5s linear infinite;
}

/* -----------------------------------------
Choose CSS
----------------------------------------- */
.choose-area {
position: relative;
overflow: hidden;
}

.choose-area .img-content {
--top: 40px;
--top-n: -40px;
--bottom: 60px;
position: relative;
padding-top: var(--top);
padding-bottom: var(--bottom);
}

.choose-area .img-content::after {
position: absolute;
content: "";
top: 0;
right: 0;
left: 0;
width: 30%;
margin-inline-start: auto;
margin-inline-end: var(--top-n);
height: 60%;
background: #D1D6D7;
z-index: -1;
border-radius: 30px;
border-start-end-radius: 0;
}

.choose-area .img-content .img-1 {
position: relative;
margin-inline-start: auto;
border-radius: 10px;
overflow: hidden;
max-width: 75%;
}

.choose-area .img-content .img-1 img {
width: 100%;
}

.choose-area .img-content .img-1::after {
position: absolute;
content: "";
top: 0;
left: 0;
bottom: 0;
right: 0;
background: var(--color-dark);
opacity: 0.3;
}

.choose-area .img-content .img-2 {
position: absolute;
bottom: 0;
left: 0;
right: 0;
border-radius: 10px;
overflow: hidden;
margin-inline-start: 0;
margin-inline-end: auto;
max-width: 40%;
}

.choose-area .img-content .img-2::after {
position: absolute;
content: "";
top: 0;
left: 0;
bottom: 0;
right: 0;
background: var(--color-dark);
opacity: 0.3;
}

.choose-area .content .choose-grid {
margin-top: 30px;
display: grid;
grid-template-columns: repeat(3, 100px);
grid-column-gap: 30px;
text-align: center;
}

.choose-area .content .choose-grid .icon {
width: 100px;
height: 100px;
border-radius: 8px;
text-align: center;
line-height: 100px;
background: var(--color-primary);
font-size: 52px;
margin-bottom: 10px;
color: var(--color-white);
}

.choose-area .content .choose-grid .icon.cyan {
background: var(--color-cyan);
}

.choose-area .content .choose-grid .icon.green {
background: var(--color-green);
}

.choose-area .content .choose-grid .icon.purple {
background: var(--color-purple);
}

.choose-area .content .choose-grid .icon.pink {
background: var(--color-pink);
}

.choose-area .content .choose-grid .icon.orange {
background: var(--color-orange);
}

.choose-area .content .choose-grid .icon.blue {
background: var(--color-blue);
}





/* Hidden Image for accessibility and fallback */
.gallery-image .hidden-img {
visibility: hidden; /* Hides the image itself */
}
/* -----------------------------------------
Agent CSS
----------------------------------------- */
.agent-area {
position: relative;
overflow: hidden;
}

.agent-box {
position: relative;
overflow: hidden;
background: var(--color-white);
transition: all 0.3s ease-out;
}

.agent-box .agent-img {
position: relative;
}

.agent-box .agent-img::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(179.92deg, rgba(255, 255, 255, 0) 0.07%, rgba(0, 0, 0, 0.7) 98.52%);
z-index: 2;
}

.agent-box .agent-img img {
transition: transform 0.3s ease-out;
}

.agent-box .agent-ratings {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 0 16px;
z-index: 2;
}

.agent-box:not(.agent-column) :is(.agent-ratings, a) {
color: var(--color-white);
}

.agent-box:not(.agent-column) .agent-details {
background: var(--color-secondary);
}

.agent-box .ratings {
font-size: var(--font-sm);
}

.agent-box .ratings i {
color: var(--color-primary);
}

.agent-box .label {
display: inline-block;
padding: 8px 14px;
color: var(--color-white);
font-size: var(--font-sm);
border-radius: 3px 3px 0 0;
background: var(--color-primary);
}

.agent-box .agent-details {
padding: 16px;
}

.agent-box .agent-title {
margin-top: 5px;
margin-bottom: 0;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}

.agent-box .agent-info {
margin-top: 15px;
margin-bottom: 15px;
font-weight: 500;
font-size: var(--font-sm);
}

.agent-box .agent-info i {
color: var(--color-primary);
font-size: var(--font-md);
vertical-align: -1px;
}

.agent-box .agent-info li:not(:last-child) {
margin-bottom: 8px;
}

.agent-box .social-link {
position: absolute;
top: 10px;
right: 0;
left: 0;
width: -moz-fit-content;
width: fit-content;
margin-inline-end: 10px;
margin-inline-start: auto;
transition: all 0.4s ease-out;
opacity: 0;
text-align: center;
transform: translateX(100%);
z-index: 2;
}

.agent-box .social-link a {
display: block;
}

.agent-box .social-link a:not(:last-child) {
margin-bottom: 5px;
}

.agent-box:hover {
box-shadow: 0 5px 15px -5px rgba(var(--color-dark-rgb), 0.2);
}

.agent-box:hover:not(.agent-column) .social-link {
opacity: 1;
transform: none;
}

.agent-box:hover .agent-img img {
transform: scale3d(1.05, 1.05, 1.05);
}

.agent-column {
border-radius: 0 15px 15px 0;
border: 1px solid var(--border-color);
}

.agent-column .agent-img {
overflow: hidden;
border-radius: 0 15px 15px 0;
}

.agent-column .label {
padding: 6px 12px;
}

.agent-column .agent-details {
padding: 0;
padding-inline-start: 22px;
}

.agent-column .social-link {
position: absolute;
top: 50%;
right: 0;
left: 0;
margin-inline-start: auto;
margin-inline-end: 20px;
text-align: center;
opacity: 1;
transform: translateY(-50%);
}

.agent-column .social-link a {
font-size: 20px;
display: block;
}

.agent-column:hover {
border-color: transparent;
}

.agent-single .label {
display: inline-block;
padding: 6px 12px;
color: var(--color-white);
font-size: var(--font-sm);
border-radius: 3px;
background: var(--color-secondary);
}

.agent-single .ratings {
font-size: var(--font-sm);
}

.agent-single .ratings i {
color: var(--color-primary);
}

.agent-single .agent-info {
margin-top: 20px;
margin-bottom: 20px;
}

.agent-single .agent-info li {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}

.agent-single .agent-info li div {
flex: 0 0 auto;
word-wrap: break-word !important;
word-break: break-word !important;
}

.agent-single .agent-info li div:first-child {
width: calc(40% -10px);
}

.agent-single .agent-info li div:last-child {
width: calc(60% - 10px);
}



.agent-single .agent-info li:not(:last-child) {
margin-bottom: 10px;
}

.agent-single .agent-info span,
.agent-single .agent-info i {
color: var(--color-dark);
}

.agent-single .agent-info a {
color: var(--color-medium);
}

.agent-single .agent-info a:hover {
color: var(--color-primary);
}

.agent-single .agent-single-details p:last-child {
margin-bottom: 0;
}

/* -----------------------------------------
Gallery CSS
----------------------------------------- */
.gallery-area {
position: relative;
overflow: hidden;
}

.gallery-area .card {
overflow: hidden;
}

.gallery-area .card::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180.25deg, rgba(255, 255, 255, 0) -4.6%, rgba(18, 18, 18, 0.56) 74.16%, rgba(12, 12, 12, 0.7) 99.79%);
z-index: 2;
}

.gallery-area .card .card-img {
overflow: hidden;
}

.gallery-area .card .card-img img {
transition: transform 0.3s ease-out;
}

.gallery-area .card .card-text {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 15px 0;
z-index: 2;
display: flex;
flex-direction: column;
justify-content: end;
align-items: center;
}

.gallery-area .card .card-text .card-title,
.gallery-area .card .card-text span {
display: block;
opacity: 0;
transform: translateY(20px);
transition: transform 0.4s, opacity 0.4s;
}

.gallery-area .card .card-text span {
transition-delay: 0.1s;
}

.gallery-area .card:hover .card-img img {
transform: scale3d(1.05, 1.05, 1.05);
}

.gallery-area .card:hover .card-text .card-title,
.gallery-area .card:hover .card-text span {
opacity: 1;
transform: none;
}

/* -----------------------------------------
Testimonial CSS
----------------------------------------- */
.testimonial-area {
position: relative;
overflow: hidden;
}

.testimonial-area .overlay-bg {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
right: 0;
margin-inline-start: auto;
margin-inline-end: 0;
width: -moz-fit-content;
width: 40%;
height: 75%;
z-index: -1;
}

.testimonial-area .overlay-bg img {
border: 1px solid var(--border-color);
border-radius: 15px 0 0 15px;
height: 100%;
object-fit: cover;
}

.testimonial-area .slider-item {
position: relative;
padding-bottom: 50px;
padding-inline-end: 30px;
}

.testimonial-area .slider-item::before {
position: absolute;
content: "";
right: 0;
left: 0;
bottom: 0;
margin-inline-start: auto;
margin-inline-end: 0;
width: 75%;
height: 75%;
border: 3px solid var(--color-primary);
border-radius: 10px;
z-index: -1;
}

.testimonial-area .slider-item .client-img {
position: absolute;
top: -30px;
left: 30px;
width: 80px;
height: 80px;
border-radius: 10px;
overflow: hidden;
}

.testimonial-area .slider-item .client-content {
padding: 80px 25px 25px;
border-radius: 10px;
border: 1px solid var(--border-color);
background: var(--color-white);
transition: box-shadow 0.3s ease-out;
}

.testimonial-area .slider-item .quote {
border-bottom: 1px solid var(--border-color);
margin-bottom: 20px;
padding-bottom: 20px;
}

.testimonial-area .slider-item .icon {
display: block;
font-size: 25px;
color: rgba(var(--color-primary-rgb), 0.19);
}

.testimonial-area .slider-item p {
margin-bottom: 0;
}

.testimonial-area .slider-item .client-info h6 {
margin-bottom: 2px;
}

.testimonial-area .slider-item .client-info .designation {
font-size: var(--font-sm);
}

.testimonial-area .swiper-slide:hover .client-content,
.testimonial-area .swiper-slide-active .client-content {
box-shadow: 0 5px 15px -5px rgba(var(--color-dark-rgb), 0.2);
}

.testimonial-2.with-radius,
.with-radius.testimonial-3 {
border-radius: 50px 50px 0 0;
border: 1px solid var(--border-color);
}

.testimonial-2 .slider-item,
.testimonial-3 .slider-item {
padding: 0;
padding-inline-end: 30px;
}

.testimonial-2 .slider-item::before,
.testimonial-3 .slider-item::before {
top: 50%;
transform: translateY(-50%);
}

.testimonial-2 .slider-item .client-content,
.testimonial-3 .slider-item .client-content {
padding: 0;
}

.testimonial-2 .slider-item .quote,
.testimonial-3 .slider-item .quote {
padding: 30px;
margin: 0;
}

.testimonial-2 .slider-item .client-info,
.testimonial-3 .slider-item .client-info {
padding: 20px 30px;
}

.testimonial-2 .slider-item .client-info .content,
.testimonial-3 .slider-item .client-info .content {
padding-inline-start: 20px;
}

.testimonial-2 .swiper-pagination,
.testimonial-3 .swiper-pagination {
position: static;
margin-inline-start: -4px;
text-align: start;
}

.testimonial-3 .slider-item {
padding-inline-end: 10px;
}

.testimonial-3 .slider-item::before {
height: calc(100% - 4px);
background: var(--color-primary);
}

.testimonial-3 .slider-item .client-info .client-img {
margin-inline-end: 30px;
}

.testimonial-3 .slider-item .client-info .content {
padding-inline-start: 30px;
position: relative;
}

.testimonial-3 .slider-item .client-info .content::after {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
margin-inline-start: 0;
margin-inline-end: auto;
bottom: 0;
width: 2px;
height: 100%;
background: rgba(var(--color-primary-rgb), 0.13);
}

.testimonial-3 .shape img {
position: absolute;
z-index: -1;
}

.testimonial-3 .shape img.shape-1 {
top: 13%;
right: 5%;
animation: moveAround 20s linear infinite;
}

.testimonial-3 .shape img.shape-2 {
top: 70%;
left: 4%;
animation: moveLeftRight 5s linear infinite;
}

.testimonial-3 .shape img.shape-3 {
bottom: 10%;
right: 8%;
animation: moveUpDown 5s linear infinite;
}

.testimonial-3 .shape img.shape-4 {
top: 14%;
left: 6%;
animation: moveUpDown 5s linear infinite;
}

.testimonial-3 .shape img.shape-5 {
top: 18%;
left: 70%;
animation: moveLeftRight 10s linear infinite;
}

/* -----------------------------------------
Newsletter CSS
----------------------------------------- */
.newsletter-area .newsletter-inner {
position: relative;
overflow: hidden;
padding: 60px 0;
border-radius: 30px;
}

.newsletter-area .newsletter-inner::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--color-dark);
opacity: 0.5;
z-index: -1;
}

.newsletter-area .newsletter-form .input-group {
padding: 0;
background-color: transparent;
border: 2px solid var(--color-white);
}

.newsletter-area .newsletter-form .input-group ::-moz-placeholder {
color: var(--color-white);
}

.newsletter-area .newsletter-form .input-group ::placeholder {
color: var(--color-white);
}

.newsletter-area .newsletter-form .input-group .btn {
border-radius: 5px !important;
color: var(--color-dark);
background: var(--color-white);
}

.newsletter-area .newsletter-form .input-group .form-control {
background-color: transparent;
padding: 20px;
color: var(--color-white);
}

/* -----------------------------------------
Product CSS
----------------------------------------- */
.product-area {
position: relative;
overflow: hidden;
}

.product-default {
position: relative;
overflow: hidden;
background: var(--color-white);
border: 1px solid var(--border-color);
transition: all 0.3s ease-out;
}

.product-default .product-img img {
transition: transform 0.3s ease-out;
}

.product-default .product-details {
padding: 16px;
}

.product-default .product-details .author a img {
flex: 0 0 auto;
width: 30px;
height: 30px;
object-fit: cover;
}

.product-default .product-category {
font-size: var(--font-sm);
font-weight: var(--font-medium);
}

.product-default .author img {
border-radius: 50%;
max-width: 30px;
-webkit-margin-end: 10px;
margin-inline-end: 10px;
background-color: var(--bg-light);
}

.product-default .product-title {
margin-bottom: 5px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.product-default .product-location {
font-weight: var(--font-medium);
}

.product-default .product-location i {
font-size: var(--font-sm);
}

.product-default .product-price {
margin: 6px 0 16px;
}

.product-default .btn-wishlist {
position: absolute;
top: 14px;
right: 0;
left: 0;
margin-inline-start: auto;
margin-inline-end: 16px;
width: 24px;
height: 24px;
line-height: 24px;
font-size: var(--font-sm);
border-radius: 50%;
text-align: center;
color: var(--color-primary);
background: var(--color-white);
z-index: 1;
}

.product-default .btn-wishlist i {
transition: font-weight 0.3s ease-out;
}

.product-default .label {
position: absolute;
top: 14px;
left: 0;
right: 0;
width: -moz-fit-content;
width: fit-content;
margin-inline-start: 0;
margin-inline-end: auto;
padding: 6px 14px;
color: var(--color-white);
font-size: var(--font-sm);
border-radius: 0 3px 3px 0;
background: var(--color-primary);
z-index: 1;
}

.product-default .product-info {
justify-content: space-between;
}

.product-default:hover {
border-color: transparent;
box-shadow: 0 5px 15px -5px rgba(var(--color-dark-rgb), 0.2);
}

.product-default:hover .btn-wishlist i {
font-weight: 700;
}

.product-default .btn-wishlist.wishlist-active i {
font-weight: 700;
}

.product-default:hover .product-img img {
transform: scale3d(1.05, 1.05, 1.05);
}

.product-ratings {
font-size: var(--font-sm);
color: var(--color-primary);
}

.product-ratings span {
color: var(--color-medium);
}

.product-price {
display: flex;
align-items: center;
justify-content: start;
letter-spacing: 1px;
}

.product-price span {
display: inline-block;
font-weight: var(--font-medium);
}

.product-price .new-price {
display: inline-block;
font-weight: var(--font-bold);
font-size: var(--font-size--h4);
color: var(--color-dark);
margin-inline-end: 12px;
}

.product-location i {
color: var(--color-primary);
}

.product-info {
margin-bottom: 0;
font-weight: 500;
font-size: var(--font-sm);
color: var(--color-primary);
gap: 15px;
}

.product-info i {
font-size: var(--font-base);
}

.product-info span {
color: var(--color-medium);
}

.product-info li {
position: relative;
}

.product-column {
border-radius: 0 15px 15px 0;
}

.product-column .product-img {
position: relative;
overflow: hidden;
padding: 0;
border-radius: 0 15px 15px 0;
}

.product-column .product-title {
margin-top: 5px;
margin-bottom: 5px;
-webkit-line-clamp: 1;
}

.product-column .product-details {
padding: 0;
padding-inline-start: 20px;
padding-inline-end: 10px;
border-inline-end: 1px solid var(--border-color);
}

.product-column .product-list-group {
margin-top: 15px;
padding-inline-start: 16px;
}

.product-column .product-list-group li {
list-style-type: disc;
}

.product-column .product-list-group li:not(:last-child) {
margin-bottom: 5px;
}

.product-column .product-info {
margin-top: 20px;
justify-content: start;
}

.product-column .product-price {
margin-top: 0;
margin-bottom: 0;
}

.product-column .product-action {
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
gap: 10px;
}


.product-inline {
display: flex;
border-width: 0;
padding: 0;
border: 0;
box-shadow: none;
background: transparent;
}

.product-inline .product-img {
flex: 0 0 90px;
max-width: 90px;
overflow: hidden;
}

.product-inline .product-img img {
background-color: var(--color-light-1);
}

.product-inline .product-title {
-webkit-line-clamp: 2;
margin-bottom: 0;
}

.product-inline .product-details {
flex: 0 0 70%;
max-width: 70%;
padding: 0;
padding-inline-start: 12px;
}

.product-inline .product-location {
font-size: 12px;
}

.product-inline .product-location i {
font-size: 12px;
}

.product-inline .product-price {
margin: 0;
font-size: 12px;
}

.product-inline .product-price .new-price {
font-size: 12px;
margin-inline-end: 5px;
}

.product-inline .product-info {
margin-top: 5px;
justify-content: start;
gap: 10px;
font-size: 12px;
}

.product-inline .product-info i {
font-size: 12px;
}

.product-inline:hover {
box-shadow: none;
}

.product-single .product-single-gallery {
position: relative;
padding-bottom: 30px;
}

.product-single .product-single-gallery .slider-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
}

.product-single .product-single-gallery .slider-btn.slider-btn-next {
right: 0;
}

.product-single .slider-thumbnails {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
max-width: 60%;
z-index: 1;
}

.product-single .slider-thumbnails .thumbnail-img {
cursor: pointer;
opacity: 0.9;
}

.product-single .swiper-slide-active .thumbnail-img {
opacity: 1;
}

.product-single .product-single-slider {
max-width: 80%;
}

.product-single .product-single-slider img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}

.product-single .product-full-screen {
position: absolute;
top: 0;
right: 0;
z-index: 1;
}

.product-single .product-single-details .product-title {
margin-top: -5px;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.product-single .product-single-details .product-location {
font-size: var(--font-sm);
}

.product-single .product-single-details .product-info i,
.product-single .product-single-details .product-info {
font-size: var(--font-sm);
}

.product-single .product-single-details .product-price span {
font-size: var(--font-size--h6);
}

.product-single .product-single-details .product-price .new-price {
font-size: var(--font-size--h4);
font-weight: var(--font-bold);
}

.product-single .product-single-details .user {
display: grid;
grid-template-columns: 50px 1fr;
grid-column-gap: 15px;
align-items: center;
}

.product-single .product-single-details .user .user-info a {
color: var(--color-medium);
font-size: var(--font-sm);
}

.product-single .product-single-details .share-link li {
display: inline-block;
text-align: center;
}

.product-single .product-single-details .share-link li:not(:last-child) {
margin-inline-end: 10px;
}

.product-single .product-single-details .share-link span {
font-size: var(--font-xsm);
}

.product-single .product-single-details .share-link .btn {
display: block;
width: 34px;
height: 34px;
padding: 0;
line-height: 34px;
border-radius: 3px;
margin-inline: auto;
font-weight: normal;
background: rgba(var(--color-primary-rgb), 0.13);
}

.product-single .product-single-details .share-link .btn.blue {
color: var(--color-blue);
background: rgba(var(--color-blue-rgb), 0.13);
}

.product-single .product-single-details .share-link .btn.red {
color: var(--color-red);
background: rgba(var(--color-red-rgb), 0.13);
}

.product-single .product-single-details .share-link .btn.green {
color: var(--color-green);
background: rgba(var(--color-green-rgb), 0.13);
}

.product-single .product-single-details .product-desc p:last-child {
margin-bottom: 0;
}

.product-sort-area .product-sort-list .item {
display: inline-block;
}

.product-sort-area .product-sort-list .item:not(:last-child) {
margin-inline-end: 20px;
}

.product-sort-area .product-sort-list .nice-select {
border: 0;
padding: 0;
background: transparent;
padding: 0 20px;
background-color: var(--bg-light);
border: 1px solid var(--border-color);
display: flex;
gap: 5px;
align-items: center;
}

.product-sort-area .product-sort-list .nice-select::after {
right: 0;
position: unset;
}

.product-sort-area .product-sort-list .nice-select .list {
left: 0;
right: 0;
width: -moz-fit-content;
width: fit-content;
margin-inline-end: 0;
margin-inline-start: auto;
}

.product-sort-area .product-sort-list .btn-icon {
width: auto;
height: auto;
background: transparent;
color: var(--color-gray-1);
}

.product-sort-area .product-sort-list .btn-icon.active,
.product-sort-area .product-sort-list .btn-icon:hover {
color: var(--color-primary);
}

.featured-list li {
margin-inline-end: 10px;
margin-bottom: 10px;
}

.featured-list li i {
color: var(--color-primary);
}

/* -----------------------------------------
Brand CSS
----------------------------------------- */
a.btn.btn-danger.home {
padding: 16px 37px;
margin-top: 30px;
border-radius: 79.426px;
font-weight: 600;
background: #FF5A3C;
}
.home-heading.outlines {
padding-bottom: 0px;
}
.home-heading h2 {
color: var(--Text-Colour-2, #2B2B2B) !important;
font-size: 34px;
font-style: normal;
margin-top: 30px;
line-height: 0px !important;
}
.caption {
color: #5C5C5C;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin-bottom: 15px;
letter-spacing: 3.3px;
text-transform: uppercase;
}
.home-heading {
padding-bottom: 20px;
border-bottom: 1px solid #E9E9E9;
margin-bottom: 40px;
}
.swiper-button-next:after {
font-family: swiper-icons;
font-size: 20px;
text-transform: none !important;
letter-spacing: 0;
padding: 15px 18px;
font-variant: initial;
box-shadow: 0px 0px 5px 0px #ff5a3c8c;
line-height: 16px;
background: #ff5a3c;
color: white;
border-radius: 100%;
}
.swiper-button-prev:after {
font-family: swiper-icons;
font-size: 20px;
text-transform: none !important;
letter-spacing: 0;
padding: 15px 18px;
font-variant: initial;
box-shadow: 0px 0px 5px 0px #a7a7a7a1;
line-height: 16px;
background: #A7A7A7;
color: white;
border-radius: 100%;
}
div#sponsor-slider-next {
left: 1310px;
display: flex;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
width: 30px;
height: 30px;
}
div#sponsor-slider-prev {
left: 1252px;
display: flex
;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
top: -22px;
}
/* -----------------------------------------
Footer CSS
----------------------------------------- */
/* .footer-area {
position: relative;
overflow: hidden;
border-radius: 50px 50px 0 0;
} */
.footer-area {
position: relative;
overflow: hidden;
border-radius: 0px;
border: none !important;
}

.footer-area .bg-overlay {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}

.footer-area .bg-overlay::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--color-light-1);
}

.footer-area .footer-widget {
margin-bottom: 30px;
}

.footer-area .footer-widget ul {
padding: 0;
margin: 0;
list-style-type: none;
}

.footer-area .footer-widget ul li {
display: block;
}

.footer-area .footer-widget .navbar-brand {
padding: 0;
}

.footer-area .footer-widget h3 {
text-transform: capitalize;
margin-bottom: 25px;
}

.footer-area .footer-widget p {
margin-top: 20px;
margin-bottom: 20px;
}

.footer-area .footer-widget .social-link a {
display: inline-block;
text-align: center;
margin-inline-end: 15px;
color: var(--color-primary) !important;
}

.footer-area .footer-widget .social-link a:last-child {
margin: 0;
}

.footer-area .footer-widget .footer-links li {
position: relative;
overflow: hidden;
margin-bottom: 10px;
line-height: 1.5;
color: #696969;
}
.footer-top .g-xl-5, .gx-xl-5 {
--bs-gutter-x: 1rem;
}
footer.footer-area.border.border-primary.blur-up.lazyloaded {
background-position: right !important;

}
.footer-area .footer-widget .footer-links li a {
color: var(--color-gray-1);
}

.footer-area .footer-widget .footer-links li a:hover {
color: var(--color-primary);
}

.footer-area .footer-widget .footer-links li:last-child {
margin-bottom: 0;
}

.footer-area .copy-right-area {
text-align: center;
padding: 20px 0;
}
.footer-widget h4 {
color: #212121;
font-family: Alexandria;
font-size: 18px;
margin-bottom: 20px;
font-style: normal;
font-weight: 400 !important;
line-height: 33.429px;
}
h4.cat-heading.mt-3 {
font-size: 18px;
margin: -15px 0px 0px!important;
}
label {
    color: black;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
}
.boothr{
   max-width:1000px!important; 
}
p.property-vendor {
color: black;
font-size: 14px;
}
ul.footer-links {
color: #696969!important;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 33.429px!important;
}
.footer-area .copy-right-area p {
margin-bottom: 0;
color: #696969!important;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 33.429px!important;
}

.copy-right-area.border-top {
background: white;
border: none !important;
}

@keyframes cluster-animation {

0%,
100% {
transform: scale(1.3);
}

50% {
transform: scale(1.5);
}
}

.leaflet-container {
height: 100%;
width: 100vw;
max-width: 100%;
max-height: 100%;
}

.marker-cluster {
background: transparent;
}

.marker-cluster div {
position: relative;
width: 40px;
height: 40px;
line-height: 40px;
border-radius: 50%;
background: var(--color-primary);
color: var(--color-white);
font-size: var(--font-lg);
text-align: center;
}

.marker-cluster div:before {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0.2;
box-shadow: inset 0 0 0 10px var(--color-primary);
content: "";
border-radius: 50%;
animation: cluster-animation 2.5s infinite;
z-index: -1;
}

.cluster img {
display: none;
}

.map-marker-container {
position: absolute;
margin-top: 10px;
transform: translate3d(-50%, -100%, 0);
}

.marker-container {
position: relative;
margin: 10px auto;
width: 40px;
height: 40px;
z-index: 1;
border-radius: 50%;
cursor: pointer;
top: -5px;
}

.marker-container .marker-card {
width: 100%;
height: 100%;
transform-style: preserve-3d;
position: absolute;
z-index: 1;
transition: all 0.3s linear;
}

.marker-container .marker-arrow {
position: absolute;
content: "";
width: 0;
height: 0;
border-style: solid;
border-width: 22px 15px 0;
border-color: var(--color-primary) transparent transparent;
top: 33px;
left: 50%;
transform: translateX(-50%);
border-radius: 0;
z-index: 1;
}

.marker-container:hover .marker-card {
transform: translateY(-5px);
}

.map-marker-container.clicked .marker-card {
transform: rotateY(-180deg) translateY(0px);
}

.face {
position: absolute;
width: 100%;
height: 100%;
text-align: center;
border-radius: 10%;
border-radius: 50px;
background-color: #fff;
border: 6px solid var(--color-primary);
color: var(--color-primary);
transition: all 1s linear;
z-index: 100;
}

.face i {
line-height: 28px;
font-size: var(--font-sm);
}

.leaflet-popup {
transition: all 0.3s linear;
}

.leaflet-popup .leaflet-popup-content-wrapper,
.leaflet-popup .leaflet-popup-tip {
padding: 0;
overflow: hidden;
}

.leaflet-popup a {
color: var(--color-dark);
}

.leaflet-popup .leaflet-popup-content {
position: relative;
margin: 0;
border-radius: 0;
}

.leaflet-popup .product-default {
width: 280px;
border: 0;
color: var(--color-medium);
}

.leaflet-popup a.leaflet-popup-close-button {
width: 25px;
height: 25px;
border-radius: 0 0 0 10px;
background: var(--color-white);
z-index: 5;
}

.leaflet-popup .label {
padding: 3px 10px;
font-size: var(--font-sm);
}
/* -----------------------------------------
category page Banner CSS
----------------------------------------- */

.hall-section.categoies.ptb-100.aos-init.aos-animate {
padding: 100px 0px 50px;
}
.advertisement-section.categoies-ads.ptb-100.aos-init.aos-animate {
padding: 0px 0px 100px;
}


/* -----------------------------------------
video Banner CSS
----------------------------------------- */
.video-banner {
position: relative;
overflow: hidden;
}

.video-banner .bg-overlay {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
}

.video-banner .bg-overlay::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(90.18deg, rgba(0, 0, 0, 0.5) 2.96%, rgba(255, 255, 255, 0) 99.85%);
}a.btn.btn-outline-primary:hover{
    background-color: #FF5A3C;
    color:white;
    border-color: #ff5a3c;
}
a.btn.btn-outline-primary {
    color: #FF5A3C;
    margin-top: 20px !important;
    border-radius: 79.426px;
    display: flex;
    width: 150px;
    padding: 12px 20px;
    justify-content: center;
    margin: 0px auto;
    align-items: center;
    border: 1px solid;
    gap: 10px;
    text-align: center;
    font-family: Alexandria;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: transparent;
}
.video-banner.with-radius {
border-radius: 20px 20px 0px 0px;
}

.video-banner .border-dashed {
position: absolute;
top: 0;
left: -3px;
bottom: 0;
width: calc(100% + 6px);
z-index: -1;
background-image: repeating-linear-gradient(0deg, var(--color-primary), var(--color-primary) 12px, transparent 12px, transparent 22px, var(--color-primary) 22px), repeating-linear-gradient(90deg, var(--color-primary), var(--color-primary) 12px, transparent 12px, transparent 22px, var(--color-primary) 22px), repeating-linear-gradient(180deg, var(--color-primary), var(--color-primary) 12px, transparent 12px, transparent 22px, var(--color-primary) 22px), repeating-linear-gradient(270deg, var(--color-primary), var(--color-primary) 12px, transparent 12px, transparent 22px, var(--color-primary) 22px);
background-size: 2px 100%, 100% 2px, 2px 100%, 100% 2px;
background-position: 0 0, 0 0, 100% 0, 0 100%;
background-repeat: no-repeat;
animation: borderAnimation 3s infinite linear;
}

.video-slider-next:after {
font-family: swiper-icons;
font-size: 20px;
text-transform: none !important;
letter-spacing: 0;
padding: 15px 18px;
font-variant: initial;
box-shadow: 0px 0px 5px 0px #ff5a3c8c;
line-height: 16px;
background: #ff5a3c;
color: white;
border-radius: 100%;
}
.video-slider-prev:after {
font-family: swiper-icons;
font-size: 20px;
text-transform: none !important;
letter-spacing: 0;
padding: 15px 18px;
font-variant: initial;
box-shadow: 0px 0px 5px 0px #a7a7a7a1;
line-height: 16px;
background: #A7A7A7;
color: white;
border-radius: 100%;
}
div#video-slider-next {
left: 1310px;
display: flex;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
width: 30px;
height: 30px;
}
div#video-slider-prev {
left: 1252px;
display: flex
;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
top: -22px;
}

/* -----------------------------------------
Halls CSS
----------------------------------------- */
.hall-section .select2-container .select2-selection--single .select2-selection__rendered{
color: #212121 !important;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.hall-section .select2-container--default .select2-selection--single .select2-selection__arrow b {
border: unset;
border-bottom: 2px solid #212121;
border-right: 2px solid #212121;
height: 9px;
transform-origin: 66% 66%;
transform: rotate(45deg);
width: 9px;
transition: all 0.15sease-in-out;
margin-top: -8px;
}
.hall-section .mb-4 {
margin-bottom: 2.2rem !important;
padding: 0px 20px;
}
.advertisement-section {
padding: 50px 0px;
}
.select2-container--default .select2-results__option--disabled {
color: #212121;
}
.select2-container--open .select2-dropdown--above{
width: 310px !important;
left: -19px;
background: #f7f9fc;
border-top: none !important;
top: 204px;
border: 1px solid black;
border-radius: 0px 0px 15px 15px;
padding: 10px;
z-index: 1;
}
.sponsor.aos-init.aos-animate {
padding: 20px 0px 50px;
}
span.select2-dropdown.select2-dropdown--below {
width: 310px !important;
left: -16.5px;
background: #f7f9fc;
border-top: none !important;
top: 6px;
z-index: 1;
border: 1px solid black;
border-radius: 0px 0px 15px 15px;
padding: 10px;
}
.hall-section.ptb-100.aos-init.aos-animate {
background: #F7F9FC;
}
.cat-heding {
color: #2b2b2b;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin: 30px 0px !important;
}
.category-img img {
position: relative;
z-index: 1;
border-radius: 27px;
}
span#select2-aqjo-container {
text-align: left;
}
.hall-dropdown.mt-2 {
text-align: left;
border-radius: 8.826px;
border: 1.059px solid #212121;
padding: 13px 5px 13px 15px;
}
.hall-dropdown .select2-container {
height: 24px;
}
.hall-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow {
height: 25px;
}
.overlay-img {
margin-top: -296px;
position: relative;
left: 50px;
z-index: 0;
}
.hall-dropdown select {
width: 100%;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
}
.cat-heding {
margin: 20px 0px !important;
}

/* Container for the whole navigation bar */

/* Center the navbar items */
.navbar-nav {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}

/* Style for navigation links */
.nav-item {
margin: 0 15px;
}

.nav-link {
color: white;
font-size: 16px;
font-weight: 500;
text-transform: capitalize;
transition: color 0.3s ease;
}

.dropdown-toggle::after {
display: inline-block;
margin-left: .255em;
vertical-align: 3px;
content: "";
border-top: .3em solid;
border-right: .3em solid transparent;
border-bottom: 0;
border-left: .3em solid transparent;
}

ul.dropdown-menu {
width: 350px;
border-radius: 0px 0px 20px 20px;

border: none;
font-family: Alexandria;
padding: 20px;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
box-shadow: 0px 5px 0px 0px #01a4d4;
}

.dropdown-menu li {
padding: 4px 0px;
}
/* Dropdown styles */

.nav-item:hover .dropdown-menu {
display: block;
}
.dropdown-menu {
display: none;
}
/* Button styles for login options */
.login-buttons {
display: flex;
gap: 20px;
margin-left: auto;
}
a.btn.btn-login {
color: #FFF;
text-align: center;
font-family: Alexandria;
font-size: 18px;
border: none;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}
i.fas.fa-user-circle.user-circle {
margin-right: 10px;
}
a.btn.btn-login:hover {
color: #e4b475;
}
.navbar-nav {
flex-direction: column;
align-items: center;
}

/* Additional styling for responsiveness */

.navbar-expand-lg .navbar-collapse{
display: flex !important
;
flex-basis: auto;
flex-grow: 0;
}
/* Active link styles */
.nav-item.active .nav-link {
color: #e4b475 !important;
font-weight: 600; /* Make it bold */
}

.nav-item.active .nav-link:hover {
color: #01a3d4 !important; /* Hover color for active item */
background-color: transparent; /* Keep background transparent */
}

/* Main Header */
.main-header {
background: white; /* White Background */
padding: 15px 0;
text-align: center;
position: relative;
}

.navbar-brand img {
margin: 0px 20px;

max-height: 100%;
width: 80%;
height: auto;
}

/* Bottom Header with Blue Line */
.bottom-header {
background: #0665a9; /* Blue Line Background */
padding: 0px 0;
}

.navbar-nav .nav-link {
color: #FFF;

font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
border-bottom: none;

}
.dropdown-item.active, .dropdown-item:active {
color: #e4b475;
text-decoration: none;
background-color: #ffffff;
}
.dropdown-item:focus, .dropdown-item:hover{
color: #e4b475;
text-decoration: none;
background-color: #ffffff;
}
.navbar-nav .nav-link:hover {
color:#e4b475 !important;
}
/* Login Buttons */
.btn-outline-light {
color: white;
border-color: white;
}

.btn-outline-light:hover {
background: white;
color: #4a1d8c;
}

/* Mobile Menu */
.mobile-menu {
text-align: right;
}
.projectsp .overlay-img {
margin-top: -202PX;
position: relative;
left: 30px;
z-index: 0;
}
.projectsp h6.cat-heding.mt-3 {
color: var(--Text-Colour-2, #2B2B2B);
font-family: Alexandria;
font-size: 14.614px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin: 5px 0px !important;
}
.pbutton i.fa.fa-chevron-up {
position: absolute;
color: white;
margin: -54px 0px 0px -30px;
background: #FF5A3C;
border-radius: 100%;
box-shadow: 0px 1px 20px 0px #ff5a3c;
padding: 15px 16px;
}





/*
detall project page */
.vendor-name p {
color: #212121;
font-size: 16px;
font-style: normal;
margin-top: 15px;
font-weight: 300;
text-align: center;
line-height: normal;
text-transform: capitalize;
}
.p-info {
border-radius: 20px;
background: #F3F3F3;
}
.psocial {
padding: 30px;
}
.dinfo .infp-t {
color: #FF5A3C;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
}
.infop {
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2 Columns */
gap: 30px; /* Spacing between items */
padding: 20px;
}
.dowload-info button.learn {
color: black;
margin-top: 28px;
}
.download-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index:999;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
}
.download-modal-content {
background: white;
padding: 50px;
border-radius: 10px;
width: 50%;
text-align: center;
position: relative;
}
.download-modal-overlay .dinfo {
margin-top: 50px;
display: grid
;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.download-close-modal {
position: absolute;
border-radius: 100%;
top: 10px;
right: 10px;
background: red;
color: white;
border: none;
padding: 5px 11px;
cursor: pointer;
}
button.download-more {
text-decoration: underline;
margin-top: 45px;
}

.infop li {
list-style: none;
background: #f5f5f5;
padding: 10px;
border-radius: 8px;
text-align: center;
font-size: 16px;
font-weight: bold;
}


.pgallery {
margin-top: 30px;
}

.tab-buttons {
display: flex;
justify-content: flex-start;
gap: 20px;
margin-bottom: 20px;
border-bottom: 1px solid #CACACA;
}

.tab-btn {
border-radius: 15px 15px 0px 0px;
background: #F2F2F2;
width: 158px;
padding: 12px;
text-align: center;
font-size: 18px;
word-wrap: break-word;
font-weight: 500;
color: #212121;
cursor: pointer;
}

.tab-btn.active {
    word-wrap: break-word;
background: #FF5A3C;
color: white;
}

.tab-content {
display: none;
}

.tab-content.active {
display: block;
}

/* Lightbox */
.lightbox-overlay {
    padding:20px;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 9999999;
}

.lightbox-content {
position: relative;
background: #fff;
padding: 20px;
word-wrap: break-word;
}

.lightbox-img {
max-width: 100%;
max-height: 80vh;
display: block;
}

.lightbox-close {
position: absolute;
top: 10px;
right: 10px;
word-wrap: break-word;
background: #ff5a3c;
border: none;
padding: 10px;
color: white;
font-weight: 300;
font-size: 42px;
line-height: 20px;
cursor: pointer;
border-radius: 50%;
}

/* Lightbox Navigation Buttons */
.lightbox-prev,
.lightbox-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(255, 255, 255, 0.5);
border: none;
font-size: 24px;
padding: 10px;
cursor: pointer;
color: black;
}

.lightbox-prev {
left: 10px;
}

.lightbox-next {
right: 10px;
}
img.lightbox-image {
height: 644px;
width: 100%;
}
/* Slider */
.slider-container {
position: relative;

width: 100%;
max-width: 1000px;
height: 644px;
margin: auto;
overflow: hidden;
border-radius: 30px;
}

.slider {
display: flex;
transition: transform 0.5s ease-in-out;
}

.gallery-image {
min-width: 100%;
height: 100%;
background-size: cover;
border-radius: 20px;
background-position: center;
}

.infop i {
padding-bottom: 20px;
background: black;
    margin: 10px auto !important;
color: white;
border-radius: 100%;
text-align: center;
padding: 11px;
font-size: 24px;
max-width: 100%;
width: 45.225px;
margin-left: 0px;
margin-bottom: 10px;
height: 45.225px;
flex-shrink: 0;

align-items: center;
justify-content: center;
display: block;
}
.long-dec p {
margin-top: 30px;
color: #5C5C5C;
font-family: Alexandria;
font-size: 20px;
font-style: normal;
word-wrap: break-word;
font-weight: 400;
line-height: 30px;
}
.modal-overlay.blearn {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: none;
justify-content: center;
z-index: 99999999999999999;
align-items: center;
}
button.learn {
padding: 0px;
color: #5C5C5C;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 33.429px; /* 167.143% */
text-decoration: underline;
}
.dtitile {
color: #FFF;
font-size: 22px;
margin: 60px 50px 0px;
font-style: normal;
font-weight: 500;
font-family: Alexandria;
line-height: 47px;
border-radius: 20px 20px 0px 0px;
border: 1px solid #FF5A3C;
background: #FF5A3C;
}
.download-info {
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2 Columns */
gap: 20px;
max-width: 400px;
margin: auto;
padding: 20px;
}
.dinfo {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.dinfo li {
list-style: none;

padding: 20px;
border-radius: 10px;
text-align: center;
font-size: 16px;
font-weight: bold;
}
.infp-t {
color: #212121;
leading-trim: both;
text-edge: cap;
font-family: Alexandria;
font-size: 16px;
margin-top: 17px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.dinfo a {
color: #FF5A3C;
leading-trim: both;
text-edge: cap;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
}
.dinfo i {
font-size: 30px;
background: black;
color: white;
padding: 15px;
border-radius: 50%;
}
.dowload-info {

border-radius: 20px;
background: #FFEFEB;
padding: 30px;
}
.psocial {
padding: 30px;
border-bottom: 1px solid #CACACA;
}
.infop {
padding: 30px;
}
.psocial i {
padding-bottom: 20px;
background: black;
margin: 0px auto;
color: white;
border-radius: 100%;
text-align: center;
padding: 11px;
font-size: 24px;
width: 45.225px;
margin-bottom: 10px;
height: 45.225px;
flex-shrink: 0;
align-items: center;
justify-content: center;
display: flex
;
}

/* Modal overlay styling */
.blearn .modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: none; /* Initially hidden */
justify-content: center;
align-items: center;
z-index: 9999999999;
overflow: auto; /* In case of a large modal */
}

.blearn .modal-content {
position: fixed;
top: 16%;
left: 25%;
background-color: white;
text-align: left;
padding: 42px;
border-radius: 20px;
z-index: 9999999999;
max-width: 900px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Close button styling */
.blearn .close-modal {
position: absolute;
top: 10px;
right: 10px;
padding: 20px 15px;
background-color: #f44336;
color: white;
font-size: 18px;
border: none;
border-radius: 50%;
line-height: 0px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.blearn /* Close button hover effect */
.close-modal:hover {
background-color: #d32f2f;
}

/* Content text inside the modal */
.long-dec p {
font-size: 18px;
line-height: 30px;
color: #333;
}


.psocial ul {
display: flex;
color: #212121;
font-family: Alexandria;
font-size: 14.654px;
font-style: normal;
justify-content: space-between;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
}
.psocial li {
display: ruby;
gap: 10px;
}

.detail-header {
display: flex
;
justify-content: space-between;
align-items: flex-end;
padding-bottom: 30px;
border-bottom: 1px solid #CACACA;
}
.projectpage-text h2.title {
color: #212121;
text-align: left;
font-family: Alexandria;
font-size: 34px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.projectpage-text p.description {
color: #212121;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.318px;
margin-bottom: 0px;
text-transform: capitalize;
}
button.btn.intrest:hover {
border-radius: 79.074px;
background: #ff5a3c;
}
button.btn.intrest {
border-radius: 79.074px;
background: #3F318F;
color: #FFF;
text-align: center;
font-family: Alexandria;
display: flex
;
width: 280px;
padding: 15.929px 36.836px;
justify-content: center;
align-items: center;
gap: 9.956px;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
/* end */



.hallsp .property-meta.d-flex.justify-content-between {
padding: 0px 10px;
}
.pp img {
width: 100%;
border-radius: 18.059px!important;
}
button.about-btn {
justify-content: center;
padding: 0px;
color: #ff5a3c;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 400;
text-align: center;
line-height: 33.429px;
text-decoration: underline;
align-items: center;
display: flex
;
width: 100%;
margin-top: 20px;
}
.project-footer.hallsp {
margin-left: 27px;
width: 389.063px;
height:185px;
flex-shrink: 0;
margin-top: -2px;
padding: 30px 0px 0px;
border-radius: 0px 0px 13.544px 13.544px;
border: 0.871px solid #FE625B;
box-shadow: 2.682px 6.705px 20.116px 0px rgba(0, 0, 0, 0.03);
}
/* Image Section */
.property-image img {
width: 100%;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}

/* Info Section */
.property-info {
padding: 15px;
text-align: center;
}

.property-title {
font-size: 1.2rem;
font-weight: bold;
margin-bottom: 5px;
}

.property-description {
font-size: 0.9rem;
color: #666;
}

/* Meta Information */
.property-meta {
font-size: 0.85rem;
color: #333;
margin-bottom: 10px;
}

/* Button Styling */
.btn-danger {
background-color: #d9534f;
border: none;
padding: 10px;
border-radius: 5px;
}

.btn-danger:hover {
background-color: #c9302c;
}

.menu-toggler {
background: none;
border: none;
display: flex;
flex-direction: column;
gap: 5px;
}

.menu-toggler span {
width: 30px;
height: 3px;
background: white;
display: block;
}
.project-img img {
width: 100%; /* Ensures the image takes the full width of its container */
height: auto; /* Maintains aspect ratio */
max-width: 100%; /* Prevents image overflow */
display: block; /* Removes extra spacing */
object-fit: cover; /* Ensures the image covers the entire container */
}
.project-img {
width: 100%;
height: 300px; /* Adjust as needed */
overflow: hidden;
}

.project-img img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* -----------------------------------------
project Banner CSS
----------------------------------------- */
.video-section.ptb-50.aos-init.aos-animate {
padding: 50px 0px;
}
.vendor-img {
background-color: white;
align-items: center;
fill: #FFF;
stroke-width: 0.997px;
width: 50px;
margin-right: 10px;
height: 50px;
text-align: center;

border-radius: 100%;
stroke: #E9E9E9;
border: 1px solid #E9E9E9;
justify-content: center;
display: flex
;
}
.project-header a {
color: #212121;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-transform: capitalize;
}





button.next {
position: relative;
color: white;
top: -57%;
border-radius: 100%;
background: black;
padding: 13px 16px;
font-size: 16px;
line-height: 16px;
left: 90%;
}

button.prev {
position: relative;
background: black;
padding: 13px 16px;
font-size: 16px;
line-height: 16px;
color: white;
top: -57%;
border-radius: 100%;
background: black;
left: 10px;
padding: 13px 16px;
font-size: 16px;
line-height: 16px;
}
button.prev.lightbox-prev {
position: absolute;
top: 50%;
left: 28px;
}

button.next.lightbox-next {
position: absolute;
left: auto;
top: 50%;
right: 28px;
}

div#project-section-next {
left: 1310px;
display: flex
;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
width: 30px;
height: 30px;
}
/* Search Bar Container */
.search-bar {
display: flex;
align-items: center;
gap: 25px;
background: #f8f9fa; /* Light background */
padding: 10px;
border-radius: 8px;
}
.search-bar .select2-container--open .select2-dropdown--below{
width: 315px !important;
left: -23px;
background: #f7f9fc;
border-top: none !important;
top: 12px;
z-index: 1;
border: 1px solid black;
border-radius: 0px 0px 15px 15px;
padding: 10px;
}
/* Dropdown and Input Fields */
.search-bar select,
.search-bar input {
flex: 1;
min-width: 150px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

/* Search Button */
.search-bar button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #ff5a3c; /* Red color */
color: white;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}
.search-section.ptb-100.aos-init.aos-animate {
background: #f7f9fc;
padding: 10px 150px;
}
.search-bar button:hover {
background-color: #e04a2c;
}
.search-bar .hall-dropdown.mt-2 {
width: 25%;
display: inline-flex
;
padding: 13px 21.512px 13px 22px;
justify-content: center;
align-items: center;
gap: 26px;
border-radius: 7.092px;
border: 0.851px solid #212121;
}
.search-bar .select2-container .select2-selection--single .select2-selection__rendered {
color: #212121;
text-align: left;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.search-bar input.form-control.keyword {
border-radius: 7.092px;
color: #212121;
padding: 24.438px 21.512px 24.968px 22px;
display: inline-flex;
align-items: center;
text-align: left;
font-family: Alexandria;
margin-top: .5rem !important;
font-size: 16px;
height: 28px;
font-style: normal;
background: transparent;
font-weight: 400;
line-height: 28px;
border: 0.851px solid #212121!important;
}
.search-bar button.btn.btn-danger {
border-radius: 79.426px;
display: flex
;
width: 220px;
padding: 16px 37px;
justify-content: center;
align-items: center;
gap: 10px;
color: #FFF;
text-align: center;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: normal;
background: #FF5A3C;
}


div#project-section-prev {
left: 1252px;
display: flex
;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
top: -22px;
}
.vendor-img img.ls-is-cached.lazyloaded {
width: 63%;
}
.projects-slider {
margin: 0px 5px;
}
.project-section.ptb-100.aos-init.aos-animate {
margin: 0px !important;
padding: 50px;
background: #F7F9FC;
}
.projects-card {
background: transparent;
border-radius: 13.535px;
border: 0.87px solid #FE625B;
box-shadow: 2.68px 6.701px 20.102px 0px rgba(0, 0, 0, 0.03);
padding: 15px 0px 5px;
}
.company-desc {
color: #5C5C5C;
font-family: Alexandria;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 20.942px;
padding: 10px 20px;
display: -webkit-box;
word-wrap: break-word;
-webkit-line-clamp: 2;
max-height: 4em;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.pdetail.d-flex.justify-content-between {
margin-bottom: 13px;
border-bottom: 1px solid #FE625B;
}
.project-header {
display: flex;
align-items: center;
padding: 0px 20px 10px;
gap: 10px;

}

.company-logo {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: contain;
}

.company-name {
font-size: 16px;
font-weight: bold;
}
span.mtitle {
color: #212121;
font-family: Alexandria;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
text-transform: capitalize;
}
span.mnumber {
color: #212121;
font-family: Alexandria;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: capitalize;
}


.project-img img {
width: 100%;
border-radius: 0px;
}

.project-footer {
padding: 20px 20px 0px;
}
.hallsp .property-name {
text-align: center;
}

.hallsp .pro-detail {
border-bottom: 1px solid #FE625B;
margin-bottom: 15px;
}
.property-name {
color: #212121;
text-align: left;
font-family: Alexandria;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.property-details {
color: #212121;
font-family: Alexandria;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
letter-spacing: -0.18px;
text-transform: capitalize;
}

.property-meta {
font-size: 13px;
color: #555;
margin-bottom: 10px;
}

.pro-button a.btn.btn-primary.btn-sm {
display: flex
;
width: 99.311px;
height: 37.861px;
padding: 10.454px 24.175px;
justify-content: center;
align-items: center;
gap: 6.534px;
border-radius: 51.894px;
background: #FF5A3C;
flex-shrink: 0;
}

/* -----------------------------------------
about Banner CSS
----------------------------------------- */

.about-us-section {
padding: 50px 0;
}
.about-text .caption {
font-size: 16px;
color: #ff4a3b;
font-weight: bold;
margin-bottom: 10px;
}

.about-text .title {
color: var(--Text-Colour-2, #2B2B2B);
font-family: Alexandria;
font-size: 34px;
font-style: normal;
margin-bottom: 25px;
font-weight: 600;
line-height: 44px;
}
.about-text .description {
color: #5C5C5C;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}

.about-text .btn {
color: #FF5A3C;
margin-top: 20px !important;
border-radius: 79.426px;
display: flex;
width: 175px;
padding: 16px 30px;
justify-content: center;
align-items: center;
border: 1px solid;
gap: 10px;
text-align: center;
font-family: Alexandria;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
background-color: transparent;
}
.about-text {
padding-right: 100px;
}
.hall-section {
padding: 50px 0px;
}
.about-text .btn:hover {
color: white;
background-color: #e33d30;
border-color: #e33d30;
}

.about-image img {
width: 100%;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}



/* -----------------------------------------
Ads Banner CSS
----------------------------------------- */
.advertisement-slider-next:after {
font-family: swiper-icons;
font-size: 20px;
text-transform: none !important;
letter-spacing: 0;
padding: 15px 18px;
font-variant: initial;
box-shadow: 0px 0px 5px 0px #ff5a3c8c;
line-height: 16px;
background: #ff5a3c;
color: white;
border-radius: 100%;
}
.advertisement-slider-prev:after {
font-family: swiper-icons;
font-size: 20px;
text-transform: none !important;
letter-spacing: 0;
padding: 15px 18px;
font-variant: initial;
box-shadow: 0px 0px 5px 0px #a7a7a7a1;
line-height: 16px!important;
background: #A7A7A7;
color: white;
border-radius: 100%;
}
div#advertisement-slider-next {
left: 1310px;
display: flex;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
width: 30px;
height: 30px;
}
div#advertisement-slider-prev {
left: 1252px;
display: flex
;
position: relative;
align-items: flex-end;
justify-content: flex-end;
text-align: right;
top: -22px;
}

/* -----------------------------------------
Work Process CSS
----------------------------------------- */
.work-process .process-item {
transition: all 0.4s ease-out;
}

.work-process .process-item .process-icon {
display: flex;
align-items: center;
justify-content: center;
position: relative;
width: 230px;
height: 230px;
margin-inline: auto;
}

.work-process .process-item .progress-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 160px;
height: 160px;
border-radius: 50%;
margin-inline: auto;
background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process .process-item .progress-content i {
font-size: 45px;
}

.work-process .process-item .progressbar-circle {
stroke: var(--color-primary);
stroke-linecap: round;
}

.work-process .process-item .progressbar-line-inner {
position: absolute;
top: 0;
left: 15px;
right: 0;
bottom: -15px;
margin: auto;
width: 215px;
height: 215px;
z-index: -1;
}

.work-process .process-item .progressbar-line-inner svg {
width: 215px;
height: 215px;
}

.work-process .process-item .progressbar-line-outer {
width: 230px;
height: 230px;
mask: url(../images/arrow-circle.svg) no-repeat center/contain;
-webkit-mask: url(../images/arrow-circle.svg) no-repeat center/contain;
background: var(--color-primary);
transform: rotateZ(-40deg);
}

.work-process .process-item .progressbar-line-outer.rotate-0 {
transform: rotateZ(0deg);
}

.work-process .process-item .progressbar-line-outer.rotate-30 {
transform: rotateZ(30deg);
}

.work-process .process-item .progressbar-line-outer.rotate-60 {
transform: rotateZ(60deg);
}

.work-process .process-item .process-title {
font-size: var(--font-lg);
}

.work-process .color-1 .process-icon {
color: var(--color-primary);
}

.work-process .color-1 .process-icon .progressbar-circle {
stroke: var(--color-primary);
}

.work-process .color-1 .card-icon {
color: var(--color-primary);
background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process .color-1 .card-step span {
background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process .color-2 .process-icon {
color: #14C6AF;
}

.work-process .color-2 .process-icon .progress-content {
background: rgba(20, 198, 175, 0.13);
}

.work-process .color-2 .process-icon .progressbar-circle {
stroke: #14C6AF;
}

.work-process .color-2 .card-icon {
color: #14C6AF;
background: rgba(20, 198, 175, 0.13);
}

.work-process .color-2 .card-step span {
background: rgba(20, 198, 175, 0.13);
}

.work-process .color-3 .process-icon {
color: #2CC3F3;
}

.work-process .color-3 .process-icon .progress-content {
background: rgba(44, 195, 243, 0.13);
}

.work-process .color-3 .process-icon .progressbar-circle {
stroke: #2CC3F3;
}

.work-process .color-3 .card-icon {
color: #2CC3F3;
background: rgba(44, 195, 243, 0.13);
}

.work-process .color-3 .card-step span {
background: rgba(44, 195, 243, 0.13);
}

.work-process .color-4 .process-icon {
color: #F24343;
}

.work-process .color-4 .process-icon .progress-content {
background: rgba(242, 67, 67, 0.13);
}

.work-process .color-4 .process-icon .progressbar-circle {
stroke: #F24343;
}

.work-process .color-4 .card-icon {
color: #F24343;
background: rgba(242, 67, 67, 0.13);
}

.work-process .color-4 .card-step span {
background: rgba(242, 67, 67, 0.13);
}

.work-process .color-5 .process-icon {
color: #F57A09;
}

.work-process .color-5 .process-icon .progress-content {
background: rgba(245, 122, 9, 0.13);
}

.work-process .color-5 .process-icon .progressbar-circle {
stroke: #F57A09;
}

.work-process .color-5 .card-icon {
color: #F57A09;
background: rgba(245, 122, 9, 0.13);
}

.work-process .color-5 .card-step span {
background: rgba(245, 122, 9, 0.13);
}

.work-process .color-6 .process-icon {
color: #6B76FF;
}

.work-process .color-6 .process-icon .progress-content {
background: rgba(107, 118, 255, 0.13);
}

.work-process .color-6 .process-icon .progressbar-circle {
stroke: #6B76FF;
}

.work-process .color-6 .card-icon {
color: #6B76FF;
background: rgba(107, 118, 255, 0.13);
}

.work-process .color-6 .card-step span {
background: rgba(107, 118, 255, 0.13);
}

.work-process .color-7 .process-icon {
color: #ED798E;
}

.work-process .color-7 .process-icon .progress-content {
background: rgba(237, 121, 142, 0.13);
}

.work-process .color-7 .process-icon .progressbar-circle {
stroke: #ED798E;
}

.work-process .color-7 .card-icon {
color: #ED798E;
background: rgba(237, 121, 142, 0.13);
}

.work-process .color-7 .card-step span {
background: rgba(237, 121, 142, 0.13);
}

.work-process .color-8 .process-icon {
color: #B3CDE3;
}

.work-process .color-8 .process-icon .progress-content {
background: rgba(179, 205, 227, 0.13);
}

.work-process .color-8 .process-icon .progressbar-circle {
stroke: #B3CDE3;
}

.work-process .color-8 .card-icon {
color: #B3CDE3;
background: rgba(179, 205, 227, 0.13);
}

.work-process .color-8 .card-step span {
background: rgba(179, 205, 227, 0.13);
}

.work-process-2 .card {
background: transparent;
padding-inline-end: 14px;
padding-inline-start: 20px;
padding-top: 28px;
padding-bottom: 7px;
}

.work-process-2 .card-content {
position: relative;
padding: 30px 25px;
}

.work-process-2 .card-icon {
width: 50px;
height: 50px;
line-height: 50px;
margin-bottom: 20px;
border-radius: 5px;
text-align: center;
font-size: 25px;
margin-inline: auto;
color: var(--color-primary);
background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process-2 .card-step {
position: absolute;
left: 0;
right: 0;
margin-inline-start: -20px;
margin-inline-end: auto;
width: 90px;
height: 60px;
line-height: 40px;
text-align: center;
background: var(--color-white);
display: flex;
align-items: center;
}

.work-process-2 .card-step span {
display: block;
width: 70px;
height: 40px;
line-height: 40px;
border-radius: 5px;
background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process-2 .card .line {
position: absolute;
background: var(--color-primary);
border-radius: 30px;
left: 0;
right: 0;
margin-inline-start: auto;
margin-inline-end: 0;
}

.work-process-2 .card .line-top {
top: 0;
width: 50%;
height: 14px;
}

.work-process-2 .card .line-bottom {
bottom: 0;
width: 50%;
height: 14px;
}

.work-process-2 .card .line-right {
top: 0;
height: 100%;
width: 14px;
}

.work-process-2 .card-title {
margin-bottom: 15px;
}

/* -----------------------------------------
Pricing CSS
----------------------------------------- */
.pricing-item {
position: relative;
overflow: hidden;
padding: 40px;
border: 1px solid var(--border-color);
background: var(--color-white);
transition: all 0.3s ease-out;
z-index: 1;
}

.pricing-item::after {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--color-primary);
transform: translateX(calc(-100% - 2px));
transition: transform 0.5s ease-out;
z-index: -1;
}

.pricing-item .icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 64px;
height: 64px;
font-size: 32px;
text-align: center;
border-radius: 10px;
background-color: var(--color-light);
color: var(--color-primary);
}

.pricing-item .icon.blue {
color: var(--color-blue);
background-color: rgba(var(--color-blue-rgb), 0.13);
}

.pricing-item .icon.cyan {
color: var(--color-cyan);
background-color: rgba(var(--color-cyan-rgb), 0.13);
}

.pricing-item .icon.red {
color: var(--color-red);
background-color: rgba(var(--color-red-rgb), 0.13);
}

.pricing-item .label {
padding-inline-start: 16px;
}

.pricing-item .label span {
display: inline-block;
padding: 5px 18px;
border-radius: 30px;
margin-top: 5px;
font-size: 12px;
font-weight: 500;
background-color: var(--color-white);
color: var(--color-primary);
display: none;
}

.pricing-item h3 {
margin-bottom: 0;
}

.pricing-item .text {
margin-top: 20px;
margin-bottom: 30px;
}

.pricing-item .price {
font-family: var(--font-family-base);
font-weight: 700;
color: var(--color-dark);
font-size: 48px;
line-height: 1;
margin-inline-end: 10px;
}

.pricing-item h5 {
margin-top: 5px;
margin-bottom: 30px;
}

.pricing-item .item-list {
margin-bottom: 0;
color: var(--color-dark);
}

.pricing-item .item-list li {
margin-bottom: 10px;
}

.pricing-item .item-list i {
width: 25px;
height: 25px;
line-height: 25px;
border-radius: 50%;
text-align: center;
font-size: 14px;
color: var(--color-white);
background-color: var(--color-primary);
margin-inline-end: 10px;
}

.pricing-item .btn {
background-color: var(--color-white) !important;
color: var(--color-primary) !important;
margin-top: 35px;
}

.pricing-item .show-more {
display: inline-block;
color: var(--color-dark);
margin-top: 5px;
cursor: pointer;
transition: transform 0.4s ease-out;
}

.pricing-item .show-more:hover {
transform: translateX(5px);
}

.pricing-item .disabled {
background: transparent !important;
}

.pricing-item :is(h3, .text, .price, .period, h5, .item-list) {
transition: color 0.2s linear;
transition-delay: 0.1s;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) {
box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active)::after {
transform: none;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .icon.blue {
background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .icon.cyan {
background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .icon.red {
background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) :is(.text, .period) {
color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .label span {
display: inline-block;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .disabled i {
border-color: transparent;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .item-list i {
color: var(--color-dark);
background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .secondary-btn {
border-color: var(--color-white);
color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .primary-btn {
color: var(--color-primary);
background: unset;
background-color: var(--color-white);
}

.pricing-item:hover {
border-color: transparent;
box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
transform: none;
}

.pricing-area .tab-pane {
animation: none;
}

.pricing-area .tab-pane.active {
animation: slideUp 0.3s ease-out 1;
}

/* -----------------------------------------
Projects CSS
----------------------------------------- */
.projects-area {
position: relative;
overflow: hidden;
}

.projects-area .card {
overflow: hidden;
}

.projects-area .card::before {
position: absolute;
content: "";
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(180.24deg, rgba(255, 255, 255, 0) -6.42%, rgba(18, 18, 18, 0.736) 77.04%, rgba(12, 12, 12, 0.8) 99.79%);
z-index: 2;
}

.projects-area .card .card-img {
position: relative;
overflow: hidden;
}

.projects-area .card .card-img img {
transition: transform 0.3s ease-out;
}

.projects-area .card .label {
position: absolute;
top: 20px;
left: 0;
right: 0;
margin-inline-start: 0;
margin-inline-end: auto;
width: -moz-fit-content;
width: fit-content;
padding: 6px 12px;
border-radius: 0 5px 5px 0;
font-size: 14px;
font-weight: 600;
background: var(--color-white);
color: var(--color-primary);
z-index: 2;
}

.projects-area .card .user {
display: flex;
align-items: center;
gap: 10px;
width: fit-content;
margin-inline: auto;
padding: 5px;
padding-inline-end: 10px;
background-color: var(--color-white);
}

.projects-area .card .user .user-img {
flex: 0 0 auto;
width: 25px;
}

.projects-area .card .user .user-info * {
color: var(--color-dark);
font-size: var(--font-sm);
}

.projects-area .card .card-text {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: 15px 0;
z-index: 2;
display: flex;
flex-direction: column;
justify-content: end;
align-items: center;
}

.projects-area .card .card-text span {
color: rgba(var(--color-white-rgb), 0.9);
}

.projects-area .card:hover .card-img img {
transform: scale3d(1.05, 1.05, 1.05);
}

.request-loader {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: #0000007a;
z-index: 10000;
display: none;
}

.request-loader img {
position: fixed;
display: none;
width: 80px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.request-loader.show {

display: block;
}

.request-loader.show img {
display: block;
}

/*---=========================
Start Cookie Alert
=========================---*/
.cookie-consent {
position: fixed;
background-color: #262938;
bottom: 0px;
width: 100%;
padding: 15px 0px;
z-index: 99999;
color: #fff;
}

.cookie-container {
display: flex;
justify-content: space-between;
align-items: center;
}

button.cookie-consent__agree {
padding: 10px 20px;
border: none;
background-color: var(--color-primary);
color: #fff;
cursor: pointer;
border-radius: 3px;
font-size: 14px;
}

p.cookie-consent__message {
background-color: transparent !important;
font-size: 14px;
}

p.cookie-consent__message * {
color: #fff;
}



/*---=========================
Start Popup
=========================---*/
.popup-wrapper {
display: none;
}

.popup_main-content h1 {
font-size: 40px;
line-height: 50px;
}

.bg_cover {
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}

.mfp-close-btn-in .mfp-close {
color: #333;
background: #FFF;
opacity: 1;
border-radius: 50%;
width: 30px;
height: 30px;
line-height: 32px;
right: -15px;
top: -15px;
}

.popup-wrapper {
position: relative;
width: auto;
max-width: 960px;
margin: 0 auto;
}

.popup-wrapper .form_control {
width: 100%;
height: 70px;
padding: 0 30px;
line-height: 70px;
}

/* Popup-one */
.popup-one {
position: relative;
padding: 138px 120px;
}

.popup-one .popup_main-content {
position: relative;
text-align: center;
background-color: rgba(69, 29, 83, 0.8);
border-radius: 10px;
padding: 90px 55px;
}

.popup-one .popup_main-content h1,
.popup-one .popup_main-content p {
color: #fff;
}

.popup-one .popup_main-content h1 {
margin-bottom: 20px;
}

.popup-one .popup_main-content p {
margin-bottom: 30px;
}

.popup-one .popup_main-content .popup-main-btn {
padding: 15px 100px;
display: inline-block;
color: #fff;
border-radius: 40px;
border: 1px solid #fff;
text-decoration: none;
transition: .3s;
-webkit-transition: .3s;
-moz-transition: .3s;
-ms-transition: .3s;
-o-transition: .3s;
}

.popup-one .popup_main-content .popup-main-btn:hover,
.popup-one .popup_main-content .popup-main-btn:focus {
background-color: #451D53;
color: #fff;
border-color: transparent;
}

/* Popup-two */

.popup-two {
position: relative;
padding: 120px;
}

.popup-two .popup_main-content {
position: relative;
text-align: center;
background-color: rgba(255, 40, 101, 0.7);
border-radius: 10px;
padding: 90px 55px;
}

.popup-two .popup_main-content h1,
.popup-two .popup_main-content p {
color: #fff;
}

.popup-two .popup_main-content h1 {
margin-bottom: 20px;
}

.popup-two .popup_main-content p {
margin-bottom: 30px;
}

.popup-two .popup_main-content .subscribe-form {
padding: 0 70px;
}

.popup-two .popup_main-content .subscribe-form .form_control {
border: none;
border-radius: 10px;
font-size: 20px;
margin-bottom: 20px;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn {
width: 100%;
border: 1px solid #fff;
background-color: transparent;
color: #fff;
font-size: 20px;
height: 70px;
border-radius: 10px;
cursor: pointer;
transition: all .3s;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-two .popup_main-content .subscribe-form .popup-main-btn:focus {
background-color: #FF2865;
color: #fff;
border-color: transparent;
}


/* Popup-three */

.popup-three .popup_main-content {
display: flex;
align-items: center;
flex-wrap: wrap;
background-color: #fff;
}

.popup-three .popup_main-content .left-bg {
width: 45%;
height: 100%;
min-height: 670px;
}

.popup-three .popup_main-content .right-content {
width: 55%;
padding: 30px 15px;
text-align: center;
}

.popup-three .popup_main-content .right-content h1 {
font-weight: 400;
margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content p {
margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content .popup-main-btn {
padding: 15px 70px;
background-color: #FF2865;
color: #fff;
font-size: 19px;
border-radius: 35px;
display: inline-block;
text-decoration: none;
}

/* Popup-four */

.popup-four .popup_main-content {
display: flex;
align-items: center;
flex-wrap: wrap;
background-color: #fff;
}

.popup-four .popup_main-content .left-bg {
width: 45%;
height: 100%;
min-height: 670px;
}

.popup-four .popup_main-content .right-content {
width: 55%;
padding: 30px 30px;
text-align: center;
}

.popup-four .popup_main-content .right-content h1 {
font-weight: 400;
margin-bottom: 20px;
}

.popup-four .popup_main-content .right-content p {
margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form {
padding: 0 70px;
}

.popup-four .popup_main-content .subscribe-form .form_control {
border: 2px solid #C5C5C5;
border-radius: 10px;
font-size: 20px;
margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn {
width: 100%;
background-color: #F8960D;
color: #fff;
font-size: 20px;
height: 70px;
border-radius: 10px;
cursor: pointer;
border: none;
transition: all .3s;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-four .popup_main-content .subscribe-form .popup-main-btn:focus {
background-color: #F8960D;
color: #fff;
border-color: transparent;
}


/* Popup-five */

.popup-five .popup_main-content {
text-align: center;
padding: 75px;
}

.popup-five .popup_main-content h1 {
font-size: 42px;
line-height: 52px;
font-weight: 400;
color: #fff;
margin-bottom: 20px;
margin: 0 auto 20px;
max-width: 600px;
}

.popup-five .popup_main-content h4 {
color: #fff;
font-size: 25px;
font-weight: 35px;
margin-bottom: 40px;
font-weight: 400;
}

.popup-five .popup_main-content .popup-main-btn {
padding: 15px 30px;
display: inline-block;
color: #fff;
background-color: #29A19C;
border-radius: 40px;
text-decoration: none;
}

/* Popup-six */
.popup-six .popup_main-content {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
background-color: #fff;
text-decoration: none;
}

.popup-six .popup_main-content .left-bg {
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
}

.popup-six .popup_main-content .right-content {
background-color: #930077;
width: 50%;
height: 100%;
padding: 120px 15px;
text-align: center;
margin-left: 50%;
}

.popup-six .popup_main-content .right-content h1 {
font-size: 40px;
font-weight: 400;
line-height: 50px;
color: #fff;
margin-bottom: 25px;
}

.popup-six .popup_main-content h4 {
color: #fff;
font-size: 20px;
line-height: 32px;
margin-bottom: 40px;
font-weight: 400;
}

.popup-six .popup_main-content .right-content .popup-main-btn {
padding: 15px 30px;
display: inline-block;
color: #ffffff;
background-color: #494949;
border-radius: 40px;
text-decoration: none;
}

/* syotimer css */
.popup-wrapper .syotimer__body {
max-width: 420px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 30px;
}

.popup-wrapper .syotimer__body p {
color: #fff;
}

.popup-wrapper .syotimer-cell {
flex: 0 0 24%;
padding-left: 10px;
padding-right: 10px;
}

.popup-wrapper .syotimer-cell__value {
width: 100%;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
background: #1F3A52;
border-radius: 10px;
font-size: 36px;
color: #fff;
margin-bottom: 15px;
border: 0;
}

.popup-wrapper .syotimer-cell__value:after {
content: none;
}

.popup-wrapper .syotimer-cell__unit {
font-size: 20px;
color: #fff;
text-transform: capitalize;
}



.popup-one .popup_main-content h1,
.popup-three .popup_main-content .right-content h1,
.popup-four .popup_main-content .right-content h1,
.popup-five .popup_main-content h1,
.popup-six .popup_main-content .right-content h1 {
font-size: 40px;
line-height: 50px;
}

.popup-wrapper {
max-width: 720px;
}

.popup-two .popup_main-content .subscribe-form,
.popup-four .popup_main-content .subscribe-form {
padding: 0 15px;
}

.popup-one,
.popup-two {
padding: 80px 30px;
}

.syotimer__body {
margin-bottom: 0px;
}

.syotimer-cell {
flex: 0 0 50%;
margin-bottom: 20px;
}







/* popup css end */

/* .actions {
display: block;
text-align: center;
} */

.actions .action-btn {
text-align: center;
}

.actions .action-btn a.call {
background: #ed2476;
}

.actions .action-btn a.whatsapp {
background: #25d366;
}

.actions .action-btn a.mail {
background-color: #BB001B;
}

.actions .action-btn .btn:hover {
color: #fff;

}

.actions a {
background-color: #4B3869;
color: #fff;
padding: 0;
border-radius: 50%;
height: 40px;
width: 40px;
line-height: 40px;
font-size: 16px;
}

.actions .action-btn span {
color: #000;
font-weight: 600;
font-size: 12px;
}

.more-btns a {
display: inline-block;
background-color: #FF5C58;
color: #fff;
width: 150px;
text-align: center;
padding: 8px 0px;
border-radius: 50px;
font-size: 12px;
}



.actions a.facebook {
background: #4267B2;
}

.actions a.linkedin {
background: #0077b5;
}

.actions a.twitter {
background: #1DA1F2;
}

.actions a.sms {
background: #4180ec;
}

.flex-auto {
flex: 0 0 auto;
}

.bg-facebook {
color: #fff;
background: #4267B2;
}

.bg-google {
color: #fff;
background: #DB4437;
}

.form-check-input:checked {
background-color: var(--color-primary);
border-color: var(--color-primary);
}

/* Select2 */
.select2.select2-container.select2-container--default {
width: 100% !important;
}

.select2-container {
height: 44px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
padding: 0;
margin: 0;
border: 0;
height: 100%;
font-size: var(--font-base);
color: var(--color-medium);
font-weight: 400;
background: transparent;
}

.select2-container ::-webkit-scrollbar {
width: 0;
}

.select2-container--default .select2-selection--single {
border: unset;
padding: 0;
background-color: transparent;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
border-color: var(--border-color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
color: var(--color-primary);
background:none;
}

.select2-dropdown {
min-width: 200px;
color: var(--color-dark);
border-radius: var(--radius-sm);
border: unset;
box-shadow: var(--shadow-md);
}

.select2-results__option {
padding-inline: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
left: 0;
right: 0;
margin-inline: auto 10px;
}


.select2-container--default .select2-selection--single .select2-selection__arrow b {
border: unset;
border-bottom: 2px solid #5a5a5a;
border-right: 2px solid #5a5a5a;
height: 7px;
transform-origin: 66% 66%;
transform: rotate(45deg);
width: 7px;
transition: all 0.15s ease-in-out;
margin-top: -4px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
border: unset;
border-bottom: 2px solid #5a5a5a;
border-right: 2px solid #5a5a5a;
transform: rotate(-135deg);
}
.home-img-slider .swiper-slide {

background-size: cover;
background-position: center;
}
.home-img-slider .swiper-slide img {
display: none; /* Hide the img tag if using background-image */
}
/* offline css start */
.error-area .offline {
margin-bottom: 30px;
}

.error-area {
position: relative;
overflow-x: hidden;
display: grid;
place-items: center;
text-align: center;
}

/* offline css end */
::-webkit-scrollbar-track {
background-color: #F3F3F3;
}

::-webkit-scrollbar-thumb {
border-radius: 30px;
background: rgba(var(--color-dark-rgb), 0.2);
}




@media only screen and (max-width: 1366px) {
   
        div#project-section-prev {
        left: 1252px!important;
        
        }
        div#project-section-next {
        left: 1310px!important;
        
        }
        div#video-slider-next {
        left: 1310px!important;
        
        }
        div#video-slider-prev {
        left: 1252px!important;
        display: flex
        ;
        position: relative;
        align-items: flex-end;
        justify-content: flex-end;
        text-align: right;
        top: -22px;
        }
        .advertisement-section.categoies-ads.ptb-100.aos-init.aos-animate{
        padding-top: 50px!important;
        }
        button.next {
        
        left: 90%!important;
        }
        .infop {
        
        grid-template-columns: repeat(2, 1fr)!important;
        
        }
        .categories .col-md-4 {
        flex: 0 0 auto;
        width: 33.33%;
        }
        .projectsp .overlay-img {
        margin-top: -154px !important;
        left: 30px !important;
        }
        span.select2-dropdown.custom-category-dropdown.select2-dropdown--below {
        width: 301px !important;
        left: -23px !important;
        top: 8px;
        }
        .hall-section .col-lg-3.col-md-4.col-sm-6.mb-4 {
        width: 25%;
        }
        .search-section.ptb-100.aos-init.aos-animate {
        background: #f7f9fc;
        padding: 10px 15px!important;
        }
        .image-left {
        margin-inline-start: -100px;
        }
        
        h4.cat-heading.mt-3 {
        font-size: 18px;
        margin: -14px 0px 0px !important;
        }
        div#advertisement-slider-prev {
        left: 1145px!important;
        
        }
        .container {
        max-width: 1250px;
        }
        .image-right {
        margin-inline-end: -100px;
        }
        .overlay-img {
        margin-top: -233px !important;
        position: relative;
        left:38px !important;
        z-index: 0;
        }
        div#advertisement-slider-next {
        left: 1200px!important;
        
        }
        
        .projectsp .overlay-img {
        margin-top: -180px !important;
        left: 28px !important;
        }
        .project-footer.hallsp {
        margin-left: 16px!important;
        width: 359.063px!important;
        height: 187px!important;
        
        }
        
}


@media only screen and (max-width: 1180px) {
   
        .advertisement-section.categoies-ads.ptb-100.aos-init.aos-animate{
        padding-top: 50px!important;
        }
        button.next {
        
        left: 86%!important;
        }
        .infop {
        
        grid-template-columns: repeat(4, 1fr)!important;
        
        }
        .categories .col-md-4 {
        flex: 0 0 auto;
        width: 33.33%;
        }
        .projectsp .overlay-img {
        margin-top: -154px !important;
        left: 30px !important;
        }
        .search-section.ptb-100.aos-init.aos-animate{
        padding: 10px 0px !important;
        }
        .hall-section .col-lg-3.col-md-4.col-sm-6.mb-4 {
        width: 25%;
        }
        .container {
        max-width: 1150px;
        }
        .no-wrap {
        flex-wrap: nowrap;
        }
        .contact-area .col-lg-4 {
        flex: 0 0 auto;
        width: 33%;
        }
        .overlay-img {
        margin-top: -216px!important;
        position: relative;
        left: 34px!important;
        z-index: 0;
        }
        h4.cat-heading.mt-3 {
        font-size: 18px;
        margin: -9px 0px 0px !important;
        }
        
        div#advertisement-slider-prev {
        left: 1035px!important;
        }
        div#advertisement-slider-next {
        left: 1090px!important;
        
        }
        .advertisement-section.categoies-ads.ptb-100.aos-init.aos-animate{
        padding-top: 50px!important;
        }
        .project-footer.hallsp {
        margin-left: 15px !important;
        width: 332px !important;
        height: 200px !important;
        }

        
}

@media only screen and (max-width: 1024px) {
    button.next {
        
        left: 86%!important;
        }
        .download-modal-content {
        width: 90%!important;
        text-align: center;
        position: relative;
        }
        .infop {
        
        grid-template-columns: repeat(4, 1fr)!important;
        
        }
        .search-section.ptb-100.aos-init.aos-animate{
        
        padding: 10px 0px !important;
        
        }
        .container {
        max-width: 950px;
        }
        .nav-item {
        margin: 0 3px;
        }
        .contact-area .col-lg-4 {
        flex: 0 0 auto;
        width: 50%;
        }
        .hall-section .col-lg-3.col-md-4.col-sm-6.mb-4 {
        width: 33.33%;
        }
        .overlay-img {
        margin-top: -240px !important;
        left: 39px !important;
        }
        h4.cat-heading.mt-3 {
        margin: -10px 0px 0px !important;
        }
        div#advertisement-slider-prev {
        left: 835px!important;
        }
        div#advertisement-slider-next {
        left: 890px!important;
        
        }
        .projectsp .overlay-img{
        display:none!important;
        }
}

@media only screen and (max-width: 991px) {
        .image-left {
        margin-inline-start: -60px;
        }
        
        .image-right {
        margin-inline-end: -60px;
        }
        
    .cookie-container {
    display: block;
    text-align: center;
    }
    
    button.cookie-consent__agree {
    margin-top: 15px;
    }
    
    p.cookie-consent__message {
    line-height: 20px;
    display: block;
    }
    }

@media only screen and (max-width: 820px) {
      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
        padding: 20px;
        overflow-y: auto;
    }
    .col-6.d-lg-none.text-end {
    display: flex
;
    align-items: center;
    justify-content: flex-end;
}
    ul.mobile-nav {
        text-align: left;
        font-size: 16px;
       
        line-height: 28px;
    }
    .mobile-nav li {
    padding: 5px 0px;
}
.mobile-menu .nav-item.active .nav-link {
    color: #ff5a3c !important;
    font-weight: 600;
}
.video-slider .swiper-slide {
    width: 100% !important;
}
.mobile-menu ul.dropdown-menu.show {
               display: block !important;
        position: relative !important;
        padding: 6px 0px;
        left: -15px !important;
        box-shadow: none;
        font-size: 16px;
        transform: none !important;
    }
    .mobile-nav .nav-link{
         font-weight: 400;
     
        color:black;
    }
    .mobile-menu.open {
        right: 0;
    }
    .menu-toggler {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .menu-toggler span {
        display: block;
        width: 25px;
        height: 3px;
        background: #000;
    }
    .bottom-header {
    display: none;
}
    .search-bar{
        display: block;
    }
    .search-bar .hall-dropdown.mt-2 {
    width: 49%;
    display: inline-flex
;
    padding: 13px 21.512px 13px 22px;
    justify-content: center;
    align-items: center;
    gap: 36px;
    border-radius: 7.092px;
    border: 0.851px solid #212121;
}
input.form-control.keyword {
    margin-bottom: 10px;
}
   
    div#project-section-prev{
        left: 665px !important;
        top:-34px;
        }
        div#project-section-next{
        left: 720px !important;
        top:-11px;
        }
        div#video-slider-next{
        left: 720px !important;
          top:-11px;
        }
        div#video-slider-prev{
            top:-34px;
        left: 665px !important;
        }
        .sponsor {
    padding: 50px 0px;
}
        .advertisement-section.categoies-ads.ptb-100.aos-init.aos-animate{
        padding-top: 50px!important;
        }
        .download-modal-content {
        width: 90%!important;
        text-align: center;
        position: relative;
        }
        button.next {
        
        left: 86%!important;
        }
        .infop {
        
        grid-template-columns: repeat(4, 1fr)!important;
        
        }
        .project-footer.hallsp {
        margin-left: 8px!important;
        width: 349.063px!important;
        }
        .categories .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
        }
        .container, .container-md, .container-sm {
        max-width: 780px;
        }
        .search-section.ptb-100.aos-init.aos-animate {
        background: #f7f9fc;
        padding: 10px 15px!important;
        }
        .contact-area .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
        }
        .overlay-img {
        margin-top: -190px !important;
        left: 35px !important;
        }
        h4.cat-heading.mt-3 {
        font-size: 18px;
        margin: -3px 0px 0px !important;
        }
        div#advertisement-slider-next {
        left: 720px !important;
        }
        div#advertisement-slider-prev {
        left: 665px !important;
        }
        .projectsp .overlay-img{
        display:none!important;
        }
        
    
}


@media only screen and (max-width: 768px) {
   
        .navbar-nav {
        flex-direction: column;
        align-items: center;
        }
        
        .login-buttons {
        flex-direction: column;
        margin-top: 10px;
        }
     
    .footer-top {
        padding-top: 70px;
        padding-bottom: 30px;
        }
    .about-us-section {
        text-align: center;
        }
        footer.footer-area.border.border-primary.blur-up.lazyloaded {
        text-align: center;
        }
        footer .navbar-brand img {
        margin: 0px 20px;
        max-height: 100%;
        width: 60%;
        height: auto;
        }
        .about-image {
        margin-top: 20px;
        }
    h4.cat-heading.mt-3 {
        font-size: 18px;
        margin: -3px 0px 0px !important;
        }
        .container, .container-md, .container-sm {
        max-width: 750px;
        }
        .search-section.ptb-100 {
        padding: 0px !important;
        }
        .overlay-img {
        margin-top: -177px!important;
        position: relative;
        left: 35px!important;
        z-index: 0;
        }
        .contact-area .col-md-6 {
        flex: 0 0 auto;
        width: 100%;
        }
        .project-footer.hallsp {
        margin-left: 8px !important;
        width: 331.063px !important;
        height: 200px !important;
        }
        div#advertisement-slider-next {
        left: 690px !important;
        }
        div#advertisement-slider-prev {
        left: 635px !important;
        }
        .projectsp .overlay-img{
        display:none!important;
        }
        .project-footer.hallsp {
        margin-left: 8px!important;
        width: 349.063px!important;
        }
        .categories .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
        }
}


@media only screen and (max-width: 600px) {
span.select2-dropdown.select2-dropdown--below {
width: 374px !important;
left: -16.5px;
background: #f7f9fc;
border-top: none !important;
top: 8px!important;
z-index: 1;
border: 1px solid black;
border-radius: 0px 0px 15px 15px;
padding: 10px;
}
.detail-header {
display: block!important;

}
.about-text {
padding-right: 0px !important;
}
h2.title {
font-size: 24px !important;
line-height: 40px !important;
}
.download-modal-overlay .dinfo {
    margin-top: 50px;
    display: grid
;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
    .download-modal-content {
        background: white;
        padding: 34px !important;
        border-radius: 10px !important;
        width: 86% !important;
        left: 0px !important;
        text-align: center;
        position: relative;
    }
.advertisement-section.categoies-ads.projectsp.ptb-100{
padding-top: 50px!important;
padding-bottom: 50px!important;
}
h2 {
font-size: 28px !important;
}
div#sponsor-slider-next{
    top:-11px;
left: 346px!important;
}
.video-section.ptb-50 {
    padding: 50px 0px 0px;
}
div#sponsor-slider-prev{
    top: -34px;
left: 315px!important;
}
.blearn .modal-content {
position: fixed;
top: 8%!important;
left: 5%!important;
background-color: white;
text-align: left;
padding: 40px!important;
border-radius: 20px;
z-index: 9999999999;
max-width: 90%!important;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.detail-interest {
text-align: center!important;
align-items: center!important;
width: 100%!important;
display: flex!important;
margin-top: 30px!important;
justify-content: center!important;
}
.projectpage-text h2.title{
text-align: center!important;
}
div#project-section-prev {
left: 315px!important;
}
button.prev {
    left: -131px;
    padding: 7px 10px;
      top: -50%;
}
    button.next {
        left: 37% !important;
        padding: 7px 10px;
        top: -50%;
    }
div#project-section-next {
left: 346px!important;
}
div#video-slider-next {
left: 346px!important;
}
div#video-slider-prev {
left: 315px!important;
}
.caption{
font-size: 10px!important;
letter-spacing: 2.3px!important;
}
.content.mb-30 {
padding: 20px !important;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
display: none;
}
.footer-area .copy-right-area p {
margin-bottom: 0;
color: #696969 !important;
font-family: Alexandria;
font-size: 14px!important;
font-style: normal;
font-weight: 400;
line-height: 33.429px !important;
}
.content-title h2 {
font-size: 28px !important;
margin-top: 8px;
}
.overlay-img{
display: none!important;
}

.hall-section.categoies.ptb-100 {
padding-bottom: 0px !important;
}
div#advertisement-slider-next {
left: 346px!important;
top:-11px;
}
div#advertisement-slider-prev {
left: 315px!important;

top: -34px!important;
}
.home-heading h2{
margin-top: 0px !important;
line-height: 16px !important;
font-size:22px!important;
}
    .hall-section .col-lg-3.col-md-4.col-sm-6.mb-4 {
        width: 100%;
    }
.select2-container--open .select2-dropdown--above {
width: 370px !important;
left: -23px;
background: #f7f9fc;
border-top: none !important;
top: 291px !important;
border: 1px solid black;
border-radius: 0px 0px 15px 15px;
padding: 10px;
z-index: 1;
}
.swiper-button-next.custom-slider-next {
right: 20px !important;
}
.swiper-button-prev.custom-slider-prev{
left: 20px!important;
}
.search-section.ptb-100 {
padding: 0px;
}
.search-bar {
display: block!important;
}
.hall-section.categories.ptb-100 {
padding-bottom: 0px;
}
input.form-control.keyword {
margin: 10px 0px;
}
.search-bar .hall-dropdown.mt-2 {
width: 100%!important;
display: inline-flex
;
padding: 13px 21.512px 13px 22px;
justify-content: center;
align-items: center;
gap: 36px;
border-radius: 7.092px;
border: 0.851px solid #212121;
}
h1.color-white {
font-size: 36px!important;
}
.home-heading {
    padding-bottom: 0px;
    border-bottom: 1px solid #E9E9E9;
    margin-bottom: 20px;
}
.showv2 .pv2 img.lightbox-image {
    height: 300px;
    width: 100%;
}
.showv2 .tab-btn {
   
    font-size: 14px;
    
}
.showv2 .pv2 .slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 300px;
    margin: auto;
    overflow: hidden;
    border-radius: 30px;
}
.showv2 div#video-slider-prev{
     left: 285px !important;
}
.showv2 div#video-slider-next {
        left: 315px !important;
    }
.showv2  .video-section.pv2.ptb-50 {
    margin: 0px -15px;
}
.showv2 div#project-section-prev {
        left: 285px !important;
    }
    .showv2 div#project-section-next {
        left: 315px !important;
    }
.showv2 .project-footer.hallsp {
        margin-left: 9px !important;
        width: 323px !important;
        margin-bottom: 30px;
        height: 203px !important;
    }
.swiper-button-next:after, .swiper-button-prev:after {
    line-height:16px!important;
font-size: 12px !important;
padding: 5px 10px !important;
}
.project-footer.hallsp {
        margin-left: 9px !important;
        width: 342px !important;
        margin-bottom: 30px;
        height: 185px !important;
}
.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 300px;
    margin: auto;
    overflow: hidden;
    border-radius: 30px;
}
img.lightbox-image {
    height: 300px;
    width: 100%;
}
.infop {
    grid-template-columns: repeat(2, 1fr) !important;

    
}
.col-lg-2.col-md-4.col-sm-6.mb-4 {
width: 50%;
}
.projectpage-text p.description {
    text-align: center;
}

.advertisement-section.categoies-ads.projectsp.pv2.ptb-100 {
    margin: 0px -15px;
}
.infop {
    gap: 20px;
}
.search-section.ptb-100 {
    padding: 10px 0px !important;
}
.search-bar button.btn.btn-danger{
width:100%!important;
}
.about-us-section a.btn.btn-primary.mt-3 {
margin: 0px auto !important;
}
.sidebarv2 {
    padding: 0px 8px;
}
.showv2 {
    background-image: url(https://staging.onlinepropertyexpo.in/public/assets/images/bg23.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 15px 100px;
}
   .showv2 .about-us-section {
        text-align: center;
        margin: 0px -15px;
    }
.lights img {
    width: 100%;
    margin-top: -58px;
}
.categories .col-md-4 {
        flex: 0 0 auto;
        width: 100%;
    }
    button.next.lightbox-next {
    position: absolute;
    left: 84% !important;
    top: 50%;
    right: 28px;
}
section.home-banner.home-banner-2.cat12 {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
}
.hall-banner-2 .swiper-slide {
    padding: 50px 0px 70px;
}
.project-section.ptb-100.aos-init.aos-animate {
    padding: 50px 0px !important;
}
.ptb-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .project-section.ptb-100 {
    padding-top: 0px;
    padding-bottom: 0px;
}
.hall-section.ptb-100 {
    padding: 50px 0px 0px;
}
.hall-section.categoies.ptb-100 .col-lg-3.col-md-4.col-sm-6.mb-4 {
        width: 50%;
    }
    h4.cat-heading.mt-3 {
        font-size: 16px;
        margin: 13px 0px 0px !important;
    }
    .psocial ul {
    display: grid;
    color: #212121;
    grid-template-columns: repeat(3, 1fr) !important;
    font-family: Alexandria;
    font-size: 14.654px;
    gap: 20px;
    font-style: normal;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}
}
@media only screen and (max-width: 390px) {
        .project-footer.hallsp {
        margin-left: 9px !important;
        width: 321px !important;
        margin-bottom: 30px;
        height: 195px !important;
    }
    .showv2 .project-footer.hallsp {
        width: 270px !important;
    }
        .showv2 div#project-section-prev {
        left: 245px !important;
    }
        .showv2 div#video-slider-prev {
        left: 245px !important;
    }
        .showv2 div#video-slider-next {
        left: 274px !important;
    }
        .showv2 div#project-section-next {
        left: 274px !important;
    }
            span.select2-dropdown.select2-dropdown--below {
        width: 300px !important;
        left: -16.5px;
        background: #f7f9fc;
        border-top: none !important;
        top: 8px !important;
        z-index: 1;
        border: 1px solid black;
        border-radius: 0px 0px 15px 15px;
        padding: 10px;
    }
}

