@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /*--primary-color: #FFCC00;*/
    --primary-color: #6859a0;
    --primary-color2: #cc1f4a;
    /*--primary-color: #1976ba;*/
    /*--primary-light-color: #fbf7e6;*/
    --primary-light-color: #F4F6F8;
    --secondary-color: #747474;
    --primary-font: 'Work Sans', sans-serif;
    /*--secondart-font: 'Playfair Display', serif;*/
    --secondart-font: 'Josefin Sans', sans-serif;
}
.sc-code {
    color: #6859a0;
    background-color: #cc1f4a;
}
body {
    background-color: #ffffff;
    color: #2F354D;
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.secondary-font {
    font-family: var(--secondart-font);
}
.bg-primary-light {
    background-color: var(--primary-light-color);
}
.primary2 {
    color: var(--primary-color2)!important;
}
.bg-primary2 {
    background-color: var(--primary-color2)!important;
}
.primary-btn2 {
    background-color: var(--primary-color2)!important;
    color: #ffffff;
}
* {
    margin: 0;
    padding: 0;
    border: 0;
}
a {
    text-decoration: none;
}
a,a:focus {
    outline: 0;
}
ul {
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
}
.btn {
    border-radius: 5px;
    font-family: var(--secondart-font);
}
.light {
    font-weight: 300!important;
}
.regular {
    font-weight: 400!important;
}
.medium {
    font-weight: 500!important;
}
.semibold {
    font-weight: 600!important;
}
.bold {
    font-weight: 700!important;
}
.font-13 {
    font-size: 13px!important;
}
.font-14 {
    font-size: 14px!important;
}
.secondary-color {
    color: var(--secondary-color)!important;
}
.text-black {
    color: #000000!important;
}
.top-page-padding {
    padding-top: 135px;
}
.btn-white {
    background-color: #ffffff;
    padding: 12px 30px;
}
.btn-white:hover {
    background-color: #000000;
    color:#ffffff;
}
.btn-custom-outline {
    background-color: #DEA52C;
    padding: 12px 30px;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.default-padding {
    padding: 70px 0;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--secondart-font);
    font-weight: 700;
}
.hover:hover {
    color: var(--primary-color) !important;
}
.pb-top {
    border-top: 5px solid var(--primary-color);
}
.form-control {
    background-color: #ffffff;
}
textarea.form-control {
    border-radius: 5px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
}
input.form-control, select.form-control {
    height: 50px;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #CDD6E1;
}

select {
    background-image: url("../img/select-arrow.svg");
    background-size: 15px;
    background-position: right 15px center;
    background-repeat: no-repeat;
    height: 50px;
    border-radius: 5px;
}
/* Header Start */

.main-header {
    padding: 0 25px;
    position: sticky;
    top: 0;
    z-index: 99;
    border-bottom: 2px solid var(--primary-color);
    background-color: #ffffff;
}
/*.main-header .container a {
    display: inline-block;
    position: relative;
    text-align: center;
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    overflow: hidden;
    top: 5px;
}*/
.main-header .navbar-nav  li a:after {
    content: '';
    position: absolute;
    background: #000000;
    height: 2px;
    width: 0%;
    transform: translateX(-50%);
    left: 50%;
    bottom: 0;
    transition: .35s ease;
}
.main-header .navbar-nav  li a:hover:after, .main-header .navbar-nav  li a:focus:after, .main-header .navbar-nav  li a:active:after {
    width: 100%;
}



.main-header .button_container {
    position: relative;
    top: 0;
    right: 0;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
    margin-left: 0;
}
.main-header  .button_container:hover {
    opacity: .7;
}
.main-header  .button_container.active .top {
    transform: translateY(11px) translateX(0) rotate(45deg);
    background: #FFF;
}
.main-header  .button_container.active .middle {
    opacity: 0;
    background: #FFF;
}
.main-header  .button_container.active .bottom {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    background: #FFF;
}
.main-header  .button_container span {
    background: #000000;
    border: none;
    height: 5px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}
.main-header  .button_container span:nth-of-type(2) {
    top: 11px;
}
.main-header  .button_container span:nth-of-type(3) {
    top: 22px;
}
.header-menu-btn {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: center;
}
.header-menu-btn .cart-btn {
    padding: 0;
    display: flex;
    width: 30px;
    height: 30px;
    /* border: 1px solid #000000; */
    border-radius: 0;
    align-content: center;
    justify-content: center;
    position: relative;
    font-size: 26px;
}
.cart-label {
    font-size: 12px;
    background-color: #dc3545;
    color: #fff;
    width: 20px;
    display: block;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -10px;
    border: 2px solid var(--primary-color);
}
.main-header  .overlay {
    position: fixed;
    background: #000000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
}
.main-header  .overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.main-header  .overlay.open li {
    animation: fadeInRight .5s ease forwards;
    animation-delay: .35s;
}
.main-header  .overlay.open li:nth-of-type(2) {
    animation-delay: .4s;
}
.main-header  .overlay.open li:nth-of-type(3) {
    animation-delay: .45s;
}
.main-header  .overlay.open li:nth-of-type(4) {
    animation-delay: .50s;
}
.main-header  .overlay nav {
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-weight: 400;
    text-align: center;
}
.main-header  .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.main-header  .overlay ul li {
    display: block;
    position: relative;
    opacity: 0;
    margin-bottom: 40px;
}
.main-header .overlay ul li a {
    font-family: var(--secondart-font);
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    line-height: 60px;
}
.main-header .overlay ul li a:hover {
    color: var(--primary-color);
}
.main-header  .overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
    width: 100%;
}
.main-header  .overlay ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: var(--primary-color);
    transition: .35s;
}
.pty-details .btn {
    color: #ffffff !important;
    font-size: 18px;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
/* Header End */

/* Banner start */
.banner-section {
    height: 80vh;
    background-color: var(--primary-light-color);
    display: flex;
    align-items: center;
}
.building-img-div {
    max-width: 430px;
    margin: 0 auto 0;
}
.banner-text h1 {
    font-size: 50px;
}
.line-span {
    max-width: 430px;
    height: 2px;
    background-color: #000000;
    display: block;
    margin: 10px auto 0;
}
.about-title h1 {
    font-size: 100px;
    font-weight: 400;
    /*font-style: italic;*/
    position: relative;
}
.banner-title h1 {
    font-size: 70px;
}
/* Banner end */

/* About Section Start */
.about-section {
    background-color: #ffffff;
    padding-top: 50px;
}
.about-title {
    position: relative;
}
.about-title::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    bottom: 18px;
    left: 0;
}
.title-img {
    position: relative;
    top: 21px;
    right: 100px;
}
.title-img img {
    width: 100%;
    position: relative;
    bottom: 0;
    background-color: #ffffff;
    z-index: 1;
    right: 0;
}
.welcome-title h1 {
    font-size: 40px;
}

