/*====================== CSS Index Here =======================*/
/*
01. Abstracts
    1.1. Classes
    1.2. Extend
    1.3. Functions
    1.4. Mixins
    1.5. Variable
    1.6. Wordpress Default

02. Base
    2.1. Margin
    2.2. Padding
    2.3. Typography

03. Components
    3.1. Accordion
    3.2. Button
    3.3. Form
    3.4. Pagination
    3.6. Tab

04. Layout
    4.1. Blog Sidebar
    4.2. Breadcrumb
    4.3. Comment
    4.4. Footer
    4.5. Header Top
    4.6. Header
    4.7. Preloader
    4.8. Scroll Top
    4.9. Section Heading
    4.10. Slick
    4.11. Social Icon

05. Spacing

*/
/*======================== CSS Index End ======================*/
/* ======================== Functions Css End ======================= */
/* ======================== Functions Css End ======================= */
/* Font Family*/
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Vidaloka&display=swap");
/* ========================= Variable Css Start ======================== */
:root {
  /* Font Family Variable */
    --heading-font: "Vidaloka", serif;
    --body-font: "Jost", sans-serif;
    --poppins-font: "Poppins", sans-serif;
  /* Font Size Variable Start */
    --heading-one: clamp(2rem, -0.0733rem + 6.3692vw, 4.25rem);
    --heading-two: clamp(1.75rem, 0.7133rem + 2.8846vw, 2.875rem);
    --heading-three: clamp(1.5rem, 0.3353rem + 2.1661vw, 2.5rem);
    --heading-four: clamp(1.25rem, 0.5569rem + 1.444vw, 2rem);
    --heading-five: clamp(1.125rem, 1.2rem + 0.722vw, 1.75rem);
    --heading-six: clamp(1rem, 0.769rem + 0.6813vw, 1.25rem);
  /* Font Size End */
  /* Color Variables Start */
    --main-gradient: linear-gradient(90deg, #F69220 0.04%, #F68E20 28.67%, #F48421 54.05%, #F37221 78.11%, #F05A22 100.04%);
    --main-gradient-rev: linear-gradient(270deg, #F69220 0.04%, #F68E20 28.67%, #F48421 54.05%, #F37221 78.11%, #F05A22 100.04%);
  /* Gray Color */
    --gray-h: 0;
    --gray-s: 0%;
    --gray-l: 97%;
    --gray: var(--gray-h) var(--gray-s) var(--gray-l);
    --gray-900: #181616;
    --gray-800: #777;
    --gray-700: #211E1E;
    --gray-200: #E0E0E0;
    --gray-100: #F8F8F8;
  /* White Color */
    --white: 0 0% 100%;
  /* Light Color */
    --light-h: 0;
    --light-s: 1%;
    --light-l: 53%;
    --light: var(--light-h) var(--light-s) var(--light-l);
  /* Black Color */
    --black-h: 0;
    --black-s: 4%;
    --black-l: 9%;
    --black: var(--black-h) var(--black-s) var(--black-l);
    --heading-color: var(--black);
    --body-color: var(--light);
    --body-bg: var(--gray);
    --border-color: var(--gray-200);
    --section-bg: 208 100% 97%;
  /* Card box shadow */
    --box-shadow: 0px 2px 15px hsl(var(--black) /.05);
    --box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.15), 0px 4px 13px -2px rgba(19, 16, 34, 0.1);
  /* ========================= Main Color ============================= */
    --main-h: 28;
    --main-s: 91%;
    --main-l: 54%;
    --main: var(--main-h) var(--main-s) var(--main-l);
  /* Main Lighten */
    --main-l-100: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.1);
    --main-l-200: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.2);
    --main-l-300: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.3);
    --main-l-400: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.4);
    --main-l-500: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.5);
    --main-l-600: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.6);
    --main-l-700: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.7);
    --main-l-800: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.8);
    --main-l-900: var(--main-h) calc(var(--main-s)) calc(var(--main-l) + (100% - var(--main-l)) * 0.9);
  /* Main Darken  */
    --main-d-100: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.1);
    --main-d-200: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.2);
    --main-d-300: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.3);
    --main-d-400: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.4);
    --main-d-500: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.5);
    --main-d-600: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.6);
    --main-d-700: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.7);
    --main-d-700: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.7);
    --main-d-800: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.8);
    --main-d-900: var(--main-h) var(--main-s) calc(var(--main-l) - var(--main-l) * 0.9);
  /* ========================= Main Two Color ============================= */
}

/* ========================= Variable Css End ======================== */
/* ============================ Mixins Css Start ============================ */
/* Media Breakpoint for Each Device Start */
/* Media Breakpoint for Each Device End */
/* Font Size For responsive devices Start */
/* Font Size For responsive devices End */
/* ============================ Mixins Css End ============================ */
/* ================================= Classes Css Start =========================== */
@media (min-width: 1199px) {
    .container-two {
        max-width: 1310px;
    }
}
/* Section Background */
.section-bg {
    background-color: hsl(var(--section-bg));
}

.section-bg-dark {
    background-color: var(--gray-700) !important;
}

.body-bg {
    background-color: hsl(var(--body-bg));
}

.bg-gray-100 {
    background-color: var(--gray-100) !important;
}

.max-w-unset {
    max-width: unset !important;
}

.min-w-maxContent {
    min-width: max-content;
}

.mt-minus-120 {
    margin-top: -120px;
}

.mb-40 {
    margin-bottom: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem) !important;
}

/* Bg Color */
.text-gradient, .input-images .upload-text:hover i, .contact-card__text .link:hover, .project-page-content__title .link:hover, .blog-keyword__link:hover, .blog-nextPrev__button:hover, .working-process-item__link:hover, .social-share__button.active i, .social-share__button:hover i, .contact-content__contact:hover, .text-list__item .link:hover, .blog-item__title-link:hover, .testimonial-item.style-four .testimonial-item__quote, .portfolio-item__title .link:hover, .simple-btn:hover, .property-item__title .link:hover, .star-rating__item, .slick-arrow > i, .social-list__link:hover, .footer-menu__link::before, .footer-contact__link:hover, .contact-number:hover .text, .side-tab .nav-link:hover, .common-tab.style-outline .nav-item .nav-link.active .text, .common-tab.style-two .nav-item .nav-link.active .text, .select-has-icon::before {
    background: var(--main-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.3s ease-in-out;
}

.bg--gradient {
    background: var(--main-gradient) !important;
}

.bg-main {
    background-color: hsl(var(--main)) !important;
}

.bg-gray-100 {
    background-color: var(--gray-100) !important;
}

.bg-gray-700 {
    background-color: var(--gray-700) !important;
}

.bg-gray-800 {
    background-color: var(--gray-800) !important;
}

.bg-gray-900 {
    background-color: var(--gray-900) !important;
}

/* Border Color */
.border-main {
    border-color: hsl(var(--main)) !important;
}

.border-color {
    border-color: hsl(var(--border-color));
}

.fw-500 {
    font-weight: 500 !important;
}

.left-auto {
    left: auto !important;
}

/* Text Color */
.text-heading {
    color: hsl(var(--heading-color)) !important;
}

.text-body {
    color: hsl(var(--body-color)) !important;
}

.text-main {
    color: hsl(var(--main)) !important;
}

.text-gray-800 {
    color: var(--gray-800) !important;
}

.text-poppins {
    font-family: var(--poppins-font);
}

.pill {
    border-radius: 40px !important;
}

.gy-30 {
    --bs-gutter-y: 30px;
}

.top-120 {
    top: 120px;
}

.line-height-0 {
    line-height: 0;
}

.line-height-1 {
    line-height: 1;
}

/* Column Extra Small Screen */
@media screen and (min-width: 425px) and (max-width: 575px) {
    .col-xs-6 {
        width: 50%;
    }
}
/* Bg Image Css */
.background-img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    width: 100%;
    height: 100%;
}

/* Hide Scroll bar Css For Custom Modal */
.scroll-hide {
    position: absolute;
    overflow-y: hidden;
    padding-right: 17px;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .scroll-hide {
        padding-right: 0;
    }
}

.scroll-hide-sm {
    position: absolute;
    overflow-y: hidden;
    top: 0;
    left: 0;
    width: calc(100% - 0px);
}

/* Overlay Start */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.overlay.show-overlay {
    visibility: visible;
    opacity: 1;
}

.side-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    background-color: hsl(var(--black)/0.6);
    z-index: 99;
    transition: 0.2s linear;
    visibility: hidden;
    opacity: 0;
}

.side-overlay.show {
    visibility: visible;
    opacity: 1;
}

/* Overlay End */
/* ================================= Classes Css End =========================== */
/* ============================ Extend Css Start ======================== */
/* Cover image Css */
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Display Flex Css Start */
.flx-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flx-align, .common-radio, .common-check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.flx-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

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

/* Display Flex Css End */
/* Positioning Css Class Start */
.pa-content {
    position: absolute;
    content: "";
}

.top-center, .common-accordion .accordion-button[aria-expanded=true]::after, .common-accordion .accordion-button[aria-expanded=false]::after {
    top: 50%;
    transform: translateY(-50%);
}

.left-center {
    left: 50%;
    transform: translateX(-50%);
}

.top-left-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Positioning Css Class End */
/* Font Size For responsive devices Start */
.font-10 {
    font-size: 0.625rem !important;
}

.font-11 {
    font-size: 0.6875rem !important;
}

.font-12 {
    font-size: 0.75rem !important;
}

.font-13 {
    font-size: 0.8125rem !important;
}

.font-14 {
    font-size: 0.875rem !important;
}

.font-15 {
    font-size: 0.9375rem !important;
}

.font-16 {
    font-size: 1rem !important;
}

.font-17 {
    font-size: 1.0625rem !important;
}

.font-18 {
    font-size: 1.125rem !important;
}

@media screen and (max-width: 1199px) {
    .font-18 {
        font-size: 1rem !important;
    }
}

@media screen and (max-width: 767px) {
    .font-18 {
        font-size: 0.9375rem !important;
    }
}

.font-19 {
    font-size: 1.1875rem !important;
}

.font-20 {
    font-size: 1.25rem !important;
}

.font-21 {
    font-size: 1.3125rem !important;
}

.font-22 {
    font-size: 1.375rem !important;
}

.font-23 {
    font-size: 1.4375rem !important;
}

.font-24 {
    font-size: 1.5rem !important;
}

.font-25 {
    font-size: 1.5625rem !important;
}

.font-26 {
    font-size: 1.625rem !important;
}

.font-27 {
    font-size: 1.6875rem !important;
}

.font-28 {
    font-size: 1.75rem !important;
}

.font-29 {
    font-size: 1.8125rem !important;
}

.font-30 {
    font-size: 1.875rem !important;
}

.font-31 {
    font-size: 1.9375rem !important;
}

.font-32 {
    font-size: 2rem !important;
}

.font-33 {
    font-size: 2.0625rem !important;
}

.font-34 {
    font-size: 2.125rem !important;
}

.font-35 {
    font-size: 2.1875rem !important;
}

.font-36 {
    font-size: 2.25rem !important;
}

.font-37 {
    font-size: 2.3125rem !important;
}

.font-38 {
    font-size: 2.375rem !important;
}

.font-39 {
    font-size: 2.4375rem !important;
}

.font-40 {
    font-size: 2.5rem !important;
}

/* Font Size For responsive devices End */
/* ============================ Extend Css End ======================== */
/* ======================= WordPress Default Css Start =================== */
.admin-bar .default-header .sticky-wrapper.sticky {
    top: 32px;
}

.wp-block-search__label {
    position: relative;
    font-size: 24px;
    font-weight: 500 !important;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 25px 0;
}

p.has-drop-cap {
    margin-bottom: 20px;
}

.page--item p:last-child .alignright {
    clear: right;
}

.blog-title,
.pagi-title,
.breadcumb-title {
    word-break: break-word;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
    color: var(--body-color);
}

.bypostauthor,
.gallery-caption {
    display: block;
}

.page-links,
.clearfix {
    clear: both;
}

.page--item {
    margin-bottom: 30px;
}

.page--item p {
    line-height: 1.8;
}

.page--item .th-comment-form {
    padding: 0;
}

.page--item .th-comments-wrap {
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
}

.content-none-search {
    margin-top: 30px;
}

.wp-block-button.aligncenter {
    text-align: center;
}

