#banner_section {
  width: 100%;
  height: 84vh;
  min-height: 540px;
  max-height: 800px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #FFFFFF;
}

.banner_section .banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

section#banner_section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, #FFFFFF, transparent);
}

#banner_section .common_container {
    width: 88%;
    max-width: 1280px;
    margin: 80px 0;
    position: relative;
    z-index: 2;
}

.banner_content_box {
    width: 50%;
    max-width: 600px;
}

.banner_content_box h1 {
    font-size: 52px;
    line-height: 62px;
    color: #0A400C; 
    /* color: #ca00bc; */
    font-weight: 600;
    font-family: 'Playfair Display';
    margin-bottom: 30px;
}

.banner_content_box p {
    font-size: 18px;
    line-height: 26px;
    color: #535A47; 
    font-family: 'Inter 18pt';
    margin-bottom: 50px;
}

.banner_content_box a {
    text-decoration: none;
    font-size: 16px;
    color: #FFFFFF; 
    font-weight: 500;
    font-family: 'Inter 24pt';
    border-radius: 100px;
    padding: 14px 40px;
    background-color: #8A9C87;
    overflow: hidden;
    transition: 0.2s ease-in-out;
}

.banner_content_box a:hover {
    color: #FFFFFF;
    background-color: #0A400C;
}




/* Banner section Media Screen Min 1536px and Max 1780px */
@media only screen and (min-width: 1536px)and (max-width: 1780px) {
    .banner_content_box {
        width: 60%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}



/* Banner section Media Screen Min 1441px and Max 1536px */
@media only screen and (min-width: 1441px)and (max-width: 1535px) {
    .banner_content_box {
        width: 70%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}


/* Banner section Media Screen Min 1366px and Max 1400px */
@media only screen and (min-width: 1366px)and (max-width: 1400px) {
    .banner_content_box {
        width: 70%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}

/* Banner section Media Screen Min 1281px and Max 1365px */
@media only screen and (min-width: 1281px)and (max-width: 1365px) {
    .banner_content_box {
        width: 70%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}

/* Banner section Media Screen Min 1024px and Max 1280px */
@media only screen and (min-width: 1024px)and (max-width: 1280px) {
    .banner_content_box {
        width: 80%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}


/* Banner section Media Screen Min 992px and Max 1023px */
@media only screen and (min-width: 992px)and (max-width: 1023px) {
    .banner_content_box {
        width: 80%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}


/* Banner section Media Screen Min 768px and Max 991px */
@media only screen and (min-width: 768px)and (max-width: 991px) {
    .banner_content_box {
        width: 80%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}


/* Banner section Media Screen Min 600px and Max 767px */
@media only screen and (min-width: 600px)and (max-width: 767px) {
    .banner_content_box {
        width: 80%;
    }

    .banner_content_box h1 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 16px;
        padding: 14px 40px;
    }
}


/* Banner section Media Screen Min 420px and Max 599px */
@media only screen and (min-width: 420px)and (max-width: 599px) {

    #banner_section {
        width: 100%;
        height: 80vh;
    }

    .banner_content_box {
        width: 100%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 14px;
        padding: 10px 30px;
    }
}

/* Banner section Media Screen Max 419px */
@media only screen and (max-width: 419px) {

    #banner_section {
        width: 100%;
        height: 80vh;
    }

    .banner_content_box {
        width: 100%;
    }

    .banner_content_box h1 {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .banner_content_box p {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 40px;
    }

    .banner_content_box a {
        font-size: 14px;
        padding: 10px 30px;
    }
}









/* Product Features Section */
#feature_products {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(0deg, #faeedc, transparent);
}

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

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

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

#feature_products small {
    font-size: 16px;
    color: #8A9C87;
    font-weight: 500;
    font-family: 'Inter 18pt', sans-serif;
    margin-bottom: 20px;
}

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

#feature_products .head_box p {
    font-size: 18px;
    line-height: 30px;
    color: #819067;
    text-align: center;
    font-family: 'Inter 18pt', sans-serif;
}

.feature_products_content_box {
    width: 100%;
}

.feature_product_card_link {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

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

.feature_product_card_img_box {
    object-fit: cover;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    border-radius: 20px;
}

.feature_product_card_img_box img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}

.feature_product_card p {
    font-size: 24px;
    color: #0A400C;
    font-weight: 500;
    text-align: center;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease-in-out;
}

.feature_product_card_link:hover .feature_product_card p {
    color: #819067;
}

.feature_products_content_box .splide__arrow {
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    background: #FFFFFF !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0px 0px 10px 1px #adadad !important;
    transition: all 0.2s ease-in-out;
    transform: translateY(-3px);
}

.feature_products_content_box .splide__arrow:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 15px 1px #adadad !important;
}

.feature_products_content_box .splide__arrow:active {
    transform: translateY(0);
}

.feature_products_content_box .splide__arrow svg {
    fill: #000000 !important;
    width: 1em !important;
    height: 1em !important;
    transition: all 0.2s ease-in-out;
}

.feature_products_content_box .splide__arrow:hover svg {
    width: 1.1em !important;
    height: 1.1em !important;
}

.feature_products_content_box .splide__arrow--prev {
    left: -5vw !important;
}

.feature_products_content_box .splide__arrow--next {
    right: -5vw !important;
}



/* Feature Product section Media Screen Min 768px and Max 1072px */
@media only screen and (min-width: 992px)and (max-width: 1023px) {
    #feature_products .common_container {
        margin: 40px 0;
    }

    #feature_products .head_box {
        margin-bottom: 30px;
    }

    #feature_products small {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .feature_product_card_img_box {
        border-radius: 14px;
    }

    .feature_product_card p {
        font-size: 20px;
    }
}