.about-text-box {
    border-bottom: 1px solid #000000;
    margin-bottom: 100px;
    padding-bottom: 0;
}
.about-text-box p {
    margin-bottom: 15px;
}
/* About Section End */

/* Welcome Section Start */
/*.welcome-section {
    !* background-color: var(--primary-light-color); *!
    background-image: url("../img/banner-bg1.jpg");
    background-size: cover;
    background-position: top center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}*/
.slider-bg {
    /* background-color: var(--primary-light-color); */
    background-image: url("../img/banner-bg1.jpg");
    background-size: cover;
    background-position: top center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}
.search-btn {
    position: absolute;
    right: 10px;
    top: 0;
    height: 100%;
    font-size: 30px;
}
.search-box .form-control {
    height: 70px;
    border-radius: 60px;
    border: 1px solid #2c2e35;
}
.property-card-img {
    height: 220px;
    overflow: hidden;
    margin-bottom: 0;
    background-color: #f8f9fa;
}
.property-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-card-detail p {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
    font-family: var(--secondart-font);
}
.carousel-div .owl-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    margin: 0;
}
.carousel-div .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.carousel-div .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -40px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.residential-section {
    padding: 50px 0;
}
.pd-div label {
    font-size: 14px;
    margin-right: 10px;
}
.propert-detail-ul li i {
    width: 20px;
    color: #737D8C !important;
}
.propert-detail-ul li {
    font-weight: 400;
    display: flex;
    font-size: 14px;
    gap: 15px;
}
.card-btn {
    margin-top: 10px;
}
.card-btn .btn {
    padding: 10px 30px;
    font-size: 14px;
    background-color: #EBEEF2 !important;
    color: #2F354D;
    border-color: #ebeef2;
}
.card-btn .btn:hover {
    background-color: var(--primary-color) !important;
    color: #fff;
}
/* Welcome Section End */

