/* FAQ Banner section */
#faq_banner {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

#faq_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3333339e;
    z-index: -1;
    border-radius: inherit;
}



#faq_banner .common_container {
    width: 88%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}


.faq_banner_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.faq_banner_container h1 {
    font-size: 42px;
    line-height: 52px;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 15px;
}


.faq_banner_container nav {
    font-size: 18px;
    line-height: 30px;
    color: #FF9800 !important;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';
    margin: 0 !important;
}



.faq_banner_container nav a {
    text-decoration: none;
    color: #FFF !important;
}


/* FAq Page Banner Section Min 768px and Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #faq_banner .common_container {
        margin: 60px 0;
    }

    .faq_banner_container h1 {
        font-size: 32px;
        line-height: 42px;
    }

}


/* FAQ Page Banner Section Min 600px and Max 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    #faq_banner .common_container {
        margin: 60px 0;
    }

    .faq_banner_container h1 {
        font-size: 32px;
        line-height: 42px;
    }

}



/* FAQ Page Banner Section Min 420px and Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    #faq_banner .common_container {
        margin: 60px 0;
    }

    .faq_banner_container h1 {
        font-size: 28px;
        line-height: 38px;
    }

}



/* FAQ Page Banner Section  Max 419px */
@media only screen and (max-width: 419px) {
    #faq_banner .common_container {
        margin: 60px 0;
    }

    .faq_banner_container h1 {
        font-size: 24px;
        line-height: 34px;
    }

}







/* FAQ section */
#faqs_section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#faqs_section .common_container {
    width: 88%;
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}

.faq_main_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq_head_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.faq_head_box h3 {
    color: #0a400c;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Playfair Display';
}


.faq_head_box p {
    font-weight: 400;
    color: #545454;
    color: #819067;
    font-family: 'Inter 18pt';
    line-height: 27.2px;
    text-align: center;
}

.faq_repeater_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq_card {
    width: 94%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px 3%;
    border-radius: 20px;
    border: 1px solid #fafaf9;
    cursor: pointer;
    box-shadow: -4px 6px 8px -3px #d2d2d2;
    background: #fafaf9;
    position: sticky;
    top: 140px;
}

.faq_question_box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

span.faq_count {
    width: 7%;
    font-size: 92px;
    color: #8A9C87;
    font-weight: 700;
    font-family: 'Playfair Display';
}

p.faq_question {
    width: 90%;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Playfair Display';
    color: #8A9C87;
}