/* Feature Product section Media Screen Min 768px and Max 1072px */
@media only screen and (min-width: 768px)and (max-width: 991px) {
    #feature_products .common_container {
        margin: 60px 0;
    }

    #feature_products .head_box {
        margin-bottom: 30px;
    }

    #feature_products small {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .feature_product_card_img_box {
        border-radius: 14px;
    }

    .feature_product_card p {
        font-size: 20px;
    }
}


/* Feature Product section Media Screen Min 600px and Max 767px */
@media only screen and (min-width: 600px)and (max-width: 767px) {
    #feature_products .common_container {
        margin: 60px 0;
    }

    #feature_products .head_box {
        margin-bottom: 30px;
    }

    #feature_products small {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .feature_product_card_img_box {
        border-radius: 14px;
    }

    .feature_product_card p {
        font-size: 20px;
    }
}


/* Feature Product section Media Screen Min 420px and Max 599px */
@media only screen and (min-width: 420px)and (max-width: 599px) {
    #feature_products .common_container {
        margin: 40px 0;
    }

    #feature_products .head_box {
        margin-bottom: 30px;
    }

    #feature_products small {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .feature_product_card_img_box {
        border-radius: 14px;
    }

    .feature_product_card p {
        font-size: 18px;
    }
}

/* Feature Product section Media Screen Max 419px */
@media only screen and (max-width: 419px) {
    #feature_products .common_container {
        margin: 40px 0;
    }

    #feature_products .head_box {
        margin-bottom: 30px;
    }

    #feature_products small {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .feature_product_card_img_box {
        border-radius: 14px;
    }

    .feature_product_card p {
        font-size: 18px;
    }
}




/* Home Offer Banner Section */
#home_offer_banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background: linear-gradient(0deg, #faeedc, transparent) !important;

}