/* Testimonial Section Start */
.ttm-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 80px;
    margin: -70px auto 20px auto;
    box-shadow: 0px 2px 3px rgba(36, 45, 60, 0.2);
}
.ttm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-box {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0 2px 3px rgba(36, 45, 60, 0.2);
    border-radius: 4px;
    padding: 35px;
    flex-direction: column;
    margin-top: 40px;
    text-align: center;
}
.ttm-details p {
    color: #737D8C;
    font-size: 14px;
    line-height: 24px;
    border-bottom: 1px solid #DDE0E5;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.ttm-details p:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
    font-size: 18px;
    font-weight: 400 !important;
    color: #2A323C;
}
/* Testimonial Section End */

/* Footer Start */
.footer-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}
.footer-links-ul li {
    display: block;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
}
.footer-links-ul li a{
    color: #ffffff;
}
.footer-links-ul li a:hover{
    color: var(--primary-color);
}
/* Footer End */
.page-banner img{
    width: 100%;
}
.page-banner {
    position: relative;
}
.page-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.breadcrumb-ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.breadcrumb-ul li{
    display: block;
}
.pty-box {
    background-color: #F5F5F5;
    margin-bottom: 30px;
}
.sticky-box {
    position: sticky;
    top: 110px;
}
.pty-box h1 {
    border-bottom: 1px solid #d9d9d9;
    padding: 15px;
    font-size: 24px;
}
.pty-details {
    padding: 15px;
    font-size: 16px;
    line-height: 32px;
}
.pty-details ul {
    padding-left: 15px;
}
.am-box i {
    width: 30px;
    height: 30px;
    background-color: #fc0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 12px;
}
.am-box p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.pty-iquiry-form {
    background-color: #f9f9f9;
    padding: 20px;
}

.property-filter-div {
    padding: 20px 0;
    border-top: 5px solid var(--primary-color);
    background-color: #2c2e35;
}
.property-filter-div .form-group label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}
.total-details {
    padding-bottom: 50px;
    background-color: var(--primary-light-color);
    padding-top: 50px;
}
.totol-box h1 {
    font-weight: 600;
    margin-bottom: 10px;
}
.totol-box i {
    font-size: 30px;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto 10px;
}
.contact-section {
    padding: 80px 0;
    background-color: var(--primary-light-color);
}
.contact-form-div {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
}
.address-box {
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #d9d9d9;
}
.social-div {
    display: flex;
    gap: 10px;
}
.ab-box h4 {
    margin-bottom: 10px;
}
.social-div a {
    width: 45px;
    height: 45px;
    background-color: #f9f9f9;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 18px;
    color: #2c2e35;
}
.property-category-section {
    padding: 80px 0;
    background-color: var(--primary-light-color);
}
.category-img-box {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.category-img-box img {
    width: 100%;
}

.category-img-box a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cic {
    position: absolute;
    bottom: 0;
    padding: 20px;
    width: 100%;
    z-index: 1;
}
.cic h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}
.cic p{
    color: #ffffff;
}
.category-img-box a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,rgba(255,255,255,.01) 0%,rgb(29,41,62) 100%);
}
.category-img-box {
    margin-bottom: 25px;
    height: 350px;
}
.category-img-box a:hover img {
    transform: scale(1.1);
    transition: 0.2s;
}
.category-img-box a {
    display: block;
    cursor: pointer;
    height: 350px;
    width: 100%;
}
.beds-baths-box {
    text-align: center;
    padding: 50px 0;
    position: relative;
}
.beds-baths-box i {
    font-size: 26px;
    margin-bottom: 10px;
}

