@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

@font-face {
    font-family: "Creattion";
    src: url("../fonts/Creattion-demo.otf");
}

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

:root {
    /*background-color: ;*/
    --primary-color: #000000;
    --secondary-color: #23b8bb;
    --bg-color: #f4f4f4;
    --bg-white: #fff;
    --main-color: #23b8bb; 
    --main-lighter: #73ced7;
    --second-main-color: #23b8bb;  
    --off-white: #f1f1f1;
    --third-main-color: #23b8bb; 
    --main-bit-dark: #106b74;
   --main-color-dark: #106b74;
    --bg-black: #000;

    /* Fonts */
    --primary-font: "Montserrat", sans-serif;
    --secondary-font: "Playfair Display", serif;
    --other-font: "Playfair Display", serif;

    /* Text Colors */
    --primary-text: #4D4848;
    --secondary-text: #23b8bb;
    --text-white: #fff;
    --text-black: #000;
    --text-gray: #e4e4e4;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--primary-font);
    background-color: var(--bg-white);
    color: var(--text-black);
}
a {
    text-decoration: none;
    color: var(--text-black);
}

::-webkit-scrollbar {
    width: .375rem;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

section {
    padding: 80px 0;
    background-color: var(--bg-white);
    position: relative;
}

.main-btn {
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 15px;
    padding: 0 35px;
    color: var(--text-black);
    display: inline-block;
    border: 0px;
}

/**/

h1 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 400;
    color: var(--text-black);
    margin-bottom: 1.25rem;
    font-family: var(--secondary-font);
}

h2 {
    font-family: var(--secondary-font);
    font-size: 5rem;
    color: var(--main-color);
}

h3 {
    margin-bottom: 19px;
    line-height: 1.5rem;
    font-weight: 400;
    font-size: 28px;
    color: var(--main-color);
    font-family: var(--secondary-font);
    letter-spacing: 0px;
}

h3 span {
    color: var(--secondary-color);
}

h5 {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--primary-color);
    font-weight: 400;
    font-family: var(--secondary-font);
}

h6 {
    font-size: 23px;
    margin-bottom: .9375rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 300;
    font-family: var(--secondary-font);
    letter-spacing: 0.1em;
}

p {
    font-size: 17px;
    line-height: 1.95rem;
    color: var(--text-black);
    font-weight: 400;
}

.row {
    margin-left: 0px;
    margin-right: 0px;
}

.dropdown-toggle::after {
    border-top: 0.4em solid;
}

.navbar-nav {
    display: flex;
    flex-direction: inherit;
    justify-content: space-around;
}

.row.desk .navbar-nav {
    justify-content: flex-end;
    gap: 35px;
}

.logo {
    text-align: left;
}

.logo img {
    width: 100%;
    max-width: 150px;

    margin: 0;
}

footer ul li {
    list-style: none;
    margin-bottom: 16px;
}

footer ul li a img {
    width: 30px;
}

footer ul li a strong {
    font-size: 20px;
}

.nav-link {
    color: var(--main-color);
    padding: 15px 13px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;

}

header.scrolleed .nav-link {
    color: var(--main-color) !important;
}

header.scrolleed .nav-link:hover {
    color: var(--text-black) !important;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--text-black);
}

li.nav-item {
    border-bottom: 2px solid transparent;
}

li.nav-item:hover {
    border-color: var(--text-white);
}

.dropdown-menu {
    background-color: var(--main-color);
    border: 0px solid rgba(0, 0, 0, .15);
    border-radius: 0rem;
    top: 0px !important;
    padding: 0rem 0;
}

.dropdown-item {
    padding: 6px 16px;
    text-transform: uppercase;
    line-height: 1.63;
    color: var(--text-white);
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--main-bit-dark);
    background-color: var(--off-white);
}

.logo p {
    text-align: center;
    font-size: 30px;
    margin-bottom: 0px;
    line-height: 52px;
    color: var(--text-white);
    text-shadow: 0px 2px 0px #000;
}

.logo span {
    font-weight: 300;
}

header {
    /* padding: 17px 15px !important; */
    z-index: 9999; /* Increased to stay on top */
    background-color: var(--bg-white) !important;
    position: fixed;
    transform: translateY(0px) scaleY(1);
    width: 100%;
    top: 0;
}

