
@import url("../css/bootstrap.min.css");
@import url("../fonts/css/all.min.css");
@import url("../fonts/css/alexis.css");
@import url("../fonts/css/flag-icons.min.css");
@import url("../fonts/flaticon/flaticon_flaticons.css");
@import url("../css/magnific-popup.css");
@import url("../css/aos.css");
@import url("../css/nice-select.css");
@import url("../css/odometer.css");
@import url("../css/swiper-bundle.min.css");


:root {
    --montserrat: "Montserrat", sans-serif;
    --arimo: "Arimo", sans-serif;
    --template-font: var(--arimo);
    --template-bg: #ffffff;
    --template-color: #555555;
    --white: #ffffff;
    --black: #000000;
    --primary-color: #eef5ff;
    --secondary-color: #f5f5f5;
    --tertiary-color: #f3f8ff;
    --quaternary-color: #222222;
    --quinary-color: #212121;
    --transition: all 0.5s ease;
    --shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
    --shadow-secondary: 0px 16px 24px 0px rgba(242, 195, 53, 0.2);
}

/* ==== 
 --------- (1.02) variables end ---------
 ==== */

/* ==== 
 --------- (2.01) reset styles start ---------
 ==== */

* {
    margin: 0px;
    padding: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-moz-selection {
    color: #ffffff;
    background-color: #e11736;
}

*::selection {
    color: #ffffff;
    background-color: #e11736;
}

html {
    scroll-behavior: unset !important;
    /* overflow-x: clip; */
}

/*html,body{*/
/*       overflow-x: auto;*/
/*       overflow-y: auto;*/
/*}*/



.body-active {
    height: 100vh;
    overflow: clip;
}

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

a,
button {
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    outline: 0px;
    border: 0px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    cursor: pointer;
    color: #e11736;
}

a i,
a span,
button i,
button span {
    font-size: inherit;
    line-height: inherit;
    color:#fff;
}

a:hover,
button:hover {
    text-decoration: none;
    border: 0px;
    outline: 0px;
}

a:focus,
button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0px;
}

ul,
ol {
    list-style-type: none;
    list-style-position: inside;
    margin: 0px;
    padding: 0px;
}

hr,
blockquote,
textarea {
    margin: 0px;
    opacity: 1;
}

input,
textarea {
    border: 0px;
    outline: 0px;
}

input:focus,
textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0px;
}

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

input[type=checkbox] {
    width: initial;
    height: initial;
}

textarea {
    min-height: 150px;
    resize: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0px;
}

iframe {
    border: 0px;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0px;
    margin: 0px;
    color: var(--template-color);
    font-family: var(--arimo);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--montserrat);
}

/* ==== 
 --------- (2.01) reset styles end ---------
 ==== */

/* ==== 
 --------- (2.02) typography styles start ---------
 ==== */

p,
th,
td,
li,
input,
textarea,
select,
label,
blockquote,
span {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: var(--template-color);
}

a,
button {
    font-size: 16px;
    line-height: 24px;
}

h1 {
    font-size: 30px;
    line-height: 40px;
}

h2 {
    font-size: 30px;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    line-height: 34px;
}

h4 {
    font-size: 20px;
    line-height: 30px;
}

h5 {
    font-size: 20px;
    line-height: 30px;
}

h6 {
    font-size: 18px;
    line-height: 28px;
}

h1 a,
h1 span,
h2 a,
h2 span,
h3 a,
h3 span,
h4 a,
h4 span,
h5 a,
h5 span,
h6 a,
h6 span,
p a,
p span {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--montserrat);
}

/* ==== 
 --------- (2.02) typography styles end ---------
 ==== */

/* ==== 
 --------- (2.03) global styles start ---------
 ==== */

img {
    max-width: 100%;
    height: auto;
    border: 0px;
    outline: 0px;
    -o-object-fit: cover;
    object-fit: cover;
}

i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

span {
    display: inline-block;
}

.gutter-24 {
    row-gap: 24px;
}

.gutter-30 {
    row-gap: 30px;
}

.gutter-40 {
    row-gap: 40px;
}

div {
    line-height: 0px;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    --bs-gutter-x: 30px;
}

.vertical-column-gap-sm {
    row-gap: 16px;
}

.vertical-column-gap {
    row-gap: 30px;
}

.vertical-column-gap-lg {
    row-gap: 40px;
}

.cursor-outer {
    margin-left: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid #e11736;
    background-color: #e11736;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
    opacity: 0.14;
}

.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    margin-left: -12px;
    margin-top: -12px;
}

.cursor-inner {
    margin-left: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--base-color);
    opacity: 1;
    -webkit-transition: all 0.24s ease-out 0s;
    transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
    color: #e11736;
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.cursor-inner.cursor-big span {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: 1px solid #fff;
    opacity: 0;
}

.progress-wrap {
    margin-bottom: 76px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    padding: 6px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background-color: #1a1819;
    -webkit-box-shadow: inset 0 0 0 8px var(--base-color);
    box-shadow: inset 0 0 0 8px #e11736;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    z-index: 99;
    overflow: hidden;
}

.progress-wrap span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.progress-wrap span::after {
    content: "\f176";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    position: absolute;
    text-align: center;
    line-height: 34px;
    font-size: 18px;
    border-radius: 50%;
    color:#e11736;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, 200%);
    -ms-transform: translate(-50%, 200%);
    transform: translate(-50%, 200%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap span::before {
    position: absolute;
    content: "\f176";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    text-align: center;
    line-height: 34px;
    font-size: 18px;
    border-radius: 50%;
    color:#e11736;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 34px;
    width: 34px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover span::before {
    -webkit-transform: translate(-50%, -200%);
    -ms-transform: translate(-50%, -200%);
    transform: translate(-50%, -200%);
}

.progress-wrap:hover span::after {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.progress-wrap path {
    fill: none;
}

.progress-wrap .progress-circle path {
    stroke: #fff;
    stroke-width: 4;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

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

.pt-200 {
    padding-top: 200px !important;
}

.section__header {
    margin-bottom: 40px;
}

.section__header span {
    font-size: 26px;
    font-weight: 700;
    color: #e11736;
    margin-top: -8px;
    margin-bottom: 10px;
}

.section__header h2 {
    color: #e11736;
    font-weight: 600;
    margin: 16px 0px 30px;
}

.section__header .icon-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 12px;
}

.section__header .icon-thumb .icon-thumb-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 3px;
    line-height: 0px;
    padding-bottom: 4px;
}

.section__header .icon-thumb .icon-thumb-single:nth-of-type(2) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.section__header .icon-thumb span {
    width: 70px;
    height: 1px;
    background-color: #333333;
    display: inline-block;
    line-height: 0px;
}

.section__header .icon-thumb span:nth-of-type(2) {
    width: 56px;
}

.section__header-light {
    margin-bottom: 40px;
}

.section__header-light span {
    font-size: 18px;
    font-weight: 700;
    color:#e11736;
    margin-top: -8px;
}

.section__header-light h2 {
    color: #e11736;
    font-weight: 600;
    margin: 16px 0px 30px;
}

.section__header-light .icon-thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 12px;
}

.section__header-light .icon-thumb .icon-thumb-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 3px;
    line-height: 0px;
    padding-bottom: 4px;
}

.section__header-light .icon-thumb .icon-thumb-single:nth-of-type(2) {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.section__header-light .icon-thumb span {
    width: 70px;
    height: 1px;
    background-color:#fff;
    display: inline-block;
    line-height: 0px;
}

.section__header-light .icon-thumb span:nth-of-type(2) {
    width: 56px;
}

.video-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 4;
}

.video-btn-wrapper .open-video-popup {
    width: 85px;
    height: 85px;
    background: var(--white);
    border-radius: 100%;
    position: relative;
    -webkit-animation: pulse-shadow 3s 2s linear infinite;
    animation: pulse-shadow 3s 2s linear infinite;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

.video-btn-wrapper .open-video-popup i {
    font-size: 30px;
    color: var(--base-color);
}

.video-btn-wrapper .open-video-popup::before,
.video-btn-wrapper .open-video-popup::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--white);
    border-radius: 100%;
    z-index: -1;
}

.video-btn-wrapper .open-video-popup::after {
    -webkit-animation: pulse 3s linear infinite;
    animation: pulse 3s linear infinite;
}

.video-btn-wrapper .open-video-popup::before {
    -webkit-animation: pulse 3s 1s linear infinite;
    animation: pulse 3s 1s linear infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@-webkit-keyframes pulse-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    100% {
        -webkit-box-shadow: 0 0 0 85px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 85px rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-shadow {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    100% {
        -webkit-box-shadow: 0 0 0 85px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 85px rgba(255, 255, 255, 0);
    }
}

.pagination-one .swiper-pagination-bullets {
    text-align: center;
}

.pagination-one .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color:#e11736;
    border: 1px solid #e11736;
    border-radius: 0px;
    opacity: 1;
    margin: 0px 5px;
}

.pagination-one .swiper-pagination-bullet-active {
    background-color: #e11736;
    border-radius: 50%;
}

.slider-navigation-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
    height: 100%;
}

.slider-navigation-two button {
    padding: 12px;
    background-color: #333333;
    color: var(--base-color);
    font-size: 16px;
    font-weight: 700;
}

.slider-navigation-two button span {
    line-height: 1;
    font-weight: 700;
}

.slider-navigation-two button i {
    font-size: 16px;
}

.slider-navigation-two .prev-testimonial,
.slider-navigation-two .prev-area,
.slider-navigation-two .prev-testimonial-t,
.slider-navigation-two .prev-team-t,
.slider-navigation-two .prev-slide {
    /* background-color: var(--quaternary-color); */
    color: var(--white);
}

.slider-navigation-two .prev-testimonial span,
.slider-navigation-two .prev-area span,
.slider-navigation-two .prev-testimonial-t span,
.slider-navigation-two .prev-team-t span,
.slider-navigation-two .prev-slide span {
    display: none;
}

.slider-navigation-two .active span {
    display: block;
}

.slider-navigation-two .next-testimonial-t,
.slider-navigation-two .next-team-t {
    border: 1px solid var(--base-color);
}

.slider-navigation-two .prev-testimonial-t,
.slider-navigation-two .prev-team-t {
    border: 1px solid var(--quaternary-color);
}

.breadcrumb {
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumb .breadcrumb-item,
.breadcrumb a {
    color: #ffffff;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-left: 0px;
    color: #fff;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 12px;
    font-size: 20px;
    content: "::";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    color: #ffffff;
    margin-top: -2px;
}

.breadcrumb .active {
    color:#fff !important;
}

.blog-pagination {
    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;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 60px;
}

.blog-pagination button,
.blog-pagination a {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    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;
    border: 1px solid #707070;
    border-radius: 0px;
    background-color:#fff;
    color: var(--quaternary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.blog-pagination button:hover,
.blog-pagination a:hover {
    border-color: var(--base-color);
    color: var(--base-color);
}

.blog-pagination .active {
    border-color: var(--base-color);
    color: var(--base-color);
}

.blog-pagination button {
    background-color: var(--quaternary-color);
    color: var(--white);
}

.blog-pagination button:hover {
    background-color: var(--base-color);
    color: var(--white);
}

/* ==== 
 --------- (2.03) global styles end ---------
 ==== */

/* ==== 
 --------- (3.01) buttons styles start ---------
 ==== */
.prime{
        margin-top: -17px;
}
.pri{
    margin-top:17px;
}
.btn--primary {

    padding: 16px;
    background-color: #e11736;
    color: #fff;
    border: 1px solid #e11736;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.btn--primary::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 5px;
    bottom: 0px;
    width: 4px;
    height: 100%;
    background-color: var(--white);
    opacity: 0.3;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.btn--primary::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 0%;
    height: 100%;
    background-color: var(--black);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: -1;
}

.btn--primary:hover {
    border: 1px solid var(--black);
}

.btn--primary:hover::after {
    right: calc(100% - 8px);
}

.btn--primary:hover::before {
    width: 100%;
}

.btn--secondary {
    padding: 13px 24px;
    background-color: transparent;
    color: var(--white);
    border: 1px solid btn--secondary;
    position: relative;
    z-index: 1;
}

.btn--secondary::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 5px;
    bottom: 0px;
    width: 4px;
    height: 100%;
    background-color: var(--white);#9b1530
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.btn--secondary::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 0%;
    height: 100%;
    background-color: var(--base-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: -1;
}

.btn--secondary:hover {
    border: 1px solid #e11736;
    background-color: #e11736
    ;
}

.btn--secondary:hover::after {
    right: calc(100% - 8px);
}

.btn--secondary:hover::before {
    width: 100%;
}

/* ==== 
 --------- (3.01) buttons styles end ---------
 ==== */

/* ==== 
 --------- (3.02) forms styles start ---------
 ==== */

.input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group .input-single {
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 9px 16px;
    background-color: var(--white);
    border: 1px solid #707070;
    color: var(--quaternary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--base-color);
}

.input-group input::-webkit-input-placeholder,
.input-group textarea::-webkit-input-placeholder {
    color: var(--quaternary-color);
}

.input-group input::-moz-placeholder,
.input-group textarea::-moz-placeholder {
    color: var(--quaternary-color);
}

.input-group input:-ms-input-placeholder,
.input-group textarea:-ms-input-placeholder {
    color: var(--quaternary-color);
}

.input-group input::-ms-input-placeholder,
.input-group textarea::-ms-input-placeholder {
    color: var(--quaternary-color);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--quaternary-color);
}

.input-group textarea {
    min-height: 300px;
}

/* ==== 
 --------- (3.02) forms styles end ---------
 ==== */

/* ==== 
 --------- (3.03) preloader styles start ---------
 ==== */

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 120px;
}

/* ==== 
 --------- (3.03) preloader styles end ---------
 ==== */

/* ==== 
 --------- (4.01) header styles start ---------
 ==== */

.main-header {
    position: absolute !important;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 9;
}

.main-header__topbar {
    padding: 5px 0px;
    background-color: #333333;
}

.main-header__topbar .main-header__topbar__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
    /* padding-left: 300px; */
}

.main-header__topbar .main-header__topbar__content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    position: relative;
}

/* .main-header__topbar .main-header__topbar__content-wrapper::after {
    content: "";
    position: absolute;
    right: calc(100% + 30px);
    width: 100%;
    height: 40px;
    background-color: #0066ff;
} */

.main-header__topbar .main-header__topbar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main-header__topbar .main-header__topbar__list li {
    line-height: 0px;
}

.main-header__topbar .main-header__topbar__list a {
    font-size: 14px;
    line-height: 14px;
    color: var(--white);
    font-weight: 400;
    gap: 12px;
}

.main-header__topbar .main-header__topbar__list a:hover {
    color: #e4e4e4;
}

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

.main-header__topbar .main-header__topbar__select-country {
    background-color: transparent;
    border-radius: 0px;
    border: 0px;
    padding: 0px 16px 0px 0px;
}

.main-header__topbar .main-header__topbar__select-country::after {
    right: 0px;
    width: 7px;
    height: 7px;
    border-color: var(--white);
    margin-top: -4px;
}

.main-header__topbar .main-header__topbar__select-country .option,
.main-header__topbar .main-header__topbar__select-country .current {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 0px;
}

.main-header__topbar .main-header__topbar__select-country .option span,
.main-header__topbar .main-header__topbar__select-country .option i,
.main-header__topbar .main-header__topbar__select-country .current span,
.main-header__topbar .main-header__topbar__select-country .current i {
    width: 30px;
    height: 20px;
}

.main-header__topbar .main-header__topbar__select-country .current {
    color: var(--white);
}

.main-header__topbar .main-header__topbar__select-country .list {
    padding: 12px 0px;
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 22px;
}

.social a {
    font-size: 20px;
    color: var(--white);
}

.main-header__menu {
    background-color: var(--white);
}

.main-header__menu .main-header__menu-box {
    padding-top: 12px;
    padding-bottom: 12px;
    position: relative;
}

.main-header__menu .logo {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-header__menu .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.main-header__menu .navbar__menu {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: -15px;
}

.main-header__menu .navbar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.main-header__menu .navbar__item a {
    font-size: 17px;
    font-weight: 700;

    padding: 23px 15px;
    width: 100%;
    line-height: 1;
    color: var(--quaternary-color);
}

.main-header__menu .navbar__item a:hover {
    color: #e11736;
}

.main-header__menu .navbar__item .dropdown-label-alter {
    position: relative;
}

.main-header__menu .navbar__item .dropdown-label-alter::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    border: 10px solid transparent;
    border-bottom-color: #e11736;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(100%);
    -ms-transform: translateX(-50%) translateY(100%);
    transform: translateX(-50%) translateY(100%);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.main-header__menu .navbar__item:hover .dropdown-label-alter::before {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0%);
    -ms-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
}

.main-header__menu .navbar__item--has-children {
    position: relative;
}

.main-header__menu .navbar__item--has-children:hover>.navbar__dropdown-label {
    color: #e11736;
}