#home_offer_banner .common_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.home_offer_banner_main {
    width: 100%;
    max-width: 1366px;
    min-width: 88%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.home_offer_banner_left {
    width: 49%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_offer_banner_left img {
    width: auto;
    height: 700px;
}

.home_offer_banner_right {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.off_banner_right_box {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.off_banner_right_box small {
    font-size: 18px;
    color: #819067;
    font-family: 'Inter 18pt', sans-serif;
    margin-bottom: 30px;
}

.off_banner_right_box h3 {
    font-size: 60px;
    line-height: 70px;
    color: #0A400C;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}


.off_banner_right_box a {
    width: fit-content;
    text-decoration: none;
    font-size: 16px;
    color: #0A400C;
    text-align: center;
    font-family: 'Inter 18pt', sans-serif;
    padding: 14px 30px;
    border: 2px solid #0A400C;
    border-radius: 100px;
    transition: 0.2s ease-in-out;
}

.off_banner_right_box a:hover {
    color: #FEFAE0;
    background-color: #0A400C;
}



/* Offer banner Section section Media Screen Min 1073px and Max 1280px */
@media only screen and (min-width: 1024px)and (max-width: 1280px) {
    .home_offer_banner_left img {
        width: auto;
        height: 600px;
    }

    .off_banner_right_box h3 {
        font-size: 52px;
        line-height: 60px;
    }
}

/* Offer banner Section section Media Screen Min 768px and Max 1072px */
@media only screen and (min-width: 992px)and (max-width: 1023px) {
    .home_offer_banner_left img {
        width: auto;
        height: 500px;
    }

    .off_banner_right_box h3 {
        font-size: 48px;
        line-height: 58px;
    }
}


/* Offer banner Section section Media Screen Max 991px */
@media only screen and (max-width: 991px) {

    #home_offer_banner .common_container {
        width: 88%;
        margin: 40px 0;
    }

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

    .home_offer_banner_left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .home_offer_banner_left img {
        width: auto;
        height: 400px;
    }


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

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

    .off_banner_right_box h3 {
        font-size: 42px;
        line-height: 52px;
        text-align: center;
    }
    
}


/* Offer banner Section section Media Screen Min 768px and Max 991px */
@media only screen and (min-width: 768px)and (max-width: 991px) {

    #home_offer_banner .common_container {
        width: 88%;
        margin: 40px 0;
    }

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

    .home_offer_banner_left {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .home_offer_banner_left img {
        width: auto;
        height: 400px;
    }

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

    .off_banner_right_box h3 {
        font-size: 42px;
        line-height: 52px;
        text-align: center;
    }
}


/* Offer banner Section section Media Screen Min 600px and Max 767px */
@media only screen and (min-width: 600px)and (max-width: 767px) {
    .home_offer_banner_left img {
        width: auto;
        height: 400px;
    }

    .off_banner_right_box h3 {
        font-size: 38px;
        line-height: 48px;
        text-align: center;
    }

    .off_banner_right_box a {
        font-size: 16px;
        padding: 10px 20px;
    }
}


/* Offer banner Section section Media Screen Min 420px and Max 599px */
@media only screen and (min-width: 420px)and (max-width: 599px) {
    .home_offer_banner_left img {
        width: auto;
        height: 380px;
    }

    .off_banner_right_box small {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .off_banner_right_box h3 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .off_banner_right_box a {
        font-size: 14px;
        padding: 8px 20px;
    }
}



/* Offer banner Section section Media Screen Max 419px */
@media only screen and (max-width: 419px) {
    .home_offer_banner_left img {
        width: auto;
        height: 340px;
    }

    .off_banner_right_box small {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .off_banner_right_box h3 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .off_banner_right_box a {
        font-size: 14px;
        padding: 8px 20px;
    }
}




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

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

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

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

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

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

.our_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;
}

.our_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;
}

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

.our_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;
}

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

.our_product_img_box a.our_product_img_box_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.our_product_card 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;
}



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

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

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

.our_product_card .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);
    }
}


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




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

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

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


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

.our_product_details_box {
    margin-bottom: 15px;
}

.our_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;
}

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

.our_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;
}


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


.our_product_action_box a.button.add_to_cart_button, .our_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;
}



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


.our_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;
}


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

.our_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;
}

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




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

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

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

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

    .our_product_head_box {
        margin-bottom: 40px;
    }

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

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

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

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

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

    .our_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) {
    #our_product .common_container {
        margin: 60px 0;
    }

    .our_product_head_box {
        margin-bottom: 40px;
    }

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

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

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

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


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

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

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

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



/* Our Philosophy Section */
#our_philosophy {
    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;
}

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

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

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

.our_philo_banner_main img {
    width: 85px;
    height: auto;
    margin-bottom: 20px;
}