header.scrolleed {
    background-color: var(--bg-white) !important;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

section.banner {
    padding: 0px;
    position: relative;
    top: 0px;
    height: 100vh;
}

.video-overlay {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
}

.video-sec {
    position: absolute;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

video.js-hero-slide__inner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content {
    position: absolute;
    height: 100vh;
    top: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: var(--text-white);
    justify-content: center;
}

.video-content h1 {
    width: 100%;
    color: var(--text-white);
    font-size: 150px;
    margin-bottom: 0px;
    text-shadow: 0px 2px 0px #000;
}

.video-content p {
    width: 100%;
    color: #fff;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 300;
    text-shadow: 0px 2px 0px #000;
}


section.feature-prop {
    text-align: center;
    padding: 5rem 0;
}

.feature-prop h2 {
    font-family: var(--secondary-font);
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.feature-prop h6 {
    color: var(--text-black);

    margin-bottom: 20px;
}

.comm {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.comm svg {
    width: 14px;
    color: #23b8bb;
    margin-bottom: 25px;
}

section.feature-comm {
    padding: 0px 0px;
    padding-bottom: 80px;
}

.feature-comm .row {
    padding-left: 30px;
    padding-right: 30px;
}

.comm-card {
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    cursor: pointer;
}

.comm-card:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: background-color .3s;
    z-index: 1;
    /*background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 76.6%, #fff);*/
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.35);
    transition-duration: 0.5s;
}

.feature-comm img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.feature-comm a:hover img {
    transform: scale(1.05);

}

.feature-comm h3 {
    text-align: center;
    font-size: 26px;
    text-transform: uppercase;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 20px;
    letter-spacing: 3px;
    color: var(--text-white);
    z-index: 1;
    width: 100%;
    font-family: var(--primary-font);
    font-weight: 400;
    position: relative;
    transition: all .3s ease-in-out;
}

.feature-comm a:hover h3 {
    transform: translateY(-40px);
}

.feature-comm h3:after {
    content: "" "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid #fff;
    opacity: 0.6;
    width: 50px;
    height: 2px;
    background-color: #fff;
    margin: auto;
}

section.about {
    padding: 6rem 0;
    padding-bottom: 80px;
}

section.about img {
    width: 95%;
}

.sign {
    width: auto !important;
    display: block;
}

a.bttn {
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.63;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 40px;
}

.border {
    border: 1px solid var(--primary-color) !important;
    display: block;
    width: 40%;
    transition: all .3s ease-in-out;
}

a:hover .border {
    width: 100%;
}

a.bttn:hover {
    color: var(--text-black);
}

.testimonial .content-area {
    padding: 40px 40px 40px;
    background-color: #fff;
    box-shadow: 2px 2px 6px #888888;
    width: 55%;
    z-index: 3;
    transition: ease .25s;
}



.testimonial .content span {
    display: block;
    margin-bottom: 0px;
    font-weight: bold;
    margin-top: 20px;
}

a.bttn span {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

section.testimonial {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 160px;
    padding-bottom: 160px;
    background-color: #f1f1f1;
}

section.testimonial .row {
    position: relative;
    align-items: center;
}

section.testimonial img {
    width: 70%;
    height: 140%;
    object-fit: cover;
    position: absolute;
    right: 0;
}

section.testimonial .slick-slide p {
    height: 93px;
    overflow: hidden;
}

.carousel {
    width: 100%;
    margin: 0px auto;
}

.slick-slide {
    margin: 0px;
}

.wrapper .slick-dots li button:before {
    font-size: 20px;
    color: white;
}

.testimonial .slick-prev:before,
.testimonial .slick-next:before {
    font-family: var(--primary-font);
    font-size: 50px;
    line-height: 1;
    opacity: 1;
    color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testimonial .slick-prev,
.testimonial .slick-next {
    left: auto;
    z-index: 9;
    right: 80px;
    top: auto;
    bottom: -40px;
}

.testimonial .slick-next {
    right: 30px;
}

section.featured-prop .comm {
    margin-bottom: 50px;
}

.featured-prop .comm-card:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: background-color .3s;
    z-index: 1;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 100%, #fff);
    opacity: 0.9;
    background-color: transparent;
    transition-duration: 0.5s;
}

.featured-prop .comm-card {
    display: block;
}

.featured-prop img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

.prop-cont {
    position: absolute;
    bottom: 0px;
    color: var(--text-white);
    width: 100%;
    padding: 20px 20px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000);
    text-align: center;
}

.prop-cont h3 {
    color: var(--text-white);
    font-family: var(--primary-font);
    font-size: 25px;
    margin-bottom: 5px;
    text-shadow: 1px 1px 3px #000;
}

.prop-cont p {
    color: var(--text-white);
    text-shadow: 1px 1px 3px #000;
    margin-bottom: 0px;
}

.prop-cont .amenities {
    display: flex;
    gap: 20px;
    text-shadow: 1px 1px 3px #000;
}

.prop-cont .price p {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 0px;
    margin-top: 5px;
    font-weight: 600;
}

.featured-prop .slick-slide {
    position: relative;
    margin: 0px 20px;
}

.featured-prop a.bttn {
    margin-top: 0px;
    color: var(--text-white);
}

.featured-prop a.bttn span {
    border-color: var(--text-white) !important;
    width: 100%;
}

.featured-prop .carousel {
    width: 98%;
}

.featured-prop .slick-prev:before,
.featured-prop .slick-next:before {
    font-size: 60px;
    opacity: 1;
    color: #fff;
    font-family: var(--primary-font);
    text-shadow: 0px 1px 0px #000;
}

.featured-prop .slick-prev {
    left: 18%;
    z-index: 9;
}

.featured-prop .slick-next {
    right: 20%;
    z-index: 9;
}

section.contact {
    background-image: url(../images/contact-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    padding: 0px 0;
    /* display: none; */
}

section.contact .overlay {
    padding: 100px 0;
    background-color: #0000004f;
}

section.contact .container {
    background-color: #fff;
    padding: 70px;
    box-shadow: 1px 1px 4px 0px #000;
}

section.contact .row {
    text-align: center;
    margin-bottom: 20px;
}

section.contact input,
section.contact textarea {
    width: 100%;
    height: 57px;
    padding: 0 6px;
    border: 0px solid;
    border-bottom: 1px solid var(--text-black);
    text-transform: uppercase;
    color: var(--text-black);
    opacity: 1;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 40px;
}

section.contact textarea {
    height: 94px;
    margin-bottom: 20px;
}

section.contact input:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

section.contact button.main-btn {
    border: 2px solid var(--bg-black);
    background: transparent;
    padding: 20px 46px;
}

section.contact button.main-btn:hover {
    background: var(--bg-black);
    color: var(--text-white);
}

footer {
    padding: 60px 40px;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.98) 100%),
        url('https://www.escapetotheemeraldcoast.com/front/images/footer.jpg') center top / cover no-repeat;
    padding-bottom: 40px;
}

footer h2 {
    font-family: var(--secondary-font);
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
}

footer h3 {
    font-family: var(--secondary-font);
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--bg-white);
}