.alignleft {
    display: inline;
    float: left;
    margin-bottom: 10px;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-bottom: 10px;
    margin-left: 1.5em;
    margin-right: 1em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.gallery {
    margin-bottom: 1.5em;
    width: 100%;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    padding: 0 5px;
}

.wp-block-columns {
    margin-bottom: 1em;
}

figure.gallery-item {
    margin-bottom: 10px;
    display: inline-block;
}

figure.wp-block-gallery {
    margin-bottom: 14px;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
    font-size: 12px;
    color: var(--body-color);
    line-height: 1.5;
    padding: 0.5em 0;
}

.wp-block-cover p:not(.has-text-color),
.wp-block-cover-image-text,
.wp-block-cover-text {
    color: var(--white-color);
}

.wp-block-cover {
    margin-bottom: 15px;
}

.wp-caption-text {
    text-align: center;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption .wp-caption-text {
    margin: 0.5em 0;
    font-size: 14px;
}

.wp-block-media-text,
.wp-block-media-text.alignwide,
figure.wp-block-gallery {
    margin-bottom: 30px;
}

.wp-block-media-text.alignwide {
    background-color: var(--smoke-color);
}

.editor-styles-wrapper .has-large-font-size,
.has-large-font-size {
    line-height: 1.4;
}

.wp-block-latest-comments a {
    color: inherit;
}

.wp-block-button {
    margin-bottom: 10px;
}

.wp-block-button:last-child {
    margin-bottom: 0;
}

.wp-block-button .wp-block-button__link {
    color: #fff;
}

.wp-block-button .wp-block-button__link:hover {
    color: #fff;
    background-color: var(--theme-color);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background-color: transparent;
    border-color: var(--title-color);
    color: var(--title-color);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: #fff;
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.wp-block-button.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

ol.wp-block-latest-comments li {
    margin: 15px 0;
}

ul.wp-block-latest-posts {
    padding: 0;
    margin: 0;
    margin-bottom: 15px;
}

ul.wp-block-latest-posts a {
    color: inherit;
}

ul.wp-block-latest-posts a:hover {
    color: var(--theme-color);
}

ul.wp-block-latest-posts li {
    margin: 15px 0;
}

.wp-block-search {
    display: flex;
    flex-wrap: wrap;
}

.wp-block-search .wp-block-search__inside-wrapper {
    border: 1px solid #EAEBEE;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

.wp-block-search .wp-block-search__input {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    border: 0;
}

.wp-block-search .wp-block-search__button {
    margin: 0;
    min-width: 110px;
    border: none;
    color: #fff;
    border-radius: 10px;
    background-color: var(--theme-color);
}

.wp-block-search .wp-block-search__button.has-icon {
    min-width: 55px;
}

.wp-block-search .wp-block-search__button:hover {
    background-color: var(--title-color);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    padding: 0;
    border: none;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    padding: 0 8px 0 25px;
}

ul.wp-block-rss a {
    color: inherit;
}

.wp-block-group.has-background {
    padding: 15px 15px 1px;
    margin-bottom: 30px;
}

.wp-block-table td,
.wp-block-table th {
    border-color: rgba(0, 0, 0, 0.1);
}

.wp-block-table.is-style-stripes {
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.wp-block-table.is-style-stripes {
    border: 0;
    margin-bottom: 30px;
    border-bottom: 0;
}

.wp-block-table.is-style-stripes th, .wp-block-table.is-style-stripes td {
    border-color: var(--border-color);
}

.logged-in .will-sticky .sticky-active.active,
.logged-in .preloader .btn {
    top: 32px;
}

@media (max-width: 782px) {
    .logged-in .will-sticky .sticky-active.active,
.logged-in .preloader .btn {
        top: 46px;
    }
}

@media (max-width: 600px) {
    .logged-in .will-sticky .sticky-active.active,
.logged-in .preloader .btn {
        top: 0;
    }
}

.post-password-form {
    margin-bottom: 30px;
    margin-top: 20px;
}

.post-password-form p {
    display: flex;
    position: relative;
    gap: 15px;
  /* Extra small devices */
}

@media (max-width: 575px) {
    .post-password-form p {
        flex-wrap: wrap;
    }
}

.post-password-form label {
    display: flex;
    align-items: center;
    flex: auto;
    margin-bottom: 0;
    line-height: 1;
    margin-top: 0;
    gap: 15px;
  /* Extra small devices */
}

@media (max-width: 575px) {
    .post-password-form label {
        flex-wrap: wrap;
    }
}

.post-password-form input {
    width: 100%;
    border: none;
    height: 55px;
    padding-left: 25px;
    color: var(--body-color);
    border: 1px solid var(--border-color);
}

.post-password-form input[type=submit] {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
    width: 140px;
    border: none;
    color: #fff;
    background-color: var(--theme-color);
    text-align: center;
}

.post-password-form input[type=submit]:hover {
    background-color: var(--title-color);
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
    padding-top: 1em;
}

.page-links > .page-links-title {
    margin-right: 10px;
}

.page-links > span:not(.page-links-title):not(.screen-reader-text),
.page-links > a {
    display: inline-block;
    padding: 5px 13px;
    background-color: var(--white-color);
    color: var(--title-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 10px;
}

.page-links > span:not(.page-links-title):not(.screen-reader-text):hover,
.page-links > a:hover {
    opacity: 0.8;
    color: var(--white-color);
    background-color: var(--theme-color);
    border-color: transparent;
}

.page-links > span:not(.page-links-title):not(.screen-reader-text).current,
.page-links > a.current {
    background-color: var(--theme-color);
    color: var(--white-color);
    border-color: transparent;
}

.page-links span.screen-reader-text {
    display: none;
}

.blog-single .wp-block-archives-dropdown {
    margin-bottom: 30px;
}

.blog-single.format-quote, .blog-single.format-link, .blog-single.tag-sticky-2, .blog-single.sticky {
    position: relative;
}

.blog-single.format-quote .blog-content, .blog-single.format-link .blog-content, .blog-single.tag-sticky-2 .blog-content, .blog-single.sticky .blog-content {
    background-color: var(--smoke-color);
    border: none;
    padding: 40px;
    border-radius: 15px;
}

.blog-single.format-quote .blog-content:before, .blog-single.format-link .blog-content:before, .blog-single.tag-sticky-2 .blog-content:before, .blog-single.sticky .blog-content:before {
    display: none;
}

.blog-single.format-quote:before, .blog-single.format-link:before, .blog-single.tag-sticky-2:before, .blog-single.sticky:before {
    content: "\f0c1";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-size: 5rem;
    opacity: 0.3;
    right: 15px;
    line-height: 1;
    top: 15px;
    color: var(--theme-color);
    z-index: 1;
}

.blog-single.tag-sticky-2::before, .blog-single.sticky::before {
    content: "\f08d";
    position: absolute;
    font-family: var(--icon-font);
    font-size: 16px;
    font-weight: 500;
    opacity: 1;
    right: 0;
    top: 0;
    color: var(--white-color);
    background-color: var(--theme-color);
    z-index: 1;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 0 15px 0 4px;
}

.blog-single.format-quote blockquote, .blog-single.format-quote .wp-block-quote {
    background: var(--white-color);
    margin-bottom: 0;
}

.blog-single.format-quote:before {
    content: "\f10e";
    top: 0;
}

.blog-single .blog-content .wp-block-categories-dropdown.wp-block-categories,
.blog-single .blog-content .wp-block-archives-dropdown {
    display: block;
    margin-bottom: 30px;
}

.blog-single.format-chat .entry-content > p:nth-child(2n) {
    background: var(--smoke-color);
    padding: 5px 20px;
}

.blog-details .blog-single:before {
    display: none;
}

.blog-details .blog-single .blog-content {
    background-color: transparent;
    overflow: hidden;
}

.blog-details .blog-single .blog-content p:last-child {
    margin-bottom: 0;
}

.blog-details .blog-single.format-chat .blog-meta {
    margin-bottom: 20px;
}

.blog-details .blog-single.format-chat .blog-content > p:nth-child(2n) {
    background: var(--smoke-color);
    padding: 5px 20px;
}

.blog-details .blog-single.tag-sticky-2, .blog-details .blog-single.sticky, .blog-details .blog-single.format-quote, .blog-details .blog-single.format-link {
    box-shadow: none;
    background-color: transparent;
}

.blog-details .blog-single.tag-sticky-2:before, .blog-details .blog-single.sticky:before, .blog-details .blog-single.format-quote:before, .blog-details .blog-single.format-link:before {
    display: none;
}

.blog-single .wp-block-tag-cloud {
    margin-bottom: 20px;
}

.blog-single .wp-block-tag-cloud a {
    background-color: var(--smoke-color);
    color: var(--title-color);
    box-shadow: none;
}

.th-search {
    background-color: #f3f3f3;
    margin-bottom: 30px;
    border: 1px solid #f3f3f3;
}

.th-search .search-grid-content {
    padding: 30px;
  /* Small devices */
}

@media (max-width: 767px) {
    .th-search .search-grid-content {
        padding: 20px;
    }
}

.th-search .search-grid-title {
    font-size: 20px;
    margin-bottom: 5px;
    margin-top: 0;
}

.th-search .search-grid-title a {
    color: inherit;
}

.th-search .search-grid-title a:hover {
    color: var(--theme-color);
}

.th-search .search-grid-meta > * {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
}

.th-search .search-grid-meta > *:last-child {
    margin-right: 0;
}

.th-search .search-grid-meta a,
.th-search .search-grid-meta span {
    color: var(--body-color);
}

/* Large devices */
@media (max-width: 1199px) {
    .blog-single.format-quote:before, .blog-single.format-link:before, .blog-single.tag-sticky-2:before, .blog-single.sticky:before {
        font-size: 14px;
        padding: 8px 16px;
    }

    .blog-single.format-quote:before {
        top: 15px;
    }
}
/* Small devices */
@media (max-width: 767px) {
    .blog-single.format-quote:before, .blog-single.format-link:before, .blog-single.tag-sticky-2:before, .blog-single.sticky:before {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .wp-block-latest-comments {
        padding-left: 10px;
    }

    .page--content.clearfix + .th-comment-form {
        margin-top: 24px;
    }
}

.site {
    overflow-x: visible;
}

/* ======================= WordPress Default Css End =================== */
/* ================================= Typography Css Start =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: hsl(var(--body-color));
    word-break: break-word;
    background-color: hsl(var(--white));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

p {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
}

span {
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px 0;
    font-family: var(--heading-font);
    color: hsl(var(--heading-color));
    line-height: 1.2;
    font-weight: 400;
}

h1 {
    font-size: var(--heading-one);
}

h2 {
    font-size: var(--heading-two);
}

h3 {
    font-size: var(--heading-three);
}

h4 {
    font-size: var(--heading-four);
}

h5 {
    font-size: var(--heading-five);
    font-weight: 500;
    line-height: 36px;
    font-family: var(--poppins-font);
}

h6 {
    font-size: var(--heading-six);
    font-weight: 600;
    font-family: var(--poppins-font);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
    transition: 0.2s linear;
    line-height: inherit;
}

h1 > a:hover,
h2 > a:hover,
h3 > a:hover,
h4 > a:hover,
h5 > a:hover,
h6 > a:hover {
    color: hsl(var(--main));
}

a {
    display: inline-block;
    transition: 0.2s linear;
    text-decoration: none;
    color: #0661e9;
}

a:hover {
    color: #1d72f2;
}

img {
    max-width: 100%;
    height: auto;
}

select {
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: 0;
    background-color: transparent;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.form-select:focus {
    outline: 0;
    box-shadow: none;
}

/* ================================= Typography Css End =========================== */
/* ================================= Margin Css Start =========================== */
.margin-y-120 {
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .margin-y-120 {
        margin-top: 80px;
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .margin-y-120 {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

.margin-t-120 {
    margin-top: 60px;
}

@media (min-width: 576px) {
    .margin-t-120 {
        margin-top: 80px;
    }
}

@media (min-width: 992px) {
    .margin-t-120 {
        margin-top: 120px;
    }
}

.margin-b-120 {
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .margin-b-120 {
        margin-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .margin-b-120 {
        margin-bottom: 120px;
    }
}

.margin-y-60 {
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .margin-y-60 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .margin-y-60 {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

.margin-t-60 {
    margin-top: 30px;
}

@media (min-width: 576px) {
    .margin-t-60 {
        margin-top: 40px;
    }
}

@media (min-width: 992px) {
    .margin-t-60 {
        margin-top: 60px;
    }
}

.margin-b-60 {
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .margin-b-60 {
        margin-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .margin-b-60 {
        margin-bottom: 60px;
    }
}
/* ================================= Margin Css End =========================== */
/* ================================= Padding Css Start =========================== */
.padding-y-120 {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .padding-y-120 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .padding-y-120 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.padding-t-120 {
    padding-top: 60px;
}

@media (min-width: 576px) {
    .padding-t-120 {
        padding-top: 80px;
    }
}

@media (min-width: 992px) {
    .padding-t-120 {
        padding-top: 120px;
    }
}

.padding-b-120 {
    padding-bottom: 60px;
}

@media (min-width: 576px) {
    .padding-b-120 {
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .padding-b-120 {
        padding-bottom: 120px;
    }
}

.padding-y-60 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 576px) {
    .padding-y-60 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .padding-y-60 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

.padding-t-60 {
    padding-top: 30px;
}

@media (min-width: 576px) {
    .padding-t-60 {
        padding-top: 40px;
    }
}

@media (min-width: 992px) {
    .padding-t-60 {
        padding-top: 60px;
    }
}

.padding-b-60 {
    padding-bottom: 30px;
}

@media (min-width: 576px) {
    .padding-b-60 {
        padding-bottom: 40px;
    }
}

@media (min-width: 992px) {
    .padding-b-60 {
        padding-bottom: 60px;
    }
}
/* ================================= Padding Css End =========================== */
/* =========================== Accordion Css start ============================= */
.common-accordion .accordion-item {
    border: 1px solid var(--gray-200);
    background-color: hsl(var(--white)) !important;
    border-radius: 8px;
    overflow: hidden;
}

.common-accordion .accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.common-accordion .accordion-header {
    line-height: 1;
}

.common-accordion .accordion-body {
    padding: 20px 30px;
    font-family: var(--poppins-font);
    padding-top: 0;
}

@media screen and (max-width: 575px) {
    .common-accordion .accordion-body {
        padding: 12px 20px;
        padding-top: 0;
    }
}

.common-accordion .accordion-body .text {
    max-width: 60%;
}

@media screen and (max-width: 575px) {
    .common-accordion .accordion-body .text {
        max-width: 100%;
    }
}

.common-accordion:first-of-type .accordion-button.collapsed {
    border-radius: 5px;
}

.common-accordion:last-of-type .accordion-button.collapsed {
    border-radius: 5px;
}

.common-accordion .accordion-button {
    color: var(--heading-color);
    font-size: 1.125rem;
    padding: 20px 30px;
    padding-right: 46px;
    font-weight: 600;
    font-size: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
    font-family: var(--poppins-font);
}

@media screen and (max-width: 575px) {
    .common-accordion .accordion-button {
        padding: 12px 20px;
        padding-right: 36px;
    }
}

.common-accordion .accordion-button::after {
    background-image: none;
}

.common-accordion .accordion-button:focus {
    box-shadow: none;
}

.common-accordion .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none;
    color: hsl(var(--main));
}

.common-accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    color: hsl(var(--main));
}

.common-accordion .accordion-button[aria-expanded=true]::after, .common-accordion .accordion-button[aria-expanded=false]::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f106";
    color: hsl(var(--main));
    display: inline-block;
    position: absolute;
    right: 30px;
    height: unset;
    font-size: 1rem;
    text-align: center;
}

@media screen and (max-width: 575px) {
    .common-accordion .accordion-button[aria-expanded=true]::after, .common-accordion .accordion-button[aria-expanded=false]::after {
        right: 20px;
    }
}

.common-accordion .accordion-button[aria-expanded=false]::after {
    content: "\f107";
    color: hsl(var(--heading-color));
}

.common-accordion.style-two .accordion-button {
    font-weight: 500;
    font-size: 1rem;
    padding: 24px 30px;
    padding-right: 46px;
}

@media screen and (max-width: 767px) {
    .common-accordion.style-two .accordion-button {
        padding: 12px 20px;
        padding-right: 36px;
    }
}

.common-accordion.style-two .accordion-button:not(.collapsed) {
    background: var(--main-gradient);
    color: hsl(var(--white));
}

.common-accordion.style-two .accordion-button[aria-expanded=true]::after {
    color: hsl(var(--white));
    content: "\f068";
}

.common-accordion.style-two .accordion-button[aria-expanded=false]::after {
    content: "\f067";
}

.common-accordion.style-two .accordion-body {
    padding-top: 20px;
    color: var(--gray-800);
    font-weight: 300;
    font-family: var(--body-font);
}

/* ================================= Accordion Css End =========================== */
/* ================================= Button Css Start =========================== */
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    color: none;
    background-color: none;
    border-color: none;
}

.btn {
    position: relative;
    border-radius: 5px;
    border: 1px solid transparent;
    font-weight: 500;
    font-family: var(--body-font);
    color: hsl(var(--white)) !important;
    z-index: 1;
    font-size: 0.875rem;
    line-height: 1;
    text-transform: uppercase;
    padding: 22px 30px;
}

@media screen and (max-width: 991px) {
    .btn {
        padding: 17px 20px;
    }
}

@media screen and (max-width: 767px) {
    .btn {
        padding: 14px 20px;
    }
}

.btn:hover, .btn:focus, .btn:focus-visible {
    box-shadow: none !important;
}

.btn-sm {
    padding: 12px !important;
    font-size: 0.6875rem;
}

.btn-sm .icon-right {
    font-size: 12px !important;
    margin-left: 4px !important;
}

.btn-icon {
    width: 44px;
    height: 44px;
    background-color: hsl(var(--white)) !important;
    padding: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
    border: 0;
    font-size: 1.25rem;
}

.btn-icon:hover {
    transform: scale(1.04);
}

.btn .icon-right {
    margin-left: 10px;
    font-size: 1rem;
}

.btn .icon-left {
    margin-right: 10px;
    font-size: 1rem;
}

.btn:active {
    transform: scale(1.014);
}

.btn-main {
    background-color: transparent !important;
    border-color: hsl(var(--main)) !important;
}

.btn-main::before, .btn-main::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--main-gradient);
    transition: 0.2s linear;
}

.btn-main::after {
    background: var(--main-gradient-rev);
    visibility: hidden;
    opacity: 0;
}

.btn-main:hover::after, .btn-main:focus::after, .btn-main:focus-visible::after {
    visibility: visible;
    opacity: 1;
}

.btn-outline-main {
    overflow: hidden;
    color: hsl(var(--heading-color)) !important;
    z-index: 1;
}

.btn-outline-main::before, .btn-outline-main::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--main-gradient);
    transition: 0.2s linear;
    border-radius: inherit;
}

.btn-outline-main::after {
    background: hsl(var(--body-bg));
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    left: 1px;
    top: 1px;
}

.btn-outline-main:hover, .btn-outline-main:focus, .btn-outline-main:focus-visible {
    color: hsl(var(--white)) !important;
}

.btn-outline-main:hover::after, .btn-outline-main:focus::after, .btn-outline-main:focus-visible::after {
    visibility: hidden;
    opacity: 0;
}

.btn-outline-main-dark {
    color: hsl(var(--white)) !important;
}

.btn-outline-main-dark::after {
    background-color: var(--gray-900);
}

.btn-outline-main-white {
    color: hsl(var(--heading-color)) !important;
}

.btn-outline-main-white::after {
    background-color: hsl(var(--white));
}

.btn.bg-white::after {
    background: hsl(var(--white));
}

.btn-outline-light {
    background-color: transparent !important;
    border: 1px solid var(--border-color) !important;
    color: hsl(var(--heading-color)) !important;
}

.btn-outline-light:hover, .btn-outline-light:focus .btn-outline-light:focus-visible {
    background-color: var(--gray-200) !important;
}

.btn-outline-lightInDark {
    background-color: transparent !important;
    border: 1px solid hsl(var(--white)/0.4) !important;
    color: hsl(var(--white)) !important;
}

.btn-outline-lightInDark:hover, .btn-outline-lightInDark:focus .btn-outline-lightInDark:focus-visible {
    background-color: var(--gray-200) !important;
    color: hsl(var(--heading-color)) !important;
}

/* ================================= Button Css End =========================== */
/* ================================= Form Css Start =========================== */
/* input Start */
.common-input {
    border-radius: 5px;
    font-weight: 400;
    outline: none;
    width: 100%;
    padding: 17px 24px;
    background-color: transparent !important;
    border: 1px solid var(--border-color);
    color: hsl(var(--black));
    line-height: 1;
    font-size: 1.0625rem;
}

@media screen and (max-width: 991px) {
    .common-input {
        padding: 12px 24px;
    }
}

@media screen and (max-width: 767px) {
    .common-input {
        padding: 10px 16px;
        font-size: 0.9375rem;
    }
}

.common-input::placeholder {
    color: var(--gray-800);
    font-size: 0.875rem;
    transition: 0.25s linear;
    font-weight: 400;
}

.common-input--md {
    padding: 13px 16px;
    font-size: 0.9375rem;
}

.common-input--lg {
    padding: 23px 24px;
}

@media screen and (max-width: 767px) {
    .common-input--lg {
        padding: 18px 24px;
    }
}

.common-input:focus {
    border-color: hsl(var(--main));
    box-shadow: none;
}

.common-input:focus::placeholder {
    visibility: hidden;
    opacity: 0;
}

.common-input:disabled, .common-input[readonly] {
    background-color: hsl(var(--black)/0.2);
    opacity: 1;
    border: 0;
}

.common-input[type=password] {
    color: hsl(var(--black)/0.5);
}

.common-input[type=password]:focus {
    color: hsl(var(--black));
}

.common-input[type=file] {
    line-height: 50px;
    padding: 0;
    position: relative;
}

.common-input[type=file]::file-selector-button {
    border: 1px solid hsl(var(--black)/0.08);
    padding: 4px 6px;
    border-radius: 0.2em;
    background-color: hsl(var(--main)) !important;
    transition: 0.2s linear;
    line-height: 25px;
    position: relative;
    margin-left: 15px;
    color: hsl(var(--body-color)) !important;
}

.common-input[type=file]::file-selector-button:hover {
    background-color: hsl(var(--main));
    border: 1px solid hsl(var(--main));
    color: hsl(var(--black));
}

.common-input--withIcon {
    padding-right: 50px !important;
}

.common-input--withLeftIcon {
    padding-left: 50px !important;
}

.common-input::placeholder {
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem) !important;
}

.common-input--light {
    border-color: hsl(var(--white)/0.44);
    color: hsl(var(--white));
}

.common-input--light::placeholder {
    color: hsl(var(--white)/0.3);
}

.common-input--grayBg {
    background-color: var(--gray-100) !important;
    border-color: var(--gray-100);
}

/* input End */
/* input icon */
.input-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--heading-color));
    font-size: 0.875rem;
}

.input-icon--left {
    left: 20px;
    right: auto;
}

textarea + .input-icon {
    top: 15px;
    transform: translateY(0);
}

/* input icon */
/* Label */
.form-label {
    margin-bottom: 6px;
    font-size: 0.875rem;
    color: hsl(var(--heading-color));
    font-weight: 500;
    font-family: var(--poppins-font);
}

/* Form Select */
.select-has-icon {
    position: relative;
}

.select-has-icon::before {
    position: absolute;
    content: "\f107";
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.875rem;
    transition: 0.2s linear;
    pointer-events: none;
}

.select-has-icon.icon-black::before {
    -webkit-text-fill-color: hsl(var(--black));
}

.select-has-icon select {
    background-image: none;
    -webkit-appearance: none;
    padding: 20px 24px;
    font-size: 18px;
}

@media screen and (max-width: 991px) {
    .select-has-icon select {
        padding: 15px 24px;
    }
}

@media screen and (max-width: 767px) {
    .select-has-icon select {
        padding: 12px 16px;
    }
}

.select-has-icon .common-input {
    padding-right: 30px !important;
}

.select {
    color: hsl(var(--black)/0.6) !important;
    padding: 16px 24px;
}

@media screen and (max-width: 991px) {
    .select {
        padding: 11px 24px;
    }
}

@media screen and (max-width: 767px) {
    .select {
        padding: 9px 24px;
        font-size: 0.9375rem;
    }
}

.select:focus {
    border-color: hsl(var(--main));
    color: hsl(var(--black)) !important;
}

.select option {
    background-color: hsl(var(--white));
    color: hsl(var(--heading-color));
}

/* Form Select End */
textarea.common-input {
    height: 140px;
}

@media screen and (max-width: 767px) {
    textarea.common-input {
        height: 110px;
    }
}
/* Autofill Css */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active,
textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-webkit-autofill:active {
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill, textarea:-webkit-autofill, textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: hsl(var(--heading-color)) !important;
    caret-color: hsl(var(--heading-color));
}

/* Autofill Css End */
/* Show Hide Password */
input#your-password, input#confirm-password {
    padding-right: 50px;
}

.password-show-hide {
    position: absolute;
    right: 20px;
    z-index: 5;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--black)/0.4);
}

/* Number Arrow None */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Custom Checkbox Design */
.common-check {
    margin-bottom: 16px;
}

.common-check:last-child {
    margin-bottom: 0;
}

.common-check a {
    display: inline;
}

.common-check .form-check-input {
    transition: 0.2s linear;
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid hsl(var(--black)/0.4);
    cursor: pointer;
    transition: 0.2s linear;
    margin-top: 0;
}

.common-check .form-check-input:checked {
    background-color: hsl(var(--main)) !important;
    border-color: hsl(var(--main)) !important;
    box-shadow: none;
}

.common-check .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.common-check .form-check-input:checked::before {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: hsl(var(--white));
    font-size: 0.6875rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.common-check .form-check-label {
    font-weight: 500;
    width: calc(100% - 18px);
    padding-left: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: hsl(var(--heading-color));
    font-family: var(--poppins-font);
}

@media screen and (max-width: 424px) {
    .common-check label {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 424px) {
    .common-check a {
        font-size: 0.9375rem;
    }
}
/* Custom Radio Design */
.common-radio {
    margin-bottom: 16px;
}

.common-radio:last-child {
    margin-bottom: 0;
}

.common-radio .form-check-input {
    transition: 0.2s linear;
    box-shadow: none;
    border: 1px solid hsl(var(--black)/0.4);
    position: relative;
    background-color: transparent;
    cursor: pointer;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: 0;
}

.common-radio .form-check-input:active {
    filter: brightness(100%);
}

.common-radio .form-check-input:checked {
    background-color: transparent;
    border-color: hsl(var(--main));
}

.common-radio .form-check-input:checked[type=radio] {
    background-image: none;
}

.common-radio .form-check-input:checked::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: hsl(var(--main));
    border-radius: 50%;
    transition: 0.2s linear;
    z-index: 1;
}

.common-radio .form-check-label {
    font-weight: 500;
    width: calc(100% - 18px);
    padding-left: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: hsl(var(--heading-color));
    font-family: var(--poppins-font);
}

/* ================================= Form Css End =========================== */
/* ================================= Pagination Css Start =========================== */
.common-pagination {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 60px;
}

@media screen and (max-width: 1199px) {
    .common-pagination {
        margin-top: 48px;
    }
}

@media screen and (max-width: 991px) {
    .common-pagination {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .common-pagination {
        margin-top: 32px;
    }
}

.common-pagination .page-item.active .page-link {
    color: hsl(var(--white));
}

.common-pagination .page-item.active .page-link::after {
    visibility: visible;
    opacity: 1;
}

.common-pagination .page-item .page-link {
    border: 0;
    margin: 0 5px;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-weight: 500;
    padding: 0;
    color: hsl(var(--heading-color));
    font-size: 1.25rem;
}

@media screen and (max-width: 991px) {
    .common-pagination .page-item .page-link {
        width: 48px;
        height: 48px;
    }
}

.common-pagination .page-item .page-link::before, .common-pagination .page-item .page-link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--gray-100);
    transition: 0.2s linear;
    border-radius: inherit;
}

.common-pagination .page-item .page-link::after {
    background: var(--main-gradient);
    visibility: hidden;
    opacity: 0;
}

.common-pagination .page-item .page-link:hover, .common-pagination .page-item .page-link:focus, .common-pagination .page-item .page-link:focus-visible {
    color: hsl(var(--white));
}

.common-pagination .page-item .page-link:hover::after, .common-pagination .page-item .page-link:focus::after, .common-pagination .page-item .page-link:focus-visible::after {
    visibility: visible;
    opacity: 1;
}

.common-pagination .page-item .page-link:focus {
    box-shadow: none;
}

/* ================================= Pagination Css End =========================== */
/* ================================= Tab Css Start =========================== */
.common-tab {
    margin-bottom: 20px;
    gap: 10px;
}

.common-tab.style-two .nav-item .nav-link {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray-900) !important;
    font-size: 0.75rem;
    border-color: hsl(var(--white)/0.3) !important;
    color: hsl(var(--white)/0.3);
    font-weight: 500;
}