.our_philo_banner_main small {
    font-size: 16px;
    color: #d5ffb6;
    font-family: 'Inter 18pt';
    margin-bottom: 20px;
}

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

.our_philo_banner_main p {
    font-size: 18px;
    line-height: 30px;
    color: #e8e8e8;
    text-align: center;
    font-family: 'Inter 18pt';
    margin-bottom: 30px;
}

.our_philo_banner_main a {
    width: fit-content;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    font-family: 'Inter', sans-serif;
    padding: 14px 30px;
    border: 2px solid #d5ffb6;
    border-radius: 100px;
    transition: 0.2s ease-in-out;
}



.our_philo_banner_main a:hover {
    border: 2px solid #FFFFFF;
    background-color: #0A400C;
}





/* Our Philosophy Min 1536px Max 1780px */
@media only screen and (min-width: 1536px) and (max-width: 1780px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 50%;
    }
}


/* Our Philosophy Min 1400px Max 1535px */
@media only screen and (min-width: 1400px) and (max-width: 1535px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 60%;
    }
}


/* Our Philosophy Min 1366px Max 1399px */
@media only screen and (min-width: 1366px) and (max-width: 1399px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 70%;
    }
}



/* Our Philosophy Min 1280px Max 1365px */
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 70%;
    }
}


/* Our Philosophy Min 1024px Max 1279px */
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 70%;
    }
}


/* Our Philosophy Min 992px Max 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 70%;
    }
}


/* Our Philosophy Min 768px Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 80%;
    }
}



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

    .our_philo_banner_main {
        width: 90%;
    }
}


/* Our Philosophy Min 420px Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    #our_philosophy .common_container {
        margin: 60px 0;
    }

    .our_philo_banner_main {
        width: 100%;
    }

    .our_philo_banner_main a {
        font-size: 14px;
    }
}


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

    .our_philo_banner_main {
        width: 100%;
    }

    .our_philo_banner_main a {
        font-size: 14px;
    }
}






/* Offer Combo Section */
#offers_combo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


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

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


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



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

.offers_combo_main_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

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


.offers_combo_card:nth-child(even) {
    flex-direction: row-reverse;
}


.offers_combo_left {
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2%;
}


.offers_combo_left small {
    font-size: 16px;
    color: #8fad6a;
    font-family: 'Inter 18pt';
    margin-bottom: 20px;
}


.offers_combo_left h3 {
    font-size: 42px;
    line-height: 52px;
    color: #0a400c;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 30px;
}



.offers_combo_left p {
    font-size: 16px;
    line-height: 28px;
    color: #494949;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';
    margin-bottom: 30px;
}


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


.offers_combo_left a:hover {
    background-color: #0A400C;
    color: #FFFFFF;
}


.offers_combo_right {
    width: 48%;
    height: 440px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
}