footer i path {
    fill: var(--text-white);
}

footer p,
footer a,
footer span {
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 0px;
}

footer p {
    font-weight: bold;
    line-height: 1.5rem;
}

footer .col-lg-4 {
    padding-left: 0px;
}

footer .col-lg-4 div {
    display: flex;
    gap: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

footer .col-lg-4 div.footer-content {
    display: block;
}

footer .icon-image {
    margin-top: 30px;
    gap: 30px !important;
}

.address a span {
    font-size: 16px;
}

footer .social {
    margin-top: 30px;
}

footer .social ul {
    display: flex;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
    gap: 20px
}

footer .social ul a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--text-white);
}

footer .social ul a:hover {
    background: var(--text-white);
    color: var(--text-black);
}

footer .social ul i {
    font-size: 20px;
}

footer .logo-icons {
    margin-top: 30px;
    gap: 0px !important;
}

footer .logo-icons img {
    height: 100%;
    width: 75px;
}

footer .logo-icons .realtor {
    width: 188px;
    height: 100%;
}

footer p.text {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 60px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

footer .copyright p {
    margin-top: 0;
    font-weight: 400;
}

footer .copyright .copyright-right {
    text-align: right;
}


/*about page css*/

.main-banner {
    background-image: url(../images/communities.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 0px;
    background-attachment: fixed;
}

.main-banner .overlay {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.main-banner h1 {
    font-family: var(--primary-font);
    color: var(--text-white);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0px;
    text-shadow: 0px 2px 0px #000;
    display: none;
}

p.logo {
    font-size: 35px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-area .contact i {
    color: var(--main-color);
    font-size: 30px;
}

.content-area .contact p,
.content-area .contact a {
    font-size: 20px;
    margin-bottom: 0px;
    color: var(--primary-color);
}

section.testimonial.contact-area .content-area .contact div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

section.testimonial.contact-area .content-area .social {
    margin-top: 30px;
}

section.testimonial.contact-area .content-area .social ul {
    display: flex;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
    gap: 20px
}

section.testimonial.contact-area .content-area .social ul a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--main-color);
}

section.testimonial.contact-area .content-area .social ul a:hover {
    background: var(--secondary-color);
}

section.testimonial.contact-area .content-area .social ul a:hover i {
    color: var(--text-white);
}

section.testimonial.contact-area .content-area .social ul i {
    font-size: 20px;
}

section.testimonial.contact-area .content-area {
    padding: 50px 60px 50px;
}

.main-banner.test {
    background-image: url(../images/communities.jpg);
}

.star_rating_display i {
    color: var(--secondary-color);
}

.test-sec span {
    font-size: 20px;
}

.test-sec {
    margin-top: 50px;
}

section.testimonial-sec .content-area h2,
section.testimonial-sec .content-area h6 {
    text-align: center;
}

.main-banner.featured {
    background-image: url(../images/communities.jpg);
}

section.communities-sec h2,
section.communities-sec h6 {
    text-align: center;
}

section.communities-sec .feature-comm .row {
    padding-left: 0px;
    padding-right: 0px;
}

section.communities-sec .container-fluid {
    padding-left: 0px;
    padding-right: 0px;
}

section.communities-sec .col-lg-4 {
    margin-top: 30px;
}

.main-banner.community {
    background-image: url(../images/communities.jpg);
}

.main-banner.community iframe {
    margin-top: 30px;
}

section.contact-sec h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-sec .col-lg-4 {
    text-align: center;
}

.contact-sec .col-lg-4 p {
    margin-top: 20px;
}

section.featured-prop.pro1 .comm-card {
    height: 480px;
}

section.featured-prop.pro1 img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px 10px 0px 0px;
}

section.feature-comm.todo {
    padding: 80px 0px;
    text-align: center;
}

section.feature-comm.todo h2 {
    margin-bottom: 50px;
}

div.comm-card {
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    justify-content: center;
}

div.comm-card .content {
    z-index: 1;
    position: relative;
    display: none;
}

div.comm-card .content a {
    display: block;
    color: #fff;
    margin-top: 10px;
}

div.comm-card .content a:hover {
    color: var(--secondary-color);
}

div.comm-card:hover .content {
    display: block;
}

.feature-comm div.comm-card:hover img {
    transform: scale(1.05);
}

.feature-comm div.comm-card:hover .content {
    display: block;
}

div.comm-card:before {
    background-color: rgba(0, 0, 0, 0.55);
}

.f-pro {
    background-color: #f1f1f1;
}

section.feature-comm button {
    background: var(--bg-black);
    color: var(--text-white);
    border: 2px solid var(--bg-black);
    padding: 20px 30px;
    margin-top: 0px;
    margin-bottom: 0px;
}

section.feature-comm .bttn {
    display: block;
    text-align: center;
}

section.about img.moni {
    width: 100%;
    height: 802px;
}

section.about h2 {
    font-size: 35px;
   /* font-family: var(--main-bit-dark) !important;*/
}

section.about {
    background-color: #f1f1f1;
}

.copyright img {
    width: 150px;
}

.row.mob {
    display: none;
}

.video-sec button {
    position: absolute;
    right: 10px;
    bottom: 20px;
    z-index: 1;
    text-align: center;
    padding: 5px;
    width: 35px;
    height: 35px;
    display: none;
}

.cont-sec {
    padding-left: 10px;
    padding-right: 10px;
}

.row.desk {
    align-items: center;
}



/* banner section css */


.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

/* section.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);display: none;
} */

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #FFF;
    font-family: var(--secondary-font);
}