.main-header__menu .navbar__item--has-children:hover>.navbar__dropdown-label::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.main-header__menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub::after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.main-header__menu .navbar__item--has-children:hover>.navbar__sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    pointer-events: all;
}

.main-header__menu .navbar__dropdown-label {
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-header__menu .navbar__dropdown-label::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    border: none;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    font-size: inherit;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.main-header__menu .navbar__sub-menu {
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 220px;
    max-width: 260px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    pointer-events: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    padding: 20px 0px;
    border-radius: 5px;
    z-index: 9;
}

.main-header__menu .navbar__sub-menu li:nth-last-of-type(1)>a {
    border-bottom: 0px;
}

.main-header__menu .navbar__sub-menu a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px 32px;
    color: var(--black);
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(206, 206, 206, 0.4784313725);
    text-transform: capitalize;
}

.main-header__menu .navbar__sub-menu a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 24px;
    width: 4px;
    height: 8px;
    background-color: #e11736;
    opacity: 0;
    -webkit-transform: translateY(-50%) scaleX(0);
    -ms-transform: translateY(-50%) scaleX(0);
    transform: translateY(-50%) scaleX(0);
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
}

.main-header__menu .navbar__sub-menu a:hover {
    color:#e11736;
    padding-left: 40px;
}

.main-header__menu .navbar__sub-menu a:hover::before {
    opacity: 1;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
}

.main-header__menu .navbar__sub-menu .active>a {
    padding-left: 40px;
}

.main-header__menu .navbar__sub-menu .active>a::before {
    opacity: 1;
    -webkit-transform: translateY(-50%) scaleX(1);
    -ms-transform: translateY(-50%) scaleX(1);
    transform: translateY(-50%) scaleX(1);
}

.main-header__menu .navbar__sub-menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub {
    color: var(--base-color);
}

.main-header__menu .navbar__sub-menu__nested {
    top: 0%;
    left: 100%;
    min-width: 220px;
}

.main-header__menu .navbar__sub-menu__nested::before {
    content: "";
    position: absolute;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: -1;
    left: -20px;
    border: 10px solid transparent;
    top: 12px;
    border-right-color: var(--base-color);
}

.main-header__menu .active>.dropdown-label-alter::before {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0%);
    -ms-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
}

.main-header__menu .active>.navbar__dropdown-label,
.main-header__menu .active>a {
    color:#e11736;
}

.main-header__menu .contact-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.main-header__menu .contact-btn div {
    line-height: 0px;
}

.main-header__menu .contact-btn i {
    font-size: 36px;
    color: #e11736;
}

.main-header__menu .contact-btn p {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    color: var(--quaternary-color);
    margin-bottom: 6px;
}

.main-header__menu .contact-btn a {
    color: #555555;
    line-height: 1;
}

.main-header__menu .contact-btn a:hover {
    color: var(--base-color);
}