.beds-baths-box p {
    font-size: 18px;
    font-weight: 600;
}
.beds-baths-list {
    background-color: #f5f5f5;
}
.beds-baths-box::after {
    content: "";
    height: 90px;
    width: 1px;
    background-color: #D9D9D9;
    position: absolute;
    right: -10px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.beds-baths-list .row div:last-child .beds-baths-box::after {
    display: none;
}
.pd-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-box span {
    width: 15px;
    /* background-color: var(--primary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: var(--primary-color);
}
.pd-box .h5 {
    font-size: 14px;
    margin: 0;
}
.pd-box .h4 {
    font-size: 14px;
    font-weight: 700;
}
.pd-list .row {
    gap: 20px 0;
}
.property-sub-img {
    display: flex;
}
.psi-box {
    flex: 0 0 100px;
    max-width: 100px;
    height: 100px;
    background-color: red;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
}
.psi-box a {
    display: block;
    height: 100%;
    width: 100%;
}
.psi-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.property-sub-img {
    display: flex;
    gap: 5px;
    padding: 5px 0;
}
.blog-card-detail {
    padding: 15px;
}
.blog-label {
    font-size: 12px;
    padding: 3px 15px;
    display: inline-block;
    color: #ffffff;
    border: 1px solid #212529;
    border-radius: 2px;
    margin-bottom: 15px;
    background-color: #212529;
}
.blogs-section {
    background-color: var(--primary-light-color);
    padding: 80px 0;
}
.why-content p {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #d9d9d9;
    display: flex;
    gap: 10px;
    font-size: 14px;
}
.why-content p i {
    font-size: 38px;
    color: var(--primary-color);
}
.property-search-box {
    display: none;
}
.subscribe-form-div {
    max-width: 650px;
    margin: auto;
    border: 5px solid #f7f7f7;
    padding: 40px;
    text-align: center;
    border-radius: 5px;
}
.sub-img-div img {
    max-width: 300px;
}
.lgn-btn {
    gap: 10px;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
}
.our-services-section {
    padding: 80px 0;
}
.services-text h4 {
    margin-bottom: 20px;
    font-weight: 600;
}
.services-icon i {
    font-size: 53px;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.services-card {
    border-width: 2px;
    border-radius: 0;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    padding: 20px;
}
.services-text p {
    opacity: 0.7;
    line-height: 26px;
}
.record-section {
    background-color: var(--primary-light-color);
    padding: 80px 0;
}
.record-icon i {
    font-size: 42px;
    margin-bottom: 10px;
}
.record-text h2 {
    margin-bottom: 10px;
}
.property-main-img {
    height: 400px;
    background-color: #f9f9f9;
    border-radius: 5px;
}
.property-main-img div {
    display: block;
    height: 100%;
}
.property-main-img a {
    display: block;
    height: 100%;
}
.property-main-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}
.main-header .navbar-collapse .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    color: #4B5A6F;
    position: relative;
    font-family: var(--secondart-font);
}
.login-btn-div .btn {
    font-size: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 0px 5px 0 rgba(0, 0, 0, 0.5);
    position: relative;
}
.login-btn-div {
    gap: 15px;
}
.banner-filter {
    /* background-color: rgba(255,255,255,0.8); */
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.5);
    margin-top: -50px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 2px 3px rgba(36, 45, 60, 0.2);
    background-color: #ffffff;
}
.banner-filter .form-group label {
    font-size: 14px;
    font-weight: 500;
}
.banner-filter .form-group .btn {
    font-size: 16px;
    height: 50px;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.section-title {
    background-image: url("../img/title-bg.png");
    background-repeat: no-repeat;
    background-position: bottom left;
}
.section-title {
    padding-bottom: 15px;
}
.property-card {
    background: #FFFFFF;
    box-shadow: 0px 2px 3px rgba(36, 45, 60, 0.2);
    border-radius: 4px;
}
.property-card-detail {
    padding: 20px;
}
.banner-filter .form-control {
    border: 1px solid #D4DCE5;
}
.contact-container {
    background: #FFFFFF;
    box-shadow: 0px 5px 30px 2px rgba(0, 0, 0, 0.06);
}
.contact-detail {
    position: relative;
    padding-left: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.contact-detail:last-child {
    border-bottom: none;
}
.contact-left {
    padding: 50px;
}
.contact-right {
    padding: 50px;
}
.contact-detail p {
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 5px;
}
.contact-detail h5 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
}
.contact-detail span {
    position: absolute;
    left: 0;
    top: 5px;
}
.contact-detail span svg {
    width: 30px;
}
.social-link {
    display: flex;
    gap: 10px;
}
.social-link a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.footer-address-ul li {
    padding-left: 25px;
}
.footer-address-ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    text-align: center;
    width: 15px;
}
.wcc-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--primary-color2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wcc-icon img {
    width: 50px;
}
.why-choose-card h3 {
    font-size: 22px;
    font-weight: 600;
}
.why-choose-card {
    padding: 30px 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid var(--primary-color2);
}
.whatsapp-btn {
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    fill: #13990A;
}

