
/* Shop and Category Page Banner Section */
#shop_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;
}

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



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


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



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


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



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



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

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

}


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

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

}



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

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

}



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

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

}




/* All Product Display Section */
#all_product {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



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


.all_product_main_container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



/* Product Filter Section */
.product_side_bar {
    width: 25%;
    position: relative;
}

.filter_close_btn {
    display: none;
}


.product_sidebar_box {
    width: 100%;
    margin-bottom: 60px;
}

.product_sidebar_box h3 {
    font-size: 24px;
    color: #101923;
    font-weight: 600;
    font-family: 'Playfair Display';
    margin-bottom: 15px;
    color: #6d9144;
}

.product_sidebar_box li {
    list-style: none;
    font-size: 14px;
    color: #bb8c00;
    font-weight: 400;
    font-family: 'Inter 18pt';
    margin-bottom: 10px;
    transition: 0.2s ease-in-out;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.product_sidebar_box li:hover {
    color: #232323;
}

.product_sidebar_box li::before, .product_sidebar_box li::after {
    display: none !important;
}

.product_sidebar_box li a {
    text-decoration: none;
    font-size: 16px;
    color: #232323;
    transition: 0.2s ease-in-out;
}


.product_sidebar_box li:hover a {
    color: #bb8c00;
}




.price_filter_box .woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
    border-radius: 1em;
    background-color: #cecece  !important;
    border: 0;
}


.price_filter_box .woocommerce.widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    border-radius: 1em;
    background-color: #c8b888 !important;
}


.price_filter_box .woocommerce.widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1em;
    height: 1em;
    background-color: #ffffff !important;
    border-radius: 1em;
    cursor: ew-resize;
    outline: 0;
    top: -.3em;
    margin-left: -.5em;
    box-shadow: 0px 0px 5px 0px;
}


.price_filter_box .price_slider_amount {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
}


.price_filter_box .price_slider_amount .price_label {
    font-size: 16px;
    font-family: 'Inter 18pt';
    margin-bottom: 15px;
    color: #000;
}


.price_filter_box .price_slider_amount button.button {
    font-size: 16px;
    color: #FFF !important;
    font-weight: 400 !important;
    font-family: 'Inter 18pt';
    background-color: #8A9C87;
    border-radius: 100px;
    padding: 0 !important;
    padding: 10px 30px !important;
    transition: 0.2s ease-in-out;
}


.price_filter_box .price_slider_amount button.button:hover {
    background-color: #0A400C;
}



/* Top Rated Products */
.product_sidebar_box.top_rated_filter_box ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product_sidebar_box.top_rated_filter_box ul li {
    width: 100%;
    display: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 20px !important;
}

.product_sidebar_box.top_rated_filter_box ul li a {
    font-size: 18px !important;
    display: block;
    color: #101923 !important;
    font-weight: 600 !important;
    font-family: 'Playfair Display';
}


.product_sidebar_box.top_rated_filter_box ul li del {
    font-size: 16px !important;
    color: #919191;
    margin-right: 10px;
}


.product_sidebar_box.top_rated_filter_box ul li ins {
    text-decoration: none;
    font-size: 16px !important;
    color: #bb8c00;
    font-weight: 500;
}

.product_sidebar_box.top_rated_filter_box ul li img {
    padding: 3px !important;
    border-radius: 5px !important;
    box-shadow: 0px 0px 2px 1px #9E9E9E;
}



/* 6 . Latest Product Filter */
.product_sidebar_box.latest_filter_box ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product_sidebar_box.latest_filter_box ul li {
    width: 100%;
    display: flex ;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 20px !important;
}

.product_sidebar_box.latest_filter_box ul li h4 {
    font-size: 18px !important;
    color: #101923;
    font-weight: 600 !important;
    font-family: 'Playfair Display';
}


.product_sidebar_box.latest_filter_box ul li del {
    font-size: 16px !important;
    color: #919191;
    margin-right: 10px;
}


.product_sidebar_box.latest_filter_box ul li ins {
    text-decoration: none;
    font-size: 16px !important;
    color: #bb8c00;
    font-weight: 500;
}

.product_sidebar_box.latest_filter_box ul li img {
    width: 32px;
    height: auto;
    padding: 3px !important;
    border-radius: 5px !important;
    box-shadow: 0px 0px 2px 1px #9E9E9E;
}



