/* ==============
 ========= Css Documentation =========

 Template Name: Club10
 Version: 1.0
 Description:
 Author: Omotosho Michael
*/


@font-face {
    font-family: "interBold";
    src: url("../fonts/Inter-Bold.woff2")
}
@font-face {
    font-family: "interRegular";
    src: url("../fonts/Inter-Regular.woff2")
}
@font-face {
    font-family: "interSemiBold";
    src: url("../fonts/Inter-SemiBold.woff2")
}




/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f0eee9;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Layout components */
.container {
    width: 100%;
    max-width: 1174px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Header styles */
.header-announcement {
    background-color: #a1702c;
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.announcement-badge {
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    padding: 2px 12px;
    border-radius: 10px;
}

.announcement-text {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
}
.announcement-text:hover{
    color: #fff;
    text-decoration: none;
}

.main-header {
    background-color: #ffffff;
    padding: 20px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1174px;
    margin: 0 auto;
}

.logo {
    width: 120px;
}

.nav-menu {
    display: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.contact-btn {
    background-color: #181b2a;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 22px;
    border: 1px solid #181b2a;
}

.hamburger {
    display: block;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000000;
    position: absolute;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 90%;
}

.hero-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.btn-primary {
    background-color: #cc8825;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 34px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 24px;
    padding: 6px;
}

/* About section */
.about-section {
    background-color: #000000;
    padding: 60px 16px;
    margin-top: -16px;
}

.about-content {
    max-width: 1174px;
    margin: 0 auto;
}
.textMutedLight{
    color: rgba(255, 255, 255, 0.8);
}
.about-text {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-text .muted {
    color: rgba(255,255,255,0.35);
}

.trusted-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    margin-left: -24px;
}

.avatar:first-child {
    margin-left: 0;
}

.trusted-text {
    font-size: 16px;
    color: #ffffff;
}

.about-description {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 24px;
    border: 1px solid #000000;
    background-color: #ffffff;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

.image-stack {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.stats-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #cc8825;
    padding: 32px 34px;
    border-radius: 8px 0 0 0;
}

.stats-icon {
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 16px;
}

.stats-number {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 8px;
}

.stats-label {
    font-size: 14px;
    color: #ffffff;
}

.about-features {
    margin-top: 38px;
    margin-left: 100px;
}

.section-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 22px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(204,136,37,0.15);
    border-radius: 12px;
    padding: 4px;
}

.feature-text {
    font-size: 16px;
    color: #ffffff;
}

/* Properties section */
.properties-section {
    background-color: #000000;
    padding: 80px 16px;
    margin-top: -10px;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    align-self: flex-start;
}

.view-all-link img {
    width: 16px;
    height: 16px;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.property-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background-color: #06af47;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 12px;
}

.property-badge.sold {
    background-color: #ffa800;
}

.property-details {
    padding: 10px;
}

.property-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 4px;
}

.property-location {
    font-size: 16px;
    color: #363434;
    margin-bottom: 18px;
}

.property-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    background: #aaa;
    padding: 10px;
    text-align: center;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 80px;
}

.spec-value {
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: center;
    justify-content: center;
}

.spec-icon {
    width: 20px;
    height: 20px;
}

.spec-number {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
}

.spec-label {
    font-size: 15px;
    color: #fff;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px 18px;
}

.view-property-btn {
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 20px;
    border: 1px solid #000000;
}
.view-property-btn:hover{
    text-decoration: none;
    color: #fff;
}

.property-price {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
}

/* Services section */
.services-section {
    background-color: #f0eee9;
    padding: 60px 16px;
}

.services-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    margin-bottom: 50px;
}

.services-title .muted {
    color: rgba(0,0,0,0.35);
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 50px;
}

.tab-btn {
    background-color: #ffffff;
    color: #363434;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.12);
    white-space: nowrap;
}

.tab-btn.active {
    background-color: #cc8825;
    color: #ffffff;
    border-color: #cc8825;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-image {
    width: 100%;
    border-radius: 10px;
}

.service-info {
    background-color: #ffffff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    padding: 32px 24px;
}

.service-name {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 14px;
}

.service-description {
    font-size: 16px;
    line-height: 1.4;
    color: #363434;
    margin-bottom: 28px;
}