.main-header__menu .navbar__options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.main-header__menu .open-offcanvas-nav {
    padding: 0px;
    display: inline-block;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.main-header__menu .open-offcanvas-nav span {
    height: 2px;
    background-color: var(--quaternary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.main-header__menu .open-offcanvas-nav .top-bar {
    width: 30px;
}

.main-header__menu .open-offcanvas-nav .middle-bar {
    width: 34px;
}

.main-header__menu .open-offcanvas-nav .bottom-bar {
    width: 16px;
}

.main-header__menu .open-offcanvas-nav:hover span {
    background-color: var(--base-color);
}

.main-header__menu .open-offcanvas-nav-active .middle-bar {
    opacity: 0;
}

.main-header__menu .open-offcanvas-nav-active .top-bar,
.main-header__menu .open-offcanvas-nav-active .bottom-bar {
    width: 30px !important;
}

.main-header__menu .open-offcanvas-nav-active .top-bar {
    -webkit-transform: rotate(45deg) translateY(5px) translateX(9px);
    -ms-transform: rotate(45deg) translateY(5px) translateX(9px);
    transform: rotate(45deg) translateY(5px) translateX(9px);
    background-color: var(--base-color);
}

.main-header__menu .open-offcanvas-nav-active .bottom-bar {
    -webkit-transform: rotate(-45deg) translateY(-5px) translateX(9px);
    -ms-transform: rotate(-45deg) translateY(-5px) translateX(9px);
    transform: rotate(-45deg) translateY(-5px) translateX(9px);
    background-color: var(--base-color);
}

.mobile-menu {
    position: fixed;
    inset: 0px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    max-width: 425px;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}

.mobile-menu .mobile-menu__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* gap: 24px; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0px 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* .mobile-menu .logo img {
    max-width: 150px;
} */

.mobile-menu .close-mobile-menu {
    font-size: 36px;
    color: var(--base-color);
    position: relative;
    top: -50px;
    right: -25px;
}

.mobile-menu .mobile-menu__wrapper {
    position: absolute;
    left: -400px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    background-color:#fff;
    /* padding: 60px 0px; */
    z-index: 9999;
    border-radius: 0px;
    overflow-y: auto;
    overflow-x: clip;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* gap: 60px; */
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
}

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

.mobile-menu .navbar__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 0px !important;
}

.mobile-menu .navbar__list>li>a,
.mobile-menu .navbar__list>li button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__list>li:nth-of-type(1) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__item {
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.mobile-menu .navbar__item a {
    color: #000000;
    padding: 20px 80px 20px 40px;
    line-height: 1;
    font-size: 14px;
    text-transform: uppercase;
    width: 100%;
    position: relative;
    font-weight: 700;
}

.mobile-menu .navbar__item a:hover {
    color: #e11736;
}

.mobile-menu .navbar__item a::after {
    -webkit-transition: none;
    transition: none;
}

.mobile-menu .nav-fade {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all 0.7s ease-in-out !important;
    transition: all 0.7s ease-in-out !important;
}

.mobile-menu .navbar__item--has-children .navbar__dropdown-label::after {
    content: "+";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 60px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__item--has-children:hover .navbar__dropdown-label::after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.mobile-menu .navbar__item--has-children:hover>.navbar__dropdown-label-sub {
    color: var(--base-color) !important;
}

.mobile-menu .navbar__item-active {
    color: #e11736 !important;
}

.mobile-menu .navbar__item-active::after {
    content: "\f068" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.mobile-menu .navbar__sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    width: 100%;
    max-width: 100%;
    padding: 0px;
    display: none;
    -webkit-transition: none;
    transition: none;
    background-color: transparent;
    border-radius: 0px;
}

.mobile-menu .navbar__sub-menu::before {
    content: none;
}

.mobile-menu .navbar__sub-menu a,
.mobile-menu .navbar__sub-menu button {
    color: var(--quaternary-color);
    padding: 20px 40px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .navbar__sub-menu a::before,
.mobile-menu .navbar__sub-menu button::before {
    content: none;
}

.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) a,
.mobile-menu .navbar__sub-menu li:nth-last-of-type(1) button {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu .mobile-menu__options {
    padding: 0px 40px;
}

.mobile-menu .mobile-menu__options a,
.mobile-menu .mobile-menu__options button {
    width: 100%;
}

.mobile-menu .mobile-menu__social {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    padding: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mobile-menu .mobile-menu__social a {
    font-size: 20px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    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;
    background-color: #e11736;
    color: var(--white);
}

.mobile-menu .active>.navbar__dropdown-label,
.mobile-menu .active>a {
    color: #e11736;
}

.mobile-menu__backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
    visibility: hidden;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.mobile-menu__backdrop-active {
    width: 100%;
    visibility: visible;
    -webkit-transition: all 900ms ease;
    transition: all 900ms ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

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

.show-menu .mobile-menu__wrapper {
    left: 0px;
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.show-menu .nav-fade {
    -webkit-animation: navLinkFade 0.5s ease forwards;
    animation: navLinkFade 0.5s ease forwards;
    -webkit-transition: all 0.7s ease-in-out !important;
    transition: all 0.7s ease-in-out !important;
}

.nav-fade-active {
    animation: navLinkFade 1s ease reverse !important;
}

@-webkit-keyframes navLinkFade {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes navLinkFadeReverse {
    from {
        opacity: 0;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes navLinkFadeReverse {
    from {
        opacity: 0;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@-webkit-keyframes stickyNavbar {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes stickyNavbar {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.sticky-header .main-header__topbar {
    display: none;
}

.sticky-header .main-header__menu {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    -webkit-animation: stickyNavbar 0.5s linear;
    animation: stickyNavbar 0.5s linear;
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
}

/* .sticky-header .main-header__menu-box {
    padding-left: 0px !important;
} */
.sticky-header .main-header__menu-box {
    padding-left: 0px !important;
    margin-top: -24px;
    margin-bottom: -10px;
}
.sticky-header .navbar {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.sticky-header .navbar::after {
    content: none !important;
}

.sticky-header .navbar-logo {
    display: block !important;
}
.navbar-logo img{
    width: 200px;
    height:85px;
}
.logo img{
    width: 250px;

}
.sticky-header .logo {
    display: none !important;
}

.sticky-header .mobile-menu__header .logo {
    display: block !important;
}

.header-two {
    position: relative;
}

.header-two .main-header__topbar {
    background-color: var(--base-color);
}

.header-two .main-header__topbar .main-header__topbar__content-wrapper::after {
    content: none;
}

.header-two .main-header__menu {
    background-color: var(--base-color);
}

.header-two .main-header__menu .main-header__menu-box {
    padding-top: 15px;
    padding-bottom: 14px;
}

.header-two .main-header__menu .navbar::after {
    background-color: var(--quaternary-color);
    right: 100%;
    -webkit-clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 100% 100%, 0% 100%);
}

.header-two .navbar__menu {
    background-color: var(--quaternary-color);
    position: relative;
}

.header-two .navbar__menu::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 100%;
    height: 0px;
    width: 100px;
    height: 100%;
    background-color: var(--quaternary-color);
}

.header-two .submit-btn {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 30px;
    -webkit-clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 80% 0%, 100% 100%, 100% 100%, 0% 100%);
    background-color: var(--quaternary-color);
}

.header-two .submit-btn a {
    color: var(--white);
}

.header-two .submit-btn a i {
    font-size: 24px;
}

.header-two .contact-btn {
    position: absolute;
    left: calc(100% + 60px);
    bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    height: 100px;
    min-width: 200px;
}

.header-two .contact-btn div {
    line-height: 0px;
}

.header-two .contact-btn .contact-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    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;
    background-color: #e11736;
}

.header-two .contact-btn i {
    font-size: 30px;
    color: var(--white);
}

.header-two .contact-btn p {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.header-two .contact-btn a {
    color: var(--white);
    line-height: 1;
}

.header-two .contact-btn a:hover {
    color: var(--white);
}

.header-two .icon-bar {
    background-color: var(--white) !important;
}

.header-two.sticky-header .main-header__menu {
    border-bottom: 0px;
}

.header-two.sticky-header .contact-btn {
    height: 90px;
}

.header-three .main-header__topbar {
    background-color: transparent;
    padding: 11px 0px;
}

.header-three .main-header__topbar .main-header__topbar__list i {
    font-size: 18px;
}

.header-three .main-header__topbar .main-header__topbar__content-wrapper::after {
    content: none;
}

.header-three .main-header__menu {
    background-color: var(--white);
}

.header-three .main-header__menu .navbar {
    padding: 0px;
}

.header-three .main-header__menu .navbar__item a {
    padding: 28px 15px;
}

.header-three .main-header__menu .navbar__item .dropdown-label-alter::before {
    content: none;
}

.header-three .main-header__menu .navbar__sub-menu a {
    padding: 16px 32px;
}

.header-three .main-header__menu .navbar__sub-menu a:hover {
    padding-left: 40px;
}

.header-three .main-header__menu .navbar__sub-menu .active>a {
    padding-left: 40px;
}

.header-three.sticky-header .main-header__menu {
    background-color: var(--white);
}

.header-three.sticky-header .main-header__menu .main-header__menu-box {
    background-color: var(--white);
    padding-right: 0px !important;
}

.header-three.sticky-header .main-header__menu .navbar {
    padding: 0px;
}

/* ==== 
 --------- (4.01) header styles end ---------
 ==== */

/* ==== 
 --------- (4.02) banner styles start ---------
 ==== */

.banner {
    overflow-x: clip;
    position: relative;
    margin-top: 90px;
}

.banner .banner__slider-single {
    padding-top: 100px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.banner .banner__slider-inner {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: right bottom;
    position: absolute;
    inset: 0px;
    z-index: -1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.banner .banner__slider-content {
    padding: 100px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-top: 8px solid #e11736;
}

.banner .banner__slider-content span,
.banner .banner__slider-content h1,
.banner .banner__slider-content p {
    color: var(--white);
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner .banner__slider-content h1 {
    font-weight: 700;
    margin-top: 27px;
    margin-bottom: 30px;
}

.banner .banner__slider-content p {
    font-size: 18px;
}

.banner .banner__slider-cta {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner .swiper-slide-active .banner__slider-inner {
    -webkit-animation: backgroundAnimation 12s ease-in-out;
    animation: backgroundAnimation 12s ease-in-out;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.banner .swiper-slide-active .banner__slider-content span {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.banner .swiper-slide-active .banner__slider-content h1 {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.banner .swiper-slide-active .banner__slider-content p {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.banner .swiper-slide-active .banner__slider-content .banner__slider-cta {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner .slider-navigation {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 2;
    padding: 0px 80px;
}

.slider-navigation .slider-btn {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    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;
    border-radius: 0px;
    background-color: #e11736;
    font-size: 20px;
    color: var(--black);
}

.slider-navigation .slider-btn:hover {
    background-color:rgb(35, 25, 25);
    color: var(--white);
}

@-webkit-keyframes backgroundAnimation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes backgroundAnimation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.banner-two {
    margin-top: 90px;
    overflow: clip !important;
    position: relative;
    z-index: 1;
}

.banner-two .shape-one {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    z-index: -2;
    min-width: 60vw;
}

.banner-two .shape-one .banner-two-shape {
    height: 100%;
    min-width: 900px;
    -o-object-fit: unset;
    object-fit: unset;
}

.banner-two .shape-one .banner-two-filter {
    position: absolute;
    top: 0px;
    right: -80px;
    height: 100%;
    bottom: 0px;
    z-index: -3;
    -o-object-fit: unset;
    object-fit: unset;
}

.banner-two .shape-one .shape-square {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    position: absolute;
    top: 20%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 300px;
    z-index: 1;
    -webkit-animation: filter 10s ease-in-out alternate infinite;
    animation: filter 10s ease-in-out alternate infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.banner-two .shape-one .shape-tr {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    position: absolute;
    bottom: 6%;
    left: 1230px;
    z-index: 1;
    -webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    -webkit-animation: filter 20s ease-in-out alternate infinite;
    animation: filter 20s ease-in-out alternate infinite;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}

.banner-two .shape-one .shape-sm {
    width: 130px;
    min-width: 130px;
    height: 130px;
    border-radius: 50%;
    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;
    background: transparent;
    border: 20px solid #707070;
    opacity: 0.11;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    z-index: 1;
    position: absolute;
    top: 20%;
    left: 500px;
    -webkit-animation: filter 30s ease-in-out alternate infinite;
    animation: filter 30s ease-in-out alternate infinite;
    -webkit-animation-delay: 7s;
    animation-delay: 7s;
}

.banner-two .shape-one .shape-lg {
    width: 200px;
    min-width: 200px;
    height: 200px;
    border-radius: 50%;
    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;
    background: transparent;
    border: 20px solid #707070;
    opacity: 0.11;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    z-index: 1;
    position: absolute;
    bottom: 5%;
    left: 900px;
    -webkit-animation: filter 30s ease-in-out alternate infinite;
    animation: filter 30s ease-in-out alternate infinite;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.banner-two .shape-one .shape-xl {
    width: 500px;
    min-width: 500px;
    height: 500px;
    border-radius: 50%;
    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;
    background-color: rgba(255, 255, 255, 0.25);
    border: 100px solid rgba(255, 255, 255, 0.15);
    opacity: 0.35;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    z-index: 1;
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin-left: -200px;
    margin-bottom: -200px;
    -webkit-animation: filter 40s ease-in-out alternate infinite;
    animation: filter 40s ease-in-out alternate infinite;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

@-webkit-keyframes filter {
    0% {
        -webkit-transform: rotate(0deg) scale(1) translate(0px, 0px);
        transform: rotate(0deg) scale(1) translate(0px, 0px);
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1.1) translate(60px, 100px);
        transform: rotate(360deg) scale(1.1) translate(60px, 100px);
    }
}

@keyframes filter {
    0% {
        -webkit-transform: rotate(0deg) scale(1) translate(0px, 0px);
        transform: rotate(0deg) scale(1) translate(0px, 0px);
    }
    100% {
        -webkit-transform: rotate(360deg) scale(1.1) translate(60px, 100px);
        transform: rotate(360deg) scale(1.1) translate(60px, 100px);
    }
}

.banner-two .banner-two__single {
    padding: 160px 0px 160px;
}

.banner-two .banner-two__content {
    position: relative;
    z-index: 2;
}

.banner-two .banner-two__content h1,
.banner-two .banner-two__content p {
    color: var(--white);
}

.banner-two .banner-two__content h1 {
    font-weight: 600;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner-two .banner-two__content p {
    margin-top: 24px;
    font-size: 18px;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner-two .banner-two__content .cta-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.banner-two .swiper-slide-active .banner-two__content h1 {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 800ms;
    transition-delay: 800ms;
}

.banner-two .swiper-slide-active .banner-two__content p {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.banner-two .swiper-slide-active .banner-two__content .cta-group {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.banner-two .swiper-slide-active .thumb img {
    -webkit-animation: backgroundAnimation 12s ease-in-out;
    animation: backgroundAnimation 12s ease-in-out;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.banner-two .banner-thumb-wrapper {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: -4;
}

.banner-two .banner-two-slider-thumb {
    height: 100%;
}

.banner-two .banner-two-slider-thumb .thumb {
    height: 100% !important;
    text-align: end;
}

.banner-two .banner-two-slider-thumb .thumb img {
    height: 100% !important;
    min-width: 80vw;
    -o-object-fit: unset;
    object-fit: unset;
}

.banner-two .swiper-button-prev,
.banner-two .swiper-button-next {
    width: auto;
    height: auto;
}

.banner-two .swiper-button-prev img,
.banner-two .swiper-button-next img {
    width: 140px;
    height: 70px;
}

.banner-two .swiper-button-prev::after,
.banner-two .swiper-button-next::after {
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    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;
    border-radius: 0px;
    background-color: var(--white);
    font-size: 20px;
    color: var(--base-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 900;
}

.banner-two .swiper-button-prev:hover::after,
.banner-two .swiper-button-next:hover::after {
    color: var(--white);
    background-color: var(--base-color);
}

.banner-two .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    left: 40px;
}

.banner-two .swiper-button-next {
    right: 40px;
}

.search-tab {
    position: relative;
    top: -52px;
    margin-bottom: -52px;
    z-index: 2;
}

.search-tab .search-tab-btn-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.search-tab .search-tab-btn-wrapper ul button {
    font-family: var(--montserrat);
    padding: 14px 24px;
    background-color: var(--quaternary-color);
    color: var(--white);
    font-weight: 700;
}

.search-tab .search-tab-btn-wrapper ul button:hover {
    background-color: var(--base-color);
    color: var(--white);
}

.search-tab .search-tab-btn-wrapper ul .active {
    background-color: var(--base-color);
    color: var(--white);
}

.search-tab .search-tab-item-wrapper {
    padding: 25px 20px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.search-tab .search-tab-item-wrapper form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.search-tab .search-tab-item-wrapper form .input-single {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
}

.search-tab .search-tab-item-wrapper form .input-single label {
    display: block;
    font-weight: 700;
    color: var(--base-color);
}

.search-tab .search-tab-item-wrapper .input-single {
    width: calc(50% - 15px);
}

.search-tab .search-tab-item-wrapper .nice-select {
    width: 100%;
    border: 0px;
    padding: 9px 40px 9px 0px;
    border-radius: 0px;
}

.search-tab .search-tab-item-wrapper .nice-select::after {
    right: 20px;
    width: 10px;
    height: 10px;
    margin-top: -8px;
    border-color: #999999;
}

.search-tab .search-tab-item-wrapper .nice-select .list {
    width: 100%;
}

.search-tab .search-tab-item-wrapper input {
    width: 100%;
    padding: 9px 20px 9px 0px;
}

.search-tab .search-tab-item-wrapper input,
.search-tab .search-tab-item-wrapper .nice-select {
    border-bottom: 2px solid #cbcbcb;
}

.search-tab .btn--primary {
    padding: 13px 48px;
}

.search-tab .btn--primary::after {
    content: none;
}

.nice-select .list {
    z-index: 7;
}

.banner-three {
    padding: 220px 0px 160px;
    background-color: var(--quaternary-color);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.banner-three .banner-three__content span {
    font-size: 20px;
    line-height: 30px;
    font-family: var(--montserrat);
    margin-top: -7px;
    color: var(--white);
}

.banner-three .banner-three__content h1 {
    font-weight: 600;
    color: var(--white);
    margin-top: 20px;
}

.banner-three .banner-three__cta {
    margin-top: 40px;
}

.banner-three .search-property__wrapper {
    margin-top: 0px;
}

.banner-three .search-property__single {
    max-width: unset !important;
    width: 100% !important;
}

.banner-three .search-property__single .nice-select {
    max-width: 200px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.banner-three .search-property__single input {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.banner-three .search-property__single .btn--primary {
    padding-top: 17px;
    padding-bottom: 17px;
}

.banner-three .search-property__single .filter {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    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;
    border-radius: 0px;
}

.banner-three .search-property__single .nice-select span,
.banner-three .search-property__single input {
    font-size: 14px;
}

.banner-three .banner-three__thumb {
    position: absolute;
    top: -130px;
    left: 80%;
    width: 1080px;
    height: 1080px;
    background-color: var(--base-color);
    border-radius: 50%;
    z-index: 3;
}

.banner-three .banner-three__thumb img {
    width: 970px;
    min-width: 970px;
    height: 970px;
    border-radius: 50%;
    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;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border: 8px solid #fff;
    -webkit-filter: drop-shadow(0px 3px 50px rgba(0, 0, 0, 0.52));
    filter: drop-shadow(0px 3px 50px rgba(0, 0, 0, 0.52));
}

.banner-three .shape-one,
.banner-three .shape-two {
    position: absolute;
    left: -10px;
    top: 75%;
    width: 140px;
    min-width: 140px;
    height: 140px;
    border-radius: 50%;
    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;
    border-radius: 20px;
    background-color: #c4c4c4;
    z-index: 1;
    -webkit-transform: rotate(35deg) translateY(-75%);
    -ms-transform: rotate(35deg) translateY(-75%);
    transform: rotate(35deg) translateY(-75%);
}

.banner-three .shape-one::before,
.banner-three .shape-two::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
    z-index: -1;
    border-radius: 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.banner-three .shape-one i,
.banner-three .shape-two i {
    font-size: 70px;
    color: var(--quaternary-color);
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
}

.banner-three .shape-one i::before,
.banner-three .shape-two i::before {
    font-weight: 500;
}

.banner-three .shape-one span,
.banner-three .shape-two span {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    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;
    background-color: var(--quaternary-color);
    color: var(--white);
    position: absolute;
    top: 0px;
    left: -15px;
    -webkit-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
    border: 1px solid var(--white);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.banner-three .shape-one:hover::before,
.banner-three .shape-two:hover::before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.banner-three .shape-one:hover span,
.banner-three .shape-two:hover span {
    background-color: var(--base-color);
    color: var(--white);
    border-color: var(--base-color);
}

.banner-three .shape-two {
    top: 40%;
    left: -80px;
    -webkit-transform: rotate(35deg) translateY(-40%);
    -ms-transform: rotate(35deg) translateY(-40%);
    transform: rotate(35deg) translateY(-40%);
}

.banner-three .shape-lg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-35deg);
    -ms-transform: translateY(-50%) rotate(-35deg);
    transform: translateY(-50%) rotate(-35deg);
    left: -50px;
    width: 300px;
    height: 3000px;
    background: #fff;
    border: 1px solid #707070;
    opacity: 0.04;
    z-index: -1;
}

.banner-three .shape-xl {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-35deg);
    -ms-transform: translateY(-50%) rotate(-35deg);
    transform: translateY(-50%) rotate(-35deg);
    left: 400px;
    width: 280px;
    height: 3000px;
    background: #fff;
    border: 1px solid #707070;
    opacity: 0.01;
    z-index: -1;
}

.banner-three .social {
    margin-top: 40px;
}

.banner-tab-btn-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner-tab-btn-wrapper ul button {
    font-family: var(--montserrat);
    padding: 10px 30px;
    background-color: var(--quaternary-color);
    color: var(--white);
    border: 1px solid #707070;
}

.banner-tab-btn-wrapper ul button:hover {
    background-color: var(--base-color);
    border-color: var(--base-color);
    color: var(--white);
}

.banner-tab-btn-wrapper ul .active {
    background-color: var(--base-color);
    border-color: var(--base-color);
    color: var(--white);
}

.banner-four {
    overflow: hidden;
}

.banner-four .banner__slider-inner::before {
    content: "";
    position: absolute;
    inset: 0px;
    background-color: var(--black);
    opacity: 0.6;
}

.banner-four .video-wrapper {
    position: absolute;
    top: 100px;
    left: 12%;
    width: 200px;
    height: 200px;
    z-index: 2;
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="89" height="89" viewBox="0 0 89 89"><circle cx="44.5" cy="44.5" r="44.5"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="89" height="89" viewBox="0 0 89 89"><circle cx="44.5" cy="44.5" r="44.5"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position-x: 15%;
    -webkit-mask-position-y: 0px;
    -webkit-mask-size: 200px;
    mask-size: 200px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.banner-four .video-wrapper button {
    position: absolute;
    left: 65px;
    top: 65px;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    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;
    background-color: var(--white);
    -webkit-transition: none;
    transition: none;
    color: var(--base-color);
    font-size: 20px;
    cursor: pointer;
}

.banner-four .video-wrapper video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-four .mask-open {
    inset: 0px;
    width: 100%;
    height: 100%;
    -webkit-mask-size: 300%;
    mask-size: 300%;
    -webkit-mask-position-x: 50%;
    -webkit-mask-position-y: 50%;
}

.banner-four .mask-open button {
    left: 200px;
    top: 100px;
}

.banner-four .mask-open+.video-text {
    top: 105px;
    left: 190px;
}

.banner-four .video-text {
    position: absolute;
    top: 170px;
    z-index: 2;
    left: calc(12% + 120px);
    padding-left: 100px;
    cursor: pointer;
}

.banner-four .video-text p {
    color: #f1e0e0;
    font-weight: 300;
}

.banner-four .video-text p:nth-last-of-type(1) {
    font-weight: 600;
    color: var(--white);
}

.common-banner {
    padding: 120px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    margin-top: 90px;
}

.common-banner h2 {
    font-weight: 600;
    color: var(--white);
    margin-top: -10px;
    margin-bottom: 14px;
}
.fa-angle-right:before {
    content: "\f105";
    color: #fff;
}
.fa-angle-left:before {
    content: "\f105";
    color: #fff;
}
/* ==== 
 --------- (4.02) banner styles end ---------
 ==== */

/* ==== 
 --------- (4.04) footer styles start ---------
 ==== */
 .footer-copyright{
    background-color: #3f3f3f;
 }
 .footer-copyright-text p{
   color: #fff;
   margin-top: 12px;
   
 }
 .desig span{
    color: #fff;
    margin-top: 5px;

 }
 
 
 .soc{
    padding-right: 5px;
    margin-top: 10px;
 }
 .cs_primary_bg {
    background-color:black;
}
.cs_footer_bottom_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
 

}
.ico a {

    margin-top: -29px;
    font-size: 25px;
    margin-right: 13px;
    
}

.ico{
    padding-top: 18px;
    padding-right:10px;
}

.footer {
    background-color: rgba(0, 0, 0, 0.919);
    padding: 40px 0px;
}

.footer .footer__logo {
    /* margin-bottom: 35px; */
    margin-top: -56px;
}
.footer .footer__widget-header {
    margin-bottom: 25px;
}

.footer .footer__widget-header img {
    width: 40px;
    height: 15px;
}

.footer .footer__widget-header h4 {
    color:#fff;
    font-weight: 600;
    margin-top: 17px;
}

.fa-solid, .fas {
    font-weight: 900;
    color: #cec6c6;
}

.footer .footer__widget-content p {
    color:#fff;
    /* margin-bottom: 20px; */
}

.footer .footer__widget-content p:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer .footer__widget-list li {
    margin-bottom: 6px;
}

.footer .footer__widget-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer .footer__widget-list a {
    color: #fff;
    font-weight: 500;
}

.footer .footer__widget-list a:hover {
    color:#e11736;
    -webkit-transform: translatex(7%);
    -ms-transform: translatex(7%);
    transform: translatex(7%);
    
   
}
.fa-solid, .fas {
    font-weight: 900;
    color: #e11736;
}
.fa-envelope:before {
    content: "";
    color: #e11736;
}

.footer .footer__blog-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.footer .footer__blog-single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer .footer__blog-single .thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
}

.footer .footer__blog-single h5 {
    margin-top: -5px;
}

.footer .footer__blog-single a {
    font-weight: 600;
    color: var(--white);
}

.footer .footer__blog-single a:hover {
    color: var(--base-color);
}

.footer .footer__contact-list a {
    gap: 24px;
    color: var(--white);
    font-weight: 600;
}



.footer .footer__contact-list li {
    margin-bottom: 30px;
}

.footer .footer__contact-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer__bottom {
    background-color: var(--base-color);
    /* margin-top: 100px; */
    padding: 20px 0px;
}

.footer__bottom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer__bottom-list a,
.footer__bottom-list span {
    color: var(--white);
}

 .footer__bottom-right {
    margin-top: 10px;
}

 .footer__bottom-right p {
    color: var(--white);
}

.footer-two {
    padding-top: 100px;
}

.footer-two .footer__partner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-two .partner-single {
    text-align: center;
}

.footer-two .footer-divider {
    margin: 100px 0px 100px;
    background-color: #707070;
    border: 0px;
    width: 100%;
    height: 1px;
}

.footer-two .footer__bottom {
    background-color: transparent;
    padding: 0px;
}

.footer-two .footer__bottom-inner {
    background-color: var(--base-color);
    position: relative;
    padding: 27px 0px;
    border-top-right-radius: 50px;
    z-index: 1;
}

.footer-two .footer__bottom-inner::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0px;
    bottom: 0px;
    width: 200%;
    height: 100%;
    background-color: var(--base-color);
    z-index: -1;
}

.footer-two .footer__bottom-left ul {
    row-gap: 4px;
}

.footer-two .footer__bottom-left ul li:nth-of-type(2),
.footer-two .footer__bottom-left ul li:nth-of-type(4) {
    display: none;
}

.footer-two .footer__bottom-left li span {
    height: 16px;
    width: 1px;
    background-color: var(--white);
    margin-bottom: -3px;
}

.footer-two .footer__bottom-left p {
    color: var(--white);
    margin-top: 6px;
}

.footer-two .footer__bottom-list li:nth-of-type(2),
.footer-two .footer__bottom-list li:nth-of-type(4) {
    display: none;
}

.footer-two .social {
    gap: 8px;
}

.footer-two .social a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    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;
    font-size: 16px;
}

.footer-two .social a:hover {
    background-color: var(--quaternary-color);
}

.footer-three {
    background-color: #eeeeee;
    padding-top: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom 80px;
}

.footer-three .footer__widget-header {
    margin-bottom: 30px;
}

.footer-three .footer__widget-header img {
    width: 40px;
    height: 15px;
}

.footer-three .footer__widget-header h4 {
    color: var(--quaternary-color);
    font-weight: 600;
    margin-top: 10px;
}

.footer-three .footer__widget-content {
    margin-top: -8px;
}

.footer-three .footer__contact-list a {
    gap: 24px;
    color: #555555;
    font-weight: 500;
}

.footer-three .footer__contact-list a i {
    color: var(--base-color);
}

.footer-three .footer__contact-list a:hover {
    color: var(--base-color);
}

.footer-three .footer__contact-list li {
    margin-bottom: 30px;
}

.footer-three .footer__contact-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer-three .footer__widget-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-three .footer__widget-list li {
    margin-bottom: 6px;
    width: calc(50% - 6px);
}

.footer-three .footer__widget-list li:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.footer-three .footer__widget-list a {
    color: #555555;
    font-weight: 500;
}

.footer-three .footer__widget-list a:hover {
    color: var(--base-color);
}

.footer-three .footer-three__news-letter p {
    font-size: 18px;
    font-weight: 700;
    color: var(--quaternary-color);
}

.footer-three .newsletter-form {
    margin-top: 40px;
}

.footer-three .newsletter-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px;
    background-color: var(--white);
    border: 1px solid #707070;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer-three .newsletter-form form input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    padding: 10px 10px;
    background-color: #eeeeee;
    padding-left: 16px;
}

.footer-three .footer-three__bottom {
    background-color: var(--quaternary-color);
    margin-top: 155px;
}

.footer-three .footer-three__bottom-inner {
    padding: 30px 20px;
    background-color: var(--base-color);
    border-radius: 20px;
    position: relative;
    top: -75px;
    margin-bottom: -75px;
}

.footer-three .footer__bottom-single p {
    font-weight: 700;
    color: var(--white);
}

.footer-three .footer__bottom-single .social a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    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;
}

.footer-three .footer__bottom-single .social a:hover {
    background-color: var(--quaternary-color);
    color: var(--white);
}

.footer-three .footer-three__copyright {
    padding: 30px 0px;
}

.footer-three .footer-three__copyright p {
    color: var(--white);
}

.footer-three .footer-three__copyright p a:hover {
    color: var(--base-color);
}

.footer-three .footer__bottom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    row-gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-three .footer__bottom-list a {
    color: var(--white);
}

.footer-three .footer__bottom-list a:hover {
    color: var(--base-color);
}

.footer-three .footer__bottom-list li:nth-of-type(2),
.footer-three .footer__bottom-list li:nth-of-type(4) {
    display: none;
}

/* ==== 
 --------- (4.04) footer styles end ---------
 ==== */

/* ==== 
 --------- (5.01) search property styles start ---------
 ==== */




/* ==== 
 --------- (5.01) search property styles end ---------
 ==== */

/* ==== 
 --------- (5.02) about section styles start ---------
 ==== */

.about {
    padding: 60px 0px 10px 0px;
    background-color: var(--white);
    overflow-x: clip;
}

.about .about__thumb {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.about .about__thumb-single {
    position: absolute;
    -webkit-filter: drop-shadow(0px 8px 25px rgba(0, 0, 0, 0.21));
    filter: drop-shadow(0px 8px 25px rgba(0, 0, 0, 0.21));
}

.about .about__thumb-single:nth-of-type(1) {
    top: 0px;
    left: 10px;
    z-index: 3;
}

.about .about__thumb-single:nth-of-type(1) .thumb {
    position: absolute;
    top: 50%;
    left: -10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

.about .about__thumb-single:nth-of-type(2) {
    right: 10px;
    top: 0px;
    z-index: 1;
}

.about .about__thumb-single:nth-of-type(2) .thumb {
    position: absolute;
    top: 50%;
    right: -10px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}

.about .about__thumb-single:nth-of-type(3) {
    bottom: 10px;
    left: 0%;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.about .about__thumb-single:nth-of-type(3) .thumb {
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: -1;
}

.about .about__content-inner p {
    color: #555555;
}


.about .about__content-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    padding: 36px 20px 36px 40px;
    margin-top: 40px;
    border: 1px solid #dedede;
    position: relative;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.about .about__content-single::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 1px;
    background-color: #e11736;
    width: 6px;
    height: 90%;
}

.about .about__content-single h5 {
    font-weight: 600;
    color: var(--quaternary-color);
    margin-bottom: 10px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.about .about__content-single .thumb i {
    font-size: 64px;
    color: var(--black);
}

.about .about__content-single:hover h5 {
    color:#e11736;
}
/* .who__thumb{
    background-image:url("/assets/images/aboutus-inner.png");
} */
.procedure {
    padding: 100px 0px;
    background-color: var(--white);
}

.procedure .procedure__single {
    text-align: center;
    padding: 0px 12px;
}

.procedure .procedure__single .thumb {
    width: 130px;
    min-width: 130px;
    height: 130px;
    border-radius: 50%;
    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;
    background-color: var(--white);
    -webkit-filter: drop-shadow(0px 8px 14px rgba(0, 0, 0, 0.08));
    filter: drop-shadow(0px 8px 14px rgba(0, 0, 0, 0.08));
    border: 1px dashed var(--white);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.procedure .procedure__single .thumb i {
    font-size: 64px;
    color: var(--black);
}

.procedure .procedure__single h4 {
    font-weight: 600;
    color: var(--quaternary-color);
    margin-bottom: 12px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.procedure .procedure__single:hover .thumb {
    border-color: var(--base-color);
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
}

.procedure .procedure__single:hover h4 {
    color: var(--base-color);
}

.procedure .procedure__inner .line {
    display: none;
}

.video-counter .video-counter__inner {
    padding: 100px 20px;
    background-color: var(--quaternary-color);
    position: relative;
    z-index: 1;
    margin: 0px 12px;
    overflow: hidden;
}

.video-counter .video-counter__inner::before,
.video-counter .video-counter__inner::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.12;
    z-index: -1;
}

.video-counter .video-counter__inner::before {
    top: -60px;
    left: -60px;
}

.video-counter .video-counter__inner::after {
    bottom: -60px;
    right: -60px;
}

.video-counter .vid-base {
    background-color: var(--base-color);
}

.video-counter .video-counter__thumb {
    position: relative;
    top: -105px;
    margin-bottom: -105px;
}

.video-counter .video-counter__thumb img {
    width: 100%;
    min-height: 400px;
}

.video-counter .video-counter__thumb .vid-wrap {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
}

.video-counter .video-counter__thumb .vid-wrap .video-btn-wrapper {
    position: relative;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    inset: unset;
}

.video-counter .video-counter__thumb .vid-wrap h4 {
    font-weight: 600;
    color: var(--white);
}

.video-counter div {
    line-height: unset;
}

.video-counter .counter__single {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 12px;
}

.video-counter .counter__single .thumb {
    padding-top: 10px;
    padding-right: 10px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.video-counter .counter__single .thumb::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(170, 170, 170, 0)), to(#999));
    background: linear-gradient(rgba(170, 170, 170, 0) 0%, #999 100%);
    z-index: -1;
}

.video-counter .counter__single .thumb img {
    width: 35px;
    height: 35px;
}

.video-counter .counter__single .thumb i {
    font-size: 36px;
    color: var(--white);
}

.video-counter .counter__single h4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
}

.video-counter .counter__single p {
    font-family: var(--montserrat);
    color: var(--white);
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    margin-top: 4px;
}

.collection {
    padding: 100px 0px;
    background-color: var(--white);
    overflow: clip;
}

.collection .collection__thumb {
    height: 100%;
    min-height: 560px;
    position: relative;
    z-index: 1;
}

.collection .collection__thumb .thumb-one,
.collection .collection__thumb .thumb-two,
.collection .collection__thumb .thumb-three,
.collection .collection__thumb .thumb-four {
    position: absolute;
}

.collection .collection__thumb .thumb-one {
    bottom: 0px;
    left: 40px;
    z-index: 4;
    border: 5px solid var(--white);
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
}

.collection .collection__thumb .thumb-two {
    top: 140px;
    right: 50px;
    z-index: 3;
    border: 5px solid var(--white);
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
}

.collection .collection__thumb .thumb-three {
    top: 0px;
    left: 0px;
    z-index: 2;
    border: 5px solid var(--white);
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
}

.collection .collection__thumb .thumb-four {
    top: 0px;
    left: 100px;
}

.collection .collection__thumb .thumb-logo {
    width: 160px;
    min-width: 160px;
    height: 160px;
    border-radius: 50%;
    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;
    background-color: var(--base-color);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 5;
}

.collection .collection__thumb .thumb-logo a {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    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;
    background-color: var(--white);
    z-index: 7;
}

.collection .collection__thumb .thumb-logo a img {
    width: 40px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

.collection .collection__thumb .thumb-logo .letter {
    position: absolute;
    inset: 10px;
    z-index: 6;
    -webkit-animation: rotate 20s linear infinite;
    animation: rotate 20s linear infinite;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.collection .inner h4 {
    font-weight: 600;
    color: var(--quaternary-color);
    margin-top: -7px;
}

.collection .inner .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 35px;
}

.collection .inner .group:nth-of-type(1) {
    margin-top: 50px;
}

.collection .inner .group:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.collection .inner .group .thumb {
    min-width: 60px;
    width: 60px;
}

.collection .inner .group .thumb i {
    font-size: 64px;
    color: var(--base-color);
}

.collection .inner .group p {
    margin-top: 10px;
    color: var(--quaternary-color);
}

/* ==== 
 --------- (5.02) about section styles end ---------
 ==== */




/* ==== 
 --------- (5.05) counter section styles start ---------
 ==== */

.counter {
    /* padding-top: 100px; */
    /* padding-bottom: 100px; */
    background-color: var(--quaternary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
    margin-bottom: 50px;
}

.counter div {
    line-height: unset;
}

.counter .thumb {
    margin-bottom: 20px;
    padding-top: 16px;
    padding-right: 16px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.counter .thumb::before {
    /* content: ""; */
    position: absolute;
    top: 0px;
    right: 0px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(170, 170, 170, 0)), to(#999));
    background: linear-gradient(rgba(170, 170, 170, 0) 0%, #999 100%);
    z-index: -1;
}

.counter .thumb i {
    font-size: 64px;
    color: var(--white);
}

.counter .counter__single {
    text-align: center;
}

.counter .counter__single h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.counter .counter__single p {
    font-family: var(--montserrat);
    color: var(--white);
    margin-top: 12px;
    font-weight: 500;
}

/* ==== 
 --------- (5.05) counter section styles end ---------
 ==== */

/* ==== 
 --------- (5.06) explore section styles start ---------
 ==== */

.explore {
    padding: 17px 0px;
    background-color: var(--white);
}

.explore .explore__single {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    overflow: hidden;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.explore .explore__single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.explore .explore__single .thumb {
    min-height: 240px;
    height: 100%;
}

.explore .explore__single .thumb a {
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.explore .explore__single .thumb a img {
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    min-height: 270px;
}

.explore .explore__single .content {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    padding: 20px;
    z-index: 2;
}

.explore .explore__single .content p,
.explore .explore__single .content h5 {
    color: #fff;
}

.explore .explore__single .content h5 {
    font-weight: 600;
    margin-top: 5px;
}

.explore .explore__single::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    /* background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0))); */
    /* background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%); */
}

.explore .explore__single .arr {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background: transparent;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background-color: #fff;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.explore .explore__single .arr:hover {
    background-color:#1c1718;
}

.explore .explore__single:hover .thumb img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.explore .explore__wrapper {
    margin-bottom: 40px;
}

.explore .section__header--secondary h3 {
    font-weight: 600;
    color: var(--quaternary-color);
}

.explore .section__header--secondary p {
    color: #555555;
    margin-top: 10px;
}

.explore-two {
    padding: 100px 0px 0px;
    background-color: var(--white);
}

.explore-two .explore-two__single {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.explore-two .explore-two__single:nth-last-of-type(1) {
    margin-bottom: 0px;
}

.explore-two .explore-two__single .thumb {
    height: 100%;
}

.explore-two .explore-two__single .thumb a {
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.explore-two .explore-two__single .thumb a img {
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    min-height: 340px;
}

.explore-two .explore-two__single .content {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 30px;
    padding: 20px;
    z-index: 2;
    text-align: center;
    -webkit-transform: translateY(120%);
    -ms-transform: translateY(120%);
    transform: translateY(120%);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.explore-two .explore-two__single .content p,
.explore-two .explore-two__single .content h3 {
    color: var(--white);
}

.explore-two .explore-two__single .content h3 {
    font-weight: 600;
    margin-top: 5px;
}

.explore-two .explore-two__single::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.explore-two .explore-two__single .arr {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background: transparent;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, 0.15);
    position: absolute;
    right: 20px;
    top: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    -webkit-transform: rotate(45deg) translateY(-200%);
    -ms-transform: rotate(45deg) translateY(-200%);
    transform: rotate(45deg) translateY(-200%);
    z-index: 3;
}

.explore-two .explore-two__single .arr:hover {
    background-color: var(--base-color);
}

.explore-two .slider-navigation-wrapper {
    text-align: center;
}

.explore-two .slider-navigation {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 10px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 3;
    margin-bottom: -50%;
}

.explore-two .slider-navigation .slider-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    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;
    border-radius: 0px;
    background-color: var(--white);
    color: var(--base-color);
    border: 1px solid var(--base-color);
    font-size: 16px;
}

.explore-two .slider-navigation .slider-btn:hover {
    background-color: var(--quaternary-color);
    border-color: var(--quaternary-color);
    color: var(--white);
}

.explore-two .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.explore-two .swiper-slide-active .thumb img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.explore-two .swiper-slide-active .content {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.explore-two .swiper-slide-active .arr {
    -webkit-transform: rotate(45deg) translateY(0%);
    -ms-transform: rotate(45deg) translateY(0%);
    transform: rotate(45deg) translateY(0%);
}

.explore-two .explore__inner {
    padding: 40px 20px;
    background-color: var(--white);
    border: 1px solid #707070;
    position: relative;
    bottom: -77px;
    margin-top: -17px;
    z-index: 3;
}

.explore-two .explore__inner .section__header--secondary h3 {
    font-weight: 600;
    color: var(--quaternary-color);
    margin-top: -7px;
}

.explore-two .explore__inner .section__header--secondary p {
    color: #555555;
    margin-top: 10px;
}

.exclusive {
    padding: 176px 0px 100px;
    background-color: var(--white);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.exclusive::before {
    content: "";
    position: absolute;
    top: 177px;
    left: 0px;
    width: 100%;
    height: calc(100% - 177px);
    background-color: var(--quaternary-color);
    z-index: 1;
    -webkit-clip-path: none;
    clip-path: none;
}

.exclusive .shape-one {
    width: 400px;
    height: 200%;
    position: absolute;
    top: -40%;
    left: 45%;
    background-color: var(--base-color);
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    z-index: -1;
}

.exclusive .shape-one::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -20px;
    width: 8px;
    height: 35%;
    background-color: var(--base-color);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 99.3%, 0% 100%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 99.3%, 0% 100%, 0% 0%);
}

.exclusive .shape-one::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: -40px;
    width: 8px;
    height: 45%;
    background-color: var(--base-color);
    -webkit-clip-path: polygon(0% 0.7%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(0% 0.7%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.exclusive .shape-two {
    width: 400px;
    height: 200%;
    position: absolute;
    top: -40%;
    left: 0%;
    background-color: #e1e1e1;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    z-index: -2;
}

.exclusive .shape-two::before {
    content: "";
    position: absolute;
    top: 0px;
    right: -8px;
    width: 8px;
    height: 25%;
    background-color: var(--base-color);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 98%, 0% 100%, 0% 0%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 98%, 0% 100%, 0% 0%);
}

.exclusive .shape-three {
    width: 300px;
    height: 80%;
    background-color: #e1e1e1;
    position: absolute;
    bottom: -10%;
    right: 100px;
    -webkit-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    transform: rotate(25deg);
    z-index: -3;
    -webkit-clip-path: polygon(0% 0%, 80% 30%, 85% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 80% 30%, 85% 100%, 0% 100%);
}

.exclusive .shape-four {
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: var(--base-color);
    z-index: -4;
}

.exclusive .exclusive__content {
    padding: 100px 0px 40px;
    z-index: 2;
    position: relative;
}

.exclusive .section__header .filter-img-white {
    -webkit-filter: brightness(0) saturate(100%) invert(92%) sepia(78%) saturate(5350%) hue-rotate(185deg) brightness(128%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(92%) sepia(78%) saturate(5350%) hue-rotate(185deg) brightness(128%) contrast(100%);
}

.exclusive .section__header span,
.exclusive .section__header h2 {
    color: var(--white);
}

.exclusive .section__header .icon-thumb-single span {
    background-color: var(--white);
}

.exclusive .exclusive__single .tag,
.exclusive .exclusive__single p,
.exclusive .exclusive__single h2,
.exclusive .exclusive__single .location,
.exclusive .exclusive__single .specifications {
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.exclusive .exclusive__single .tag {
    background-color: var(--base-color);
    padding: 7px 10px;
    color: var(--white);
    line-height: 1;
}

.exclusive .exclusive__single p {
    color: var(--white);
}

.exclusive .exclusive__single h2 {
    font-weight: 600;
    color: var(--white);
    margin: 16px 0px 16px;
}

.exclusive .exclusive__single .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-top: 24px;
}

.exclusive .exclusive__single .location span {
    font-size: 18px;
    line-height: 0px;
}

.exclusive .exclusive__single .specifications {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    row-gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 25px;
}

.exclusive .exclusive__single .specifications p {
    color: var(--white);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    font-weight: 400;
    font-size: 14px;
}

.exclusive .exclusive__single .specifications p i {
    font-size: 24px;
    line-height: 0px;
}

.exclusive .exclusive__single .specifications p i::before {
    font-weight: 400;
}

.exclusive .swiper-slide-active .exclusive__single .tag {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.exclusive .swiper-slide-active .exclusive__single .location {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.exclusive .swiper-slide-active .exclusive__single h2 {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1400ms;
    transition-delay: 1400ms;
}

.exclusive .swiper-slide-active .exclusive__single h2+p {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1800ms;
    transition-delay: 1800ms;
}

.exclusive .swiper-slide-active .exclusive__single .specifications {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 2200ms;
    transition-delay: 2200ms;
}

.exclusive .swiper-slide-active .exclusive__single .specifications p {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 0ms;
    transition-delay: 0ms;
}

.exclusive .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.exclusive .slider-navigation .slider-btn {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    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;
    border-radius: 0px;
    color: var(--base-color);
}

.exclusive .slider-navigation .slider-btn:hover {
    background-color: var(--base-color);
    color: var(--white);
}

.exclusive .exclusive__thumb .thumb-single {
    position: relative;
}

.exclusive .exclusive__thumb .thumb-single .content {
    position: absolute;
    bottom: 40px;
    left: -2%;
}

.exclusive .exclusive__thumb a {
    width: 100%;
    height: 100%;
}

.exclusive .exclusive__thumb img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.exclusive .exclusive__thumb .content .tag-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.exclusive .exclusive__thumb .content .tag-wrap span {
    background-color: var(--base-color);
    padding: 7px 10px;
    color: var(--white);
    line-height: 1;
}

.exclusive .exclusive__thumb .content .tag-wrap .tag-sold {
    background-color: var(--white);
    color: var(--base-color);
}

.exclusive .exclusive__thumb .content .meta {
    background-color: var(--white);
    padding: 6px 20px;
    margin-top: 20px;
    padding-left: 60px;
}

.exclusive .exclusive__thumb .content .meta p {
    color: var(--base-color);
    font-family: var(--montserrat);
    font-weight: 600;
    text-transform: uppercase;
}

.exclusive .exclusive__thumb .content .meta h2 {
    font-weight: 600;
    color: var(--quaternary-color);
    margin-top: -4px;
}

.exclusive .exclusive__thumb .content .tag-wrap,
.exclusive .exclusive__thumb .content .meta {
    opacity: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.exclusive .swiper-slide-active .thumb-single img {
    -webkit-animation: backgroundAnimation 12s ease-in-out;
    animation: backgroundAnimation 12s ease-in-out;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}

.exclusive .swiper-slide-active .thumb-single .content .tag-wrap {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.exclusive .swiper-slide-active .thumb-single .content .meta {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.exclusive-tab {
    padding: 100px 0px;
    background-color: var(--white);
}

.exclusive-tab .property-list,
.exclusive-tab .property-grid,
.exclusive-tab .properties {
    padding: 0px;
}

.exclusive-tab .exclusive-tab-wrapper {
    margin-top: 40px;
}

.exclusive-tab .exclusive-tab-btn-wrapper ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 16px;
}

.exclusive-tab .exclusive-tab-btn-wrapper ul button {
    font-size: 30px;
    color: var(--quaternary-color);
}

.exclusive-tab .exclusive-tab-btn-wrapper ul button:hover {
    color: var(--base-color);
}

.exclusive-tab .exclusive-tab-btn-wrapper ul .active {
    color: var(--base-color);
}

.exclusive-tab .exclusive-tab-btn-wrapper li {
    line-height: 1;
}

.exclusive-tab .section__header {
    margin-bottom: 0px;
}






/* ==== 
 --------- (5.15) who section styles start ---------
 ==== */

.who {
    padding: 100px 0px;
    background-color: #eef5ff;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* .who .z-shape {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 520px;
    height: 100%;
    background-color: var(--base-color);
    -webkit-clip-path: polygon(100% 0%, 34% 41%, 96% 80%, 58% 100%, 28% 100%, 68% 80%, 8% 42%, 73% 0%);
    clip-path: polygon(100% 0%, 34% 41%, 96% 80%, 58% 100%, 28% 100%, 68% 80%, 8% 42%, 73% 0%);
    -webkit-transform: translateX(150px);
    -ms-transform: translateX(150px);
    transform: translateX(150px);
    z-index: -1;
} */

/* .who .z-shape-l {
    position: absolute;
    top: -125px;
    left: 326px;
    height: 520px;
    width: 40px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: var(--base-color);
    z-index: -1;
} */

/* .who .z-shape-s {
    position: absolute;
    bottom: -59px;
    left: 540px;
    height: 200px;
    width: 40px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    background-color: var(--base-color);
    z-index: -1;
} */

/* .who .z-shape-sq {
    position: absolute;
    bottom: -56px;
    left: -102px;
    height: 450px;
    width: 460px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: var(--quaternary-color);
    z-index: -2;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 100% 100%, 0% 100%);
} */

.who .who__thumb {
    position: relative;
    display: inline-block;
}

.who .who__thumb .thumb-sm {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.who .about__content-inner p {
    color: #555555;
}

.who .about__content-single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border: 1px solid #dedede;
    position: relative;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: var(--white);
    width: 100%;
}

.who .about__content-single::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 1px;
    background-color:#e11736;
    width: 6px;
    height: 90%;
}

.who .about__content-single h6 {
    font-weight: 600;
    color: var(--quaternary-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.who .about__content-single .thumb i {
    font-size: 48px;
    color: var(--black);
}

.who .about-content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 70px;
    row-gap: 24px;
    margin: 30px 0px;
}

.who .cta {
    margin-top: 50px;
}

/* ==== 
 --------- (5.15) who section styles end ---------
 ==== */



/* Box Layout */

.box-layout .page-wrapper {
    max-width: 1390px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    z-index: 1;
}

.box-layout:before {
    position: fixed;
    content: "";
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    background: url("../images/background/pattern.jpg");
    opacity: 0.4;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.box-layout .main-header-three__logo-box {
    left: 0;
}

.box-layout .team-two__right {
    margin-left: 0;
}

.box-layout .team-two__left {
    margin-right: 0;
}

.box-layout .team-two__left .section-title__title {
    font-size: 40px;
    line-height: 50px;
}

/* ==== 
 --------- (4.05) dark body and rtl styles start ---------
 ==== */

.dark-body {
    background-color: var(--black);
}

.dark-body .btn--primary::before {
    background-color: var(--white);
}

.dark-body .btn--primary:hover {
    color: var(--black);
}

.dark-body .about {
    background-color: var(--black);
}

.dark-body .search-property .search-property__menu a,
.dark-body .section__header span,
.dark-body .section__header h2,
.dark-body .section__header p {
    color: var(--white);
}

.dark-body .section__header .icon-thumb-single span,
.dark-body .section__header-light .icon-thumb-single span {
    background-color: var(--white);
}

.dark-body .section__header .filter-img,
.dark-body .section__header-light .filter-img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .about .about__content-inner p {
    color: var(--white);
}

.dark-body .about .about__content-single h5 {
    color: var(--white);
}

.dark-body .about .about__content-single .thumb img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .about .about__content-single .thumb i {
    color: var(--white);
}

.dark-body .service {
    background-color: var(--quaternary-color);
}

.dark-body .service .service__single::before {
    background-color: var(--black);
}

.dark-body .service .service__single h4,
.dark-body .service .service__single p {
    color: var(--white);
}

.dark-body .service .service__single .thumb img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .service .service__single .thumb i {
    color: var(--white);
}

.dark-body .service .service__single-active .btn--primary {
    color: var(--black);
}

.dark-body .service .service__single-active .btn--primary::before {
    background-color: var(--white);
}

.dark-body .properties {
    background-color: var(--black);
}

.dark-body .properties .properites__single-item {
    background-color: var(--quaternary-color);
}

.dark-body .properties .properites__single-item .content {
    background-color: var(--quaternary-color);
}

.dark-body .properties .properites__single-item .content p,
.dark-body .properties .properites__single-item .content h4,
.dark-body .properties .properites__single-item .content span {
    color: var(--white) !important;
}

.dark-body .properties .properites__single-item .content .footer-cta a {
    background-color: var(--black);
}

.dark-body .properties .properites__single-item .content .footer-cta a i {
    color: var(--white);
}

.dark-body .properties .properites__single-item .content .footer-cta a .tool {
    color: var(--black) !important;
}

.dark-body .explore {
    background-color: var(--black);
}

.dark-body .explore .explore__single::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(48, 34, 34)));
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(48, 34, 34) 100%);
}

.dark-body .section__header--secondary h3,
.dark-body .section__header--secondary p {
    color: var(--white) !important;
}

.dark-body .team {
    background-color: var(--black);
}

.dark-body .team .content p,
.dark-body .team .content h4,
.dark-body .team .content span,
.dark-body .team .content a {
    color: var(--white) !important;
}

.dark-body .blog {
    background-color: var(--black);
}

.dark-body .blog .content {
    background-color: var(--quaternary-color);
}

.dark-body .blog .content p,
.dark-body .blog .content h4,
.dark-body .blog .content a {
    color: var(--white) !important;
}

.dark-body .partner {
    background-color: var(--quaternary-color);
}

.dark-body .partner .filter-black {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .search-property {
    background-color: var(--quaternary-color);
}

.dark-body .search-property .search-property__wrapper .input-single input,
.dark-body .search-property .search-property__wrapper .nice-select {
    background-color: transparent;
    border-color: #383535;
}

.dark-body .search-property .search-property__wrapper .current {
    color: #bbb;
}

.dark-body .search-property .search-property__single:nth-of-type(1) .nice-select {
    border-right: 1px solid #383535;
}

.dark-body .search-tab .search-tab-item-wrapper {
    background-color: var(--quaternary-color);
}

.dark-body .search-tab .search-tab-item-wrapper .nice-select {
    background-color: transparent;
}

.dark-body .search-tab .search-tab-item-wrapper label,
.dark-body .search-tab .search-tab-item-wrapper input {
    color: var(--white) !important;
}

.dark-body .search-tab .search-tab-item-wrapper input::-webkit-input-placeholder {
    color: #bbb;
}

.dark-body .search-tab .search-tab-item-wrapper input::-moz-placeholder {
    color: #bbb;
}

.dark-body .search-tab .search-tab-item-wrapper input:-ms-input-placeholder {
    color: #bbb;
}

.dark-body .search-tab .search-tab-item-wrapper input::-ms-input-placeholder {
    color: #bbb;
}

.dark-body .search-tab .search-tab-item-wrapper input::placeholder {
    color: #bbb;
}

.dark-body .search-tab .search-tab-item-wrapper .current {
    color: #bbb;
}

.dark-body .search-tab .search-tab-item-wrapper input,
.dark-body .search-tab .search-tab-item-wrapper .nice-select {
    border: 0px solid transparent !important;
    border-bottom: 1px solid #383535 !important;
}

.dark-body .collection {
    background-color: var(--black);
}

.dark-body .collection h4,
.dark-body .collection p {
    color: var(--white) !important;
}

.dark-body .collection .thumb img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .collection .thumb i {
    color: var(--white);
}

.dark-body .exclusive-tab .exclusive-tab-btn-wrapper ul button {
    color: var(--white);
}

.dark-body .exclusive-tab .exclusive-tab-btn-wrapper ul button.active {
    color: var(--base-color);
}

.dark-body .testimonial-three .testimonial-three__content p {
    color: var(--white);
}

.dark-body .team-two {
    background-color: var(--black);
}

.dark-body .team-two .content span,
.dark-body .team-two .content h4,
.dark-body .team-two .content p,
.dark-body .team-two .content a {
    color: var(--white);
}

.dark-body .blog-two {
    background-color: var(--quaternary-color);
}

.dark-body .banner-three .search-property__wrapper input,
.dark-body .banner-three .search-property__wrapper .nice-select {
    background-color: transparent !important;
    border-color: #707070 !important;
}

.dark-body .banner-three .search-property__wrapper input .current,
.dark-body .banner-three .search-property__wrapper .nice-select .current {
    color: #bbb;
}

.dark-body .specifications p i {
    color: var(--white) !important;
}

.dark-body .property-three {
    background-color: var(--black);
}

.dark-body .property-three .property-three__single {
    background-color: var(--black);
}

.dark-body .property-three .property-three__single .content {
    background-color: var(--quaternary-color);
}

.dark-body .property-three .property-three__single .content h4 {
    color: var(--white);
}

.dark-body .property-three .property-three__single .content .location,
.dark-body .property-three .property-three__single .content .specifications p,
.dark-body .property-three .property-three__single .content .author-meta p {
    color: var(--white) !important;
}

.dark-body .explore-two {
    background-color: var(--black);
}

.dark-body .explore-two .explore__inner {
    background-color: var(--black);
    border-color: var(--quaternary-color);
}

.dark-body .exclusive {
    background-color: var(--black);
}

.dark-body .blog-list-alt .blog-list__item h4 {
    color: var(--white);
}

.dark-body .exclusive-tab {
    background-color: var(--black);
}

.dark-body .exclusive-tab .property-list {
    background-color: var(--black);
}

.dark-body .exclusive-tab .property-list .property-list__single {
    background-color: var(--quaternary-color);
}

.dark-body .exclusive-tab .property-list .property-list__single .content p,
.dark-body .exclusive-tab .property-list .property-list__single .content h5,
.dark-body .exclusive-tab .property-list .property-list__single .content a,
.dark-body .exclusive-tab .property-list .property-list__single .content span {
    color: var(--white);
}

.dark-body .footer-three {
    background-color: var(--black);
}

.dark-body .footer-three .footer-three__widget a,
.dark-body .footer-three .footer-three__widget p,
.dark-body .footer-three .footer-three__widget h4 {
    color: var(--white) !important;
}

.dark-body .footer-three .newsletter-form form {
    background-color: var(--quaternary-color);
    border-color: #443c3c;
}

.dark-body .footer-three .newsletter-form form input {
    color: var(--white);
}

.dark-body .footer-three .newsletter-form form input::-webkit-input-placeholder {
    color: #bbb;
}

.dark-body .footer-three .newsletter-form form input::-moz-placeholder {
    color: #bbb;
}

.dark-body .footer-three .newsletter-form form input:-ms-input-placeholder {
    color: #bbb;
}

.dark-body .footer-three .newsletter-form form input::-ms-input-placeholder {
    color: #bbb;
}

.dark-body .footer-three .newsletter-form form input::placeholder {
    color: #bbb;
}

.dark-body .property-grid .property-details__sidebar h5 {
    color: var(--white) !important;
}

.dark-body .property-grid .property-details__sidebar .property-details__widget {
    background-color: var(--quaternary-color);
}

.dark-body .property-grid .property-details__sidebar .property-details__widget p {
    color: var(--white) !important;
}

.dark-body .property-grid .property-details__sidebar .property-details__widget .nice-select {
    background-color: transparent;
    border: 1px solid #3c3c3c;
}

.dark-body .property-grid .property-details__sidebar .property-details__widget .nice-select .current {
    color: #bbb !important;
}

.dark-body .property-list {
    background-color: var(--black);
}

.dark-body .property-list .property-details__sidebar h5 {
    color: var(--white) !important;
}

.dark-body .property-list .property-details__sidebar .property-details__widget {
    background-color: var(--quaternary-color);
}

.dark-body .property-list .property-details__sidebar .property-details__widget p {
    color: var(--white) !important;
}

.dark-body .property-list .property-details__sidebar .property-details__widget .nice-select {
    background-color: transparent;
    border: 1px solid #3c3c3c;
}

.dark-body .property-list .property-list__single {
    background-color: var(--quaternary-color);
}

.dark-body .property-list .property-list__single .content h4,
.dark-body .property-list .property-list__single .content p,
.dark-body .property-list .property-list__single .content a,
.dark-body .property-list .property-list__single .content span {
    color: var(--white) !important;
}

.dark-body .property-details {
    background-color: var(--black);
}

.dark-body .property-details .property-details__content h2,
.dark-body .property-details .property-details__content h3,
.dark-body .property-details .property-details__content h4,
.dark-body .property-details .property-details__content p,
.dark-body .property-details .property-details__content span,
.dark-body .property-details .property-details__content li,
.dark-body .property-details .property-details__content label {
    color: var(--white) !important;
}

.dark-body .property-details textarea {
    background-color: transparent;
    border: 1px solid #383535;
    color: var(--white);
}

.dark-body .property-details textarea::-webkit-input-placeholder {
    color: #bbb;
}

.dark-body .property-details textarea::-moz-placeholder {
    color: #bbb;
}

.dark-body .property-details textarea:-ms-input-placeholder {
    color: #bbb;
}

.dark-body .property-details textarea::-ms-input-placeholder {
    color: #bbb;
}

.dark-body .property-details textarea::placeholder {
    color: #bbb;
}

.dark-body .property-details .right-content .action-group a {
    background-color: var(--quaternary-color);
}

.dark-body .property-details .right-content .action-group .tool {
    color: var(--black) !important;
}

.dark-body .property-details .property-details__overview .thumb {
    border-color: var(--white);
}

.dark-body .property-details .property-details__overview .thumb img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .property-details .property-details__sidebar h5 {
    color: var(--white) !important;
}

.dark-body .property-details .property-details__sidebar .property-details__widget {
    background-color: var(--quaternary-color);
}

.dark-body .property-details .property-details__sidebar .property-details__widget p {
    color: var(--white) !important;
}

.dark-body .property-details .property-details__sidebar .property-details__widget .nice-select {
    background-color: transparent;
    border: 1px solid #3c3c3c;
}

.dark-body .team-details {
    background-color: var(--quaternary-color);
}

.dark-body .team-details h4,
.dark-body .team-details p,
.dark-body .team-details a,
.dark-body .team-details label,
.dark-body .team-details span {
    color: var(--white) !important;
}

.dark-body .team-details .social a:hover {
    background-color: var(--black);
}

.dark-body .team-details .skill__wrapper::before {
    background-color: var(--white) !important;
}

.dark-body .team-details textarea {
    background-color: transparent;
    border: 1px solid #383535;
    color: var(--white);
}

.dark-body .team-details textarea::-webkit-input-placeholder {
    color: #bbb;
}

.dark-body .team-details textarea::-moz-placeholder {
    color: #bbb;
}

.dark-body .team-details textarea:-ms-input-placeholder {
    color: #bbb;
}

.dark-body .team-details textarea::-ms-input-placeholder {
    color: #bbb;
}

.dark-body .team-details textarea::placeholder {
    color: #bbb;
}

.dark-body .common-banner {
    background-position: right center;
}

.dark-body .testimonial-two .partner-two {
    background-color: var(--black);
    border-color: var(--black);
}

.dark-body .testimonial-two .partner-two .filter-black {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .collection {
    background-color: var(--black);
}

.dark-body .collection .inner h4,
.dark-body .collection .inner p {
    color: var(--white);
}

.dark-body .procedure {
    background-color: var(--black);
}

.dark-body .procedure .procedure__single .thumb {
    background-color: var(--quaternary-color);
}

.dark-body .procedure .procedure__single .thumb img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .procedure .procedure__single .thumb i {
    color: var(--white);
}

.dark-body .procedure .procedure__single .content h4,
.dark-body .procedure .procedure__single .content p {
    color: var(--white);
}

.dark-body .who {
    background-color: var(--black);
}

.dark-body .who .about__content-inner p {
    color: var(--white);
}

.dark-body .who .about__content-single {
    background-color: var(--quaternary-color);
}

.dark-body .who .about__content-single .thumb img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .who .about__content-single .thumb i {
    color: var(--white);
}

.dark-body .who .about__content-single h6 {
    color: var(--white);
}

.dark-body .service-main {
    background-color: var(--black);
}

.dark-body .service-main .service__single {
    background-color: var(--quaternary-color);
    border-color: var(--quaternary-color);
}

.dark-body .service-main .service__single .content h4,
.dark-body .service-main .service__single .content p {
    color: var(--white);
}

.dark-body .service-main .service__single:hover .btn--primary {
    color: var(--black);
}

.dark-body .authentication {
    background-color: var(--black);
}

.dark-body .authentication .input-single label,
.dark-body .authentication .auth-footer p,
.dark-body .authentication .divider p {
    color: #bbb;
}

.dark-body .authentication .divider span {
    background-color: var(--white);
}

.dark-body .error-section .text,
.dark-body .error-section h4,
.dark-body .error-section .error-title {
    color: var(--white);
    text-align: center !important;
}

.dark-body .error-section .thm-btn {
    color: var(--white);
}

.dark-body .blog-list {
    background-color: var(--quaternary-color);
}

.dark-body .blog-list .blog-list__item .content {
    background-color: var(--black);
}

.dark-body .blog-list .blog-list__item .content h3,
.dark-body .blog-list .blog-list__item .content p {
    color: var(--white);
}

.dark-body .blog-pagination a,
.dark-body .blog-pagination button {
    background-color: var(--quaternary-color);
    color: var(--white);
}

.dark-body .blog-details {
    background-color: var(--quaternary-color);
}

.dark-body .blog-details .details-content {
    background-color: var(--black);
}

.dark-body .blog-details .details-content h3,
.dark-body .blog-details .details-content h4,
.dark-body .blog-details .details-content p,
.dark-body .blog-details .details-content li {
    color: var(--white) !important;
}

.dark-body .blog-details .blockquote-wrapper {
    background-color: var(--quaternary-color);
}

.dark-body .blog-details .blockquote-wrapper blockquote {
    color: var(--white);
}

.dark-body .blog-details .details-footer .tag-header h6 {
    color: var(--white);
}

.dark-body .blog-details .details-footer .tag-wrapper a,
.dark-body .blog-details .details-footer .social a {
    color: var(--white);
    border-color: var(--white);
}

.dark-body .blog-details .details-comment-header h4 {
    color: var(--white) !important;
}

.dark-body .blog-details .details-comment .reply-box-single::after {
    background-color: var(--black);
}

.dark-body .blog-details .details-comment .reply-box-single h5,
.dark-body .blog-details .details-comment .reply-box-single p {
    color: var(--white) !important;
}

.dark-body .blog-details .details-comment-form textarea {
    background-color: transparent;
    border: 1px solid #383535;
    color: var(--white);
}

.dark-body .blog-details .details-comment-form textarea::-webkit-input-placeholder {
    color: #bbb;
}

.dark-body .blog-details .details-comment-form textarea::-moz-placeholder {
    color: #bbb;
}

.dark-body .blog-details .details-comment-form textarea:-ms-input-placeholder {
    color: #bbb;
}

.dark-body .blog-details .details-comment-form textarea::-ms-input-placeholder {
    color: #bbb;
}

.dark-body .blog-details .details-comment-form textarea::placeholder {
    color: #bbb;
}

.dark-body .blog__sidebar .border-content {
    border-color: #423737;
}

.dark-body .blog__sidebar .widget__header h4 {
    color: var(--white);
}

.dark-body .blog__sidebar ul a {
    color: var(--white);
}

.dark-body .blog__sidebar .single-search-item p {
    color: var(--white);
}

.dark-body .blog__sidebar .single-search-item .nice-select {
    background-color: transparent;
    border-color: #423737;
}

.dark-body .blog__sidebar .single-item p,
.dark-body .blog__sidebar .single-item span,
.dark-body .blog__sidebar .single-item-two p,
.dark-body .blog__sidebar .single-item-two span {
    color: var(--white) !important;
}

.dark-body .blog__sidebar .widget-tags a {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.dark-body .blog__sidebar .widget-tags a:hover {
    background-color: var(--base-color);
    color: var(--white);
    border-color: var(--base-color);
}

.dark-body .contact {
    background-color: var(--black);
}

.dark-body .contact .contact__content-single h2,
.dark-body .contact .contact__content-single h4 {
    color: var(--white);
}

.dark-body .contact .contact__content-single ul a,
.dark-body .contact .contact__content-single .social a {
    color: #bbb;
}

.dark-body .contact .contact__content-single ul a:hover,
.dark-body .contact .contact__content-single .social a:hover {
    color: var(--white);
}

.dark-body .contact-form {
    background-color: var(--black);
}

.dark-body .contact-form .input-group input,
.dark-body .contact-form .input-group textarea {
    background-color: transparent;
    border: 1px solid #383535;
    color: var(--white);
}

.dark-body .contact-form .input-group input::-webkit-input-placeholder,
.dark-body .contact-form .input-group textarea::-webkit-input-placeholder {
    color: #bbb;
}

.dark-body .contact-form .input-group input::-moz-placeholder,
.dark-body .contact-form .input-group textarea::-moz-placeholder {
    color: #bbb;
}

.dark-body .contact-form .input-group input:-ms-input-placeholder,
.dark-body .contact-form .input-group textarea:-ms-input-placeholder {
    color: #bbb;
}

.dark-body .contact-form .input-group input::-ms-input-placeholder,
.dark-body .contact-form .input-group textarea::-ms-input-placeholder {
    color: #bbb;
}

.dark-body .contact-form .input-group input::placeholder,
.dark-body .contact-form .input-group textarea::placeholder {
    color: #bbb;
}

.dark-body .input-single input,
.dark-body .input-single textarea {
    background-color: transparent;
    border: 1px solid #383535;
    color: var(--white);
}

.dark-body .input-single input::-webkit-input-placeholder,
.dark-body .input-single textarea::-webkit-input-placeholder {
    color: #bbb;
}

.dark-body .input-single input::-moz-placeholder,
.dark-body .input-single textarea::-moz-placeholder {
    color: #bbb;
}

.dark-body .input-single input:-ms-input-placeholder,
.dark-body .input-single textarea:-ms-input-placeholder {
    color: #bbb;
}

.dark-body .input-single input::-ms-input-placeholder,
.dark-body .input-single textarea::-ms-input-placeholder {
    color: #bbb;
}

.dark-body .input-single input::placeholder,
.dark-body .input-single textarea::placeholder {
    color: #bbb;
}

.dark-body .property-type {
    background-color: var(--quaternary-color);
}

.dark-body .property-type .slider-navigation-two .prev-slide {
    background-color: var(--black);
    border-color: var(--black);
}

.dark-body .property-type .property-type-item {
    background-color: var(--black);
}

.dark-body .property-type .property-type-item .thumb img {
    -webkit-filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
    filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
}

.dark-body .property-type .property-type-item .thumb i {
    color: var(--white);
}

.dark-body .property-type .property-type-item .content h5,
.dark-body .property-type .property-type-item .content p {
    color: var(--white);
}

.rtl {
    direction: rtl;
}

.rtl .color-palate-inner {
    direction: ltr !important;
}

.rtl .title-animation {
    direction: ltr;
    text-align: end;
}

.rtl .section__header .title-animation,
.rtl .section__header-light .title-animation {
    text-align: center;
}

.rtl .property-type-slider-wrapper {
    direction: ltr;
}

.rtl .swiper {
    direction: ltr;
}

.rtl .about .section__header .title-animation,
.rtl .testimonial .section__header .title-animation,
.rtl .collection .section__header .title-animation,
.rtl .property-tab .section__header .title-animation,
.rtl .exclusive-tab .section__header .title-animation,
.rtl .testimonial-three .section__header .title-animation {
    text-align: end;
}

.rtl .main-header__topbar .main-header__topbar__content-wrapper::after {
    content: none;
}

.rtl .nice-select .option {
    text-align: right;
}

.rtl .counter .counter__single h2 {
    direction: ltr;
}

.rtl .text-lg-end {
    text-align: right !important;
}

.rtl .slider-navigation-two {
    direction: ltr;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.rtl .main-header__menu .navbar__sub-menu a::before {
    content: none;
}

.rtl .main-header__menu .navbar__sub-menu .active>a {
    padding-left: 32px !important;
}

.rtl .main-header__menu .navbar__sub-menu .navbar__item--has-children>a:hover {
    padding-left: 32px !important;
}

.rtl .main-header__menu .navbar__sub-menu .navbar__item--has-children>a:hover::after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rtl .main-header__menu .navbar__sub-menu__nested {
    left: unset;
    right: 100%;
}

.rtl .main-header__menu .navbar__sub-menu__nested::before {
    content: none;
}

.rtl .banner-two {
    direction: ltr;
}

.rtl .property-three .property-three__single {
    direction: rtl;
}

.rtl .coming-soon .emailed-form h3 {
    text-align: center;
}

.rtl .coming-soon .emailed-form button {
    right: unset;
    left: 0px;
}

.rtl .error-section .title-animation {
    text-align: center !important;
}

.rtl .properties-grid-slider {
    direction: ltr;
}

.rtl .properties-grid-slider .properites__single-item .content {
    direction: rtl;
}

.rtl .testimonial-alt {
    direction: ltr;
}

.rtl .testimonial-alt .testimonial-slider__single {
    direction: rtl;
}

.rtl .partner-slider {
    direction: ltr;
}

.rtl .header-two .navbar {
    background-color: var(--quaternary-color);
}

.rtl .header-two .navbar__menu {
    background-color: transparent;
}

.rtl .header-two .navbar__menu::after {
    content: none;
}

.rtl .team-two .content {
    direction: rtl;
}

.rtl .testimonial-three .thumb img {
    max-width: 50vw;
}

@media only screen and (min-width: 576px) {
    .rtl .search-property__wrapper .btn--primary::after {
        left: 60px;
        right: unset;
    }
}

@media only screen and (min-width: 992px) {
    .rtl .text-lg-end {
        text-align: left !important;
    }
}

@media only screen and (min-width: 1200px) {
    .rtl .collection .collection__thumb .thumb-three {
        right: -100px;
        left: unset;
    }
}

@media only screen and (max-width: 991px) {
    .rtl .text-center.text-lg-end {
        text-align: center !important;
    }
}

@media only screen and (max-width: 1199px) {
    .rtl .header-two .navbar {
        background-color: transparent;
        direction: ltr;
    }
}

.rtl .banner {
    direction: ltr;
}

.rtl .banner .banner__slider-content {
    direction: rtl;
}

.rtl .banner-two .banner-two__content {
    direction: rtl;
}

@media only screen and (max-width: 1719px) {
    .rtl .banner-two .banner-two-wrapper .swiper-navigation-buttons {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.rtl .search-property .search-property__single:nth-of-type(1) .nice-select {
    border-right: 1px solid #dddddd;
}

.rtl .banner-three {
    direction: ltr;
}

.rtl .banner-three .banner-three__content {
    text-align: end;
}

.rtl .banner-three .banner-tab-btn-wrapper ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rtl .banner-three .banner-tab-item-wrapper {
    direction: rtl;
}

.rtl .banner-three .search-property__wrapper input {
    border-right: 1px solid #707070 !important;
}

.rtl .banner-four .video-text {
    text-align: end;
}

.rtl .exclusive {
    direction: ltr;
}

.rtl .exclusive .section__header {
    text-align: end;
}

.rtl .exclusive .section__header .title-animation {
    text-align: end;
}

.rtl .exclusive .section__header .icon-thumb {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rtl .exclusive .exclusive__single {
    text-align: end;
}

.rtl .exclusive .exclusive__single .location,
.rtl .exclusive .exclusive__single .specifications {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.rtl .exclusive .exclusive__thumb .content .meta {
    direction: rtl;
}

.rtl .exclusive .slider-navigation {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (min-width: 992px) {
    .rtl .exclusive .slider-navigation,
    .rtl .exclusive .section__header {
        max-width: 460px;
    }
}

.rtl .testimonial-three .testimonial-three-single {
    direction: rtl;
}

.rtl .footer-three .footer__bottom-right {
    text-align: center !important;
}

@media only screen and (min-width: 992px) {
    .rtl .footer-three .footer__bottom-right {
        text-align: start !important;
    }
}

.rtl .team-details .skill__wrapper span {
    right: unset;
    left: 0px;
}

.rtl .testimonial-two .testimonial-two__single {
    direction: rtl;
}

.rtl .testimonial-two .author {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

@media only screen and (min-width: 1200px) {
    .rtl .video-counter .counter__single {
        border-left: 2px solid var(--white);
        border-right: 0px;
    }
}

.rtl .video-counter .counter__single .thumb i {
    color: var(--white);
}

.rtl .who {
    direction: ltr;
}

.rtl .who .who__content {
    direction: rtl;
}

.rtl .who .section__header .title-animation {
    text-align: end;
}

.rtl .authentication .auth-footer p {
    direction: ltr;
    text-align: end;
}

.rtl .breadcrumb .breadcrumb-item+.breadcrumb-item {
    padding-right: 0px;
}

.rtl .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    padding-right: 0px;
    padding-left: 12px;
    float: right;
}

.rtl .blog-details .details-content .details-footer .details-tag {
    direction: ltr;
}

.rtl .blog-details .details-comment .reply-box-single::after {
    right: unset;
    left: 0px;
}

.rtl .blog-details .details-comment .reply-box-single .reply-btn {
    right: unset;
    left: 24px;
}

.rtl .contact__social {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    direction: ltr;
}

.rtl .property-type .section__header .title-animation {
    text-align: end;
}

.rtl .property-type .slider-navigation-two {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media only screen and (min-width: 1200px) {
    .rtl .property-type .slider-navigation-two {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
}

@media only screen and (min-width: 992px) {
    .rtl .footer-two .footer__bottom-left p {
        text-align: start !important;
    }
}

/* ==== 
 --------- (4.05) dark body and rtl styles end ---------
 ==== */
/* services start  */        
.property-section {
    overflow: hidden;
    /*padding: 100px 0px 0px 0px;*/
}
.property-section-text {
    max-width: 1170px;
    margin-left: auto;
    margin-bottom: 50px;
    
}
.section-title {
    h2 {
        max-width: 530px;
    }
}
.property-section-text {
   
    .pop {
        max-width: 530px;
        color:#e11736;
        line-height: 59px;
       
    }
    .pop b{
        color: #686363;
    }
}
.single-property {
    margin-bottom: 30px;
    height: auto;
    position: relative;
    .images {
        max-width: 370px;
        height: auto;
        a {
            display: block;
            /* img {
                max-width: 100%;
            } */
        }
        .property-content {
           position: relative;
            margin-top: -90px;
            right: -45px;
            max-width: 360px;
            padding: 30px;
            background-color:#fff;
            border: 5px solid #f0f0f0;
            span {
                font-size: 14px;
                color:#e11736;
                position: relative;
                margin-left: 40px;
                &::before {
                    content: '';
                    position: absolute;
                    left: -35px;
                    width: 30px;
                    height: 1px;
                    bottom: 0;
                    background-color:#e11736;
                }
            }
            a {
                display: block;
                h3 {
                    font-size: 24px;
                    color: #e11736;
                    margin-bottom: 10px;
                }
            }
            .paras{
                margin-bottom: 5px;
            }
            .learn-more-btn b {
                color: #3f3f3f;
                margin-bottom: 0;
                font-size: 16px;
                i {
                    position: relative;
                    top: 5px;
                    font-size: 20px;
                }
                &:hover {
                    color: #e11736;
                    letter-spacing: .5px;
                }
            }
        }
     
        .plus-dots {
            position: absolute;
            right: -45px;
            bottom: -45px;
            z-index: -1;
        }
    }
}
.property-color {
    color:#e11736;
}

.property-section {
    .col-lg-4 {
        &:nth-child(2){
            .single-property {
                margin-top: -100px;
            }
        }
    }
}
.property-section {
    .col-lg-4 {
        &:nth-child(3){
            .single-property {
                margin-top: -200px;
            }
        }
    }
}
.property-section-title {
    .section-title-two {
        h2 {
            max-width: 530px;
            margin: 0 auto;
        }
    }
}

.property-section-title-two {
    .section-title-two {
        h2 {
            max-width: 630px;
            margin: 0 auto;
        }
    }
}
.property-card {
    margin-bottom: 30px;
    a {
        display: block;
        img {
            max-width: 100%;
        }
    }
    .content {
        padding: 30px;
        background-color: #fff;
        border: 5px solid #f0f0f0;
        span {
            font-size: 14px;
            color: #e11736;
            position: relative;
            margin-left: 40px;
            &::before {
                content: '';
                position: absolute;
                left: -35px;
                width: 30px;
                height: 1px;
                bottom: 0;
                background-color:#e11736;
            }
        }
        a {
            display: block;
            h3 {
                font-size: 24px;
                color: $regal-blue;
                margin-bottom: 10px;
            }
        }
        .learn-more-btn {
            color: #e11736;
            margin-bottom: 0;
            i {
                position: relative;
                top: 5px;
                font-size: 20px;
            }
            &:hover {
                color: $regal-blue;
                letter-spacing: .5px;
            }
        }
    }
    
}
 /* services end  */


 /* ----counter section start-- */
.count{
    font-family: 'Josefin Sans', sans-serif;
    font-size: 40px;
    font-weight: bold;
  }
  .counter-wrapper{
    background: #333;
     background-image:url('https://images.unsplash.com/photo-1568563643102-37d43956d1d3?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background: cover;
    background-position: center center;
    position: relative;
    height: 225px;
  }
  .counter-wrapper:after{
    content: '';
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background: rgba(0,0,0,.5);
  }
  .counter-inner{
    position:relative;
    z-index:2;
  }
  .count-icon{
    font-size: 48px;
  }
  #count1,#count2,#count3,#count4 {
    font-size: 27px;
    line-height: 66px;
    color: #fff;
}

/* contact area- */
.sect{
    padding: 50px 0px;
}
.contact-area {
    background-image: url(../images/contact-img1.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.contact-option {
    max-width: 800px;
    margin-right: auto;
}
.contact-form {
    padding: 50px;
    max-width: 800px;
    margin: 0 auto 0;
    background-color: #f4f4f4;
  
   .cont{
        font-size: 35px;
        margin-bottom: 20px;
        color: #e11736;
    }
    .form-group {
        margin-bottom: 25px;
        position: relative;
        i {
            position: absolute;
            top: 14px;
            left: 15px;
            line-height: 1;
            font-size: 18px;
            color: #7f7f7f;
            z-index: 1;
        }
        .form-control {
            height: 50px;
            color: #7f7f7f;
            border: 1px solid #e8e8e8;
            background-color: #ffffff;
            border-radius: 0;
            font-size: 14px;
            padding: 10px 20px 10px 40px;
            width: 100%;
            &:focus {
                outline: none;
                border-color: #83c1ff;
                box-shadow: none;
            }
        }
        textarea.form-control {
            height: auto;
        }
    }
    .with-errors {
        float: left;
        font-size: 16px;
        margin-top: 10px;
        margin-bottom: 0;
        color: #f00;
        font-weight: 400;
        display: block;
    }
    .text-danger {
        font-size: 18px;
        margin-top: 15px;
    }
    .default-btn {
        border: 0;
        outline: none;
        padding:10px;
        background-color:#e11736;
        color:#fff;
    }
}
.contact-form .form-group .form-control::-webkit-input-placeholder {
    color: #7f7f7f;
}
.contact-form .form-group .form-control:-ms-input-placeholder {
    color: #7f7f7f;
}
.contact-form .form-group .form-control::-ms-input-placeholder {
    color: #7f7f7f;
}
.contact-form .form-group .form-control::placeholder {
    color: #7f7f7f;
}
/*=================================
Contact Area End
====================================*/

  

/* start inner banner page */
.so {
 padding: 20px 0px;
  }
  .inn-page {
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innercontactus.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page1 {
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/inneraboutus.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page2 {
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/inner\ under-construction.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page3 {
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innerloanassistance.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page4{
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innerinvestment\ opportunites.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page5{
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innercommercial\ space.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page6{
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innerluxuryliving.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page7{
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innerwarangal.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page8{
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innerhanamkonda.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page9{
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/innerKazipet.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page10{
    width: 100%;
    margin-top: 84px;
    background-image: url(../images/inn-properties.jpg);
    height: 400px;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* / padding-top: 32px; / */
    justify-content: center;
  }
  .inn-page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-image: linear-gradient(to bottom right, #0c0668a6, #0c0668c4); */
    opacity: 0.6;
  }
  .pages-title span {
    font-weight: 600;
    font-size: 4rem;
    color: #fff;
    position: relative;
  }
  .pages-title p {
    color: #FFF;
    font-size: 18px;
  }
  .pages-title p a {
    color: #fff;
    font-weight: 700;
    z-index: 9;
    position: relative;
  }
  /* end inner banner page */

  /* properties page start */
  .head {
    text-align: center;
   
    padding-bottom: 11px;
    color: #e11736;
}
    
    .properties3-section-area {
    position: relative;
    z-index: 1;
    }
    .property-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
       
        }
    .property-feature-slider {
        position: relative;
        z-index: 1;
        .tabs-btn-area {
            text-align: center;
            ul {
               display: inline-block !important;
               text-align: center;
               li {
                display: inline-block;
                /* margin: 0 24px 0 0; */
                &:nth-last-child(1) {
                    margin: 0;
                }
                button {
                    margin-right: 22px;
                    width:168px;
                    border-radius: 4px;
                    background: rgba(26, 71, 251, 0.10);
                    color: black;
                    text-align: left;
                    font-family: var(--ztc-family-font1);
                    font-size: var(--ztc-font-size-font-s18);
                    font-style: normal;
                    font-weight: var(--ztc-weight-medium);
                    line-height: 18px;
                    text-transform: capitalize; 
                    padding: 16px 24px;
                   
                   
                    &.active {
                        background: #e11736;
                        color: #fff;
                        transition: all .4s;
                    }
                    svg {
                        height: 24px;
                        width: 24px;
                        object-fit: cover;
                        margin: -5px 6px 0 0;
                    }      
                }
               }
            }
        }

        .property-single-boxarea {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-radius: 8px;
            background:#fff;
            padding: 20px;
            margin-bottom: 30px;
            margin-top: 30px;
        
            &:hover {
                .img1 {
                    img {
                        transform: scale(1.05) rotate(0deg);
                        transition: all .4s;
                    }
                }
            }
            .img1 {
                overflow: hidden;
                position: relative;
                z-index: 1;
                transition: all .4s;
                border-radius: 8px;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 8px;
                    transition: all .4s;
                }
            }
            ul.category-list {
                position: absolute;
                top: 36px;
                left: 36px;
                z-index: 2;
                li {
                    display: inline-block;
                    &:nth-child(1) {
                        margin: 0 8px 0 0;
                    }
                    a {
                        color: var(--ztc-text-text-2);
                        text-align: center;
                        font-family: var(--ztc-family-font1);
                        font-size: var(--ztc-font-size-font-s16);
                        font-style: normal;
                        font-weight: var(--ztc-weight-medium);
                        line-height: 16px;
                        text-transform: capitalize;
                        display: inline-block;
                        padding: 8px 12px;
                        transition: all .4s;
                        background:#fff;
                        border-radius: 4px;
                        &:hover {
                            background:#e11736;
                            transition: all .4s;
                            color: #fff;
                        }        
                    }
                }
            }
            .content-area {
                padding-top: 20px;
                a.head {
                    color: var(--ztc-text-text-2);
                    font-family: var(--ztc-family-font1);
                    font-size: var(--ztc-font-size-font-s24);
                    font-style: normal;
                    font-weight: var(--ztc-weight-semibold);
                    line-height: 24px; 
                    display: inline-block;
                    transition: all .4s;
                    &:hover {
                        color: var(--ztc-text-text-7);
                        transition: all .4s;
                    }       
                }
                p {
                    color: var(--ztc-text-text-3);
                    font-family: var(--ztc-family-font1);
                    font-size: var(--ztc-font-size-font-s16);
                    font-style: normal;
                    font-weight: var(--medium);
                    line-height: 16px;   
                    svg {
                        height: 20px;
                        width: 20px;
                        object-fit: cover;
                    }     
                }
                ul {
                    padding-top: 20px;
                    padding-bottom: 20px;
                    border-top: 1px solid #F2F3F3;
                    border-bottom: 1px solid #F2F3F3;
                    li {
                        display: inline-block;
                        a {
                            color: var(--ztc-text-text-2);
                            font-family: var(--ztc-family-font1);
                            font-size: var(--ztc-font-size-font-s16);
                            font-style: normal;
                            font-weight: var(--medium);
                            line-height: 16px;
                            transition: all .4s;
                            display: inline-block;
                            span.line {
                                color: #F2F3F3;
                                transition: all .4s;
                                display: inline-block;
                                margin: 0 16px;
                             
                            }
                            span.icon {
                                height: 36px;
                                width: 36px;
                                text-align: center;
                                line-height: 32px;
                                display: inline-block;
                                transition: all .5s;
                                border-radius: 50%;
                                background: var(--ztc-bg-bg-2);
                                margin: 0 5px  0 0;
                                /* img {
                                    filter: brightness(0) invert(1);
                                }   */
                            }
                        }
                    }
                }
                .btn-area {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    .nm-btn {
                       a {
                        border-radius: 8px;
                        background: var(--ztc-bg-bg-6);
                        padding: 12px 16px;
                        display: inline-block;
                        transition: all .4s;
                        color: var(--ztc-text-text-1);
                        font-family: var(--ztc-family-font1);
                        font-size: var(--ztc-font-size-font-s16);
                        font-style: normal;
                        font-weight: var(--ztc-weight-medium);
                        line-height: 16px;
                       }             
                    }   
                   
                }
                
            }
        }
    }

.properties3-section-area {
    position: relative;
    z-index: 1;
}
.sp2 {
    padding: 100px 0 70px;
}
.wgl{
    color:#e11736;
    padding-bottom: 60px;
}

   /* properties page end */

   /* services tabs start  */


    .tab{
        padding: 40px 0px;
    }
    /* .arro i{
        color: #111;
    } */
    .serv {
    font-weight: 700;
    font-family: var(--font);
    color: black;
    padding: 0px 0px 20px 0px;
    font-size: 28px;
    text-align: center;
}
   .imgbx img{
    height: 454px;
    width: 100%;
   }
  
.km__service__one {
    background: #f1f1f1;
    padding: 30px 20px;
    position: relative;
    /* border: 5px solid; */
    border-top: 5px solid #e11736;
    border-bottom: 5px solid #e11736;
}
 .km__service__one::after {
	 content: "";
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 70%;
	 height: 5px;
	 background:#f1f1f1;
}
 .km-sd-service-details-list li a {
	 background: var(--white);
	 display: -webkit-box;
	 display: -ms-flexbox;
	 display: flex;
	 -webkit-box-pack: justify;
	 -ms-flex-pack: justify;
	 justify-content: space-between;
	 -webkit-box-align: center;
	 -ms-flex-align: center;
	 align-items: center;
	 padding: 15px 20px;
	 margin-bottom: 13px;
	 color: black;
	 font-weight: 500;
	 text-transform: capitalize;
	 position: relative;
	 -webkit-transition: 0.3s;
	 -o-transition: 0.3s;
	 transition: 0.3s;
	 z-index: 1;
}
.km-sd-service-details-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background:#e11736;
  z-index: -1;
  -webkit-transition:0.3s;
  -o-transition:0.3s;
  transition: 0.3s;
}
 .km-sd-service-details-list li a:hover {
	 color: var(--white);
}
 .km-sd-service-details-list li a:hover::after {
	 width: 100%;
	 color: var(--white);
}

 .km__service__three {
	 background: var(--gray2);
	 padding: 30px 20px;
	 position: relative;
}
 .km__service__three::after {
	 content: "";
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 70%;
	 height: 5px;
	 background: var(--primary-color);
}


.card {
  background: #fff;
  border-radius: 2px;
  display: inline-block;
 
  /* margin: 1rem; */
  position: relative;
  width:100%;
  border-radius:10px;
  padding: 20px;
}
.card-2 {
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
  /* services tabs end  */
  /* why adepu inner pages start */
  .inner-pages .blog .blog-info.details, .listing-details-sliders.mb-30, .homes-content.details.mb-30, .property-location, .reviews.comments, .reviews.leve-comments, .wprt-image-video.w50.pro, .ag-de .similar-property, .ag-de .portfolio.py-0.age, .det .similar-property {
    padding: 1.5rem !important;
    background: #fff;
    border: 1px solid #eaeff5;
    -webkit-box-shadow: 0 0 10px 1px rgba(71, 85, 95, 0.08);
    box-shadow: 0 0 10px 1px rgba(71, 85, 95, 0.08);
    margin-top: 25px;
  }
  .realt{
    padding: 5px 0px;
    color:#e11736;
  }
  .paddi{
    padding: 50px 0px;
  }
  .mb-4{
    text-align: left;
    color:#e11736;

  }
  /* why adepu inner pages end */
  /* contact us page start */
  .km__contact__form {
    padding: 30px;
    background-color: white;
    -webkit-box-shadow: 0px 13px 38px 0px rgba(28, 28, 28, 0.15);
    box-shadow: 0px 13px 38px 0px rgba(28, 28, 28, 0.15);
  }
  
 
  
  .km__main__form input {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 13px;
    background: #f1f1f1;
    border: none;
    text-transform: capitalize;
    border: 1px solid transparent;
  }
  
  .km__main__form input:focus {
    background: transparent;
    border: 1px solid var(--primary-color);
  }
  
  .km__main__form textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
    background: #f1f1f1;
    border: none;
    padding: 20px;
    text-transform: capitalize;
    outline: none;
    border: 1px solid transparent;
  }
  
  .km__main__form textarea:focus {
    background: transparent;
    border: 1px solid var(--primary-color);
  }
  .km__form__content {
    padding: 50px 30px;
    background:#e11736;
}
.sub__title{
    color: #fff;
}
.km__form__title{
    color: #fff;
}
.form_des{
    color: #fff;
}
.km__address li  i {
    color:#fff;
}
.address{
    color: #fff;
}
.mb-40{
    padding-bottom: 20px;
    font-weight: 700;
    text-transform: capitalize;
}
.km__form__title {
    color: #fff;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
}
.faceb{
    padding: 20px 0px;
    font-size: 40px;
}
.km__form__content{
margin-top: 44px;
}
.km__message__box{
    padding: 40px 0px;
}
  /* contact us page end */
  /* contact us */
  /* .testimonial start */
   @media only screen and (max-width: 1024px) {
    .footer .footer__logo {
        /* margin-bottom: 35px; */
        margin-top: -41px;
    }
    /*.logo img {*/
    /*    width: 229px;*/
    /*    object-fit: cover;*/
    /*    margin-top: 30px;*/
    /*}*/
    .logo img {
    padding: 20px;
    width: 229px;
    object-fit: cover;
    margin-top: 54px;
    margin-bottom: 30px;
}
.box1{
    margin-top:-10px;
}
button {
    margin-top: 14px;
  
} 
.who .who__thumb .thumb-sm {
    position: relative;
    top: 50%;
    margin-top: 49%;
    left: 50%;
   
}
.who__content{
 
        margin-top: -409px;

}
.mobile-menu {
   
    max-width: 1024px;
   
}
  } 
  @media only screen and (max-width: 768px) {
    .footer-copyright{
        text-align: center;
    }
    .who__content{
 
        margin-top: -355px;

}
  
   .imag2{
    margin-top: 208px;
   }
   .footer .footer__logo {
   
    margin-top: -78px;
}
    .inn-page {
        height: 300px;
    }
    
.inn-page1 {
    height: 300px;
}
.inn-page2{
    height: 300px;
}
.inn-page3 {
    height: 300px;
}
.inn-page4 {
    height: 300px;
}
.inn-page5 {
    height: 300px;
}
.inn-page6 {
    height: 300px;
}
.inn-page7 {
    height: 300px;
}
.inn-page8 {
    height: 300px;
}
.inn-page9 {
    height: 300px;
    
} 
.inn-page10{
      height: 300px;
}

  }
  @media only screen and (max-width: 426px) {
    .property-content {
        margin-left: -14px;
  
    }
    .imag2 {
        margin-top: 10px;
    }
    .who__content{
       
            margin-top: -141px;
       
    }
    .who .who__thumb .thumb-sm {
        position: relative;
         top: 50%; 
        left: 50%;
        margin-top: 198px;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    .who {
        padding: 22px 0px;
    }
    
    .footer-copyright-text p {
       
        text-align: center;
      
    }
    .footer-menu{
        text-align: center;
    }
    .progress-wrap {
     
        display: none;
   
    }
    .foot img{
     height: 241px;
    }
    .imag1 img{
        margin-top:92px;
       }
       .imag2 img {
        margin-top: 196px;
    }
    button {
   
        margin-bottom: 15px;
    }
   
.counter {
    background: linear-gradient(#e11736, #000);
    padding-bottom: 38px !important;
}
  .inn-page {
    height: 170px;
}

.inn-page1 {
    height: 170px;
}
.inn-page2{
    height: 170px;
}
.inn-page3 {
    height: 170px;
}
.inn-page4 {
    height: 170px;
}
.inn-page5 {
    height: 170px;
}
.inn-page6 {
    height: 170px;
}
.inn-page7 {
    height: 170px;
}
.inn-page8 {
    height: 170px;
}
.inn-page9 {
    height: 170px;
} 
.inn-page10{
    height: 170px;
} 
.imgbx img {
    height: 280px;
  
}


}
@media only screen and (max-width: 376px) {
    .btn--primary {
    margin-bottom: 55px;
}
    .property-section {
        
margin-top: -56px;
      
    }
    .pop {
      
        font-size: 24px;
    }
    .property-content {
        margin-left: -51px;
   
    }
    .footer-copyright-text p {
     
        text-align: center;
        
    }
    .counter {
        background: linear-gradient(#e11736, #000);
        /* padding-bottom: 20px; */
    }
    .inn-page {
        height: 160px;
    }
    
    .inn-page1 {
        height: 160px;
    }
    .inn-page2{
        height: 160px;
    }
    .inn-page3 {
        height: 160px;
    }
    .inn-page4 {
        height: 160px;
    }
    .inn-page5 {
        height: 160px;
    }
    .inn-page6 {
        height: 160px;
    }
    .inn-page7 {
        height: 160px;
    }
    .inn-page8 {
        height: 160px;
    }
    .inn-page9 {
        height: 160px;
    }
    .inn-page10{
        height: 160px;
    }
}
@media only screen and (max-width: 320px) {
    .mobile-menu .close-mobile-menu {
        font-size: 36px;
        /* color: var(--base-color); */
        position: relative;
        top: -197px;
        right: -237px;
    }
    .footer-copyright-text p {
    
        text-align: center;
       
    }
        .counter {
            background: linear-gradient(#e11736, #000);
        }
          .inn-page {
            height: 136px;
        }
        
        .inn-page1 {
            height: 136px;
        }
        .inn-page2{
            height: 136px;
        }
        .inn-page3 {
            height: 136px;
        }
        .inn-page4 {
            height: 136px;
        }
        .inn-page5 {
            height: 136px;
        }
        .inn-page6 {
            height: 136px;
        }
        .inn-page7 {
            height: 136px;
        }
        .inn-page8 {
            height: 136px;
        }
        .inn-page9 {
            height: 136px;
        } 
        .inn-page10{
            height: 136px;
        }
        }
/* ==== 
 --------- (5.07) testimonial section styles start ---------
 ==== */
 .testimonial .testimonial__thumb img {
    min-height: 400px;
    width: 100%;
  }
  .testimonial{
    padding: 178px 0px 50px 0px;
  }
  .testimonial .testimonial__wrapper {
    background-color: #e11736;
    padding: 80px 20px;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, auto;
    background-position: right bottom, top 60px right 40%;
    position: relative;
    top: -180px;
    margin-bottom: -180px;
  }
  .testimonial .section__header {
    margin: 0px;
  }
  .testimonial .testimonial__single span,
  .testimonial .testimonial__single h2 {
    color: var(--white);
  }
  .testimonial .testimonial__single .icon-thumb span {
    background-color: var(--white);
  }
  .testimonial .content {
    margin-top: 40px;
  }
  .testimonial .content blockquote {
    font-size: 18px;
    color: var(--white);
  }
  .testimonial .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .testimonial .author p {
    color: var(--white);
  }
  .testimonial .author h5 {
    font-weight: 600;
    color: var(--white);
  }
  .testimonial .author-thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  .testimonial .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    margin-bottom: 16px;
  }
  .testimonial .review i {
    font-size: 16px;
    color: #ffee00;
  }
  
  .testimonial-two {
    padding: 100px 0px 0px;
    background-color: var(--base-color);
    background-repeat: no-repeat;
    background-size: auto, cover;
    background-position: left -250px bottom 60px, center center;
  }
  .testimonial-two .testimonial-two__single {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
  }
  .testimonial-two .testimonial-two__single .border-line {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
    display: none;
  }
  .testimonial-two .testimonial-two__single .left-quote {
    position: absolute;
    top: 0px;
    left: 70px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    display: none;
  }
  .testimonial-two .testimonial-two__single .right-quote {
    position: absolute;
    bottom: 0px;
    left: 425px;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
    display: none;
  }
  .testimonial-two .section__header span,
  .testimonial-two .section__header h2 {
    color: var(--white);
  }
  .testimonial-two .section__header .icon-thumb-single span {
    background-color: var(--white);
  }
  .testimonial-two .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 20px;
    text-align: end;
  }
  .testimonial-two .author p {
    color: var(--white);
  }
  .testimonial-two .author h5 {
    font-weight: 600;
    color: var(--white);
  }
  .testimonial-two .author-thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  .testimonial-two .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 4px;
    margin-top: 10px;
  }
  .testimonial-two .review i {
    font-size: 16px;
    color: #ffee00;
  }
  .testimonial-two .author-review {
    padding: 40px 20px 30px;
  }
  .testimonial-two .author-review h5 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }
  .testimonial-two .author-review q {
    color: var(--white);
  }
  .testimonial-two .swiper-pagination-bullet-active {
    background-color: var(--quaternary-color);
    border-color: var(--quaternary-color);
  }
  
  .partner-two {
    background-color: var(--white);
    padding: 46px 20px;
    position: relative;
    bottom: -101px;
    border: 1px solid #707070;
  }
  .partner-two .partner-single {
    text-align: center;
  }
  
  .testimonial-three {
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom 100px;
  }
  .testimonial-three::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 160px;
    background-color: #e11736;
    z-index: -2;
  }
  .testimonial-three .thumb {
    position: absolute;
    bottom: 0px;
    right: -60%;
    z-index: -1;
  }
  .testimonial-three .section__header {
    margin-bottom: 0px;
  }
  .testimonial-three .testimonial-three__content p {
    margin-top: 24px;
    color: var(--quaternary-color);
  }
  .testimonial-three .testimonial-three-navigation {
    margin-top: 40px;
  }
  .testimonial-three .swiper-slide {
    padding: 20px;
  }
  .testimonial-three .testimonial-three__inner {
    margin: -20px 0px;
  }
  .testimonial-three .testimonial-three-slider {
    margin: -20px;
    padding: 20px 0px;
  }
  .testimonial-three .testimonial-three-single {
    padding: 60px 20px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 17px rgba(0, 0, 0, 0.16);
  }
  .testimonial-three .testimonial-three-single h4 {
    font-weight: 600;
    color: var(--quaternary-color);
    margin-bottom: 35px;
  }
  .testimonial-three .testimonial-three-single q {
    font-size: 18px;
    color: #555555;
  }
  .testimonial-three .testimonial-three-single .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 35px;
  }
  .testimonial-three .testimonial-three-single .author p {
    color: var(--quaternary-color);
  }
  .testimonial-three .testimonial-three-single .author h5 {
    font-weight: 600;
    color: var(--quaternary-color);
  }
  .testimonial-three .testimonial-three-single .author-thumb {
    width: 100px;
    height: 100px;
    min-width: 100px;
  }
  .testimonial-three .testimonial-three-single .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    margin-bottom: 16px;
  }
  .testimonial-three .testimonial-three-single .review i {
    font-size: 16px;
    color: #ffee00;
  }
  
  /* ==== 
   --------- (5.07) testimonial section styles end ---------
   ==== */
  /* ==== 
 
/* ---property details start-- */

/*------------------------------------*/
/*-- 3. SECTION RECENTLY PROPERTIES --*/
/*------------------------------------*/
.homes-content .font-weight-bold.mr-1 {
    font-weight: 600;
    color: #555 !important;
}
.inner-pages .blog .homes-content.details span {
    font-size: 1rem;
    color: #000;
}
.inner-pages .blog .homes-content.details span {
    font-size: 1rem;
    color: #000;
}

.inner-pages .blog .homes-content h5::after, .inner-pages .blog .blog-info.details h5::after, .inner-pages .blog .property-location h5::after, .inner-pages .blog .team.assigned h5::after, .inner-pages .carousel h5:after, .wprt-image-video.w50.pro h5:after, .similar-property h5:after, .ag-de .blog-section h5:after {
    color: #e11736;
    display: block;
    height: 3px;
    font-weight: bold;
    background-color: #e11736;
    content: " ";
    width: 50px;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}
section.recently.portfolio {
    padding: 4.6rem 0;
    background: #f7f7f7;
}
.portfolio .sec-title {
    margin-left: 0;
}
.portfolio .sec-title h2 span {
    font-weight: 600;
    color: #111;
}
.portfolio .sec-title h2 {
    color: $firstcolor;
    margin-bottom: .5rem;
}
.homes.no-mb {
    margin-bottom: 0px;
}
.homes-img {
    display: block;
    transition: transform 0.6s ease-in;
}
.homes,
.homes-img {
    position: relative;
    overflow: hidden;
}
.homes-tag.featured {
    width: 84px !important;
    background: #18ba60 !important;
}
.recently .homes .button {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 2px;
    color: #fff;
    border: none;
    background-color: $firstcolor;
    display: inline-block;
    z-index: 99;
}
.recently .homes-tag.featured {
    left: 15px;
    margin-top: 15px;
}
.recently .homes-price,
.recently .homes-tag {
    position: absolute;
    z-index: 99;
}
.recently .homes-tag.sale {
    background: #e54242 !important;
    width: 84px !important;
    height: 31px;
}
.recently .homes-tag.sale {
    right: 15px;
    margin-top: 15px;
    top: 0;
}
.recently .homes-tag.sale.rent {
    background: #ffb200 !important;
    color: #fff;
    z-index: 99;
}
.recently .price-properties {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
}
.recently .compare {
    margin-top: 1.1rem;
    line-height: 0px;
}
.recently .compare a {
    margin-right: 1.5rem;
}
.recently .compare a:last-child {
    margin-right: 0px;
}
.recently .compare i {
    font-size: 1rem;
    transition: all .5s ease;
}
.recently .fa-exchange-alt {
    color: #666;
}
.recently .fa-exchange-alt:hover {
    color: #18ba60;
}
.recently .fa-share-alt {
    color: #666;
}
.recently .fa-share-alt:hover {
    color: #ffb200;
}
.recently .fa-heart-o {
    color: #666;
}
.recently .fa-heart-o:hover {
    color: #e54242;
}
.recently .homes-price {
    color: #fff;
    font-size: 13px !important;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 2px;
    background: #3a2c5f;
    bottom: 15px;
    left: 15px;
    z-index: 99;
}
.recently .homes-content {
    background: #fff !important;
    padding: 20px 20px !important;
}
.recently .homes-content h3.title a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
}
.recently .homes-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 3px;
}
.price-properties h3 {
    margin-bottom: 0px;
}
.recently .homes-content .homes-address {
    margin-top: 0px;
}
.recently .homes-content .homes-address .fa-map-marker {
    font-size: 1rem;
    text-decoration: none;
    color: #18ba60;
}
.recently .homes-content .homes-address a span {
    font-size: 13px;
    font-weight: 400;
    margin: 0 0 1px;
    text-decoration: none;
}
.recently .homes-address span {
    color: $text;
}
.recently .homes-content .homes-address a i {
    margin-right: 10px;
}
.recently .homes-content .homes-list {
    padding: 0;
    margin: 0;
}
.recently .homes-content .homes-list li {
    width: 45%;
    float: left;
    font-size: 14px;
    line-height: 40px;
    list-style: none;
    color: $firstcolor;
}
.recently .homes-content .homes-list li i {
    font-size: 1rem;
    margin-right: 5px;
    color: $firstcolor;
}
.recently .homes-content .homes-list span {
    color: $text;
}
.recently.portfolio .item {
    padding-bottom: 0px;
}
.recently.portfolio .homes {
    margin-bottom: 0px;
}
.recently .footer {
    background: none;
    border-top: 1px solid #ebebeb;
    padding-top: 1rem;
    font-size: 13px;
    color: $text;
}
.recently .footer a {
    color: $text;
    text-decoration: none;
}
.recently .footer span {
    float: right;
}
.recently .footer i {
    margin-right: 5px;
    font-size: 1rem;
    color: $text;
}
.hidden.photo-gallery {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.house-details.thehp-1 {
    i {
        color: #FF385C;
        font-size: 18px;
        font-weight: 500;
    }
}
.listing-item.compact.thehp-1 .listing-badges span,
.listing-item.compact.thehp-2 .listing-badges span {
    left: 15px;
    width: 77px !important;
    font-size: .8334rem;
    text-transform: uppercase;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 2px;
    color: #fff;
    border: none;
    background-color: #FF385C;
    display: inline-block;
    z-index: 1;
}
.listing-item.compact.thehp-2 .listing-badges span {
    width: 80px !important;
    background-color: #6449E7 !important;
}
.hp1 .agents-grid {
    padding-left: 0px;
    padding-right: 1.250rem;
}
.hp1 .slick-next {
    right: -60px;
}
.hp1 .slick-prev {
    left: -80px;
}
.hp1 div.partners-1, 
.hp1 div.partners {
    padding: 4.6rem 0;
}
.hp1 .top-location .tp-caption p {
    color: #fff;
    margin-bottom: 0px;
}
.hp1 .top-location .tp-caption {
    bottom: 0px;
}
.hp1 .top-location .tp-caption p {
    opacity: 10;
}
.hp1 .blog-section .news-item-sm .news-img-link {
    flex-basis: 40%;
}
.hp1 .parallax-searchs.home15.thome-6 .hero-inner {
    padding: 293px 0;
}
.homepage-1 .full-l .project-single {
    display: flex;
    position: relative;
    box-shadow: 0px 0px 2px #e7e7e7 !important;
    border: 1px solid #e7e7e7;
}
.homepage-1 .how-it-works .serv-flex {
    box-shadow: 0px 0px 1px #e7e7e7 !important;
    border: 1px solid #e7e7e7;
}
.homepage-1 .portfolio.full-l .homes-content {
    width: 60%;
}
.homepage-1 .portfolio.full-l .homes-content h3 a {
    color: #333;
    font-size: 1.1rem;
}
.homepage-1 .first-footer .bloq-email .email input[type="submit"] {
    margin-top: 0px;
}
.homepage-1 .portfolio.full-l .project-head {
    border-radius: 3px 0 0 3px;
    max-height: 270px;
    max-width: -webkit-fill-available;
    margin: 0;
    position: relative;
    width: 410px;
}
.homepage-1 .portfolio .homes-content .homes-list li i {
    color: #696969;
    font-size: 18px;
}
.homepage-1 .portfolio .footer i {
    color: #696969;
    font-size: 16px;
}
.homepage-1 .portfolio.full-l .project-head:before {
    background: transparent !important;
}
.homepage-1 .portfolio.full-l .project-head img {
    opacity: 1 !important;
}
.homepage-1 .small-category-2,
.homepage-1 .blog-section .news-item,
.homepage-1 .team-block .inner-box {
    box-shadow: 0px 0px 2px #e7e7e7;
    border: 1px solid #e7e7e7;
}
.homepage-1 .team .team-social li a.facebook,
.homepage-1 .team .team-social li a.twitter,
.homepage-1 .team .team-social li a.instagram,
.homepage-1 .team .team-social li a.linkedin {
    background-color: rgba(74, 74, 76, 0.5);
}
@media screen and (max-width: 1024px) {
    .homepage-1 .portfolio.full-l .homes-content {
        width: 100%;
    }
    .homepage-1 .portfolio.full-l .project-head {
        width: 60%;
    }
}
@media screen and (max-width: 575px) {
    .hp1 .agents-grid {
        padding-left: 0px;
        padding-right: 1px;
        width: 100%;
    }
    .homepage-1 .full-l .project-single {
        flex-direction: column;
    }
    .homepage-1 .portfolio.full-l .project-head {
        width: 100% !important;
    }
    .hp1 .blog-section .news-item-sm .news-img-link .news-item-img {
        padding-bottom: 75%;
    }
}
@media screen and (max-width: 767px) {
    .how-it-works .service-1 .serv.mb-0.pt.its-2 {
        margin-top: 2rem !important;
    }
}
@media screen and (max-width: 991px) {
.hp1 .bgc {
    margin-top: 3rem;
    }
    .homepage-1 .portfolio.full-l .project-head {
        width: 100%;
    }
}
.checking{
    color: #e11736;
}
/*------ SECTION REQUEST ------*/