.hero-title span {
    color: #23b8bb;
}

.hero-text {
    font-size: 18px;
    margin: 20px 0 30px;
    color: #e0e0e0;
    font-family: var(--primary-font);
}

.search-box {
    background: #fff;
    padding: 20px;
    border-radius: 0;
    max-width: 700px;
}

.search-box .form-control,
.search-box .form-select {
    height: 50px;
    border-radius: 0;
}

.search-btn {
    background: #23b8bb;
    color: #fff;
    padding: 16px;
    font-weight: 400;
    border: none;
    border-radius: 0;
}

.search-btn:hover {
    background: #106b74;
}

section.hero-section .stats {
    display: flex;
    margin-top: 40px;
    justify-content: space-around;
    font-family: var(--secondary-font);
}

section.hero-section .stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #fff;
    font-family: var(--secondary-font);
}

/* .stat-item h3 {
  
} */

.stat-item p {
    font-size: 0.9rem;
    color: #ddd;
}

/* pro sec */


.neighborhoods-section {
    background: #ffffff;
}

.section-title {
    font-size: 48px;
    font-weight: 500;
    color: #000000;
}

.section-subtitle {
    color: #666666;
    font-size: 16px;
}

.neighborhood-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 420px;
}

.neighborhood-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.neighborhood-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
}