/* Offers Combo Section Min 992px Max 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    .offers_combo_left h3 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
}


/* Offers Combo Section Min 768px Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offers_combo_left h3 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }
}


/* Offers Combo Section Max-width 767px */
@media only screen and (max-width: 767px) {

    .offers_combo_head_box {
        margin-bottom: 40px;
    }

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


    .offers_combo_card {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        border-radius: 30px;
        border-bottom: 2px solid #bed3be;
    }

    .offers_combo_card:nth-child(even) {
        flex-direction: column-reverse;
    }


    .offers_combo_right {
        width: 100%;
        height: 400px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .offers_combo_left {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 5%;
    }

    .offers_combo_left h3 {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .offers_combo_left p {
        font-size: 16px;
        line-height: 24px;
    }
}


/* Offers Combo Section Min 600px Max 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    
}


/* Offers Combo Section Min 420px Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {

    .offers_combo_card {
        border-radius: 20px;
    }

    .offers_combo_right {
        width: 100%;
        height: 280px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .offers_combo_left h3 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 10px;
    }

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


/* Offers Combo Section Max 419px */
@media only screen and (max-width: 419px) {

    .offers_combo_card {
        border-radius: 20px;
    }

    .offers_combo_right {
        width: 100%;
        height: 240px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .offers_combo_left h3 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .offers_combo_left p {
        font-size: 14px;
        line-height: 22px;
    }
}




/* Why Choose us Section */
#why_choose_us {
    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;
}

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


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


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

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


.why_choose_head_box h3 {
    width: 100%;
    font-size: 42px;
    color: #FFF;
    font-weight: 700;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 20px;
}


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

.why_choose_main_box {
    width: 100%;
}

.why_choose_slider .splide__track {
    padding: 0 10px !important;
}


.why_choose_slider .splide__slide {
    box-shadow: 0px 0px 10px 1px #ababab;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 20px;
    padding: 20px;
    background-color: rgba(0, 24, 48, 0.4);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
}


.why_choose_logo_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.why_choose_logo_box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.why_choose_card h3 {
    font-size: 20px;
    line-height: 30px;
    color: #FFF;
    font-weight: 500;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 15px;
}

.why_choose_card h3 span {
    color: #00b3a7;
}


.why_choose_card p {
    font-size: 15px;
    line-height: 23px;
    color: #c8c8c8;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';
    margin-bottom: 15px;
}


.why_choose_slider .splide__arrow {
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    background: transparent !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0px 0px 10px 0px #d3d3d3 !important;
    transition: all 0.2s ease-in-out;
    transform: translateY(-3px);
}


.why_choose_slider .splide__arrow:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 15px 1px #d3d3d3 !important;
}


.why_choose_slider .splide__arrow:active {
    transform: translateY(0);
}

.why_choose_slider .splide__arrow svg {
    fill: #fff !important;
    width: 1em !important;
    height: 1em !important;
    transition: all 0.2s ease-in-out;
}

.why_choose_slider .splide__arrow:hover svg {
    width: 1.1em !important;
    height: 1.1em !important;
}


.why_choose_slider .splide__arrow--prev {
    left: -5vw !important;
}

.why_choose_slider .splide__arrow--next {
    right: -5vw !important;
}



/* Why Choose section Min-width 600px Max-width 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    #why_choose_us .common_container {
        margin: 40px 0;
    }
}


/* Why Choose section Min-width 420px Max-width 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    #why_choose_us .common_container {
        margin: 40px 0;
    }

    .why_choose_head_box {
        margin-bottom: 30px;
    }

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

    .why_choose_card h3 {
        font-size: 20px;
        line-height: 28px;
    }
}


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

    .why_choose_head_box {
        margin-bottom: 30px;
    }

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

    .why_choose_card h3 {
        font-size: 20px;
        line-height: 28px;
    }
}






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


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


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

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


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


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

.home_testi_main_box {
    width: 100%;
}


.home_testi_slider .splide__track {
    padding: 0 20px !important;
}


.home_testi_slider .splide__slide {
    box-shadow: 0px 5px 15px 1px #c8c8c8;
    margin-top: 15px;
    margin-bottom: 30px;
    border-radius: 30px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ffffff;
    cursor: pointer;
}



.home_testi_slider .splide__slide:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 10px 25px 2px #c8c8c8;
}


.home_testi_img_box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.home_testi_img_box img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.home_testi_content_box h4 {
    font-size: 24px;
    line-height: 34px;
    color: #0a400c;
    font-weight: 500;
    text-align: center;
    font-family: 'Playfair Display';
    margin-bottom: 10px;
}




.home_testi_content_box p {
    font-size: 16px;
    line-height: 24px;
    color: #494949;
    font-weight: 400;
    text-align: center;
    font-family: 'Inter 18pt';
}



.home_testi_slider .splide__arrow {
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    background: #FFF !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0px 0px 10px 0px #adadad !important;
    transition: all 0.2s ease-in-out;
    transform: translateY(-3px);
}


.home_testi_slider .splide__arrow:hover {
    transform: translateY(-6px);
    box-shadow: 0px 0px 15px 1px #adadad !important;
}


.home_testi_slider .splide__arrow:active {
    transform: translateY(0);
}

.home_testi_slider .splide__arrow svg {
    fill: #000000 !important;
    width: 1em !important;
    height: 1em !important;
    transition: all 0.2s ease-in-out;
}

.home_testi_slider .splide__arrow:hover svg {
    width: 1.1em !important;
    height: 1.1em !important;
}


.home_testi_slider .splide__arrow--prev {
    left: -5vw !important;
}

.home_testi_slider .splide__arrow--next {
    right: -5vw !important;
}



/* Home Testimonial section Min-width 600px Max-width 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    #home_testimonial .common_container {
        margin: 40px 0;
    }
}


/* Home Testimonial section Min-width 420px Max-width 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    #home_testimonial .common_container {
        margin: 60px 0 40px 0;
    }

    .home_testi_head_box {
        margin-bottom: 30px;
    }

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

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

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


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

    .home_testi_head_box {
        margin-bottom: 30px;
    }

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

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

    .home_testi_content_box p {
        font-size: 14px;
        line-height: 22px;
    }
}










/* Home Blog Section */
#home_blog {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


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


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

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


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


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

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


.home_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;
}


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