.common-tab.style-two .nav-item .nav-link::before {
    background: var(--gray-900);
}

.common-tab.style-two .nav-item .nav-link.active {
    color: hsl(var(--main)) !important;
}

.common-tab.style-outline .nav-item .nav-link::before {
    background: hsl(var(--white));
}

.common-tab .nav-item {
    border-bottom: 0;
}

.common-tab .nav-item .nav-link {
    color: hsl(var(--heading-color));
    padding: 7px 25px !important;
    background-color: hsl(var(--white));
    border-radius: 5px;
    transition: 0.2s linear;
    border: 1px solid var(--border-color) !important;
    position: relative;
    z-index: 1;
    font-weight: 400;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .common-tab .nav-item .nav-link {
        padding: 5px 14px !important;
    }
}

.common-tab .nav-item .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--main-gradient);
    visibility: hidden;
    opacity: 0;
    transition: 0.2s linear;
}

.common-tab .nav-item .nav-link.active {
    color: hsl(var(--white)) !important;
    border-color: hsl(var(--main)) !important;
}

.common-tab .nav-item .nav-link.active::before {
    visibility: visible;
    opacity: 1;
}

.common-tab .nav-item .nav-link:hover {
    color: hsl(var(--main));
}

/* Side Tab Css Start */
.side-tab .nav-link {
    color: hsl(var(--body-color));
    font-family: var(--poppins-font);
    font-size: 15px;
    text-align: left;
    padding: 12px 24px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 16px;
}

.side-tab .nav-link.active {
    background: var(--main-gradient);
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
}

.side-tab .nav-link .icon {
    font-size: 14px;
}

/* Side Tab Css End */
/* ================================= Tab Css End =========================== */
/* ======================= Common Table Css Start ======================= */
.table-card {
    border: 1px solid hsl(var(--white)/0.2);
    border-radius: 10px;
    padding: clamp(1.25rem, 0.033rem + 2.536vw, 2.25rem);
}

.table {
    color: hsl(var(--white));
    font-family: var(--poppins-font);
    margin-bottom: 0;
    min-width: max-content;
}

.table > :not(caption) > * > * {
    border-bottom: 0;
}

.table.style-two {
    color: hsl(var(--heading-color));
}

.table.style-two thead tr, .table.style-two tbody tr {
    border-bottom: 1px solid hsl(var(--black)/0.1);
}

.table.style-two thead tr th {
    padding-bottom: 16px;
    font-size: 15px;
}

.table tr th {
    padding-left: 0;
    padding: 32px;
}

.table tr th:first-child {
    padding-left: 0;
}

.table tr th:last-child {
    padding-right: 0;
}

.table tr th, .table tr td {
    text-align: center;
    vertical-align: middle;
}

.table tr th:first-child, .table tr td:first-child {
    text-align: left;
}

.table tr th:last-child, .table tr td:last-child {
    text-align: right;
    padding-right: 0;
}

.table thead tr {
    border-bottom: 1px solid hsl(var(--white)/0.2);
}

.table thead tr th {
    padding-top: 0;
    font-size: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
    font-weight: 400;
    padding-bottom: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
}

.table tbody tr {
    border-bottom: 1px solid hsl(var(--white)/0.2);
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr:last-child td {
    padding-bottom: 0;
}

.table tbody tr td {
    font-size: clamp(0.875rem, 0.723rem + 0.317vw, 1rem);
    font-weight: 400;
    padding: clamp(1rem, -0.065rem + 2.219vw, 1.875rem) 0;
}

/* ======================= Common Table Css End ======================= */
/* ================= Common Card Css Start ========================= */
.common-card {
    border: 0;
    box-shadow: var(--box-shadow);
}

.common-card .card-header, .common-card .card-footer {
    padding: 12px 24px;
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
}

@media screen and (max-width: 424px) {
    .common-card .card-header, .common-card .card-footer {
        padding: 12px 16px;
    }
}

.common-card .card-header {
    background-color: hsl(var(--black));
}

.common-card .card-header .title {
    color: hsl(var(--white));
    margin-bottom: 0;
}

.common-card .card-body {
    padding: 24px;
}

@media screen and (max-width: 424px) {
    .common-card .card-body {
        padding: 16px;
    }
}

.common-card .card-footer {
    border-top: 1px solid var(--border-color);
    border-bottom: 0;
}

/* ================= Common Card Css End ========================= */
/* ================================= preload Css Start =========================== */
.preloader {
    background-color: hsl(var(--white));
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
}

.preloader .loader {
    background: hsl(var(--main));
    border-radius: 50%;
    width: 70px;
    height: 70px;
    left: 50%;
    margin-left: -23px;
    margin-top: -14px;
    position: absolute;
    top: 50%;
    animation: load 0.75s linear infinite;
}

.preloader .loader:after {
    content: "";
    position: absolute;
    width: 69px;
    height: 69px;
    top: 3px;
    right: 0;
    left: 0;
    margin: auto;
    background: hsl(var(--white));
    border-radius: 50%;
}

@keyframes load {
    to {
        transform: rotate(360deg);
    }
}
/* ================================= preload Css End ===========================  */
/* ====================== Section Heading ==================== */
.section-heading {
    text-align: center;
    margin-bottom: clamp(2.5rem, 0.066rem + 5.071vw, 4.5rem);
    max-width: 630px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.style-dark .section-heading__subtitle, .section-heading.style-dark .banner-video__subtitle {
    background-color: var(--gray-700);
}

.section-heading.style-dark .section-heading__title {
    color: hsl(var(--white));
}

.section-heading.style-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: unset;
    align-items: center;
}

.section-heading.style-flex .section-heading__inner {
    max-width: 630px;
}

.section-heading.style-flex .section-heading__desc {
    max-width: 410px;
}

@media (min-width: 1199px) {
    .section-heading.style-flex .section-heading__desc {
        margin-left: auto !important;
    }
}

.section-heading__subtitle, .banner-video__subtitle {
    padding: 5px 10px;
    border-radius: 3px;
    background-color: hsl(var(--white));
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.11em;
}

.section-heading__title {
    position: relative;
    margin-bottom: 0;
}

.section-heading__desc {
    margin-top: clamp(1rem, -0.217rem + 2.536vw, 2rem);
    font-size: clamp(1rem, 0.848rem + 0.317vw, 1.125rem);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading.style-left {
    text-align: left;
    margin-left: 0;
}

.section-heading.style-left .section-heading__desc {
    margin-left: 0;
}

/* ====================== Section Heading En d==================== */
/* ============= Header Start Here ======================= */
.header {
    background-color: hsl(var(--white));
    transition: 0.2s linear;
}

@media screen and (max-width: 991px) {
    .header {
        padding: 10px 0;
    }
}

.header.fixed-header {
    position: sticky;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9;
    backdrop-filter: blur(24px);
    animation: slideDown 0.35s ease-out;
    background-color: hsl(var(--white)/0.9) !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 991px) {
    .header.fixed-header {
        top: -1px;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.offcanvas-btn {
    margin-right: clamp(1rem, -0.521rem + 3.17vw, 2.25rem);
}

.offcanvas-btn svg, .offcanvas-btn svg line, .offcanvas-btn svg path {
    transition: 0.2s linear;
}

.offcanvas-btn:hover svg line, .offcanvas-btn:hover svg path {
    stroke: hsl(var(--main));
}

.toggle-mobileMenu {
    line-height: 1;
    font-size: 36px;
    color: hsl(var(--heading-color));
}

.contact-number {
    padding-right: clamp(0.75rem, -0.771rem + 3.17vw, 2rem);
    margin-right: clamp(0.75rem, -0.771rem + 3.17vw, 2rem);
    border-right: 1px solid var(--border-color);
}

@media screen and (max-width: 575px) {
    .contact-number {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 424px) {
    .contact-number {
        display: none !important;
    }
}

@media screen and (max-width: 575px) {
    .contact-number .icon {
        font-size: 15px !important;
    }
}
/* Header Menu and Submenu Css Start */
.nav-menu {
    gap: 24px;
}

.nav-menu__item.activePage > a {
    color: hsl(var(--main));
}

.nav-menu__item.activePage > a::before {
    color: hsl(var(--main));
}

.nav-menu__item:hover > a {
    color: hsl(var(--heading-color));
}

@media (min-width: 992px) {
    .nav-menu__item:hover > a {
        color: hsl(var(--main));
    }
}

.nav-menu__link {
    color: hsl(var(--heading-color));
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    padding: 38px 0;
    width: 100%;
}

.has-submenu {
    position: relative;
}

.has-submenu .nav-menu__link {
    padding-right: 16px;
}

.has-submenu.active > a, .has-submenu.active > a::before {
    color: hsl(var(--main));
}

.has-submenu.active > a::before {
    transform: translateY(-50%) rotate(180deg) !important;
}

.has-submenu:hover .nav-submenu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
}

@media (min-width: 992px) {
    .has-submenu:hover > a::before {
        color: hsl(var(--main));
        transform: translateY(-50%) rotate(180deg);
    }
}

.has-submenu > a {
    position: relative;
}

.has-submenu > a::before {
    position: absolute;
    content: "\f107";
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.625rem;
    color: hsl(var(--heading-color)/0.4);
    transition: 0.2s linear;
}

/* Submenu Start */
.nav-submenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: max-content;
    background-color: hsl(var(--white));
    border-radius: 6px;
    min-width: 190px;
    overflow: hidden;
    padding: 8px;
    box-shadow: var(--box-shadow);
    visibility: hidden;
    opacity: 0;
    margin-top: 16px;
    transition: 0.2s linear;
    z-index: 99;
}

.nav-submenu__item {
    display: block;
    border-radius: 4px;
    transition: 0.2s linear;
    position: relative;
}

.nav-submenu__item::before {
    position: absolute;
    content: "\f101";
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.625rem;
    color: hsl(var(--heading-color));
    visibility: hidden;
    opacity: 0;
    transition: inherit;
}

.nav-submenu__item:hover {
    background-color: var(--gray-200);
}

.nav-submenu__item:hover::before {
    visibility: visible;
    opacity: 1;
}

.nav-submenu__item:hover a {
    margin-left: 10px;
    color: hsl(var(--heading-color));
}

.nav-submenu__link {
    color: hsl(var(--heading-color));
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    padding-right: 16px;
    width: 100%;
    display: block;
    padding: 8px 14px;
    border-radius: inherit;
}

.nav-submenu__link::before {
    position: absolute;
}

/* Submenu End */
/* Header Menu and Submenu Css End */
/* ================================= Header Css End =========================== */
/* ==================== Common Header Css Start ======================== */
.dark-header {
    background-color: var(--gray-900);
}

.dark-header.has-border {
    border-bottom: 1px solid hsl(var(--white)/0.1);
}

.dark-header.fixed-header {
    background-color: var(--gray-700) !important;
}

.dark-header .toggle-mobileMenu {
    color: hsl(var(--white));
}

.dark-header .nav-menu__link {
    color: hsl(var(--white));
}

.dark-header .has-submenu > a::before {
    color: hsl(var(--white));
    opacity: 0.4;
}

.dark-header .nav-submenu {
    background-color: var(--gray-700);
}

.dark-header .nav-submenu__item::before {
    color: hsl(var(--white));
}

.dark-header .nav-submenu__item:hover {
    background-color: hsl(var(--white)/0.1);
}

.dark-header .nav-submenu__item:hover a {
    color: hsl(var(--white));
}

.dark-header .nav-submenu__link {
    color: hsl(var(--white));
}

.menu-right {
    margin-left: auto;
    margin-right: clamp(1.25rem, -1.945rem + 6.656vw, 3.875rem);
}

/* ==================== Common Header Css End ======================== */
/* ============ Search box ============= */
.search-box {
    position: relative;
}

.search-box .icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: hsl(var(--body-color));
}

.search-box.style-two .common-input {
    padding-right: 80px;
    border-color: transparent;
}

.search-box.style-two .common-input:focus {
    border-color: hsl(var(--main));
}

.search-box.style-two .icon {
    height: 100%;
    width: 70px;
    text-align: center;
    background: transparent;
    color: hsl(var(--white)) !important;
    right: 0 !important;
    border-radius: 0 5px 5px 0;
    z-index: 1;
}

.search-box.style-two .icon::before, .search-box.style-two .icon::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--main-gradient);
    transition: 0.2s linear;
    border-radius: inherit;
}

.search-box.style-two .icon::after {
    background: var(--main-gradient-rev);
    visibility: hidden;
    opacity: 0;
}

.search-box.style-two .icon:hover::after, .search-box.style-two .icon:focus::after, .search-box.style-two .icon:focus-visible::after {
    visibility: visible;
    opacity: 1;
}

/* ================== Search Box =================== */
/* =========================== Off canvas Css Start ========================= */
.common-offcanvas {
    position: fixed;
    right: 0;
    top: 0;
    background-color: var(--gray-900);
    padding: 32px;
    height: 100vh;
    overflow-y: auto;
    z-index: 991;
    width: 400px;
    transform: translateX(100%);
    transition: 0.2s linear;
}

