.newsletter-section {
    position: relative;
    background: var(--bg-color);
}

.newsletter-section .customization-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 2.5rem 2.5rem 0 0;
}

.newsletter-section .ptb-100 {
    margin-top: var(--gap-100);
    margin-bottom: var(--gap-100);
    padding: var(--gap-40);
}

.newsletter-section::before {
    position: absolute;
    content: "";
    inset: 0;
    border-radius: 2.5rem 2.5rem 0 0;
    z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 1;
}

.newsletter-section .newsletter-content {
    padding-left: 30px;
    border-radius: 20px;
    background: rgba(229, 230, 233, 0.20);
}

.newsletter-section .newsletter-content-title {
    margin-bottom: 15px;
    color: #FFF;
    font-family: var(--title-font-family);
    font-size: var(--font-60);
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: capitalize;
}

.newsletter-section .newsletter-content-desc {
    margin-bottom: var(--gap-80);
    color: #FFF;
    font-family: Montserrat;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.subscribe-from {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 26px;
    align-self: stretch;
}

.subscribe-from input {
    height: 73px;
    background-color: #fff;
    border: 0;
    display: block;
    width: 100%;
    color: #0d0e14;
    font-family: Montserrat;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 36px;
    padding-left: 26px;
}

/* .subscribe-from button {
    z-index: 1;
    display: inline-block;
    padding: 18px 36px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 17px;
    line-height: 26px;
    border: 0;
    background: var(--color-primary);
    color: #fff;
    border-radius: 0 5px 5px 0;
  } */
.subscribe-from .crmFormVali-error {
    top: unset;
    bottom: -20px;
    left: 20px;
    right: unset;
}

.newsletter-section .newsletter-form .input-group {
    display: flex;
    gap: var(--gap-24);
}

.newsletter-section .newsletter-content .newsletter-form .form-control {
    color: #fff;
    height: auto;
    font-family: Montserrat;
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: transparent;
    border-radius: 130px;
    border: 1px solid #FFF;
    padding-left: 24px;
}

.newsletter-section .cta-btn {
    line-height: 0.8;
}

@media screen and (max-width: 1500px) {
    .subscribe-from input {
        margin: 0;
        height: 58px;
    }
}

@media screen and (max-width: 1200px) {
    .subscribe-from input {
        margin: 0;
        height: 56px;
    }
}

@media (max-width: 991px) {
    .subscribe-from input {
        margin: 0;
        height: 50px;
    }

    .newsletter-section::before {
        background: rgba(26, 26, 26, 0.5);
    }
}

@media only screen and (min-width: 768px) and(max-width: 991px) {
    .newsletter-section .newsletter-content {
        max-width: 610px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-left: 0;
    }

    .newsletter-section .ptb-100 {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .newsletter-section .newsletter-content h2 {
        margin-top: -8px;
    }

    .newsletter-section .newsletter-content p {
        max-width: 545px;
        margin-left: auto;
        margin-right: auto;
    }

    .subscribe-from {
        margin: 15px 0 0 0;
    }
}

@media only screen and (max-width: 767px) {
    .newsletter-section .ptb-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .newsletter-section .newsletter-content {
        text-align: center;
        padding-left: 12px;
    }

    .newsletter-section .owl-carousel .owl-nav {
        text-align: center;
        position: unset !important;
    }

    .newsletter-section .newsletter-content h2 {
        margin-top: -7px;
    }

    .subscribe-from {
        margin: 15px 0 0 0;
    }

    .subscribe-from button {
        font-size: 15px;
    }
}