.home_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';
}


.blog_content_box p {
    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;
}



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

.blog_content_box a span.left_dots {
    margin-top: -5px;
    letter-spacing: 3px;
    margin-right: 8px;
    transition: all 0.3s ease-in-out;
}


.blog_content_box a span.right_dots {
    margin-top: -5px;
    letter-spacing: 3px;
    margin-left: 8px;
    transition: all 0.3s ease-in-out;
}

.blog_content_box a:hover {
    color: #0A400C;
}

.blog_content_box a:hover span.left_dots {
    letter-spacing: 5px;
}


.blog_content_box a:hover span.right_dots {
    letter-spacing: 5px;
}


/* Blog Section Min 992px Max 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    .home_blog_card {
        width: 44%;
   }
}


/* Blog Section Min 768px Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .home_blog_card {
        width: 44%;
   }
}



/* Blog Section Min 600px Max 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    .home_blog_card {
        width: 44%;
   }

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


/* Blog Section Min 420px Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
   .home_blog_card {
        width: 100%;
   }

   .home_blog_head_box {
        margin-bottom: 35px;
    }

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

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


/* Blog Section Max 419px */
@media only screen and (max-width: 419px) {
   .home_blog_card {
        width: 100%;
   }

   .home_blog_head_box {
        margin-bottom: 30px;
    }

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

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










/* News Letter Section */
#news_letter {
    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;
}

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



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


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


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

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



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



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

.newsletter_container p.newsletter_spam {
    margin: 0;
}


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

.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;
}


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


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


.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;
}





/* Our Philosophy Min 1536px Max 1780px */
@media only screen and (min-width: 1536px) and (max-width: 1780px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 50%;
    }
}


/* Our Philosophy Min 1400px Max 1535px */
@media only screen and (min-width: 1400px) and (max-width: 1535px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 60%;
    }
}


/* Our Philosophy Min 1366px Max 1399px */
@media only screen and (min-width: 1366px) and (max-width: 1399px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 70%;
    }
}



/* Our Philosophy Min 1280px Max 1365px */
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 70%;
    }
}


/* Our Philosophy Min 1024px Max 1279px */
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 70%;
    }
}


/* Our Philosophy Min 992px Max 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 70%;
    }
}


/* Our Philosophy Min 768px Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 80%;
    }
}



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

    .newsletter_container {
        width: 90%;
    }

    .newsletter_container form input {
        width: 100%;
        padding: 12px 10px;
    }
}


/* Our Philosophy Min 420px Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    #news_letter .common_container {
        margin: 60px 0;
    }

    .newsletter_container {
        width: 100%;
    }

    .newsletter_container form input, .newsletter_container form button  {
        font-size: 14px;
        padding: 10px 10px;
    }

    .newsletter_container form input {
        width: 90%;
    }
}


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

    .newsletter_container {
        width: 100%;
    }

    .newsletter_container form input, .newsletter_container form button  {
        font-size: 14px;
        padding: 10px 10px;
    }

    .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; /* Default for large screens */
    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.off_banner_title {
    font-size: 60px;
    line-height: 72px;
}

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

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

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

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

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

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

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

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

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




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

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

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

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

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

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

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

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

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

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