.common-offcanvas.active {
    transform: translateX(0);
}

.common-offcanvas::-webkit-scrollbar {
    width: 6px;
}

.common-offcanvas::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.common-offcanvas::-webkit-scrollbar-thumb {
    background: #bab9b9;
    border-radius: 30px;
}

.common-offcanvas::-webkit-scrollbar-thumb:hover {
    background: #949494;
}

.common-offcanvas .close-button {
    background-color: hsl(var(--white)/0.1);
    color: hsl(var(--white));
}

.common-offcanvas .close-button:hover {
    background-color: hsl(var(--white)/0.3);
}

.address-list__item {
    gap: 12px;
    margin-bottom: 24px;
}

.address-list__item:last-child {
    margin-bottom: 0;
}

.address-list__item:hover .address-list__icon {
    border-color: hsl(var(--white)/0.6);
}

.address-list__icon {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
    color: hsl(var(--white));
    border-radius: 50%;
    border: 1px solid hsl(var(--white)/0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: 0.2s linear;
}

.address-list__text {
    color: var(--gray-200);
    display: block;
    margin-bottom: 6px;
}

.address-list__text:last-child {
    margin-bottom: 0;
}

.address-list a.address-list__text:hover {
    color: hsl(var(--main));
}

/* =========================== Off canvas Css End ========================= */
/* Mobile Menu Sidebar Start */
.mobile-menu {
    position: fixed;
    background-color: hsl(var(--white));
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    padding: 24px;
    z-index: 991;
    transform: translateX(-100%);
    transition: 0.2s linear;
    padding-bottom: 68px;
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #e0e0e0;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #bab9b9;
    border-radius: 30px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #949494;
}

.mobile-menu.active {
    transform: translateX(0%);
}

.close-button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
    height: 28px;
    background-color: var(--gray-200);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.close-button:hover {
    background-color: var(--gray-900);
    color: hsl(var(--white));
}

.nav-menu--mobile {
    display: block;
    margin-top: 32px;
}

.nav-menu--mobile .nav-menu__item > a::before {
    transform: translateY(-50%) rotate(0deg);
}

.nav-menu--mobile .nav-menu__link {
    border-bottom: 1px solid hsl(var(--black)/0.08) !important;
    position: relative;
    padding: 12px 0;
    padding-right: 16px;
}

.nav-menu--mobile .nav-submenu {
    position: static;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
    width: 100%;
    margin-top: 0;
    padding: 0;
    margin-left: 16px;
    display: none;
    transition: 0s;
}

.nav-menu--mobile .nav-submenu__link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid hsl(var(--black)/0.08) !important;
}

.nav-menu--mobile .nav-submenu__item:hover {
    background-color: transparent;
    color: hsl(var(--main));
}

.nav-menu--mobile .nav-submenu__item::before {
    display: none;
}

/* Mobile Menu Sidebar Start */
/* ================ Top Header Start Here ================ */
.header-top {
    padding: 11px 0;
}

.header-top-two {
    background-color: hsl(var(--white));
}

.header-top__inner {
    padding: 11px 0;
    border-bottom: 1px solid var(--gray-100);
}

.header-info {
    gap: clamp(0.75rem, -1.076rem + 3.803vw, 2.25rem);
}

@media screen and (max-width: 575px) {
    .header-info {
        width: 100%;
        justify-content: center;
    }
}

.header-info__item {
    color: hsl(var(--heading-color));
    gap: 10px;
    font-size: 1.125rem;
}

@media screen and (max-width: 991px) {
    .header-info__item {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .header-info__item {
        font-size: 0.9375rem;
    }
}

.header-info__icon {
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .header-info__icon {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .header-info__icon {
        font-size: 0.8125rem;
    }
}

.header-info__text {
    color: hsl(var(--heading-color));
}

.header-info__text:hover {
    color: hsl(var(--main));
}

.contact-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-list__item {
    padding-right: 20px;
    margin-right: 20px;
    position: relative;
}

.contact-list__item:last-child {
    padding-right: 0;
    margin-right: 0;
}

.contact-list__item:last-child::before {
    display: none;
}

.contact-list__item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 15px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsl(var(--white)/0.4);
}

.contact-list__item-icon {
    font-size: 0.75rem;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: hsl(var(--white));
    background-color: hsl(var(--main));
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.contact-list__link {
    color: hsl(var(--white));
    font-weight: 400;
    font-family: var(--body-font);
}

.contact-list__link:hover .contact-list__link-icon {
    color: hsl(var(--white));
}

/* Login Registration */
.login-registration-list {
    margin: 0 -10px;
    padding-right: 20px;
}

@media screen and (max-width: 991px) {
    .login-registration-list {
        padding-right: 0;
    }
}

.login-registration-list__item {
    color: hsl(var(--white));
    padding: 0 10px;
    position: relative;
}

.login-registration-list__item:last-child::before {
    display: none;
}

.login-registration-list__item::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 12px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsl(var(--white)/0.5);
}

.login-registration-list__icon {
    color: hsl(var(--main));
    margin-right: 10px;
    font-size: 1rem;
}

.login-registration-list__link {
    color: hsl(var(--white));
    font-weight: 400;
    font-family: var(--body-font);
}

@media screen and (max-width: 575px) {
    .login-registration-list__link {
        font-size: 0.9375rem;
    }
}

.login-registration-list__link:hover {
    color: hsl(var(--main));
}

.login-registration-list__link:hover .login-registration-list__icon {
    color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .login-registration-list__link:hover {
        color: hsl(var(--main));
    }
}
/* Language Box */
.language-box {
    display: flex;
    align-items: center;
    position: relative;
}

.language-box .select {
    color: hsl(var(--white));
    background-color: transparent;
    border: 1px solid hsl(var(--white)/0.4);
    padding: 5px 8px;
    font-size: 0.9375rem;
    font-weight: 400;
    border-radius: 5px;
}

.language-box .select option {
    background-color: hsl(var(--black));
}

/* ================ Top Header End Here ================ */
/* ============= Footer Start Here ======================= */
.footer {
    margin-top: auto;
    background-color: hsl(var(--black));
}

.footer-item__desc {
    margin-top: 32px;
    max-width: 230px;
    color: hsl(var(--white));
    font-size: 1.125rem;
    font-weight: 300;
}

.footer-item__logo {
    margin-bottom: 20px;
}

.footer-item__logo a img {
    width: 100%;
    height: 100%;
    max-width: 190px;
    max-height: 64px;
}

.footer-item__title {
    margin-bottom: clamp(1rem, -0.826rem + 3.803vw, 2.5rem);
    font-family: var(--poppins-font);
    color: hsl(var(--white));
    font-weight: 500;
}

/* Footer List Item */
.footer-menu {
    display: flex;
    flex-direction: column;
}

.footer-menu__item {
    display: block;
    padding-bottom: 16px;
}

.footer-menu__item:last-child {
    padding-bottom: 0;
}

.footer-menu__link {
    color: hsl(var(--white));
    font-size: 1.125rem;
    font-weight: 300;
}

@media screen and (max-width: 991px) {
    .footer-menu__link {
        font-size: 1rem;
    }
}

.footer-menu__link:hover {
    color: hsl(var(--main));
}

.gallery-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    max-width: 240px;
}

.gallery-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-list__item {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.gallery-list__item:hover .gallery-list__link {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.gallery-list__link {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--black)/0.6);
    border-radius: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    color: hsl(var(--white));
    transform: scale(0.4);
    visibility: hidden;
    opacity: 0;
}

.gallery-list__link:hover {
    color: hsl(var(--main));
}

/* Footer Contact */
.footer-contact__item {
    gap: 16px;
    color: hsl(var(--white));
    font-weight: 300;
    margin-bottom: 16px;
}

.footer-contact__item:last-child {
    margin-bottom: 0;
}

.footer-contact__icon {
    font-size: inherit;
    font-weight: inherit;
}

.footer-contact__text {
    font-size: inherit;
    font-weight: inherit;
}

.footer-contact__link {
    color: inherit;
}

.footer-contact__link:hover {
    color: hsl(var(--main));
}

/* Footer Top */
.footer-top {
    margin-bottom: clamp(2.5rem, -0.543rem + 6.339vw, 5rem);
}

.footer-top__left {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
}

.footer-top__left .text {
    max-width: 330px;
}

.subscribe-form {
    max-width: 550px;
}

.subscribe-form input {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding-left: 40px !important;
    color: hsl(var(--white));
}

@media (min-width: 768px) {
    .subscribe-form input {
        min-width: 400px;
    }
}

.subscribe-form input::placeholder {
    color: hsl(var(--white)/0.8);
}

.subscribe-form .input-icon {
    left: 0;
}

/* ============= Footer End Here ======================= */
/* ============= Bottom Footer End Here ======================= */
.bottom-footer {
    background-color: hsl(var(--black));
}

.bottom-footer__inner {
    border-top: 1px solid hsl(var(--white)/0.15);
    padding: 30px 0;
}

@media screen and (max-width: 991px) {
    .bottom-footer__inner {
        padding: 20px 0;
    }
}

.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(0.625rem, -0.896rem + 3.17vw, 1.875rem);
}

.footer-link, .bottom-footer__text {
    font-weight: 400;
    font-size: 1.125rem;
    font-weight: 300;
    color: hsl(var(--white)/0.8);
}

@media screen and (max-width: 991px) {
    .footer-link, .bottom-footer__text {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .footer-link, .bottom-footer__text {
        font-size: 0.9375rem;
    }
}

.footer-link:hover, .bottom-footer__text:hover {
    color: hsl(var(--main));
}

/* =============Bottom Footer End Here ======================= */
/* ====================== Footer Two Css Start ============================ */
.subscribe-box input {
    border-color: hsl(var(--white)/0.3);
}

.footer-two .footer-item__desc {
    max-width: 410px;
    color: hsl(var(--white));
    opacity: 0.8;
}

@media screen and (max-width: 1199px) {
    .footer-two .footer-item__desc {
        max-width: 100%;
    }
}

.contact-info.style-two {
    margin-bottom: 16px;
}

.contact-info.style-two:last-child {
    margin-bottom: 0;
}

.contact-info.style-two .contact-info__icon {
    width: 48px;
    height: 48px;
    background: var(--main-gradient);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(var(--white));
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .contact-info.style-two .contact-info__icon {
        width: 40px;
        height: 40px;
    }
}

.contact-info__text {
    color: hsl(var(--white));
    opacity: 0.8;
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem);
    font-weight: 300;
    display: block;
    margin-bottom: 4px;
}

.contact-info__address {
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem);
}

.footer-menu__link {
    position: relative;
    padding-left: 28px;
}

.footer-menu__link::before {
    position: absolute;
    content: "\f101";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
}

/* ====================== Footer Two Css End ============================ */
/* ===================== Scroll to Top Start ================================= */
.progress-wrap {
    position: fixed;
    right: 36px;
    bottom: 36px;
    height: 46px;
    line-height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background-color: var(--gray-100);
}

@media screen and (max-width: 991px) {
    .progress-wrap {
        right: 24px;
        bottom: 24px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:hover {
    transform: scale(1.06);
}

.progress-wrap::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f062";
    text-align: center;
    height: 46px;
    width: 46px;
    line-height: 46px;
    font-size: 18px;
    left: 0;
    top: 0;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    color: hsl(var(--main)) !important;
}

@media screen and (max-width: 991px) {
    .progress-wrap::after {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: hsl(var(--main));
    stroke-width: 5;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* ===================== Scroll to Top End ================================= */
/* ================================= Template Selection Css Start =========================== */
/* ================================= Template Selection Css End ===========================  */
/* ================================= Social Icon Css Start =========================== */
.social-list {
    display: inline-flex;
    gap: 24px;
    align-items: center;
    margin-top: 30px;
    border: 1px solid hsl(var(--white)/0.15);
    padding: 12px;
    border-radius: 5px;
}

.social-list__link {
    color: hsl(var(--white));
}

.social-list__link:hover {
    color: hsl(var(--main));
}

.social-list.style-two {
    border: 0;
    padding: 0;
    gap: 6px;
}

.social-list.style-two .social-list__link {
    width: 65px;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: hsl(var(--heading-color));
    font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
    .social-list.style-two .social-list__link {
        width: 48px;
        height: 46px;
    }
}

.social-icon-list.style-two .social-icon-list__link {
    border-radius: 5px;
    border-color: hsl(var(--white)/0.1);
}

.social-icon-list__link {
    width: 30px;
    height: 30px;
    border: 1px solid hsl(var(--white));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(var(--white));
    font-size: 0.875rem;
}

.social-icon-list__link:hover {
    background-color: hsl(var(--white));
    color: hsl(var(--main));
}

.text-facebook {
    color: #4676ED !important;
}

.text-pinterest {
    color: #C40027 !important;
}

.text-linkedin {
    color: #4467AD !important;
}

/* ================================= Social Icon Css End ===========================  */
/* ========================= Filter Css Start ====================== */
.filter {
    padding: 30px;
    background-color: hsl(var(--white));
    box-shadow: 0px 4px 13px -2px rgba(19, 16, 34, 0.06), 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1);
    border-radius: 5px;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .filter {
        padding: 20px;
    }
}

.filter--box {
    max-width: 360px;
}

/* ========================= Filter Css End ====================== */
/* ================= Slick Arrow & Dots css Start ================ */
.slick-initialized.slick-slider .slick-track {
    display: flex;
}

.slick-initialized.slick-slider .slick-slide {
    cursor: grab;
    height: auto;
    padding: 0 10px;
}

.slick-initialized.slick-slider .slick-slide > div {
    height: 100%;
}

/* Slick Slider Arrow Style two */
.slick-arrow {
    position: absolute;
    z-index: 1;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s linear;
    bottom: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
    left: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
}

.slick-arrow::before, .slick-arrow::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--main-gradient);
    z-index: -1;
    border-radius: inherit;
    opacity: 0.16;
    transition: 0.2s linear;
}

.slick-arrow::after {
    background-color: var(--gray-100);
    visibility: hidden;
    opacity: 0;
}

.slick-arrow:hover > i {
    color: hsl(var(--white));
    -webkit-text-fill-color: hsl(var(--white));
}

.slick-arrow:hover::before {
    opacity: 1;
}

button.slick-next {
    transform: translateX(50px);
}

/* Arrow Style Two */
.arrow-style-two {
    position: relative;
}

.arrow-style-two .slick-arrow {
    left: auto;
    right: 0;
    bottom: calc(100% + 50px);
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

.arrow-style-two .slick-arrow:hover::after {
    visibility: hidden;
    opacity: 0;
}

.arrow-style-two .slick-arrow::before {
    opacity: 1;
}

.arrow-style-two .slick-arrow::after {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    opacity: 1;
    visibility: visible;
    background: hsl(var(--white));
    transform: translate(1px, 1px);
}

.arrow-style-two .slick-prev {
    right: 80px;
}

.arrow-style-two .slick-next {
    transform: translateX(0px);
}

/* Dots Css Start */
.slick-dots {
    text-align: center;
    padding-top: 20px;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    border: none;
    background-color: var(--gray-800);
    color: hsl(var(--white));
    margin: 0 3px;
    width: 8px;
    height: 8px;
    border-radius: 1px;
    border-radius: 50%;
    text-indent: -9999px;
    transition: 0.3s linear;
}

.slick-dots li.slick-active button {
    background: var(--main-gradient);
    width: 25px;
    border-radius: 5px;
}

/* Dots Css End */
/* ================= Slick Arrow & Dots css Start ================ */
/* =============================== Star Rating Css Start =============================== */
.star-rating {
    gap: 5px;
}

.star-rating__item {
    font-size: 1.25rem;
}

.star-rating__item.unabled {
    background: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--gray-200);
}

/* =============================== Star Rating Css End =============================== */
/* ====================== Breadcrumb Css Start ==================== */
.breadcrumb {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    background-color: var(--gray-900);
    padding: clamp(5rem, -1.086rem + 12.678vw, 10rem) 0;
}

.breadcrumb__wrapper {
    text-align: center;
}

.breadcrumb__img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: -1;
}