.card-overlay {
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: #fff;
    z-index: 2;
    width: 100%;
}

.card-overlay h4 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 4px;
    font-family: var(--secondary-font);
}

.location {
    font-size: 14px;
    opacity: 0.85;
    color: #fff;
    border-bottom: 1px solid #ffffff75;
}

.card-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.card-info small {
    font-size: 12px;
    opacity: 0.7;
    display: block;
}

.card-info strong {
    font-size: 15px;
}

.growth {
    color: #9adbe2;
}

.properties {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.9;
}

/* Hover Effect */
.neighborhood-card:hover img {
    transform: scale(1.08);
    transition: 0.5s;
}



/* ------------------================================================--------------------------- */
#featured-properties-section {
    color: #333;
    background-color: #fff;
    padding: 60px 0;
    font-family: var(--primary-font);
}

#featured-properties-section .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

#featured-properties-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    color: var(--btn-color);
}

#featured-properties-section .subtitle {
    font-size: 18px;
    color: gray;
    font-weight: 400;
}

#featured-properties-section .btn-filter {
    background: white;
    border: 1px solid #ccc;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#featured-properties-section .btn-filter i {
    margin-right: 8px;
}

/* Filter Bar & Drawer Logic */
#featured-properties-section .filter-bar {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease, padding 0.3s ease;
    max-height: 1000px;
    opacity: 1;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

#featured-properties-section .filter-hidden {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
    pointer-events: none;
}

#featured-properties-section .filter-group label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 400;
}

#featured-properties-section .filter-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
}

/* Reset Link Block */
#featured-properties-section .reset-wrapper {
    grid-column: 1 / -1;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 10px;
}

#featured-properties-section .reset-link {
    font-size: 14px;
    color: #23b8bb;
    text-decoration: underline;
}

/* Alert Box */
#featured-properties-section .idx-alert {
    background-color: #f1f1f1;
    border-left: 4px solid #23b8bb;
    padding: 15px;
    margin: 30px 0;
    font-size: 14px;
    color: #106b74;
}

#featured-properties-section .info-icon {
    color: #23b8bb;
    margin-right: 8px;
}

/* Property Cards */
#featured-properties-section .property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

#featured-properties-section .property-card {
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#featured-properties-section .property-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#featured-properties-section .card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;

}

#featured-properties-section .card-image img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

#featured-properties-section .badge-active {
    background: #23b8bb;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    position: absolute;
    top: 15px;
    left: 15px;
}

#featured-properties-section .badge-mls {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 2px;
}

#featured-properties-section .price-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 26px;
    font-weight: 400;
    font-family: var(--secondary-font);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

#featured-properties-section .card-body {
    padding: 20px;
}

#featured-properties-section .card-body h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
}

#featured-properties-section .location {
    color: #666666;
    font-size: 14px;
    margin-bottom: 20px;
}

#featured-properties-section .specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    font-size: 14px;
    color: #666666;
    text-align: center;
}

#featured-properties-section .specs i {
    margin-right: 5px;
    color: #9adbe2;
}

#featured-properties-section .specs span {
    color: #4D4848;
    font-weight: 600;
}

#featured-properties-section .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    font-size: 13px;
    background: white;
    color: #9adbe2;
}

#featured-properties-section .card-footer a {
    color: #23b8bb;
    text-decoration: none;
    font-weight: 600;
}


/* =======================================--------------------------============================ */

/* Container styling for scoping */
#prestige-estates-section {
    background-color: var(--off-white);
    /* Deep dark blue background */
    color: #ffffff;
}

#prestige-estates-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

#prestige-estates-section .section-header h2 {
    font-size: 47px;
    margin-bottom: 15px;
    color: var(--main-color);
    font-family: var(--secondary-font);
}

#prestige-estates-section .section-header p {
    color: var(--bg-black);
    font-size: 18px;
    letter-spacing: 1px;
}