.service-list {
    font-size: 16px;
    line-height: 1.4;
    color: #363434;
    margin-bottom: 28px;
    white-space: pre-line;
}

/* Features section */
.features-section {
    background-color: #000000;
    padding: 74px 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.features-gridTwo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.features-prop-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}
.features-prop-two .otherinfo {
    border-top: 1px solid #2C2C2C;
    border-bottom: 1px solid #2C2C2C;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-image {
    width: 100%;
    border-radius: 10px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
}

.feature-desc {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
}

/* Stats section */
.stats-section {
    background-color: #000000;
    padding: 74px 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1044px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 18px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* Affiliate section */
.affiliate-section {
    background-color: #000000;
    padding: 74px 16px;
}

.affiliate-card {
    background-color: #cc8825;
    border-radius: 14px;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.affiliate-content h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 30px;
}

.affiliate-content p {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    margin-bottom: 48px;
}

.affiliate-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 34px;
    border-radius: 24px;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 24px;
    border: 1px solid #ffffff;
}

.affiliate-image {
    width: 100%;
    border-radius: 10px;
}

/* Blog section */
.blog-section {
    background-color: #000000;
    padding: 80px 16px;
    margin-top: -80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.blog-image {
    width: 100%;
    border-radius: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-size: 16px;
    color: #707070;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 16px;
}

.read-more img {
    width: 18px;
    height: 18px;
}

/* FAQ section */
.faq-section {
    background-color: #000000;
    padding: 62px 16px;
    margin-top: -10px;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    color: #ffffff;
}

.expand-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(239,239,239,0.15);
    border-radius: 14px;
    padding: 6px;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA section */
.cta-section {
    padding: 60px 16px;
    margin-top: 100px;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.cta-text {
    background-color: #ffffff;
    padding: 48px 24px;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.06;
    color: #000000;
    margin-bottom: 22px;
}

.cta-text p {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(0,0,0,0.75);
    margin-bottom: 26px;
}

.btn-cta {
    background-color: #cc8825;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 34px;
    border-radius: 24px;
}

.cta-image {
    width: 100%;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #000000;
    padding: 50px 16px;
    /* margin-top: 100px; */
}

.footer-content {
    max-width: 1174px;
    margin: 0 auto;
}

.footer-logo {
    width: 200px;
    margin: 0 auto 48px;
    display: block;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column a {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 8px;
}

.footer-contact p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-top: 6px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-top: 80px;
}

/* Responsive media queries */
@media (min-width: 640px) {
    .announcement-text {
    font-size: 13px;
    }

    .hero-title {
    font-size: 56px;
    }

    .hero-description {
    font-size: 17px;
    }

    .hero-buttons {
    flex-direction: row;
    width: auto;
    }

    .btn-primary {
    width: auto;
    }

    .about-text {
    font-size: 25px;
    }

    .about-images {
    grid-template-columns: repeat(2, 1fr);
    }

    .properties-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .service-tabs {
    gap: 14px;
    }

    .tab-btn {
    font-size: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-gridTwo {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-prop-two {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 64px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-content {
        gap: 48px;
    }

    .faq-question h3 {
    font-size: 20px;
    }

    .cta-content {
    grid-template-columns: 1fr 1fr;
    }

    .footer-links {
    grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .container {
    padding-left: 24px;
    padding-right: 24px;
    }

    .main-header {
    padding: 20px 56px;
    }

    .logo {
    width: 160px;
    }

    .hero-section {
    padding: 134px 56px;
    min-height: 600px;
    }

    .hero-title {
    font-size: 64px;
    max-width: 46%;
    }

    .hero-description {
    font-size: 18px;
    max-width: 32%;
    }

    .about-section {
    padding: 106px 56px;
    }

    .about-text {
    font-size: 26px;
    }

    .section-title {
    font-size: 42px;
    }

    .feature-list {
    grid-template-columns: repeat(2, 1fr);
    }

    .properties-section {
    padding: 132px 56px;
    }

    .services-section {
    padding: 102px 56px;
    }

    .services-title {
    font-size: 42px;
    }

    .service-content {
    grid-template-columns: 1fr 1fr;
    }

    .service-name {
    font-size: 35px;
    }

    .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    }

    .stat-value {
    font-size: 60px;
    }

    .affiliate-card {
    padding: 68px 56px;
    grid-template-columns: 1fr 1fr;
    }

    .affiliate-content h2 {
    font-size: 42px;
    }

    .affiliate-buttons {
    flex-direction: row;
    }

    .blog-section {
    padding: 80px 56px;
    }

    .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    }

    .blog-title {
    font-size: 20px;
    }

    .faq-section {
    padding: 62px 56px;
    }

    .cta-section {
    padding: 60px 56px;
    }

    .cta-text {
    padding: 70px 56px;
    }

    .cta-text h2 {
    font-size: 42px;
    }

    .footer-links {
    grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-features {
        margin-left: 0px;
    }
}
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .hero-title {
        font-size: 80px;
    }

    .about-text {
        font-size: 30px;
    }

    .section-title {
        font-size: 40px;
    }

    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-title {
        font-size: 20px;
    }

    .property-price {
        font-size: 20px;
    }

    .services-title {
        font-size: 50px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .features-gridTwo {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-prop-two {
        grid-template-columns: repeat(2, 1fr);
    }

    .affiliate-content h2 {
        font-size: 50px;
    }

    .faq-content {
        grid-template-columns: 1fr 1fr;
    }

    .cta-text h2 {
        font-size: 50px;
    }
}

@media (min-width: 1280px) {
    .container {
    padding-left: 32px;
    padding-right: 32px;
    }

    .main-header {
    padding: 20px 132px;
    }
}


.eachvalue{
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 25px
}
.eachvalue h2{
    color: rgba(255, 255, 255, 0.35);
    font-family: "interBold";
    font-size: 29px;
    margin-bottom: 30px
}
.eachvalue h1{
    color: #fff;
    font-family: "interSemiBold";
    font-size: 18px;
    margin-top: 15px
}
.eachvalue p{
    color: rgba(255, 255, 255, 0.8);
    font-family: "interRegular";
    font-size: 15px;
}


.service-title .wrap{
    padding: 80px 0px
}
.service-title .letfside{
    margin-top: 35px
}
.service-title .wrap .small-title{
    font-family: "interSemiBold";
    font-size: 14px
}
.service-title .wrap .main-title{
    font-family: "interBold";
}
.service-title .title-desc{
    border-left: 2px solid #CC8825;
    padding: 20px 30px;
}
.service-title .title-desc p{
    font-size: 17px;
    font-family: "interRegular";
    margin-bottom: 0px
}

.contside{
    margin-left: 60px;
}
.contside .each{
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px
}
.contside .each h1{
    color: #fff;
    font-family: "interSemiBold";
    font-size: 22px;
}


/* property pay */

.bannercontainer{
    max-width: 1320px;
}
.bannercontainer .bannerwrapper{
    background: #000000;
    margin-top: 20px;
    border-radius: 10px;
    padding: 20px 35px;
}
.bannercontainer .bannerwrapper .banner img{
    width: 100%
}
.bannercontainer .bannerwrapper .bannercontent{
    padding-top: 50px;
    padding-right: 70px;
}
.bannercontainer .bannerwrapper .bannercontent h1{
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    margin-top: 20px;
    font-family: 'interSemiBold';
    line-height: 70px;
}
.bannercontainer .bannerwrapper .bannercontent p{
    font-size: 16px;
    font-weight: 400;
    font-family: 'interRegular';
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    line-height: 30px;
}
.bannercontainer .bannerwrapper .bannercontent .store{
    margin-top: 50px
}
@media only screen and (max-width: 991px){
    .bannercontainer .bannerwrapper .bannercontent h1{
        font-size: 40px;
        line-height: 40px;
    }
    .bannercontainer .bannerwrapper .bannercontent .store{
        margin-top: 25px;
    }
}
@media only screen and (max-width: 500px){
    .bannercontainer .bannerwrapper{
        padding: 10px 10px;
    }
    .bannercontainer .bannerwrapper .bannercontent{
        padding-top: 20px;
        padding-right: 0px;
    }
    .bannercontainer .bannerwrapper .bannercontent p{
        font-size: 16px;
        line-height: 24px;
    }
}


.cta-content{
    gap: 0px
}
.cta-image{
    border-radius: 0px
}