.breadcrumb__title {
    margin-bottom: 20px;
    color: hsl(var(--white));
    font-family: var(--poppins-font);
    font-size: clamp(1.875rem, -1.016rem + 6.022vw, 4.25rem);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.breadcrumb__item {
    font-weight: 400;
    font-size: 1.125rem;
    color: hsl(var(--white));
}

@media screen and (max-width: 991px) {
    .breadcrumb__item {
        font-size: 1rem;
    }
}

.breadcrumb__link {
    font-weight: inherit;
    color: hsl(var(--white));
    font-size: inherit;
}

.breadcrumb__link:hover {
    color: hsl(var(--main));
}

/* ====================== Breadcrumb Css End ==================== */
.common-sidebar-wrapper {
    position: sticky;
    top: 120px;
}

.common-sidebar {
    background-color: var(--gray-100);
    padding: clamp(1.25rem, -6.244rem + 10vw, 2.5rem);
    border-radius: 5px;
    margin-bottom: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
}

.common-sidebar:last-of-type {
    margin-bottom: 0;
}

.common-sidebar__title {
    position: relative;
    margin-bottom: clamp(1rem, -4.246rem + 7vw, 1.875rem);
    font-family: var(--poppins-font);
}

/* ========================= Category & Tags List Style ========================= */
.category-list__item {
    margin-bottom: 16px;
}

.category-list__item:last-child {
    margin-bottom: 0;
}

.category-list__link {
    color: hsl(var(--heading-color));
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 5px;
    position: relative;
    padding-left: 64px;
    flex-wrap: nowrap;
}

@media screen and (max-width: 1199px) {
    .category-list__link {
        padding: 10px;
        padding-left: 32px;
    }
}

.category-list__link:hover {
    background-color: hsl(var(--main));
    border-color: hsl(var(--main));
    color: hsl(var(--white));
}

.category-list__link:hover .number {
    color: hsl(var(--white));
}

.category-list__link::before {
    position: absolute;
    content: "\f061";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: inherit;
    font-size: 0.75rem;
}

@media screen and (max-width: 1199px) {
    .category-list__link::before {
        left: 12px;
    }
}

.category-list__link .text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.category-list__link .number {
    flex-shrink: 0;
    color: var(--gray-800);
    font-size: 0.75rem;
    transition: 0.2s linear;
}

.tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.tag-list__link {
    color: hsl(var(--gray-300));
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 1.125rem;
}

@media screen and (max-width: 991px) {
    .tag-list__link {
        font-size: 1.125rem;
    }
}

.tag-list__link:hover {
    background-color: hsl(var(--main));
    border-color: hsl(var(--main));
    color: hsl(var(--white));
}

/* ======================== Latest Blog Css ========================  */
.latest-blog {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: hsl(var(--white));
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.latest-blog:last-of-type {
    margin-bottom: 0px;
}

.latest-blog__thumb {
    width: 82px;
    display: flex;
    overflow: hidden;
}

@media screen and (max-width: 424px) {
    .latest-blog__thumb {
        width: 60px;
    }
}

.latest-blog__thumb a {
    display: block;
    height: 100%;
    width: 100%;
}

.latest-blog__content {
    width: calc(100% - 82px);
    padding: 20px 10px;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 424px) {
    .latest-blog__content {
        width: calc(100% - 60px);
    }
}

.latest-blog__title {
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 24px;
}

.latest-blog__title a {
    color: hsl(var(--heading-color));
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.latest-blog__title a:hover {
    color: hsl(var(--main));
}

/* ========================= Latest Blog Css End ===================*/
/* ========================= Properties Css Start ===================*/
.properties-item {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.properties-item:hover img {
    transform: scale(1.08);
}

.properties-item:hover .properties-item__text {
    font-size: 0.8125rem;
}

.properties-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(24, 22, 22, 0) 0%, #181616 100%);
    border-radius: inherit;
    z-index: 1;
}

.properties-item img {
    transition: 0.2s linear;
}

.properties-item__text {
    font-size: 0.75rem;
    font-weight: 400;
    color: hsl(var(--white));
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 10px 15px;
    z-index: 2;
    transform: scale(1.06);
}

/* ========================= Properties Css End ===================*/
/* ================================= Comment Css Start =========================== */
.comment-list__item:last-child .comment-list__content {
    border-bottom: none;
}

.comment-list__thumb {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
    .comment-list__thumb {
        width: 60px;
        height: 60px;
    }
}

.comment-list__content {
    margin-left: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .comment-list__content {
        margin-left: 16px;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 575px) {
    .comment-list__content {
        padding-bottom: 20px;
        margin-bottom: 20px;
        width: 100%;
    }
}

.comment-list__name {
    margin-bottom: 0px;
}

.comment-list__date {
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem);
}

.comment-list__desc {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem);
}

.comment-list__reply {
    display: inline-block;
    color: hsl(var(--heading-color));
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.012em;
}

.comment-list__reply:hover {
    color: hsl(var(--main));
}

.comment-list .comment-list {
    margin-left: 70px;
}

.comment-list .comment-list.style-right .comment-list__item:last-child .comment-list__content {
    border-bottom: 1px solid hsl(var(--black)/0.1);
}

@media screen and (max-width: 575px) {
    .comment-list .comment-list {
        margin-left: 40px;
    }
}
/* ================================= Comment Css End =========================== */
/* ================================= Range Slider Css Start =========================== */
.custom--range__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}

.custom--range__content label {
    width: 40%;
}

.custom--range__content input {
    width: 60%;
    text-align: right;
}

.custom--range input {
    border: 0;
    color: hsl(var(--body-color));
    font-weight: 400;
    outline: none;
}

.custom--range #slider-range {
    height: 5px;
    border: 0;
    background: hsl(var(--main)/0.15);
}

.custom--range #slider-range .ui-widget-header {
    background-color: hsl(var(--main));
    transition: 0.2s linear;
}

.custom--range #slider-range span:focus {
    background-color: hsl(var(--main));
}

.custom--range #slider-range .ui-slider-handle {
    width: 18px !important;
    height: 18px !important;
    background-color: hsl(var(--main)) !important;
    border: 2px solid hsl(var(--white)) !important;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s linear;
    outline: none;
}

.custom--range #slider-range .ui-slider-handle:hover, .custom--range #slider-range .ui-slider-handle:active {
    transform: translateY(-50%) scale(1.4);
}

/* ================================= Range Slider Css End =========================== */
/* =========================== Banner Section Start Here ========================= */
.banner {
    position: relative;
    z-index: 1;
    padding: 100px 0 50px;
}

@media screen and (max-width: 991px) {
    .banner {
        padding: 80px 0 80px;
    }
}

@media screen and (max-width: 767px) {
    .banner {
        padding: 60px 0 60px;
    }
}

@media (min-width: 992px) {
    .banner-thumb {
        position: absolute;
        height: 100%;
        max-width: 630px;
        max-width: 50%;
        top: 0;
        right: 0;
        z-index: -1;
    }
}

@media (max-width: 991px) {
    .banner-thumb {
        margin-top: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
        position: relative;
        max-width: 590px;
    }
}

.banner .common-tab {
    margin-top: clamp(2rem, -2.412rem + 9.192vw, 5.625rem);
}

.banner-content {
    max-width: 610px;
}

.banner-content__subtitle {
    color: hsl(var(--heading-color));
    margin-bottom: 10px;
    letter-spacing: 0.11em;
    font-weight: 600;
    font-size: 0.875rem;
}

.banner-content__title {
    font-family: var(--poppins-font);
    margin-bottom: 20px;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .banner-content__title {
        margin-bottom: 12px;
    }
}

.banner-content__desc {
    max-width: 552px;
}

.banner-content__button {
    margin-top: 30px;
}

.shape-element {
    position: absolute;
    left: 0;
    top: 70px;
    max-width: 15%;
}

.shape-element.one {
    left: -30px;
    animation: rotation 8s linear infinite;
}

.shape-element.two {
    top: 134px;
    left: 150px;
    animation: rotationScale 8s linear infinite;
}

.shape-element.three {
    top: 174px;
    left: auto;
    right: 0;
    opacity: 0.92;
    animation: turnOver 8s linear infinite;
    perspective: 100px;
    perspective-origin: top;
}

@keyframes rotation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(80px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes rotationScale {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(0.8) rotate(180deg);
    }

    100% {
        transform: scale(1) rotate(360deg);
    }
}

@keyframes turnOver {
    0% {
        transform: rotateX(0deg);
    }

    50% {
        transform: rotateX(180deg);
    }

    100% {
        transform: rotateX(0deg);
    }
}
/* =========================== Banner Section End Here ========================= */
/* ======================== About Section Start ========================== */
.about .section-heading {
    margin-bottom: 30px;
}

.about-button {
    margin-top: clamp(1rem, -0.826rem + 3.803vw, 2.5rem);
}

.about-thumb {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: clamp(2rem, -0.13rem + 4.437vw, 3.75rem);
    max-width: 580px;
}

@media (min-width: 992px) {
    .about-thumb {
        margin-right: clamp(1.5rem, -1.156rem + 4.283vw, 3.125rem);
    }
}

.about-thumb::before, .about-thumb::after {
    position: absolute;
    content: "";
    width: clamp(6.25rem, 0.858rem + 20.349vw, 10.625rem);
    height: 100%;
    background: var(--main-gradient);
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    z-index: -1;
    opacity: 0.2;
}

.about-thumb::after {
    left: auto;
    right: 0;
}

.about-thumb img {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
}

.about-box {
    border-radius: 5px;
    border: 2px solid var(--gray-200);
    padding: 20px;
    gap: 20px;
}

.about-box__icon {
    flex-shrink: 0;
}

.client-statistics {
    background-color: hsl(var(--white));
    padding: 20px 40px;
    border-radius: 5px 5px 0 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    gap: clamp(0.75rem, 0.141rem + 1.268vw, 1.25rem);
}

@media screen and (max-width: 1199px) {
    .client-statistics {
        padding: 20px 16px;
    }
}

@media (max-width: 1199px) {
    .client-statistics {
        padding: 20px 16px;
    }
}

@media (max-width: 991px) {
    .client-statistics {
        padding: 20px 40px;
    }
}

@media (max-width: 480px) {
    .client-statistics {
        padding: 20px;
    }
}

@media (max-width: 424px) {
    .client-statistics {
        padding: 12px;
    }
}

.client-statistics__icon {
    font-size: clamp(1.25rem, 0.566rem + 2.581vw, 2.5rem);
}

.client-statistics__content {
    text-align: start;
}

.client-statistics__number {
    margin-bottom: 0;
    font-family: var(--poppins-font);
    font-weight: 500;
    margin-bottom: 5px;
}

/* ======================== About Section End ========================== */
/* ============================ Latest property Css Start ==================== */
.property-filter {
    margin-bottom: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
}

.property-filter__bottom {
    margin-top: clamp(1.25rem, 0.489rem + 1.585vw, 1.875rem);
}

/* List & Grid button */
.list-grid {
    display: none !important;
}

@media (min-width: 360px) {
    .list-grid {
        display: flex !important;
    }

    .list-grid__button {
        width: 40px;
        height: 40px;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        font-size: 26px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.2s linear;
    }

    .list-grid__button.active {
        border-color: hsl(var(--main)) !important;
        background: hsl(var(--main)) !important;
        color: hsl(var(--white)) !important;
    }

    .list-grid__button:hover {
        background-color: var(--gray-100);
    }
}
/* List & Grid button */
.property {
    background-color: var(--gray-900);
}

.property .section-heading {
    max-width: unset;
}

.property .section-heading__inner {
    max-width: 620px;
}

.property__btn {
    margin-top: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
}

/* property Item Start */
.property-item {
    background-color: hsl(var(--white)/0.025);
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    position: relative;
    transition: 0.2s linear;
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
}

@media screen and (min-width: 425px) and (max-width: 575px) {
    .property-item {
        display: flex;
    }
}

.property-item.style-white .property-item__badgeFour {
    background-color: hsl(var(--white));
    position: absolute;
    right: 0;
    top: 0;
    padding: 4px 12px;
    border-radius: 0 0 0 5px;
    letter-spacing: 0.11em;
}

.property-item.style-white .property-item__bottom {
    border-color: var(--border-color);
}

.property-item:hover {
    background-color: hsl(var(--white)/0.04);
}

.property-item:hover::before {
    width: 100%;
}

.property-item:hover .property-item__thumb img {
    transform: scale(1.04);
}

.property-item::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: var(--main-gradient);
    transition: 0.2s linear;
}

.property-item__thumb {
    position: relative;
    overflow: hidden;
    max-height: 252px;
    display: flex;
}

.property-item__thumb .link {
    display: block;
    width: 100%;
}

.property-item__thumb img {
    transition: 0.2s linear;
}

.property-item__badge {
    position: absolute;
    right: 0;
    top: 0;
    background: var(--main-gradient);
    padding: 5px 10px;
    border-radius: 0px 0px 0px 5px;
    color: hsl(var(--white));
    z-index: 1;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

.property-item__content {
    padding: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
    color: hsl(var(--white));
    flex-grow: 1;
}

.property-item__price {
    margin-bottom: clamp(0.75rem, 0.446rem + 0.634vw, 1rem);
}

.property-item__price .day {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 300;
}

.property-item__title, .property-item__price {
    color: hsl(var(--white));
    font-family: var(--poppins-font);
    font-weight: 400;
}

.property-item__title {
    margin-bottom: clamp(0.75rem, 0.141rem + 1.268vw, 1.25rem);
}

.property-item__title .link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-item__location {
    font-size: clamp(0.875rem, 0.571rem + 0.634vw, 1.125rem);
    font-weight: 300;
    opacity: 0.8;
}

@media screen and (max-width: 575px) {
    .property-item__location {
        font-size: 0.75rem;
    }
}

.property-item__location .icon {
    font-size: 0.875rem;
}

@media screen and (max-width: 575px) {
    .property-item__location .icon {
        font-size: 0.6875rem;
    }
}

.property-item__bottom {
    padding-top: 16px;
    margin-top: 22px;
    border-top: 1px solid hsl(var(--white)/0.1);
}

.property-item.style-two {
    overflow: unset;
    display: block;
    background-color: transparent;
    box-shadow: none;
}

.property-item.style-two::before {
    display: none;
}

.property-item.style-two .property-item__thumb {
    border-radius: 5px;
    overflow: hidden;
}

.property-item.style-two .property-item__content {
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
    border-radius: 5px 0px 5px 5px;
    margin-top: -88px;
    margin-left: 40px;
    position: relative;
    background-color: hsl(var(--white));
}

@media screen and (max-width: 1199px) {
    .property-item.style-two .property-item__content {
        margin-top: -88px;
        margin-left: 20px;
        padding: 16px;
    }
}

.property-item.style-two .property-item__title, .property-item.style-two .property-item__price {
    color: hsl(var(--heading-color));
    font-weight: 600;
}

.property-item.style-two .property-item__price {
    margin-top: 20px;
}

.property-item.style-two .property-item__location {
    color: var(--gray-800);
    font-weight: 400;
    margin-bottom: 24px;
}

.property-item.style-two .amenities-list__item .text {
    color: var(--gray-800);
    font-weight: 500;
}

/* property Item End */
/* Property List Grid Wrapper */
@media (min-width: 360px) {
    .list-view .list-grid-item-wrapper {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (min-width: 360px) and (min-width: 992px) {
    .list-view .list-grid-item-wrapper.show-two-item {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 360px) {
    .list-view .list-grid-item-wrapper > div {
        width: 100%;
    }
}

@media (min-width: 360px) {
    .list-view .property-item {
        display: flex;
    }
}

@media (min-width: 360px) {
    .list-view .property-item__content {
        margin-top: 0 !important;
        margin-left: 0 !important;
        border-radius: 0 5px 5px 0 !important;
    }
}

@media (min-width: 360px) {
    .list-view .property-item__thumb {
        border-radius: 5px 0 0 5px !important;
        display: flex !important;
        max-height: unset !important;
        max-width: 374px !important;
    }
}

@media screen and (min-width: 360px) and (max-width: 575px) {
    .list-view .property-item__thumb {
        max-width: 160px !important;
    }
}

@media screen and (min-width: 360px) and (max-width: 424px) {
    .list-view .property-item__thumb {
        max-width: 120px !important;
    }
}
/* Property List Grid Wrapper */
/* Amenities Css */
.amenities-list {
    gap: 20px;
}

.amenities-list__item {
    gap: 10px;
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 300;
}

.amenities-list__item .icon {
    font-size: 1rem;
}

.simple-btn {
    font-size: clamp(0.75rem, 0.001rem + 1vw, 0.875rem);
    color: hsl(var(--white));
    text-transform: uppercase;
    opacity: 0.9;
}

.simple-btn:hover > span {
    margin-left: 5px;
}

.simple-btn .icon-right {
    margin-left: 10px;
}

.simple-btn > span {
    transition: 0.2s linear;
}

/* ============================ Latest property Css End ==================== */
/* ======================= Property Section Css Start ================================== */
.property-type {
    background-color: hsl(var(--white));
}

.property-type-item {
    background-color: var(--gray-100);
    border-radius: 5px;
    padding: 40px 30px;
    transition: 0.2s linear;
    height: 100%;
}

@media screen and (max-width: 991px) {
    .property-type-item {
        padding: 30px 20px;
    }
}

@media (min-width: 425px) and (max-width: 575px) {
    .property-type-item {
        padding: 24px 12px;
    }
}

.property-type-item:hover {
    background-color: var(--gray-200);
}

.property-type-item:hover .property-type-item__icon img {
    transform: rotateY(180deg);
}

.property-type-item__icon {
    width: 70px;
    height: 70px;
    background: var(--main-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.property-type-item__icon img {
    transition: 0.2s linear;
}

.property-type-item__title {
    margin: 20px 0;
    max-width: 220px;
    font-weight: 600;
}

@media screen and (max-width: 991px) {
    .property-type-item__title {
        margin: 12px 0;
    }
}

.property-type-item__desc {
    max-width: 330px;
}

@media screen and (max-width: 991px) {
    .property-type-item__desc {
        font-size: 1rem !important;
    }
}
/* ======================= Property Section Css End ================================== */
/* ======================== Video popup Section Css Start =================== */
.video-popup {
    background-color: hsl(var(--white));
    position: relative;
    z-index: 1;
}

.video-popup::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background-color: hsl(var(--body-bg));
    z-index: -1;
}

.video-popup__thumb {
    position: relative;
    min-height: 220px;
    border-radius: 5px;
    overflow: hidden;
}

.video-popup__thumb img {
    min-height: inherit;
}

.video-popup__thumb span {
    display: none;
}

.video-popup__button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-gradient);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(var(--white)) !important;
    font-size: 26px;
    border-radius: 50%;
    transition: 0.2s linear;
}

.video-popup__button.style-two {
    background: var(--gray-900);
}

.video-popup__button.style-two:before {
    background: var(--gray-900);
}

.video-popup__button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.video-popup__button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: inherit;
    height: inherit;
    background: inherit;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

@keyframes pulse-border {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
/* ======================== Video popup Section Css End =================== */
/* ============================= Counter Section Css Start ======================= */
.counter-item {
    text-align: center;
}

.counter-item__number {
    position: relative;
    font-family: var(--poppins-font);
    opacity: 0.05;
    font-weight: 700;
    line-height: 0.91;
    font-size: clamp(3.125rem, 0.082rem + 6.339vw, 5.625rem);
    display: inline-block;
    margin-bottom: 0;
}

.counter-item__text {
    color: hsl(var(--heading-color));
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(0.75rem, 0.082rem + 1.392vw, 1.125rem);
    width: 100%;
    text-align: center;
}

/* ============================= Counter Section Css End ======================= */
/* ========================= Message Section Css Start ======================== */
.message, .testimonial__inner {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .message, .testimonial__inner {
        padding: 60px 0;
    }
}

@media screen and (max-width: 575px) {
    .message, .testimonial__inner {
        padding: 50px 0;
    }
}

.message-thumb, .testimonial-thumb {
    border-radius: 0 5px 5px 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 65%;
    height: 100%;
}

/* Form Box Css with border & dark version */
.form-box, .testimonial-box {
    background-color: hsl(var(--white));
    border-radius: 5px;
    padding: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
    max-width: 660px;
    margin-left: auto;
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
}

.form-box.style-dark, .style-dark.testimonial-box {
    border: 1px solid hsl(var(--white)/0.2);
    background-color: var(--gray-700);
    max-width: unset;
}

.form-box.style-dark input, .style-dark.testimonial-box input {
    border-color: hsl(var(--white)/0.2);
}

.form-box.style-dark label, .style-dark.testimonial-box label {
    font-family: var(--poppins-font);
}

.form-box__title {
    margin-bottom: clamp(1.5rem, -0.174rem + 3.487vw, 2.875rem);
}

/* ========================= Message Section Css End ======================== */
/* ========================= Portfolio Section Css Start ==================== */
.portfolio-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.portfolio-item:hover .portfolio-item__content {
    transform: translateY(0%);
    bottom: 0px;
}

.portfolio-item__thumb {
    border-radius: inherit;
}

.portfolio-item__content {
    width: 100%;
    background-color: var(--gray-900);
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    bottom: -22px;
    transition: 0.2s linear;
}

.portfolio-item__content .btn-icon {
    margin-left: auto;
    right: 40px;
    top: -22px;
    position: absolute;
}

.portfolio-item__inner {
    padding: clamp(1rem, -0.217rem + 2.536vw, 2rem);
    padding-top: 32px;
}

.portfolio-item__title {
    color: hsl(var(--white));
    margin-bottom: 14px;
}

.portfolio-item__title .link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-item__desc {
    color: hsl(var(--white));
    opacity: 0.8;
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem);
}

/* ========================= Portfolio Section Css End ==================== */
/* ================================ Testimonials Section Css Start ============================= */
.testimonial .slick-slide {
    transform: scale(0.9);
    transition: 0.3s linear !important;
    padding: 0 !important;
}

.testimonial .slick-slide.slick-active {
    transform: scale(1);
}

.testimonial-thumb {
    border-radius: 5px;
    left: 50px;
    right: 0;
    text-align: end;
    width: auto;
}

.testimonial-box {
    margin-left: 0;
}

.testimonial-item {
    position: relative;
    overflow: hidden;
}

.testimonial-item.style-two {
    background-color: hsl(var(--white));
    padding: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem);
    border-radius: 5px;
}

.testimonial-item.style-two .testimonial-item__info {
    gap: 20px;
}

.testimonial-item.style-two .testimonial-item__thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-item.style-four::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: var(--main-gradient);
    transition: 0.2s linear;
}

.testimonial-item.style-four .testimonial-item__quote {
    font-size: clamp(3.75rem, -1.118rem + 10.143vw, 7.75rem);
    opacity: 0.1;
    line-height: 1;
    position: absolute;
    bottom: 20px;
    right: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem);
}