span.faq_open {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: normal;
    font-family: 'Poppins';
    background: #8A9C87;
    border-radius: 50%;
    margin-bottom: 15px;
    transform: rotate(90deg);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.faq_card.active span.faq_open {
    transform: rotate(360deg);
}

.faq_open::before {
  content: "+";
  transition: transform 0.3s ease-in-out;
}

.faq_card.active .faq_open::before {
  content: "−";
}



.faq_answer_box {
    font-size: 18px;
    line-height: 1.8;
    color: #00000087;
    font-family: 'Inter', sans-serif;
    padding: 0 10% 0 5%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq_card.active .faq_answer_box {
    max-height: 500px;
    opacity: 1;
    padding: 1% 10% 1% 5%;
}




/* ========== Responsive CSS ========== */

/* 1536px - 1919px */
@media only screen and (min-width: 1536px) and (max-width: 1919px) {
    p.faq_question {
        width: 87%;
    }
}

/* 1400px - 1535px */
@media only screen and (min-width: 1400px) and (max-width: 1535px) {
    p.faq_question {
        width: 87%;
    }
}

/* 1366px - 1399px */
@media only screen and (min-width: 1366px) and (max-width: 1400px) {
    p.faq_question {
        width: 87%;
    }
}

/* 992px - 1280px */
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    span.faq_count {
        font-size: 80px;
    }

    p.faq_question {
        width: 80%;
    }

    span.faq_open {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .faq_answer_box {
        font-size: 16px;
        line-height: 30px;
    }
}

/* 768px - 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq_card {
        width: 95%;
        margin-bottom: 30px;
        padding: 20px 30px;
        border-radius: 16px;
    }

    span.faq_count {
        font-size: 80px;
    }

    p.faq_question {
        width: 80%;
    }

    .faq_answer_box {
        font-size: 16px;
        line-height: 30px;
    }

    span.faq_open {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* 600px - 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    #faqs_section .common_container {
        margin: 60px 0;
    }

    .faq_head_box {
        margin-bottom: 40px;
    }

    .faq_card {
        width: 95%;
        margin-bottom: 30px;
        padding: 20px 30px;
        border-radius: 16px;
    }

    span.faq_count {
        width: max-content;
        font-size: 72px;
    }

    p.faq_question {
        width: 70%;
        font-size: 22px;
    }

    span.faq_open {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .faq_answer_box {
        font-size: 16px;
        line-height: 30px;
    }
}

/* 420px - 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    #faqs_section .common_container {
        margin: 40px 0;
    }

    .faq_head_box {
        margin-bottom: 40px;
    }

    .faq_card {
        width: 95%;
        margin-bottom: 18px;
        padding: 20px 20px;
        border-radius: 12px;
        top: 100px;
    }

    span.faq_count {
        width: max-content;
        font-size: 52px;
    }

    p.faq_question {
        width: 70%;
        font-size: 18px;
    }

    span.faq_open {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .faq_answer_box {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Max-width 419px */
@media only screen and (max-width: 419px) {
    #faqs_section .common_container {
        margin: 40px 0;
    }

    .faq_head_box {
        margin-bottom: 40px;
    }

    .faq_card {
        width: 95%;
        margin-bottom: 18px;
        padding: 20px 20px;
        border-radius: 12px;
        top: 100px;
    }

    span.faq_count {
        width: max-content;
        font-size: 32px;
    }

    p.faq_question {
        width: 70%;
        font-size: 14px;
    }

    span.faq_open {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .faq_answer_box {
        font-size: 14px;
        line-height: 24px;
    }
}




/* FAQ CTA button section */
.faq_contact_cta_section {
  width: 100%;
  background: #f4f3ef;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}


.faq_contact_cta_section .common_container {
    width: 88%;
}

.faq_contact_cta_box {
  max-width: 720px;
  margin: auto;
  text-align: center;
  background: #fff;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.faq_cta_title {
  font-size: 28px;
  color: #0A400C;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.faq_cta_desc {
  font-size: 18px;
  color: #545454;
  font-family: 'Inter', sans-serif;
  margin-bottom: 32px;
  line-height: 1.6;
}

.faq_cta_btn {
    text-decoration: none;
    width: fit-content;
    display: inline-block;
    font-size: 16px;
    font-weight: 400 !important;
    color: #ffffff !important;
    font-family: 'Inter 18pt';
    background-color: #8A9C87;
    margin: 0 !important;
    padding: 12px 30px !important;
    border-radius: 100px;
    transition: 0.2s ease-in-out;
}

.faq_cta_btn:hover {
  background-color: #0A400C;
}




@media only screen and (max-width: 991px) {
  .faq_contact_cta_box {
    padding: 50px 30px;
  }

  .faq_cta_title {
    font-size: 24px;
  }

  .faq_cta_desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .faq_cta_btn {
    padding: 12px 28px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 600px) {
  .faq_contact_cta_section {
    padding: 60px 0;
  }

  .faq_contact_cta_box {
    padding: 40px 24px;
  }

  .faq_cta_title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .faq_cta_desc {
    font-size: 15px;
  }

  .faq_cta_btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}









/* Our Product Section */
#faq_our_product {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#faq_our_product .common_container {
    width: 88%;
    max-width: 1366px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}

.faq_product_main_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq_product_head_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.faq_product_head_box h3 {
    width: 100%;
    font-size: 42px;
    color: #0A400C;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 20px;
}

.faq_product_head_box p {
    font-size: 18px;
    line-height: 26px;
    color: #819067;
    text-align: center;
    font-family: 'Inter 18pt';
}

.faq_product_main_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;

    list-style: none outside;
    clear: both;
    box-sizing: border-box;
}

.faq_product_card {
    width: 22%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 10px 1px #e1e1e1;
    border-radius: 20px;
    background: #fff;
    transition: transform 0.3s ease;
}

.faq_product_card:hover {
    transform: translateY(-6px);
}

.faq_product_img_box {
    width: 100%;
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.faq_product_img_box a.faq_product_img_box_link {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
}

.faq_product_img_box a.faq_product_img_box_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



a.custom_add_to_wishlist {
    text-decoration: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffffc7;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    padding: 10px;
}



a.custom_add_to_wishlist i {
    font-size: 20px;
    color: #8FAD6A;
    transition: 0.2s ease;
}

a.custom_add_to_wishlist:hover i {
    color: #AA0000;
}

a.custom_add_to_wishlist.active i {
    color: #AA0000;
}

.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top-color: #014550;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 6px;
    vertical-align: middle;
    position: absolute;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.faq_product_indimate_box {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 10px;
    top: 10px;
    left: 10px;
}




span.offer_label,
span.new_arrival_label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Poppins';
    padding: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

span.offer_label {
    background-color: #E35900;
}

span.new_arrival_label {
    background-color: #819067;
}

.faq_product_content_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.faq_product_details_box {
    margin-bottom: 15px;
}

.faq_product_details_box h3 a {
    text-decoration: none;
    font-family: 'Playfair Display';
    color: #101923;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq_product_details_box h3 a:hover {
    color: #819067;
}

.faq_product_price_box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

span.regular_price {
    font-size: 16px;
    color: #989898;
    font-family: 'Inter 24pt';
    text-decoration: line-through;
}

span.sale_price {
    font-size: 16px;
    color: #8FAD6A;
    font-family: 'Inter 24pt';
    font-weight: 500;
}


.faq_product_action_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.faq_product_action_box a.button.add_to_cart_button, .faq_product_action_box  a.button.product_type_variable {
    text-decoration: none;
    width: fit-content;
    display: inline-block;
    font-size: 16px;
    font-weight: 400 !important;
    color: #ffffff !important;
    font-family: 'Inter 18pt';
    background-color: #8A9C87 !important;
    margin: 0 !important;
    padding: 12px 30px !important;
    border-radius: 100px;
    transition: 0.2s ease-in-out;
}



.faq_product_action_box a.button.add_to_cart_button:hover, .faq_product_action_box  a.button.product_type_variable:hover {
    background-color: #0A400C !important;
}



.faq_product_action_box a.added_to_cart.wc-forward {
    text-decoration: none;
    color: #819067;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter 18pt';
    padding: 0;
    margin-top: 10px;
}

.faq_product_view_all_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq_product_view_all_box a {
    text-decoration: none;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
    font-family: 'Inter 18pt';
    padding: 14px 50px;
    background-color: #8a9c87;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}

.faq_product_view_all_box a:hover {
    background-color: #0A400C;
    color: #fff;
}




@media only screen and (min-width: 768px) and (max-width: 991px) {
    .faq_product_card {
        width: 45%;
        border-radius: 20px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    .faq_product_card {
        width: 45%;
        border-radius: 20px;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px) {

    #faq_our_product .common_container {
        margin: 60px 0;
    }

    .faq_product_head_box {
        margin-bottom: 40px;
    }

    .faq_product_head_box h3 {
        margin-bottom: 10px;
    }

    .faq_product_main_box {
        width: 100%;
        gap: 25px;
        margin-bottom: 60px;
    }

    .faq_product_card {
        width: 100%;
        border-radius: 16px;
    }

    .faq_product_img_box {
        border-radius: 16px 16px 0 0;
    }

    .feature_product_card_img_box img {
        width: 120px;
        height: 120px;
    }

    .faq_product_details_box h3 a {
        font-size: 18px;
    }

    span.regular_price {
        font-size: 14px;
    }

    span.sale_price {
        font-size: 14px;
    }
}

@media only screen and (max-width: 419px) {
    #faq_our_product .common_container {
        margin: 60px 0;
    }

    .faq_product_head_box {
        margin-bottom: 40px;
    }

    .faq_product_head_box h3 {
        margin-bottom: 10px;
    }

    .faq_product_main_box {
        width: 100%;
        gap: 25px;
        margin-bottom: 60px;
    }

    .faq_product_card {
        width: 100%;
        border-radius: 16px;
    }

    .faq_product_img_box {
        border-radius: 16px 16px 0 0;
    }


    .feature_product_card_img_box img {
        width: 120px;
        height: 120px;
    }

    .faq_product_details_box h3 a {
        font-size: 18px;
    }

    span.regular_price {
        font-size: 14px;
    }

    span.sale_price {
        font-size: 14px;
    }
}






/* FAQ Blog Section */
#faq_blog {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #faeedc, transparent);
}

#faq_blog .common_container {
    width: 88%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}

.faq_blog_main_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq_blog_head_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.faq_blog_head_box h3 {
    width: 100%;
    font-size: 42px;
    color: #0a400c;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 20px;
}

.faq_blog_head_box p {
    font-size: 18px;
    line-height: 26px;
    color: #819067;
    text-align: center;
    font-family: 'Inter 18pt';
}

.faq_blog_repeater_box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.faq_blog_card {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 10px 1px #d7d9db;
    border-radius: 20px;
    border: 6px solid #FFF;
    overflow: hidden;
}

.faq_blog_card .blog_img_box {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq_blog_card .blog_img_box img {
    width: 100%;
    height: 100%;
    border-radius: 14px 14px 0 0;
    object-fit: cover;
}

.blog_content_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px;
}

.blog_content_box h4 {
    font-size: 24px;
    line-height: 34px;
    color: #474747;
    font-weight: 500;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author_details_box {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 15px;
}

.author_details_box .author_name, .author_details_box .post_date {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.author_details_box .author_name i, .author_details_box .post_date i {
    font-size: 16px;
    color: #9fb89b;
    margin-right: 10px;
}

.author_details_box .author_name small, .author_details_box .post_date time {
    font-size: 15px;
    color: #474747;
    font-family: 'Inter 18pt';
}

.faq_blog_excerpt {
    font-size: 16px;
    line-height: 24px;
    color: #474747;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.faq_blog_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    color: #8A9C87;
    font-weight: 500;
    font-family: 'Inter 18pt';
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

.faq_blog_btn span.left_dots,
.faq_blog_btn span.right_dots {
    margin-top: -5px;
    letter-spacing: 3px;
    margin: 0 8px;
    transition: all 0.3s ease-in-out;
}

.faq_blog_btn:hover {
    color: #0A400C;
}

.faq_blog_btn:hover span.left_dots,
.faq_blog_btn:hover span.right_dots {
    letter-spacing: 5px;
}

/* Reuse media queries as-is — just update class selectors */
@media only screen and (min-width: 992px) and (max-width: 1023px),
       only screen and (min-width: 768px) and (max-width: 991px),
       only screen and (min-width: 600px) and (max-width: 767px) {

    .faq_blog_repeater_box {
        gap: 30px;
    }


    .faq_blog_card {
        width: 44%;
    }

    .faq_blog_head_box {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px),
       only screen and (max-width: 419px) {
    .faq_blog_card {
        width: 100%;
    }

    .faq_blog_head_box {
        margin-bottom: 35px;
    }

    .blog_content_box h4 {
        font-size: 20px;
        line-height: 28px;
    }

    .faq_blog_excerpt {
        font-size: 15px;
        line-height: 23px;
    }
}





/* FAQ Newsletter Section */
#faq_newsletter {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

#faq_newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00121d75;
    z-index: -1;
    backdrop-filter: blur(2px);
    border-radius: inherit;
}

#faq_newsletter .common_container {
    width: 88%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0;
}

.faq_newsletter_container {
    width: 50%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq_newsletter_img_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.faq_newsletter_img_box img {
    width: 85px;
    height: auto;
}

.faq_newsletter_container h3 {
    font-size: 60px;
    line-height: 78px;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 20px;
}

.faq_newsletter_container p {
    font-size: 18px;
    line-height: 30px;
    color: #dddddd;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';
    margin-bottom: 40px;
}

.faq_newsletter_container p.faq_newsletter_spam {
    margin: 0;
}

.faq_newsletter_container form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.faq_newsletter_container form input {
    width: 400px;
    font-size: 16px;
    color: #000;
    padding: 12px 10px;
    font-family: 'Inter 18pt';
    background: #f0fff1;
    border: none;
    outline: none;
    border-radius: 30px 0 0 30px;
    border: 2px solid #f0fff1;
    text-align: center;
}

.faq_newsletter_container form input::placeholder {
    color: #0A400C;
}

.faq_newsletter_container form input:focus {
    border: 2px solid #daefff;
    outline: none;
}

.faq_newsletter_container form button {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    padding: 12px 30px;
    font-family: 'Inter 18pt';
    background: #0b450d;
    border: none;
    outline: none;
    border-radius: 0 30px 30px 0;
    border: 2px solid #f0fff1;
    cursor: pointer;
}

/* Responsive */
@media only screen and (min-width: 1536px) and (max-width: 1780px),
       only screen and (min-width: 1400px) and (max-width: 1535px),
       only screen and (min-width: 1366px) and (max-width: 1399px),
       only screen and (min-width: 1280px) and (max-width: 1365px),
       only screen and (min-width: 1024px) and (max-width: 1279px),
       only screen and (min-width: 992px) and (max-width: 1023px) {
    #faq_newsletter .common_container {
        margin: 60px 0;
    }
    .faq_newsletter_container {
        width: 70%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #faq_newsletter .common_container {
        margin: 60px 0;
    }
    .faq_newsletter_container {
        width: 80%;
    }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
    #faq_newsletter .common_container {
        margin: 60px 0;
    }
    .faq_newsletter_container {
        width: 90%;
    }
    .faq_newsletter_container form input {
        width: 100%;
    }
}
@media only screen and (min-width: 420px) and (max-width: 599px),
       only screen and (max-width: 419px) {
    #faq_newsletter .common_container {
        margin: 60px 0;
    }
    .faq_newsletter_container {
        width: 100%;
    }
    .faq_newsletter_container form input,
    .faq_newsletter_container form button {
        font-size: 14px;
        padding: 10px 10px;
    }
    .faq_newsletter_container form input {
        width: 90%;
    }
}














h3.head_title {
    width: 50%;
    font-size: 52px !important;
    line-height: normal;
}


/* Heading Title Font size  */
@media only screen and (min-width: 1536px) and (max-width: 1768px) {
    h3.head_title {
        width: 50%;
        font-size: 52px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1535px) {
    h3.head_title {
        width: 60%;
        font-size: 52px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1399px) {
    h3.head_title {
        width: 70%;
        font-size: 48px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    h3.head_title {
        width: 75%;
        font-size: 44px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
    h3.head_title {
        width: 75%;
        font-size: 40px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3.head_title {
        width: 75%;
        font-size: 36px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    h3.head_title {
        width: 80%;
        font-size: 32px !important;
        line-height: normal;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px) {
    h3.head_title {
        width: 95%;
        font-size: 28px !important;
        line-height: normal;
    }
}

@media only screen and (max-width: 419px) { 
    h3.head_title {
        width: 100%;
        font-size: 24px !important;
        line-height: normal;
    }
}







/* Heading Description Font Size */
p.head_description {
    width: 50%;
    font-size: 20px !important;
    line-height: 30px;
}

@media only screen and (min-width: 1536px) and (max-width: 1768px) {

    p.head_description {
        width: 50%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1535px) {
    p.head_description {
        width: 60%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1399px) {
    p.head_description {
        width: 70%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    p.head_description {
        width: 75%;
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
    p.head_description {
        width: 75%;
        font-size: 16px !important;
        line-height: 26px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    p.head_description {
        width: 75%;
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    p.head_description {
        width: 80%;
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px) {
    p.head_description {
        width: 95%;
        font-size: 15px !important;
        line-height: 23px !important;
    }
}

@media only screen and (max-width: 419px) { 
    p.head_description {
        width: 100%;
        font-size: 14px !important;
        line-height: 22px !important;
    }
}




/* Default - Very Large Screens */
h3.faq_nl_ban_title {
    font-size: 60px;
    line-height: 72px;
}

/* 1536px to 1768px */
@media only screen and (min-width: 1536px) and (max-width: 1768px) {
    h3.faq_nl_ban_title {
        font-size: 56px !important;
        line-height: 68px !important;
    }
}

/* 1400px to 1535px */
@media only screen and (min-width: 1400px) and (max-width: 1535px) {
    h3.faq_nl_ban_title {
        font-size: 52px !important;
        line-height: 62px !important;
    }
}

/* 1281px to 1399px */
@media only screen and (min-width: 1281px) and (max-width: 1399px) {
    h3.faq_nl_ban_title {
        font-size: 48px !important;
        line-height: 58px !important;
    }
}

/* 1024px to 1280px */
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    h3.faq_nl_ban_title {
        font-size: 44px !important;
        line-height: 54px !important;
    }
}

/* 992px to 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    h3.faq_nl_ban_title {
        font-size: 40px !important;
        line-height: 50px !important;
    }
}

/* 768px to 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3.faq_nl_ban_title {
        font-size: 36px !important;
        line-height: 44px !important;
    }
}

/* 600px to 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    h3.faq_nl_ban_title {
        font-size: 32px !important;
        line-height: 40px !important;
    }
}

/* 420px to 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    h3.faq_nl_ban_title {
        font-size: 28px !important;
        line-height: 36px !important;
    }
}

/* Below 419px */
@media only screen and (max-width: 419px) {
    h3.faq_nl_ban_title {
        font-size: 24px !important;
        line-height: 32px !important;
    }
}




/* Banner description Font Size */
p.faq_nl_ban_desc {
    font-size: 20px;
    line-height: 30px ;
}

@media only screen and (min-width: 1536px) and (max-width: 1768px) {
    p.faq_nl_ban_desc {
        font-size: 20px !important;
        line-height: 30px !important;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1535px) {
    p.faq_nl_ban_desc {
        font-size: 20px !important;
        line-height: 30px !important;
    }
}

@media only screen and (min-width: 1281px) and (max-width: 1399px) {
    p.faq_nl_ban_desc {
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {
    p.faq_nl_ban_desc {
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1023px) {
   p.faq_nl_ban_desc {
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    p.faq_nl_ban_desc {
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    p.faq_nl_ban_desc {
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media only screen and (min-width: 420px) and (max-width: 599px) {
    p.faq_nl_ban_desc {
        font-size: 16px !important;
        line-height: 26px !important;
    }
}

@media only screen and (max-width: 419px) { 
    p.faq_nl_ban_desc {
        font-size: 15px !important;
        line-height: 25px !important;
    }
}