/* 7 . Recent View Product Filter */
.product_sidebar_box.recently_filter_box ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product_sidebar_box.recently_filter_box ul li.recently_viewed_li {
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 20px !important;
}


.product_sidebar_box.recently_filter_box ul li.recently_viewed_li a {
    width: 100%;
    display: flex ;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.product_sidebar_box.recently_filter_box ul li.recently_viewed_li h4 {
    font-size: 18px !important;
    color: #101923;
    font-weight: 600 !important;
    font-family: 'Playfair Display';
}


.product_sidebar_box.recently_filter_box ul li.recently_viewed_li del {
    font-size: 16px !important;
    color: #919191;
    margin-right: 10px;
}


.product_sidebar_box.recently_filter_box ul li.recently_viewed_li ins {
    text-decoration: none;
    font-size: 16px !important;
    color: #bb8c00;
    font-weight: 500;
}

.product_sidebar_box.recently_filter_box ul li.recently_viewed_li img {
    width: 32px;
    height: auto;
    padding: 3px !important;
    border-radius: 5px !important;
    box-shadow: 0px 0px 2px 1px #9E9E9E;
}



/* 8 . Product Tag filter */
.product_sidebar_box.tag_filter_box h2 {
    display: none;
}





.all_product_main_box {
    width: 70%;
    display: flex;
    flex-direction: column;
}

.product_view_control_box {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}


.product_view_control {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


.product_view_control span {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #0a400c;
}


.product_view_control span.grid_view {
    background-color: #0a400c;
}

.product_view_control span svg {
    width: 20px;
    height: 20px;
}


.product_view_control span.grid_view svg {
    fill: #FFF;
}


.product_view_control span.list_view svg {
    fill: #0a400c;
}


.product_loop_sorting_item .woocommerce-ordering {
    position: relative;
    display: inline-block;
    width: auto;
    margin: 0 !important;
}


.product_loop_sorting_item .woocommerce-ordering select.orderby {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 16px;
    font-size: 16px;
    font-family: 'Inter 18pt';
    border: 2px solid #0a400c;
    border-radius: 30px;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product_loop_sorting_item .woocommerce-ordering select.orderby:hover, .product_loop_sorting_item .woocommerce-ordering select.orderby:focus {
    border-color: #0a400c;
    outline: #0a400c;
}


.mobile_filter_btn {
    display: none;
}





/* Product Show  */
.product_show_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}


.product_show_box ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product_show_box ul::before {
    display: none !important;
}


.product_show_box ul li.product {
    width: 30% !important;
    float: unset !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding-bottom: 20px !important;
    box-shadow: 0px 5px 15px 0px #adadad;
    border-radius: 20px;
    overflow: hidden;
}


.product_show_box ul  li.product span.onsale {
    display: none;
}

.product_show_box ul  li.product a.woocommerce-LoopProduct-link {
    width: 100%;
    text-decoration: none !important;
}


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


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




span.pro_offer_label,
span.pro_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.pro_offer_label {
    background-color: #E35900;
}

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


.product_show_box ul  li.product a.woocommerce-LoopProduct-link img {
    width: 100%;
    height: 200px !important;
    object-fit: cover;
    margin: 0 !important;
    margin-bottom: 20px !important;
}


.product_show_box ul  li.product a.woocommerce-LoopProduct-link h2 {
    font-size: 20px !important;
    color: #101923;
    font-weight: 600;
    text-align: center;
    font-family: 'Playfair Display';
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 10px !important;
}


.product_show_box ul  li.product a.woocommerce-LoopProduct-link span.price {
    font-size: 15px !important;
    color: #aeaeae !important;
    font-family: 'Inter 18pt';
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 !important;
    margin-bottom: 20px !important;
}


.product_show_box ul  li.product a.woocommerce-LoopProduct-link span.price del {
    font-size: 16px;
    color: #989898 !important;
    font-family: 'Inter 18pt';
}



.product_show_box ul  li.product a.woocommerce-LoopProduct-link span.price ins {
    text-decoration: none;
    font-size: 16px;
    color: #6d9144;
    font-family: 'Inter 18pt';
    font-weight: 600;
}



.product_show_box ul li.product a.button {
    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;
}


.product_show_box ul li.product a.button:hover {
    background-color: #0A400C;
}


.product_show_box ul li.product a.added_to_cart.wc-forward {
    text-decoration: none;
    color: #4CAF50;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter 18pt';
    padding: 0;
    margin-top: 10px;
}



/* Product Pagination */
.product_loop_pagination nav.woocommerce-pagination ul {
    border: none !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}



.product_loop_pagination nav.woocommerce-pagination ul li {
    border: none !important;
    font-family: 'Inter 18pt';
    display: flex;
    justify-content: center;
    align-items: center;
}


.product_loop_pagination nav.woocommerce-pagination ul li span, .product_loop_pagination nav.woocommerce-pagination ul li a {
    text-decoration: none;
    line-height: unset;
    font-size: 16px;
    border: 2px solid #0a400c;
    width: 25px;
    height: 25px;
    font-weight: 400;
    padding: 8px;
    min-width: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.product_loop_pagination nav.woocommerce-pagination ul li span.current {
    color: #FFF;
    background-color: #0a400c;
}

.product_loop_pagination nav.woocommerce-pagination ul li a {
    background: #ffffff;
    color: #0a400c;
    transition: 0.2s ease-in-out;
}

.product_loop_pagination nav.woocommerce-pagination ul li a:hover, .product_loop_pagination nav.woocommerce-pagination ul li a:focus {
    color: #FFF;
    background-color: #0a400c;
}


/* Product Section Min 1280px Max 1365px */
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
    .product_show_box ul li.product {
        width: 46% !important;
    }
}


/* Product Section Min 1024px Max 1279px */
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    .product_show_box ul li.product {
        width: 46% !important;
    }
}


/* Product Section Min 992px Max 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    .product_show_box ul li.product {
        width: 46% !important;
    }
}


/* Product Section Max 991px */
@media only screen and (max-width: 991px) {
    .mobile_filter_btn {
        display: block;
        font-size: 16px;
        color: #FFF;
        font-family: 'Inter 18pt';
        padding: 14px 40px;
        border-radius: 100px;
        background-color: #8A9C87;
        cursor: pointer;
        border: none;
        outline: none;
        transition: 0.2s ease-in-out;
    }

    .mobile_filter_btn:focus {
        border: none;
        outline: none;
    }

    .mobile_filter_btn:hover {
        background-color: #0a400c;
    }


    .filter_overlay {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        background: #111111c9;
        backdrop-filter: blur(1px);
        z-index: 99;
    }


    .filter_overlay.filter_overlay_active {
        display: block;
    }

    .product_side_bar {
        position: fixed;
        left: 0;
        top: 0;
        width: 50vw;
        height: 94vh;
        background: #fff;
        z-index: 100;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        padding: 60px 60px 0px 60px;
    }

    .product_side_bar.product_side_bar_active {
        transform: translateX(0);
    }



    /* All Shop Page Main Container */
    .all_product_main_container {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }


    .filter_close_btn {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 16px;
        background-color: #bed3be;
        transition: 0.2s ease-in-out;
    }

    .filter_close_btn i {
        font-size: 16px;
        color: #0A400C;
    }

    .filter_close_btn:hover {
        background-color: #c77272;
    }

    .filter_close_btn:hover i {
        color: #FFF;
    }



    /* Product Display Section */
    .all_product_main_box {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .product_show_box ul li.product {
        width: 46% !important;
    }
}


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

    #all_product .common_container {
        margin: 40px 0;
    }

    .product_view_control {
        display: none;
    }

    .product_view_control span {
        width: 34px;
        height: 34px;
    }

    .product_view_control span svg {
        width: 15px;
        height: 15px;
    }

    .mobile_filter_btn {
        font-size: 15px;
        padding: 6px 30px;
    }

    .product_loop_sorting_item .woocommerce-ordering select.orderby {
        font-size: 15px;
        padding: 6px 6px 6px 10px;
    }


    /* Product Display Box */
    .product_show_box ul {
        gap: 30px;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link img {
        width: 100%;
        height: 180px !important;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link h2 {
        font-size: 18px !important;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link span.price del {
        font-size: 15px;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link span.price ins {
        font-size: 15px;
    }

    .product_show_box ul li.product a.button {
        font-size: 14px;
        padding: 12px 26px !important;
    }

        .product_side_bar {
        width: 60%;
        height: 94vh;
        padding: 60px 80px 0px 40px;
    }

    .product_sidebar_box h3 {
        font-size: 20px;
    }

    .product_sidebar_box li a {
        font-size: 14px;
    }

    .price_filter_box .price_slider_amount .price_label {
        font-size: 14px;
    }

    .product_sidebar_box.top_rated_filter_box ul li del, .product_sidebar_box.top_rated_filter_box ul li ins {
        font-size: 14px !important;
    }


    .product_sidebar_box.latest_filter_box ul li del, .product_sidebar_box.latest_filter_box ul li ins {
        font-size: 14px !important;
    }


    .product_sidebar_box.recently_filter_box ul li.recently_viewed_li del, .product_sidebar_box.recently_filter_box ul li.recently_viewed_li ins {
        font-size: 14px !important;
    }
}


/* Product Section  Max 445px */
@media only screen and (max-width: 445px) {


    #all_product .common_container {
        margin: 40px 0;
    }

    .product_view_control_box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .product_view_control {
        display: none;
    }

    .product_view_control span {
        width: 34px;
        height: 34px;
    }

    .product_view_control span svg {
        width: 15px;
        height: 15px;
    }

    .mobile_filter_btn {
        font-size: 15px;
        padding: 6px 30px;
    }

    .product_loop_sorting_item .woocommerce-ordering select.orderby {
        font-size: 15px;
        padding: 6px 6px 6px 10px;
    }


    /* Product Display Box */
    .product_show_box ul {
        gap: 30px;
    }

    .product_show_box ul li.product {
        width: 100% !important;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link img {
        width: 100%;
        height: 280px !important;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link h2 {
        font-size: 18px !important;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link span.price del {
        font-size: 15px;
    }

    .product_show_box ul li.product a.woocommerce-LoopProduct-link span.price ins {
        font-size: 15px;
    }

    .product_show_box ul li.product a.button {
        font-size: 14px;
        padding: 12px 26px !important;
    }

    .product_side_bar {
        width: 60%;
        height: 94vh;
        padding: 60px 80px 0px 40px;
    }

    .product_sidebar_box h3 {
        font-size: 20px;
    }

    .product_sidebar_box li a {
        font-size: 14px;
    }

    .price_filter_box .price_slider_amount .price_label {
        font-size: 14px;
    }

    .product_sidebar_box.top_rated_filter_box ul li del, .product_sidebar_box.top_rated_filter_box ul li ins {
        font-size: 14px !important;
    }


    .product_sidebar_box.latest_filter_box ul li del, .product_sidebar_box.latest_filter_box ul li ins {
        font-size: 14px !important;
    }


    .product_sidebar_box.recently_filter_box ul li.recently_viewed_li del, .product_sidebar_box.recently_filter_box ul li.recently_viewed_li ins {
        font-size: 14px !important;
    }


}





































h1.page_banner_title {
    font-size: 60px;
    line-height: 70px;
}



/* Page Banner Title Min 1536px Max 1780px */
@media only screen and (min-width: 1536px) and (max-width: 1780px) {
    h1.page_banner_title {
        font-size: 60px;
        line-height: 70px;
    }
}


/* Page Banner Title Min 1400px Max 1535px */
@media only screen and (min-width: 1400px) and (max-width: 1535px) {
    h1.page_banner_title {
        font-size: 60px;
        line-height: 70px;
    }
}


/* Page Banner Title Min 1366px Max 1399px */
@media only screen and (min-width: 1366px) and (max-width: 1399px) {
    h1.page_banner_title {
        font-size: 50px;
        line-height: 60px;
    }
}



/* Page Banner Title Min 1280px Max 1365px */
@media only screen and (min-width: 1280px) and (max-width: 1365px) {
    h1.page_banner_title {
        font-size: 50px;
        line-height: 50px;
    }
}


/* Page Banner Title Min 1024px Max 1279px */
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    h1.page_banner_title {
        font-size: 50px;
        line-height: 60px;
    }
}


/* Page Banner Title Min 992px Max 1023px */
@media only screen and (min-width: 992px) and (max-width: 1023px) {
    h1.page_banner_title {
        font-size: 50px;
        line-height: 60px;
    }
}


/* Page Banner Title Min 768px Max 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h1.page_banner_title {
        font-size: 40px;
        line-height: 50px;
    }
}



/* Page Banner Title Min 600px Max 767px */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    h1.page_banner_title {
        font-size: 40px;
        line-height: 50px;
    }
}


/* Page Banner Title Min 420px Max 599px */
@media only screen and (min-width: 420px) and (max-width: 599px) {
    h1.page_banner_title {
        font-size: 32px;
        line-height: 42px;
    }
}


/* Page Banner Title  Max 419px */
@media only screen and (max-width: 419px) {
    h1.page_banner_title {
        font-size: 28px;
        line-height: 38px;
    }
}