.testimonial-item__name {
    margin-bottom: 5px;
}

.testimonial-item__designation {
    font-family: var(--poppins-font);
}

.testimonial-item__desc {
    margin-top: 32px;
    margin-bottom: 50px;
    font-size: clamp(1.125rem, 0.821rem + 0.634vw, 1.375rem);
}

@media screen and (max-width: 767px) {
    .testimonial-item__desc {
        margin-top: 20px;
        margin-bottom: 24px;
    }
}
/* ================================ Testimonials Section Css End ============================= */
/* ================================= Blog Section Css Start Here ============================= */
.blog-item {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
}

.blog-item.blog-dark .blog-item__content {
    border: 0;
    background-color: var(--gray-700);
}

.blog-item.blog-dark .blog-item__title {
    margin-bottom: 36px;
}

@media screen and (max-width: 991px) {
    .blog-item.blog-dark .blog-item__title {
        margin-bottom: 24px;
    }
}

.blog-item.blog-dark .blog-item__title-link {
    color: hsl(var(--white));
}

.blog-item.blog-dark .blog-item__date {
    font-size: 1rem;
    font-weight: 400;
    border-radius: 50px;
    padding: 4px 12px;
    right: 12px;
    top: 12px;
}

.blog-item:hover .blog-item__thumb img {
    transform: scale(1.06);
}

.blog-item__thumb {
    max-height: 230px;
    overflow: hidden;
    position: relative;
}

.blog-item__thumb-link {
    width: 100%;
    height: 100%;
}

.blog-item__thumb-link img {
    transition: 0.2s linear;
}

.blog-item__inner {
    position: relative;
}

.blog-item__date {
    padding: 6px 12px;
    border-radius: 5px;
    background-color: hsl(var(--white));
    position: absolute;
    right: clamp(1rem, -1.827rem + 4.56vw, 1.875rem);
    top: -30px;
    color: hsl(var(--heading-color));
    font-weight: 500;
    font-family: var(--poppins-font);
    font-size: clamp(1rem, 0.087rem + 1.902vw, 1.75rem);
    line-height: 24px;
}

.blog-item__date.style-three {
    left: 10px;
    top: 10px;
    text-align: center;
    right: auto;
    background-color: var(--gray-100);
    padding: 10px 20px;
}

.blog-item__date .text {
    color: hsl(var(--body-color));
    font-family: var(--body-font);
    font-size: clamp(0.875rem, 0.571rem + 0.634vw, 1.125rem);
    font-weight: 300;
    display: block;
}

.blog-item__content {
    padding: clamp(1rem, -1.827rem + 4.56vw, 1.875rem);
    padding-top: 30px;
    border: 1px solid var(--border-color);
    border-top: 0;
    border-radius: 0 0 5px 5px;
}

.blog-item__title {
    margin-top: 20px;
}

@media screen and (max-width: 575px) {
    .blog-item__title {
        margin-top: 15px;
    }
}

.blog-item__title-link {
    color: hsl(var(--heading-color));
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 500;
}

.blog-item__desc {
    margin-bottom: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 767px) {
    .blog-item__desc {
        margin-bottom: 15px;
    }
}
/* Text List */
.text-list {
    gap: 20px;
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 5px;
    display: inline-flex;
}

@media screen and (max-width: 991px) {
    .text-list {
        padding: 8px 12px;
        gap: 10px;
    }
}

.text-list__item .icon {
    color: hsl(var(--heading-color));
    margin-right: 8px;
}

.text-list__item .link {
    color: hsl(var(--body-color));
}

/* ================================= Blog Section Css End Here ================================= */
/* ==================== Home Two Initial Css Start =================== */
.dark-background {
    background-color: var(--gray-900);
    color: hsl(var(--white));
    font-weight: 300;
}

.dark-background h1, .dark-background h2, .dark-background h3, .dark-background h4, .dark-background h5, .dark-background h6 {
    color: hsl(var(--white));
}

.dark-background .section-heading__subtitle, .dark-background .banner-video__subtitle {
    background-color: var(--gray-700) !important;
}

/* ==================== Home Two Initial Css End =================== */
/* ========================== Banner Two Css Start ========================== */
.banner-two {
    padding: 45px 0;
    padding-bottom: 0;
}

.banner-two__title {
    font-size: clamp(2rem, -0.0733rem + 6.3692vw, 3.75rem);
    font-family: var(--poppins-font);
    font-weight: 200;
    max-width: 530px;
}

.banner-two__title .text {
    font-weight: 500;
    display: inline;
}

.banner-two__filter {
    padding: clamp(1.25rem, -1.793rem + 6.339vw, 3.75rem);
    margin-top: clamp(2rem, -0.13rem + 4.437vw, 3.75rem);
    border-radius: 5px;
}

.contact-content {
    max-width: 420px;
}

.contact-content__box {
    border: 1px solid var(--border-color);
    padding: clamp(1.5rem, -1.391rem + 6.022vw, 3.875rem) clamp(1.5rem, -0.478rem + 4.12vw, 3.125rem);
    border-radius: 5px;
    margin-top: clamp(1.5rem, -0.326rem + 3.803vw, 3rem);
}

.contact-content__desc {
    font-size: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
    line-height: 34px;
    margin-bottom: clamp(1.5rem, 0.435rem + 2.219vw, 2.375rem);
}

.contact-content__icon {
    max-width: 55px;
}

.contact-content__icon.style-bg {
    max-width: unset;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: hsl(var(--white)/0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content__contact {
    font-size: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
    margin-top: 2px;
    font-weight: 600;
    color: hsl(var(--white));
    display: block;
}

.contact-content__contact:hover {
    color: hsl(var(--main));
}

/* ========================== Banner Two Css End ========================== */
/* ============================= CTA section End ===================== */
.cta-box {
    padding: clamp(1.5rem, -3.901rem + 11.252vw, 5.9375rem) clamp(1.5rem, -2.76rem + 8.875vw, 5rem);
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.cta-content {
    flex-grow: 1;
}

.cta-content__title {
    margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
    .cta-content__title {
        margin-bottom: 16px;
    }
}

.cta-content__desc {
    margin-bottom: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
    max-width: 570px;
    font-size: clamp(1rem, 0.848rem + 0.317vw, 1.125rem);
    color: var(--gray-800);
}

.cta-content__form {
    max-width: 662px;
}

@media screen and (max-width: 424px) {
    .cta-content__form {
        display: block !important;
    }
}

@media screen and (max-width: 424px) {
    .cta-content__form .btn-main {
        width: 100%;
        margin-top: 16px;
    }
}

@media screen and (max-width: 575px) {
    .cta-content__form .btn-main .text {
        display: none;
    }
}
/* ============================= CTA section End ===================== */
/* ======================= Services Section Start ========================= */
.service-item {
    background-color: var(--gray-700);
    border-radius: 5px;
    padding: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem);
}

.service-item__icon {
    width: clamp(4.25rem, 2.729rem + 3.17vw, 5.5rem);
    height: clamp(4.25rem, 2.729rem + 3.17vw, 5.5rem);
    border-radius: 5px;
    border: 1px solid hsl(var(--white)/0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-item__icon img {
    max-width: 55px;
}

.service-item__title {
    margin: 20px 0 24px;
    font-weight: 400;
}

@media screen and (max-width: 1199px) {
    .service-item__title {
        margin: 20px 0 16px;
    }
}

.service-item__text {
    margin-bottom: clamp(1.25rem, -1.412rem + 5.547vw, 3.4375rem);
}

/* ======================= Services Section End ========================= */
/* ========================== About Two Section Start ========================= */
.about-two__button {
    margin-top: clamp(1.25rem, -1.793rem + 6.339vw, 3.75rem);
}

.about-two__thumb {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.about-two__thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #0F0F0F 100%);
    left: 0;
    bottom: 0;
}

.about-two-info {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: clamp(1rem, -0.826rem + 3.803vw, 2.5rem);
}

.about-two-info__title {
    margin-bottom: 6px;
    font-weight: 500;
}

.about-two-info__date {
    opacity: 0.7;
    color: hsl(var(--white));
    font-weight: 300;
}

/* ========================== About Two Section End ========================= */
/* ==================================== Floor Plan Section Css Start ========================== */
.floor-plan__title {
    position: relative;
    padding-right: 184px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .floor-plan__title {
        padding-right: 100px;
    }
}

@media screen and (max-width: 575px) {
    .floor-plan__title {
        padding-right: 100px;
    }
}

@media screen and (max-width: 424px) {
    .floor-plan__title {
        padding-right: 0;
    }
}

.floor-plan__title::before {
    position: absolute;
    content: "";
    width: 168px;
    height: 0.1px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsl(var(--white)/0.4);
}

@media (min-width: 992px) and (max-width: 1200px) {
    .floor-plan__title::before {
        width: 110px;
    }
}

@media screen and (max-width: 575px) {
    .floor-plan__title::before {
        width: 80px;
    }
}

@media screen and (max-width: 424px) {
    .floor-plan__title::before {
        display: none;
    }
}

.floor-plan-list__item {
    font-weight: 400;
    font-size: clamp(1.0625rem, 0.834rem + 0.475vw, 1.25rem);
    border-bottom: 1px solid hsl(var(--white)/0.1);
    padding: 20px 0;
}

@media screen and (max-width: 767px) {
    .floor-plan-list__item {
        padding: 12px 0;
    }
}

.floor-plan-list__item:first-child {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid hsl(var(--white)/0.1);
}

@media screen and (max-width: 767px) {
    .floor-plan-list__item:first-child {
        padding-top: 20px;
        margin-top: 20px;
    }
}

.floor-plan-list__item:last-child {
    border-bottom: 0;
    padding-top: 30px;
}

@media screen and (max-width: 767px) {
    .floor-plan-list__item:last-child {
        padding-top: 20px;
    }
}

.floor-plan-list__item .number {
    font-weight: inherit;
}

.floor-plan__desc {
    color: hsl(var(--white)/0.5);
}

/* ==================================== Floor Plan Section Css End ========================== */
/* ========================== Gallery Section Css Start =========================== */
.gallery-thumb {
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    height: 100%;
    position: relative;
}

.gallery-thumb:hover .gallery-thumb__link {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
    opacity: 1;
}

.gallery-thumb__link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background-color: hsl(var(--black)/0.6);
    color: hsl(var(--white)) !important;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
}

/* ========================== Gallery Section Css End =========================== */
/* ===================== Counter Two Section Css Start ======================= */
.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.counter-two-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-two-item__number {
    margin-bottom: 6px;
}

.counter-two-item__text {
    position: relative;
    padding-left: 50px;
}

@media (min-width: 768px) and (max-width: 992px) {
    .counter-two-item__text {
        font-size: 0.875rem !important;
    }
}

@media screen and (max-width: 424px) {
    .counter-two-item__text {
        padding-left: 0px;
    }
}

.counter-two-item__text::before {
    position: absolute;
    content: "";
    width: 36px;
    height: 0.5px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsl(var(--white));
}

@media screen and (max-width: 424px) {
    .counter-two-item__text::before {
        display: none;
    }
}
/* ===================== Counter Two Section Css End ======================= */
/* ============================= Message Two Section Css Start ======================== */
.message-two {
    position: relative;
    z-index: 1;
}

.message-two::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 77%;
    background-color: var(--gray-700);
    left: 0;
    top: 0;
    z-index: -1;
}

/* ============================= Message Two Section Css End ======================== */
/* ========================== Banner Three Css Start ============================== */
.banner-three {
    z-index: 1;
    position: relative;
}

.banner-three__dotted {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.banner-three__shape {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 14%;
    z-index: -1;
}

@media (min-width: 992px) {
    .banner-three .banner-thumb {
        top: auto;
        bottom: 34px;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .banner-three .banner-content__title {
        font-size: 52px;
    }
}

.curve-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    animation: animate 10s linear infinite;
}

@keyframes animate {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    50% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }

    100% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    }
}
/* ========================== Banner Three Css End ============================== */
/* ============================= About Three Section Css Start =========================== */
.about-three-thumb {
    position: relative;
}

@media screen and (max-width: 991px) {
    .about-three-thumb {
        max-width: 520px;
    }
}

.about-three-thumb::before {
    position: absolute;
    content: "";
    width: 160px;
    height: 75px;
    background: var(--main-gradient);
    top: 6px;
    left: -40px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: rotate(-45deg);
}

.about-three-thumb img {
    max-width: 520px;
    border-radius: 10px;
    width: 100%;
}

.project-content {
    position: absolute;
    right: 0;
    bottom: clamp(0.75rem, -0.619rem + 2.853vw, 1.875rem);
    display: inline-block;
    text-align: center;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .project-content {
        right: 10px;
    }
}

.project-content::before {
    position: absolute;
    content: "";
    background-image: url(http://imagineerblogs.files.wordpress.com/2011/09/172320.jpg);
    background-image: url(../images/shapes/polygon-border-shape.png);
    background-position: center top;
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
    width: 167px;
    height: 167px;
}

@media screen and (max-width: 991px) {
    .project-content::before {
        display: none;
    }
}

.project-content__inner {
    padding: 52px 30px;
    background-color: var(--gray-100);
    -webkit-mask: url(./../images/shapes/polygon-shape.png) no-repeat 50% 50%;
    mask: url(./../images/shapes/polygon-shape.png) no-repeat 50% 50%;
    -webkit-mask-size: 156px;
    mask-size: 156px;
}

@media screen and (max-width: 991px) {
    .project-content__inner {
        mask-size: 130px;
        padding: 41px 23px;
    }
}

.project-content__number {
    margin-bottom: 6px;
}

/* ============================= About Three Section Css End =========================== */
/* ======================= Property Type Three Start =========================== */
.property-type-three-item {
    border: 1px solid var(--border-color);
    padding: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
    border-radius: 5px;
    gap: clamp(0.75rem, -0.163rem + 1.902vw, 1.5rem);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.2s linear;
}

@media (min-width: 425px) and (max-width: 768px) {
    .property-type-three-item {
        flex-direction: column;
    }
}

.property-type-three-item:hover {
    background-color: hsl(var(--white));
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
}

.property-type-three-item:hover::before {
    width: 100%;
}

.property-type-three-item::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: var(--main-gradient);
    transition: 0.2s linear;
}

.property-type-three-item__icon {
    max-width: 55px;
}

.property-type-three-item__desc {
    margin: 20px 0;
}

@media screen and (max-width: 991px) {
    .property-type-three-item__desc {
        margin: 12px 0;
    }
}
/* ======================= Property Type Three End =========================== */
/* ========================== News Letter Section Start =============================== */
.newsletter {
    position: relative;
    z-index: 1;
}

.newsletter::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: var(--gray-100);
}

.newsletter-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 100px 24px;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .newsletter-content {
        padding: 80px 24px;
    }
}

@media screen and (max-width: 767px) {
    .newsletter-content {
        padding: 60px 24px;
    }
}

@media screen and (max-width: 575px) {
    .newsletter-content {
        padding: 40px 24px;
    }
}

.newsletter-content::before, .newsletter-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(247, 144, 32, 0) 66.48%, rgba(247, 144, 32, 0.62) 123.98%);
    left: 0;
    top: 0;
    z-index: -1;
}

.newsletter-content::after {
    opacity: 0.7;
    background-color: var(--gray-900);
}

.newsletter-content__desc {
    max-width: 570px;
    margin: 0 auto;
    margin-bottom: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
}

.newsletter-content__form {
    max-width: 595px;
    margin: 0 auto;
}