/* Features Layout using Grid */
#prestige-estates-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#prestige-estates-section .feature-card {
    background-color:#d6f1f1 ;
    border: 1px solid var(--main-color);
    padding: 23px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

#prestige-estates-section .feature-card .icon {
    color: #23b8bb;
    /* Gold/Amber color */
    font-size: 32px;
      border-radius: 10px;
    margin-bottom: 25px;
    display: block;
    background: #fff;
    padding: 12px;
    width: 70px;
    height: 70px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

/* Hover effect */
#prestige-estates-section .feature-card:hover {
    transform: translateY(-5px);
    border-color: #23b8bb;
}

/* Icon background on card hover */
#prestige-estates-section .feature-card:hover .icon {
    background-color: #23b8bb;
    color: white;
}

#prestige-estates-section .feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--main-color);
}

#prestige-estates-section .feature-card p {
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 1.6;
    color: var(--bg-black);;
    margin: 0;
}

/* Divider */
#prestige-estates-section .divider {
    border: 0;
    border-top: 1px solid #4D4848;
    margin: 60px 0;
}

/* Statistics Layout */
#prestige-estates-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    font-family: var(--secondary-font);
}

#prestige-estates-section .stat-item .number {
    font-size: 42px;
    color: #23b8bb;
    margin-bottom: 10px;
}

#prestige-estates-section .stat-item .label {
    font-family: var(--primary-font);
    font-size: 12px;
    letter-spacing: 1px;
   color: var(--main-color);
    text-transform: uppercase;
}

/* ================================--------------------------======================================== */

#luxury-services-section {
    background-color: #f1f1f1;
}

#luxury-services-section .services-header {
    text-align: center;
    margin-bottom: 50px;
}

#luxury-services-section .services-header h2 {
    font-size: 48px;
    color: var(--main-color);
    font-weight: 500;
    margin-bottom: 10px;
    font-family: var(--secondary-font);
}

#luxury-services-section .services-header p {
    color: #666;
    font-size: 20px;
}

/* Grid Layout */
#luxury-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
#luxury-services-section .service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 28px;
    text-align: left;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

#luxury-services-section .icon-box {
    background-color: #23b8bb;
    color: white;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#luxury-services-section .service-card:hover {
    border-color: #23b8bb;
    transform: translateY(-5px);
}

/* Change icon box background when card is hovered */
#luxury-services-section .service-card:hover .icon-box {
    background-color: var(--main-lighter);
    color: #fff;
}

#luxury-services-section h3 {
    font-size: 23px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 400;
}

#luxury-services-section .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 65px;
}

/* List Styling */
#luxury-services-section .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#luxury-services-section .service-list li {
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

#luxury-services-section .service-list li::before {
    content: "■";
    color: #23b8bb;
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Footer CTA */
#luxury-services-section .cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

#luxury-services-section .btn-consultation {
    background-color: #23b8bb;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

#luxury-services-section .btn-consultation:hover {
    background-color: #9adbe2;
}

/* -------------------------=====================================================-------------------- */
#luxury-lifestyle-gallery {
    background-color: #ffffff;
}

#luxury-lifestyle-gallery .section-title {
    text-align: center;
    margin-bottom: 60px;
}

#luxury-lifestyle-gallery .section-title h2 {
    font-size: 46px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 500;
}

#luxury-lifestyle-gallery .section-title p {
    font-size: 18px;
}

/* Grid Layout */
#luxury-lifestyle-gallery .lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card Styling */
#luxury-lifestyle-gallery .lifestyle-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

#luxury-lifestyle-gallery .lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Overlay */
#luxury-lifestyle-gallery .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: flex-end;
    padding: 35px;
    box-sizing: border-box;
    transition: background 0.4s ease;
}

#luxury-lifestyle-gallery .overlay-content {
    color: #ffffff;
    transition: transform 0.4s ease;
}

#luxury-lifestyle-gallery .overlay-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
    color: white;
}

#luxury-lifestyle-gallery .overlay-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

#luxury-lifestyle-gallery .explore-link {
    color: white;
    /* Golden accent */
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Hover Interaction Styles */
#luxury-lifestyle-gallery .lifestyle-card:hover img {
    transform: scale(1.1);
}

#luxury-lifestyle-gallery .lifestyle-card:hover .explore-link {
    border-color: #23b8bb;
}