.whatsapp-btn {
    background-color: var(--primary-color2);
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    padding: 0 20px;
    height: 53px;
    position: fixed;
    right: -75px;
    display: flex;
    fill: #13990A;
    filter: drop-shadow(-3px 1px 10.3px rgba(0, 0, 0, 0.15));
    transform: rotate(-90deg);
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px 10px 0 0;
    margin-left: auto;
    top: 50%;
    opacity: 1;
    z-index: 99;
}

.whatsapp-btn i {
    transform: rotate(90deg);
}
.overview-card {
    background-color: #F4F6F8;
    border: 1px solid #EEEEEE;
}
.overview-card h4 {
    font-size: 24px;
    border-bottom: 1px solid #eeeeee;
    padding: 15px;
}
.ov-box {
    display: flex;
    gap: 20px;
    padding: 15px;
    align-items: center;
}
.ov-text h6 {
    font-size: 17px;
}
.ov-icon {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    flex: 0 0 50px;
}
.ov-text p {
    color: #737D8C;
    font-size: 14px;
}
.pd-body p {
    color: #737D8C;
    font-size: 16px;
}
.pd-head h4 {
    padding-bottom: 10px;
    border-bottom: 1px solid #F4F6F8;
}
.fd-content h6 {
    font-size: 14px;
    font-weight: 600;
}
.fd-content p {
    font-weight: 400;
}
.nl-card {
    display: flex;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.20);
    align-items: center;
}
.nl-icon {
    flex: 0 0 50px;
    max-width: 50px;
    background-color: #AF8B68;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 50px;
}
.nl-text h6 {
    font-size: 17px;
    font-weight: 600;
}
.amenities-list-box {
    margin-bottom: 20px;
}
.amenities-box h6 {
    color: #737D8C;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.amenities-box h6 span {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    background-color: #af8b68;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.amenities-box {
    background-color: #F4F6F8;
    padding: 30px;
    border-radius: 15px;
}
@media screen and (max-width: 1299px) {
    .owl-home .owl-dots {
        margin-left: 100px;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .main-header .navbar-collapse .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .main-header .navbar-brand {
        max-width: 150px;
    }
    .login-btn-div .btn {
        font-size: 14px;
        gap: 5px;
    }
    .login-btn-div {
        gap: 5px;
    }

}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .main-header .navbar-collapse .navbar-nav .nav-item .nav-link {
        font-size: 12px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .main-header .navbar-brand {
        max-width: 100px;
    }
    .login-btn-div .btn {
        font-size: 12px;
        gap: 5px;
    }
    .login-btn-div {
        gap: 5px;
    }
    .main-header {
        padding: 0;
    }
}
@media screen and (max-width: 1199px) {
    .owl-home .owl-dots {
        margin-left: 50px;
    }
    .page-banner-section {
        padding-top: 160px;
    }


}
@media screen and (max-width: 991px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 40px 15px 10px;
        box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
        position: relative;
        bottom: 0;
    }
    .custom-nav-pagination .pagination .page-item .page-link {
        margin: 0 2px;
    }
    .newsabout-box {
        position: relative;
    }
    .gallery-detail-box {
        width: 250px;
    }
    .success-list-div {
        max-width: 530px;

    }
    .nav-tabs-div {
        margin-bottom: 0;
    }
    .newsabout-div-box {
        width: 100%;
    }
    .show-btn-div {
        position: relative;
        width: 200px;
    }
    .news-carousel .owl-nav {
        bottom: -70px;
        right: 0;
        z-index: 2;
    }
    .header-menu-div::after {
        height: 60px;
        top: 42px;
        bottom: auto;
    }
    .owl-home .owl-dots {
        margin-left: -100px;
    }
    header.main-header h2 {
        font-size: 24px;
    }
    .page-banner-section {
        padding-top: 130px;
    }
    .category-img-box a {
        height: 300px;
    }
    .main-header .overlay nav {
        font-size: 30px;
    }
    .main-header .overlay ul li {
        margin-bottom: 5px;
    }
    .slider-bg {
        min-height: 40vh;
    }
    .ov-text h6 {
        font-size: 14px;
    }
    .pd-dis-box h5 {
        font-size: 18px;
    }
    .pd-body p {
        font-size: 14px;
    }
    .property-card-detail h5 {
        font-size: 16px;
    }
    .fd-content h6 {
        font-size: 12px;
    }
    .pd-head h4 {
        font-size: 18px;
    }
    .nl-card {
        margin-bottom: 15px;
        padding: 10px;
        border-radius: 5px;
    }
    .amenities-box h6 span {
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
        padding: 7px;
    }
    .amenities-box h6 {
        font-size: 14px;
    }
    .nl-icon {
        flex: 0 0 35px;
        max-width: 35px;
        height: 35px;
        padding: 10px;
    }
    .nl-text h6 {
        font-size: 14px;
    }
    .pty-title-div h1 {
        font-size: 22px;
    }
    .ov-icon {
        width: 35px;
        height: 35px;
        flex: 0 0 35px;
        padding: 8px;
    }
    .overview-card h4 {
        font-size: 18px;
    }
}
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
    .banner-text h1 {
        font-size: 24px;
    }
    .banner-text {
        padding: 0 30px;
    }
    .banner-section {
        height: auto;
    }
    .about-title h1 {
        font-size: 34px;
    }
    .about-title::after {
        bottom: 0;
    }
    .title-img {
        top: 15px;
        right: 0;
    }
    .about-title {
        margin-bottom: 15px;
    }
    .welcome-title h1 {
        font-size: 34px;
    }
    .main-header {
        padding: 15px 0;
    }
    .banner-title h1 {
        font-size: 40px;
    }
    .whatsapp-btn {
        font-size: 14px;
        padding: 0 15px;
        height: 43px;
        right: -65px;
    }
}
@media screen and (max-width: 575px) {
    .header-logo a img {
        width: 100%;
    }
    .main-header .button_container {
        flex: 0 0 30px;
    }
    .header-menu-btn {
        gap: 10px;
    }
}