.newsletter-content__form .common-input {
    border-width: 2px;
    border-color: hsl(var(--white)/0.6);
    color: hsl(var(--white));
}

.newsletter-content__form .common-input::placeholder {
    color: hsl(var(--white));
    font-size: 16px !important;
    font-weight: 400;
}

/* ========================== News Letter Section End =============================== */
/* ============================ Testimonials Section Start =========================== */
.testimonials-three__box {
    border-radius: 6px;
    padding: clamp(2rem, -8.491rem + 14vw, 3.75rem) clamp(1.5rem, -8.242rem + 13vw, 3.125rem);
    position: relative;
}

@media (max-width: 991px) {
    .testimonials-three__box {
        border: 2px solid var(--border-color);
    }
}

@media (min-width: 992px) {
    .testimonials-three__box {
        padding-bottom: 140px;
    }

    .testimonials-three__box::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 133%;
        height: 100%;
        border: 2px solid var(--border-color);
        border-radius: inherit;
    }
}

@media (max-width: 991px) {
    .testimonials-three .testimonial-item.style-two {
        padding-bottom: 100px;
    }
}

@media (min-width: 992px) {
    .testimonials-three .slick-slider {
        position: unset;
    }
}

.testimonials-three .slick-arrow {
    left: clamp(1.5rem, -8.242rem + 13vw, 3.125rem);
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

.testimonials-three .slick-arrow::before {
    visibility: hidden;
    opacity: 0;
}

.testimonials-three .slick-arrow:hover {
    border: 1px solid transparent;
}

.testimonials-three .slick-arrow:hover::before {
    visibility: visible;
    opacity: 1;
}

.testimonials-three .slick-initialized.slick-slider .slick-slide {
    padding: 0;
}

.testimonials-three .slick-list.draggable {
    padding: 0 !important;
}

/* ============================ Testimonials Section End =========================== */
/* ========================= Counter Three Css Start ============================= */
.counter-three {
    background-color: var(--gray-900);
    z-index: 1;
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .counter-three {
        padding-bottom: 240px;
    }
}

.counter-three__bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0.2;
}

.counter-three-wrapper, .counter-five-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

@media screen and (max-width: 991px) {
    .counter-three-wrapper, .counter-five-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.counter-three-item {
    color: hsl(var(--white)/0.7);
    gap: 20px;
    justify-content: center;
}

.counter-three-item:hover .counter-three-item__icon::before {
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 424px) {
    .counter-three-item {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }
}

.counter-three-item.style-two .counter-three-item__icon {
    border-radius: 5px;
    width: 110px;
    height: 90px;
}

.counter-three-item.style-two .counter-three-item__icon::before {
    display: none;
}

@media screen and (max-width: 991px) {
    .counter-three-item.style-two .counter-three-item__icon {
        height: 90px;
        width: 90px;
    }
}

@media screen and (max-width: 767px) {
    .counter-three-item.style-two .counter-three-item__icon {
        height: 60px;
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .counter-three-item.style-two .counter-three-item__icon img {
        max-width: 40px;
    }
}

.counter-three-item__icon {
    position: relative;
    border-radius: 50%;
    width: clamp(3.75rem, 2.229rem + 3.17vw, 5rem);
    height: clamp(3.75rem, 2.229rem + 3.17vw, 5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: var(--main-gradient);
}

.counter-three-item__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--gray-900);
    z-index: -1;
    border-radius: inherit;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    transition: 0.2s linear;
}

.counter-three-item__number {
    margin-bottom: 4px;
    color: hsl(var(--white)/0.7);
}

/* ========================= Counter Three Css End ============================= */
/* ===================== Faq section Css Start ========================= */
.faq {
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .faq {
        margin-top: 0;
    }
}

.faq::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 100%;
    background-color: hsl(var(--white));
    border-radius: 0 5px 0 0;
    left: 0;
    top: 0;
    z-index: -1;
}

@media screen and (max-width: 991px) {
    .faq::before {
        width: 100%;
        border-radius: 0;
    }
}

.faq-thumb {
    position: absolute;
    right: 0;
    top: 120px;
    width: 48%;
    display: flex;
    height: calc(100% - 240px);
    border-radius: 5px;
    overflow: hidden;
}

/* ===================== Faq section Css End ========================= */
/* ========================= Team Section Css Start ============================= */
.team-item {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 575px) {
    .team-item__name {
        font-size: 0.875rem;
    }
}

.team-item__thumb {
    position: relative;
    z-index: 1;
    border: inherit;
}

.team-item__thumb:hover img {
    transform: scale(1.06);
}

.team-item__thumb::before {
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(180deg, rgba(24, 22, 22, 0) 0%, #181616 100%);
    border-radius: inherit;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: 50%;
}

.team-item__thumb img {
    transition: 0.2s linear;
    min-height: 300pxp;
}

.team-item__content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
    z-index: 2;
}

.social-share {
    position: relative;
}

.social-share__button {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    color: hsl(var(--heading-color));
    background-color: hsl(var(--white));
    transition: 0.2s linear;
}

.social-share__button.active, .social-share__button:hover {
    background-color: var(--gray-200);
}

.social-share-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    transition: 0.2s linear;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}

.social-share-list.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.social-share-list.style-two {
    position: relative;
    bottom: 0;
    clip-path: unset;
    flex-direction: row;
}

.social-share-list__link {
    width: 34px;
    height: 34px;
    border-radius: 5px;
    color: hsl(var(--white)) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.social-share-list__link::before, .social-share-list__link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background: var(--main-gradient);
    transition: 0.2s linear;
    border-radius: inherit;
}

.social-share-list__link::after {
    background: var(--main-gradient-rev);
    visibility: hidden;
    opacity: 0;
}

.social-share-list__link:hover::after, .social-share-list__link:focus::after, .social-share-list__link:focus-visible::after {
    visibility: visible;
    opacity: 1;
}

/* ========================= Team Section Css End ============================= */
/* ====================== Banner Four Css Start ============================== */
.banner-four {
    position: relative;
    z-index: 1;
}

@media (min-width: 576px) {
    .banner-four {
        padding: 144px 0;
        padding-bottom: 100px;
    }
}

.banner-four__thumb {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    max-width: 90%;
}

@media screen and (max-width: 575px) {
    .banner-four__thumb {
        display: none;
    }
}

.banner-four__inner {
    background-color: hsl(var(--white));
    mask-image: url(../images/shapes/banner-four-shape.png);
    mask-repeat: no-repeat;
    mask-size: contain;
}

@media screen and (max-width: 991px) {
    .banner-four__inner {
        mask-image: unset;
        border-radius: 0 1000px 1000px 0;
    }
}

@media screen and (max-width: 575px) {
    .banner-four__inner {
        border-radius: 0;
        background-color: var(--gray-100);
    }
}

.banner-four-content {
    padding: 80px 0;
    max-width: 635px;
}

@media screen and (max-width: 767px) {
    .banner-four-content {
        max-width: 435px;
    }
}

@media screen and (max-width: 575px) {
    .banner-four-content {
        padding: 60px 0;
    }
}

.banner-four-content__subtitle {
    background-color: var(--gray-100);
    border-radius: 50px;
    padding: 5px 10px;
    color: hsl(var(--heading-color));
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.11em;
    font-size: 0.875rem;
}

.banner-four-content__title {
    font-family: var(--poppins-font);
    font-weight: 600;
    font-size: clamp(2rem, -0.891rem + 6.022vw, 4.375rem);
    margin-top: 20px;
    margin-bottom: clamp(1.5rem, -0.934rem + 5.071vw, 3.5rem);
}

.search-keyword .common-input {
    padding-right: 200px;
}

@media screen and (max-width: 767px) {
    .search-keyword .common-input {
        padding-right: 152px;
    }
}

.search-keyword .btn {
    font-weight: 400;
    font-size: 21px;
    line-height: 24px;
    padding: 16px 46px;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1199px) {
    .search-keyword .btn {
        padding: 14px 32px;
    }
}

@media screen and (max-width: 767px) {
    .search-keyword .btn {
        padding: 11px 20px;
    }
}

@media screen and (max-width: 374px) {
    .search-keyword .btn {
        position: relative;
        top: 0;
        transform: unset;
        width: 100%;
        right: 0;
        margin-top: 10px;
    }
}
/* Banner Shapes */
.banner-four-shape {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    max-width: 45%;
}

@media screen and (max-width: 575px) {
    .banner-four-shape {
        display: none;
    }
}

.banner-four-shape.one {
    left: 54%;
    top: auto;
    bottom: 15%;
    animation: rotationScale 8s linear infinite;
}

.banner-four-shape.two {
    left: 38%;
    animation: leftRight 20s linear infinite;
}

.banner-four-shape.three {
    bottom: 0%;
    top: auto;
    left: 27%;
    animation: leftRight 20s linear infinite;
}

@keyframes leftRight {
    0%, 100% {
        transform: translate(0px);
    }

    50% {
        transform: translate(-300px);
    }
}
/* ====================== Banner Four Css End ============================== */
/* ========================== About Four Section Css Start ========================== */
.about-four .about-four-thumb::before {
    display: none;
}

.about-four .project-content {
    right: auto;
    left: 32px;
}

.about-four .project-content::before {
    display: none;
}

/* ========================== About Four Section Css End ========================== */
/* ==================== Latest Properties Four Start ========================= */
.latest-properties-four__thumb {
    border-radius: 15px;
    overflow: hidden;
}

.latest-properties-four__item {
    gap: clamp(1rem, -0.521rem + 3.17vw, 2.25rem);
    margin-bottom: clamp(1.5rem, 0.891rem + 1.268vw, 2rem);
}

.latest-properties-four__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(var(--white));
    font-size: 20px;
}

.latest-properties-four__title {
    margin-bottom: 12px;
}

/* ==================== Latest Properties Four End ========================= */
/* =========================== Counter Five Start ================================ */
.counter-five-item {
    gap: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
}

@media screen and (max-width: 424px) {
    .counter-five-item {
        flex-direction: column;
        justify-content: start;
    }
}

.counter-five-item__icon {
    width: clamp(4rem, 2.022rem + 4.12vw, 5.625rem);
    height: clamp(4rem, 2.022rem + 4.12vw, 5.625rem);
    border: 1px solid var(--border-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    flex-shrink: 0;
}

.counter-five-item__number {
    margin-bottom: 4px;
    font-family: var(--poppins-font);
}

/* =========================== Counter Five End ================================ */
/* ======================= Project page Section Css Start ====================== */
.project-section {
    position: relative;
    z-index: 1;
}

.project-section::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, var(--gray-100) 0%, hsl(var(--white)) 100%);
    z-index: -1;
}

.project-section .project-page__inner > div > div .slick-slide:nth-child(even) {
    margin-top: clamp(1.5rem, -0.478rem + 4.12vw, 3.125rem);
}

.project-section .project-page-thumb {
    overflow: hidden;
    height: clamp(16.25rem, 3.47rem + 26.624vw, 26.75rem) !important;
}

/* ======================= Project page Section Css End ====================== */
/* =================== Working Process Section Css Start ========================== */
.working-process {
    position: relative;
    z-index: 1;
}

.working-process__shape {
    position: absolute;
    left: 0;
    bottom: 80px;
    z-index: -1;
}

.working-process-item {
    gap: clamp(1.5rem, -0.478rem + 4.12vw, 3.125rem);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--border-color);
    position: relative;
    padding-right: 44px;
}

@media screen and (max-width: 991px) {
    .working-process-item {
        margin-bottom: 12px;
        padding-bottom: 12p;
    }
}

.working-process-item:last-child {
    margin-bottom: 0;
}

.working-process-item__number {
    font-weight: 400;
    font-size: clamp(2rem, 0.935rem + 2.219vw, 2.875rem);
    color: var(--gray-800);
    margin-bottom: 0;
    flex-shrink: 0;
}

.working-process-item__title {
    margin-bottom: 4px;
}