#luxury-lifestyle-gallery .lifestyle-card:hover .card-overlay {
    /* background: linear-gradient(to bottom, rgba(12, 26, 48, 0.4), rgba(12, 26, 48, 0.95)); */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1),
            rgba(123, 51, 6, 0.85));
}

#luxury-lifestyle-gallery .lifestyle-card:hover .overlay-content {
    transform: translateY(-10px);
}

/* ======================================---------------------------------========================= */

#prestige-testimonials-section {
    background-color: #f1f1f1;
}

#prestige-testimonials-section .testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

#prestige-testimonials-section .testimonial-header h2 {
    font-size: 48px;
    color: var(--main-color);
    margin-bottom: 10px;
    font-weight: 500;
}

#prestige-testimonials-section .testimonial-header p {
    font-size: 20px;
}

/* Static Grid instead of Slider */
#prestige-testimonials-section .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling */
#prestige-testimonials-section .testimonial-card {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 26px;
    border: 1px solid #f1f5f9;
    box-sizing: border-box;
}

#prestige-testimonials-section .card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

#prestige-testimonials-section .rating {
    color: #23b8bb;
    font-size: 14px;
}

#prestige-testimonials-section .quote-icon {
    color: #23b8bb5c;
    font-size: 45px;
}

#prestige-testimonials-section .testimonial-text {
    font-style: italic;
    color: #4D4848;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 8px;
}

#prestige-testimonials-section .divider {
    border: 0;
    border-top: 1px solid #595959;
    margin-bottom: 20px;
}

/* Client Meta */
#prestige-testimonials-section .client-info {
    display: flex;
    align-items: center;
}

#prestige-testimonials-section .client-info .c {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    background: #23b8bb;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 22px;
}

#prestige-testimonials-section .client-details span {
    display: block;
}

#prestige-testimonials-section .name {
    font-weight: 700;
    color: #000000;
    font-size: 16px;
}

#prestige-testimonials-section .title {
    color: #666666;
    font-size: 13px;
    margin-top: 2px;
}

#prestige-testimonials-section .location {
    color: #9adbe2;
    font-size: 12px;
}

/* ===============================-------------------------------------========================== */
#market-insights-dashboard {
    background-color: #f1f1f1;
}

#market-insights-dashboard .dashboard-header {
    text-align: center;
    margin-bottom: 50px;
}

#market-insights-dashboard .dashboard-header h2 {
    font-size: 46px;
    color: var(--main-color);
    font-weight: 500;
}

#market-insights-dashboard .dashboard-header p {
    font-size: 18px;
}

/* Stats Grid */
#market-insights-dashboard .stats-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

#market-insights-dashboard .stat-card {
    background: #fff;
    border-left: 4px solid #23b8bb;
    padding: 25px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#market-insights-dashboard .card-icon {
    color: #23b8bb;
    font-size: 35px;
    margin-bottom: 15px;
}

#market-insights-dashboard .stat-value {
    font-size: 34px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 5px;
    font-family: var(--secondary-font);
}

#market-insights-dashboard .stat-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

#market-insights-dashboard .stat-period {
    font-size: 14px;
}

/* Market Table */
#market-insights-dashboard .market-table-container {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#market-insights-dashboard .table-title {
    background-color: #000000;
    color: #fff;
    padding: 15px 25px;
    font-size: 24px;
    font-weight: 400;
    font-family: var(--secondary-font);
}

#market-insights-dashboard .market-table {
    width: 100%;
    border-collapse: collapse;
}

#market-insights-dashboard .market-table th,
#market-insights-dashboard .market-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

#market-insights-dashboard .market-table th {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

#market-insights-dashboard .market-table td {
    font-size: 16px;
    font-weight: 500;
}

#market-insights-dashboard .trend-up {
    background-color: #f1f1f1;
    color: #23b8bb;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

#market-insights-dashboard .status-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}

#market-insights-dashboard .status-badge.limited {
    background: #f1f1f1;
    color: #106b74;
}

#market-insights-dashboard .status-badge.low {
    background: #f1f1f1;
    color: #106b74;
}

#market-insights-dashboard .status-badge.moderate {
    background: #f1f1f1;
    color: #23b8bb;
}

#market-insights-dashboard .table-footer {
    padding: 20px 25px;
}

#market-insights-dashboard .table-footer a {
    color: #23b8bb;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* Disclaimer */
#market-insights-dashboard .data-disclaimer {
    margin-top: 40px;
    padding: 15px 20px;
    background-color: #f1f1f1;
    border-left: 4px solid #23b8bb;
    font-size: 16px;
}

