/* ======================================== ** Book Consultation Style Start ** ========================================   */
.book-consultation-sec {
    --sec-padding: 36px;
    padding: calc(clamp(80px,8.25vw,123px) + var(--sec-padding)) 0 clamp(60px,8.25vw,100px);
    scroll-margin-top: calc(clamp(80px,8.25vw,123px) + var(--sec-padding));
}

/* ======================================== ** Book Consultation Style End ** ========================================   */
/* ======================================== **  Faq Section Close Here ** ========================================   */
.newsLetterSec {
    padding: 70px 0 82px;
    background-color: #191B33;
}

.newsLetterSec .newLetterWrap {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 32px;
}

.newLetterHeading .newsHeading {
    font-weight: 600;
    font-size: 60px;
    line-height: 1.1;
}

.newLetterHeading .newsHeading span {
    color: var(--prTextColor);
    display: block;
    margin-top: 6px;
}

.newLetterWrap .newsLetterBtn {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    grid-gap: 0 15px;
}

.newsLetterBtn .cBtn.newsBtn.viewBtn {
    padding: 10px 10px 10px 32px;
    border-radius: 30px;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.43;
    font-weight: 700;
    min-height: clamp(52px, 5.75vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    text-align: left;
    letter-spacing: 0.01467em;
}

.newsLetterBtn .cBtn.newsBtn.viewBtn::after {
    width: clamp(30px, 2.25vw, 36px);
    height: clamp(30px, 2.25vw, 36px);
    background-size: contain;
}

.newsLetterBtn .formWrap {
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all .45s linear;
    position: relative;
    max-width: 360px;
    flex: 1;
}

.newsLetterBtn .formWrap.activeInput {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

.newsLetterBtn .formWrap #email_address {
    outline: none;
    border: 1px solid var(--prTextColor);
    background-color: transparent;
    border-radius: 10px;
    min-height: clamp(52px, 5.75vw, 60px);
    padding: 10px 20px;
    width: 100%;
    display: block;
    font-size: clamp(16px, 1.25vw, 18px);
    line-height: 1.43;
    font-weight: 400;
    color: #fff;
}

.newsLetterBtn .formWrap #email_address::placeholder {
    color: rgb(255 255 255 / 60%);
}

.newsLetterBtn .formWrap :where(#subscription-email-message, #subscription-server-message) {
    position: absolute;
    top: calc(100% + 8px);
    font-weight: 400;
    line-height: 1.25;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.newsLetterBtn .formWrap #subscription-server-message {
    color: var(--prTextColor);
}

@media (max-width: 1599.98px) {
    .newLetterHeading .newsHeading {
        font-weight: 600;
        font-size: 52px;
        line-height: 1.1;
    }
}

@media (max-width: 1599.98px) {
    .newLetterHeading .newsHeading {
        font-weight: 600;
        font-size: 45px;
        line-height: 1.1;
    }
}

@media (max-width: 1199.98px) {
    .newsLetterSec {
        padding: 60px 0;
    }

    .newsLetterSec .newLetterWrap {
        justify-content: center;
        text-align: center;
    }

    .newLetterWrap .newsLetterBtn {
        flex: none;
        justify-content: center;
    }

    .newsLetterBtn .formWrap {
        max-width: 0;
        transform: translate(0);
    }

    .newsLetterBtn .formWrap.activeInput {
        max-width: 360px;
        width: 100%;
    }

    .newLetterHeading .newsHeading {
        font-size: 40px;
    }
}

@media (max-width: 480.98px) {

    .newsLetterSec {
        padding: 50px 0;
    }

    .newLetterWrap .newsLetterBtn {
        flex-direction: column-reverse;
    }

    .newsLetterBtn .formWrap :where(#subscription-email-message, #subscription-server-message) {
        position: static;
        margin-top: 5px;
        display: block;
    }

    .newsLetterBtn .formWrap :where(#subscription-email-message, #subscription-server-message):empty {
        display: none;
    }

    .newsLetterBtn .formWrap {
        max-height: 0;
        overflow: hidden;
    }

    .newsLetterBtn .formWrap.activeInput {
        max-height: max-content;
        margin-bottom: 24px;
        overflow: visible;
    }
}

/* ======================================== **  Newsletter Section Start Here  ** ========================================   */