.working-process-item__link {
    font-size: 50px;
    color: var(--gray-900);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.working-process-item__link:hover {
    color: hsl(var(--main));
}

/* =================== Working Process Section Css End ========================== */
/* ========================== Banner Five Css Start ========================= */
.banner-five {
    padding-top: 150px;
    padding-bottom: 150px;
}

@media screen and (max-width: 991px) {
    .banner-five {
        padding-top: 110px;
        padding-bottom: 110px;
    }
}

@media screen and (max-width: 767px) {
    .banner-five {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 575px) {
    .banner-five {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 1299px) {
    .banner-five .banner-content__title {
        font-size: 50px;
    }
}

@media screen and (max-width: 767px) {
    .banner-five .banner-content__title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 575px) {
    .banner-five .banner-content__title {
        font-size: 2rem;
    }
}

.banner-five__thumb {
    position: relative;
}

@media (min-width: 992px) {
    .banner-five__thumb {
        position: absolute;
        right: 0;
        top: 0;
        max-width: 50%;
        height: 100%;
        display: flex;
        z-index: 1;
    }
}

.banner-five__thumb::before {
    position: absolute;
    content: "";
    width: 170px;
    height: 186px;
    background: var(--main-gradient);
    opacity: 0.3;
    left: 0;
    top: 32px;
    border-radius: 0px 0px 117px 0px;
}

@media screen and (max-width: 575px) {
    .banner-five__thumb::before {
        width: 120px;
        height: 146px;
    }
}

.banner-five__thumb img {
    border-radius: 360px 10px 10px 10px;
}

@media (min-width: 992px) {
    .banner-five__thumb img {
        border-radius: 360px 0px 0px 0px;
    }
}
/* ========================== Banner Five Css End ========================= */
/* ======================= About five Css Start ========================= */
.about-five__thumbs {
    position: relative;
}

.about-five__thumb {
    margin-bottom: 24px;
    overflow: hidden;
}

.about-five__thumb:last-child {
    margin-bottom: 0;
}

.about-five__thumb.one {
    border-radius: 99px 5px 99px 99px;
}

.about-five__thumb.two {
    border-radius: 5px 99px 99px 99px;
}

.about-five__thumb.three {
    border-radius: 99px 99px 5px 5px;
}

.about-five__content {
    border-radius: 53px 0px 53px 53px;
    background: var(--main-gradient);
    padding: 20px;
    gap: 10px;
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    min-width: max-content;
}

.about-five__icon {
    width: 52px;
    height: 52px;
    background-color: hsl(var(--white)/0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: hsl(var(--white));
    font-size: clamp(1.125rem, 0.973rem + 0.317vw, 1.25rem);
    flex-shrink: 0;
}

.about-five__amount {
    font-weight: 500;
}

.about-five__text {
    font-weight: 200;
}

/* ======================= About five Css End ========================= */
/* ======================= Service Slider Section Css Start ======================= */
.service-slider {
    border: 1px solid var(--gray-800);
    padding: 40px;
    border-right: 0;
    border-left: 0;
}

.service-slider .js-marquee {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-slider__item {
    min-width: max-content;
}

/* ======================= Service Slider Section Css Ends ======================= */
/* ====================== property Type Five Css Start =============================== */
.property-type-five-item {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 425px) and (max-width: 575px) {
    .property-type-five-item {
        display: flex;
    }
}

.property-type-five-item:hover {
    background-color: hsl(var(--white)/0.04);
}

.property-type-five-item:hover::before {
    width: 100%;
}

.property-type-five-item:hover .property-type-five-item__thumb img {
    transform: scale(1.04);
}

.property-type-five-item::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background: var(--main-gradient);
    transition: 0.2s linear;
}

.property-type-five-item__thumb {
    max-height: 320px;
    overflow: hidden;
}

.property-type-five-item__thumb img {
    transition: 0.2s linear;
}

.property-type-five-item__content {
    padding: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem);
    background-color: hsl(var(--white));
}

.property-type-five-item__date {
    width: 70px;
    height: 70px;
    font-size: 28px;
    border-radius: 5px;
    background-color: hsl(var(--black)/0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--poppins-font);
    font-weight: 400;
    color: hsl(var(--heading-color));
}

@media screen and (max-width: 991px) {
    .property-type-five-item__date {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

.property-type-five-item__title {
    margin-top: clamp(1rem, -0.217rem + 2.536vw, 2rem);
    margin-bottom: clamp(0.75rem, 0.141rem + 1.268vw, 1.25rem);
}

/* ====================== property Type Five Css End =============================== */
/* ===================== Choose Us Css Start =========================== */
.choose-us__thumb {
    padding: 20px 40px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1199px) {
    .choose-us__thumb {
        padding: 20px;
    }
}

.choose-us__thumb::before, .choose-us__thumb::after {
    position: absolute;
    content: "";
    width: 110px;
    height: 74px;
    border-radius: 5px;
    background: var(--main-gradient);
    right: 0;
    top: 0;
    z-index: -1;
}

.choose-us__thumb::after {
    top: auto;
    bottom: 0;
    border-radius: 99px 5px 5px 99px;
}

.choose-us__thumb-inner {
    position: relative;
    z-index: 1;
}

.choose-us__thumb-inner::before {
    position: absolute;
    content: "";
    width: calc(100% - 70px);
    height: 100%;
    top: -20px;
    left: 1px;
    border: 3px solid var(--gray-800);
    border-radius: 6px 0 0 0;
    border-right: 0;
    border-bottom: 0;
    z-index: -1;
}

.choose-us__thumb .img {
    border-radius: 200px 5px 5px 5px;
}

.choose-us__button {
    margin-top: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem);
}

.pipe-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

/* ===================== Choose Us Css End =========================== */
/* ======================= Counter Section Css Start ======================= */
.counter-six {
    background-color: hsl(var(--white));
    position: relative;
    z-index: 1;
}

.counter-six::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    background: var(--gray-100);
    z-index: -1;
}

.counter-six__inner {
    padding: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
    border-radius: 6px;
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
}

.counter-six-item__icon {
    width: 65px;
    height: 65px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 575px) {
    .counter-six-item__icon {
        width: 56px;
        height: 56px;
    }
}

@media screen and (max-width: 575px) {
    .counter-six-item__number {
        font-size: 1.25rem;
    }
}

.counter-six-item__text {
    margin-top: 12px;
}

@media screen and (max-width: 575px) {
    .counter-six-item__text {
        font-size: 0.875rem !important;
    }
}
/* ======================= Counter Section Css End ======================= */
/* =========================== Banner Six Css Start =============================== */
.banner-video {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-video::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: hsl(var(--black)/0.7);
}

.banner-video__video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.banner-video__subtitle {
    background-color: hsl(var(--white)/0.15) !important;
}

.banner-video__title {
    margin-top: 8px;
    margin-bottom: 32px;
}

.banner-video__desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 20px !important;
    font-weight: 300;
}

/* =========================== Banner Six Css End =============================== */
/* ======================== Banner Seven Start ============================== */
.banner-seven {
    position: relative;
}

.banner-seven .filter--box {
    background-color: hsl(var(--black)/0.4);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    padding: 24px;
    position: absolute;
    z-index: 1;
    right: 0px;
    top: 0;
    margin: 24px;
}

@media screen and (max-width: 575px) {
    .banner-seven .filter--box {
        margin: 16px;
        padding: 16px;
    }
}

.google-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.google-map iframe {
    min-height: 678px;
    width: 100%;
    margin-bottom: -10px;
}

/* ======================== Banner Seven End ============================== */
/* ======================== Blog Classic Css Start ============================ */
.blog-classic-item {
    height: auto;
    margin-bottom: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
}

@media screen and (max-width: 767px) {
    .blog-classic-item {
        display: block !important;
    }
}

.blog-classic-item:last-child {
    margin-bottom: 0;
}

.blog-classic-item .blog-item__thumb {
    max-height: 406px;
    max-width: 270px;
    flex-shrink: 0;
}

@media screen and (max-width: 767px) {
    .blog-classic-item .blog-item__thumb {
        max-width: 100%;
        max-height: 300px;
    }
}

.blog-classic-item .blog-item__content {
    border-radius: 0 5px 5px 0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

@media screen and (max-width: 1199px) {
    .blog-classic-item .blog-item__content {
        padding: 32px 20px;
    }
}

@media screen and (max-width: 991px) {
    .blog-classic-item .blog-item__content {
        padding: 24px 16px;
    }
}

@media screen and (max-width: 767px) {
    .blog-classic-item .blog-item__content {
        border-radius: 0 0 5px 5px;
    }
}

.blog-classic-item .blog-item__title {
    margin: 20px 0;
}

@media screen and (max-width: 991px) {
    .blog-classic-item .blog-item__title {
        margin: 8px 0;
    }
}

.blog-classic-item .blog-item__desc {
    margin-bottom: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem);
}

@media screen and (max-width: 767px) {
    .blog-classic-item .blog-item__desc {
        font-size: 0.9375rem !important;
    }
}

.blog-classic-item .blog-item__date {
    background-color: var(--gray-900);
    padding: 5px 6px;
    top: 0;
    right: 0;
    color: hsl(var(--white));
    font-weight: 400;
    border-radius: 0 0 0 5px;
}

/* ======================== Blog Classic Css End ============================ */
/* =========================================== Blog Details Css Start ==============================*/
.blog-details__thumb {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.blog-details__date {
    padding: 10px 20px;
    border-radius: 0 0 0 5px;
    background: var(--main-gradient);
    color: hsl(var(--white));
    font-size: 1.125rem;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.blog-details__content {
    padding: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
    padding-top: 0;
    background-color: var(--gray-100);
    max-width: 740px;
    border-radius: 0 5px 5px 5px;
    margin-top: -110px;
    position: relative;
}

@media screen and (max-width: 767px) {
    .blog-details__content {
        margin-top: 20px;
        border-radius: 5px;
    }
}

.blog-details__title {
    margin-top: 30px;
    margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
    .blog-details__title {
        margin-top: 20px;
        margin-bottom: 12px;
    }
}

.blog-details__desc {
    margin-bottom: 20px;
    font-size: clamp(1rem, 0.848rem + 0.317vw, 1.125rem);
}

.blog-details__desc:last-child {
    margin-bottom: 0;
}

.blog-infos {
    padding: 15px 12px;
    background: var(--main-gradient);
    display: inline-flex;
    align-items: center;
    border-radius: 0 0 5px 5px;
    gap: clamp(0.5rem, -1.174rem + 3.487vw, 1.875rem);
}

.blog-infos__item {
    color: hsl(var(--white));
    font-weight: 400;
    font-size: 1rem;
}

@media screen and (max-width: 767px) {
    .blog-infos__item {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 575px) {
    .blog-infos__item {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .blog-infos__item {
        font-size: 0.625rem;
    }
}

.blog-infos__link {
    color: inherit;
    transition: 0.2s;
    font-size: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-infos__link:hover {
    color: hsl(var(--heading-color));
}

/* Blog Testi Start */
.blog-testi {
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
    margin: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem) 0;
}

.blog-testi__thumb {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    overflow: hidden;
}

.blog-testi__desc {
    margin: 20px 0;
    font-size: clamp(1rem, 0.848rem + 0.317vw, 1.125rem);
}

.blog-testi__name {
    font-weight: 600;
    position: relative;
    padding-left: 50px;
    font-family: var(--poppins-font);
}

.blog-testi__name::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    background: var(--main-gradient);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

/* Blog Testi End */
/* Blog ShowCase Start */
.blog-showcase__content {
    gap: 30px;
    margin-bottom: 20px;
}

.blog-showcase__desc {
    margin-bottom: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
    font-size: clamp(1rem, 0.848rem + 0.317vw, 1.125rem);
}

.check-list.style-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

@media screen and (max-width: 1199px) {
    .check-list.style-two {
        grid-gap: 12px;
    }
}

@media screen and (max-width: 424px) {
    .check-list.style-two {
        grid-template-columns: 1fr;
    }
}

.check-list.style-two .check-list__item {
    margin-bottom: 0;
}

.check-list.style-two .check-list__item:nth-child(3), .check-list.style-two .check-list__item:nth-child(4) {
    margin-left: clamp(1rem, -11.739rem + 17vw, 3.125rem);
    margin-bottom: 0;
}

@media screen and (max-width: 424px) {
    .check-list.style-two .check-list__item:nth-child(3), .check-list.style-two .check-list__item:nth-child(4) {
        margin-left: 24px;
    }
}

.check-list.style-two .check-list__item .text {
    font-size: 0.875rem;
}

@media screen and (max-width: 1199px) {
    .check-list.style-two .check-list__item .text {
        font-size: 0.75rem;
    }
}

.check-list__item {
    margin-bottom: 20px;
    gap: 12px;
}

@media screen and (max-width: 767px) {
    .check-list__item {
        margin-bottom: 12px;
    }
}

.check-list__item:last-child {
    margin-bottom: 0;
}

.check-list__item .icon {
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 8px;
    color: hsl(var(--white));
    background: var(--main-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.check-list__item .text {
    color: hsl(var(--heading-color));
    font-weight: 500;
    font-family: var(--poppins-font);
    font-size: clamp(0.875rem, 0.571rem + 0.634vw, 1.125rem);
}

/* Blog ShowCase End */
/* Blog NextPrev Start */
.blog-nextPrev__item {
    gap: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
}

.blog-nextPrev__button {
    width: clamp(2.5rem, 0.979rem + 3.17vw, 3.75rem);
    height: clamp(2.5rem, 0.979rem + 3.17vw, 3.75rem);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem);
}

.blog-nextPrev__button:hover {
    border-color: hsl(var(--main));
}

.blog-nextPrev__text {
    margin-bottom: 4px;
    font-size: clamp(0.9375rem, 0.709rem + 0.475vw, 1.125rem);
}

/* Blog NextPrev End */
/* Blog Keyword Start */
.blog-keyword {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: clamp(1rem, 0.391rem + 1.268vw, 1.5rem) clamp(1rem, -0.826rem + 3.803vw, 2.5rem);
    margin: clamp(1.25rem, -0.271rem + 3.17vw, 2.5rem) 0;
}

.blog-keyword__link {
    color: var(--gray-800);
    margin-right: 15px;
}

.blog-keyword__link:last-child {
    margin-right: 0;
}

.blog-keyword__link:hover {
    color: hsl(var(--main));
}

/* Blog Keyword End */
/* Comment Form Start */
.comment-form {
    padding: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
    border-radius: 5px;
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    background-color: hsl(var(--white));
}

.comment-form__title {
    margin-bottom: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
    font-family: var(--poppins-font);
}

.comment-form__desc {
    margin-bottom: clamp(1.25rem, 0.489rem + 1.585vw, 1.875rem);
}

/* Comment Form End */
/* ========================================== Blog Details Css End ======================================*/
/* ====================== Property Details Section Start ================= */
.property-details__thumb {
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    height: 100%;
}

.property-details-item {
    padding: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
    background-color: var(--gray-100);
    border-radius: 5px;
    margin-bottom: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
}

.property-details-item:first-child {
    margin-top: clamp(1.5rem, -1.239rem + 5.705vw, 3.75rem);
}

.property-details-item:last-child {
    margin-bottom: 0;
}

.property-details-item__title {
    padding-bottom: clamp(1rem, 0.696rem + 0.634vw, 1.25rem);
    margin-bottom: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
    border-bottom: 1px solid var(--border-color);
}

.amenities-content {
    gap: clamp(0.75rem, 0.141rem + 1.268vw, 1.25rem);
}

.amenities-content__icon {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-color: hsl(var(--white));
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .amenities-content__icon {
        width: 40px;
        height: 40px;
    }
}

.amenities-content__icon img {
    max-width: 40px;
}

@media screen and (max-width: 767px) {
    .amenities-content__icon img {
        max-width: 28px;
    }
}

.amenities-content__text {
    margin-bottom: 4px;
    font-size: clamp(0.8125rem, 0.432rem + 0.792vw, 1.125rem);
}

@media screen and (max-width: 767px) {
    .amenities-content__title {
        font-size: 0.8125rem !important;
    }
}

.address-map {
    margin-top: clamp(1rem, -0.065rem + 2.219vw, 1.875rem);
}

.address-map iframe {
    width: 100%;
    height: 375px;
    filter: grayscale(1);
    border-radius: 5px;
}

.house-content img {
    border-radius: 5px;
}

/* ====================== Property Details Section End ================= */
/* ======================= Project page Section Css Start ====================== */
.project-page-thumb {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    height: 100%;
}

.project-page-thumb:hover .project-page-content {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.project-page-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: clamp(1rem, 0.391rem + 1.268vw, 1.5rem);
    background-color: hsl(var(--black)/0.5);
    border-radius: inherit;
    height: 20%;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s linear;
}

.project-page-content__title {
    color: hsl(var(--white));
    margin-bottom: 0;
}

.project-page-content__title .link {
    color: inherit;
}

/* ======================= Project page Section Css End ====================== */
/* =========================== Project Details Css Start =========================== */
.project-details__thumb {
    max-height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.project-details__content {
    margin-top: clamp(1.25rem, 0.489rem + 1.585vw, 1.875rem);
}

.project-details__title {
    margin-bottom: clamp(1.25rem, 0.489rem + 1.585vw, 1.875rem);
}

.project-details__desc {
    margin-bottom: 20px;
}

.project-details__desc:last-of-type {
    margin-bottom: 0;
}

.border-title {
    padding-bottom: 14px;
    margin-top: clamp(1.25rem, 0.489rem + 1.585vw, 1.875rem);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.border-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--main-gradient);
}

.text-list-two {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

@media screen and (max-width: 575px) {
    .text-list-two {
        grid-template-columns: 1fr;
    }
}

.text-list-two__item {
    position: relative;
    padding-left: 18px;
}

.text-list-two__item::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-gradient);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.project-sidebar__box {
    background-color: hsl(var(--white));
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
    padding: clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
    margin-right: 32px;
    margin-top: -90px;
}

@media screen and (max-width: 991px) {
    .project-sidebar__box {
        margin-right: 0px;
        margin-top: 0px;
    }
}

.project-sidebar__item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

@media screen and (max-width: 767px) {
    .project-sidebar__item {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
}

.project-sidebar__item:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: 0;
}

.project-sidebar__text {
    margin-bottom: 10px;
}

/* =========================== Project Details Css End =========================== */
/* ========================== Contact Form Css Start ============================ */
.contact-form {
    padding: clamp(2.5rem, -0.543rem + 6.339vw, 5rem) clamp(1.5rem, -2.76rem + 8.875vw, 5rem);
    border-radius: 6px;
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
}

.contact-form__form {
    max-width: 850px;
    margin: 0 auto;
}

.contact-us-section {
    margin-top: -110px;
    position: relative;
    z-index: 1;
}

/* ========================== Contact Form Css End ============================ */
/* ============================= Contact Top Section Css Start ======================= */
.contact-card {
    text-align: center;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 32px 70px;
    transition: 0.2s linear;
}

@media screen and (max-width: 1399px) {
    .contact-card {
        padding: 24px 40px;
    }
}

@media screen and (max-width: 767px) {
    .contact-card {
        padding: 24px;
    }
}

.contact-card:hover {
    background-color: hsl(var(--white));
    box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
    border-color: hsl(var(--white));
}

.contact-card__icon {
    height: 80px;
    width: 80px;
    background: var(--main-gradient);
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.875rem, 1.114rem + 1.585vw, 2.5rem);
    color: hsl(var(--white));
}

@media screen and (max-width: 767px) {
    .contact-card__icon {
        height: 60px;
        width: 60px;
    }
}

.contact-card__title {
    margin: 20px 0;
}

.contact-card__text {
    margin-bottom: 4px;
}

.contact-card__text .link {
    color: inherit;
    font-size: inherit;
}

.contact-card__text .link:hover {
    color: hsl(var(--main));
}

.contact-card__text:last-child {
    margin-bottom: 0;
}

.contact-map iframe {
    height: clamp(25rem, 5.983rem + 39.62vw, 40.625rem);
}

/* ============================= Contact Top Section Css End ======================= */
/* ====================== Add Listing Css Start ========================= */
.listing-sidebar {
    position: sticky;
    top: 120px;
    background-color: hsl(var(--white));
    padding: clamp(1.5rem, 0.891rem + 1.268vw, 2rem);
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

/* Sidebar Css Start */
.sidebar-list__link {
    padding: 8px 12px;
    border-radius: 5px;
    display: block;
    color: hsl(var(--heading-color));
    font-weight: 500;
}

.sidebar-list__link:hover {
    background-color: var(--gray-100);
    color: hsl(var(--main));
}

.sidebar-list__link.active {
    background-color: hsl(var(--main));
    color: hsl(var(--white));
}

/* Sidebar Css End */
.card-item {
    margin-bottom: 24px;
}

.card-item:last-child {
    margin-bottom: 0;
}

/* Image Uploader Css */
.input-images .image-uploader {
    border-color: var(--border-color);
    border-radius: 6px;
}

.input-images .image-uploader:hover {
    background-color: var(--gray-100);
}

.input-images .upload-text {
    text-align: center;
    padding: 0 10px;
}

.input-images .iui-cloud-upload::before, .input-images .iui-close::before {
    content: "\f382";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.input-images .iui-cloud-upload::before {
    content: "\f382";
}

.input-images .iui-close::before {
    content: "\f00d";
}

/* ====================== Add Listing Css End ========================= */
/* ===================================== Search Sidebar Css Start =================================*/
.search-sidebar {
    background-color: hsl(var(--white));
    box-shadow: var(--box-shadow);
    padding: 32px;
    transition: 0.3s ease-in-out;
    height: 100%;
    border-radius: 5px;
}

@media screen and (max-width: 1199px) {
    .search-sidebar {
        padding: 24px;
    }
}

.search-sidebar__item {
    margin-bottom: 60px;
}

.search-sidebar__item:last-child {
    margin-bottom: 0;
}

/* ===================================== Search Sidebar Css End =================================*/
/* ===================== Checkout Section Css Start ============================ */
.payment-method {
    background-color: var(--gray-100);
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
}

@media screen and (max-width: 424px) {
    .payment-method {
        padding: 12px;
        font-size: 12px;
    }
}

.payment-method .form-check-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-method .form-check-label img {
    max-width: 56px;
}

.billing-list__item {
    margin-bottom: 12px;
}

.billing-list__item:last-child {
    margin-bottom: 0;
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.billing-list__item:last-child .amount {
    font-size: 22px;
}

/* ===================== Checkout Section Css End ============================ */
/* ================================= Cart Page Css Start ============================= */
.cart-item {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid hsl(var(--black)/0.08);
}

@media screen and (max-width: 991px) {
    .cart-item {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

.cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.cart-item__thumb {
    width: 100px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
}

.cart-item__title {
    margin-bottom: 6px;
}

.cart-item__title .link {
    width: 250px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.cart-item__price {
    font-size: 0.875rem;
}

.cart-item__count {
    width: auto;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin: 0 auto;
}

.cart-item__count input {
    background: transparent;
    border: 0;
    text-align: center;
    width: 24px;
    color: hsl(var(--body-color));
    font-size: 14px;
}

.cart-item__count input:focus {
    outline: none;
}

.cart-item__count button {
    width: 34px;
    height: 34px;
    font-size: 13px;
    color: hsl(var(--body-color));
    border-radius: inherit;
}

.cart-item__count button:hover {
    color: hsl(var(--heading-color));
    background-color: var(--gray-100);
}

.rounded-btn {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.2s linear;
    font-size: 0.875rem;
    margin-left: auto;
}

.rounded-btn:hover {
    transform: scale(1.1);
}

/* ================================= Cart Page Css End ============================= */
/* ==================== Login Registration Page Css Start ============================= */
/* ==================== Login Registration Page Css End ============================= */
/* ========================== Account Page Css Start ==================== */
p.account-alert {
    padding: 20px;
    background-color: hsl(var(--main)/0.1);
    border: 1px solid hsl(var(--main)/0.14);
    border-radius: 5px;
    margin-bottom: 16px;
    background-color: #0294021c;
    border-color: #02940230;
}

p.account-alert:last-child {
    margin-bottom: 0;
}

.profile-info__thumb {
    max-width: 180px;
    max-height: 180px;
    border-radius: 5px;
    overflow: hidden;
}

/* ========================== Account Page Css End ==================== */
/*# sourceMappingURL=main.css.map */