/* ===================================-----------------------------============================= */
#elite-team-showcase {
    background-color: var(--bg-white);
    /* Dark navy background from image */
    color: var(--main-color);
}

#elite-team-showcase .team-header {
    text-align: center;
    margin-bottom: 60px;
}

#elite-team-showcase .team-header h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--main-color);
}

#elite-team-showcase .team-header p {
    color: var(--text-black);
}

/* Grid System */
#elite-team-showcase .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card Styling */
#elite-team-showcase .team-card {
    background-color: var(--off-white);
    overflow: hidden;
}

#elite-team-showcase .member-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

#elite-team-showcase .member-info {
    padding: 22px;
}

#elite-team-showcase .member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--main-color);
}

#elite-team-showcase .member-title {

    /* Gold accent */

    font-size: 14px;

    display: block;

    margin-bottom: 20px;

    color: var(--bg-black);
}

#elite-team-showcase .member-details {
    border-bottom: 1px solid #4D4848;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

#elite-team-showcase .member-details p {
    font-size: 14px;
    color: #e4e4e4;
    margin-bottom: 8px;
    line-height: 1.3;
}

#elite-team-showcase .member-details strong {
    color: #ffffff;
}

/* Achievements */
#elite-team-showcase .achievements i {
    color: #23b8bb;
}

#elite-team-showcase .achievements h4 {
    font-size: 14px;
    color: #9adbe2;
    margin-bottom: 10px;
}

#elite-team-showcase .achievements ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

#elite-team-showcase .achievements li {
    font-size: 13px;
    color: #9adbe2;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

#elite-team-showcase .achievements li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #23b8bb;
}

/* Contact Footer */
#elite-team-showcase .contact-links a {
    display: block;
    color: #9adbe2;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

#elite-team-showcase .contact-links a i {
    width: 18px;
    color: white;
}

#elite-team-showcase .contact-links a:hover {
    color: #ffffff;
}

/* =================================---------------------------------============================ */

#exclusive-newsletter-section {
    background-color: var(--off-white);
    /* Rich orange/amber background from image */
    color: var(--main-color);


    /* Matching the elegant serif style for headers */
    text-align: center;
}

/* Icon Styling */
#exclusive-newsletter-section .icon-wrapper {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Typography */
#exclusive-newsletter-section h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--main-color);
}

#exclusive-newsletter-section .description {
    font-size: 19px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    line-height: 1.5;
    color: var(--bg-black);
}

/* Form Layout (No d-flex) */
#exclusive-newsletter-section .subscribe-form {
    display: grid;
    grid-template-columns: 1fr auto;
    max-width: 550px;
    margin-left: auto;
    border: 1px solid var(--main-color);
    margin-right: auto;
    margin-bottom: 20px;
    gap: 0;
}

#exclusive-newsletter-section input[type="email"] {
    padding: 18px 25px;
    border: none;
    background-color: rgb(190 217 223 / 79%);
    color: var(--bg-black);
    font-size: 16px;
}
::placeholder {
  color: var(--bg-black);
  opacity: 1; /* Firefox adds a default opacity, so setting this to 1 ensures your color is solid */
}

#exclusive-newsletter-section input[type="email"]::placeholder {
    color: var(--bg-black);
    opacity: 1;
}

#exclusive-newsletter-section button {
     padding: 18px 35px;
    border: none;
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#exclusive-newsletter-section button:hover {
    background-color: var(--main-lighter);
}

#exclusive-newsletter-section .trust-note {
    font-size: 14px;
    color: var(--main-color);
    margin-bottom: 40px;
}

/* Divider Styling */
#exclusive-newsletter-section .section-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

/* Value Props Layout */
#exclusive-newsletter-section .value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

#exclusive-newsletter-section .value-item h3 {
    font-size: 30px;
    margin-bottom: 5px;
    color: var(--main-color);
}

#exclusive-newsletter-section .value-item span {
    font-size: 14px;
    color: var(--bg-black);
    text-transform: capitalize;
}



/* search bar --------------------- */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: gray;
    font-size: 14px;
}

.input-icon input {
    padding-left: 35px;
}

.iwdci .cfbsa {
    z-index: 1 !important;

}

.aghab {
    background-color: #23b8bb !important;
}

.yen18 {
    background-color: #23b8bb !important;
}


a:hover {
    color: #0aa5ca;
}
