/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* ============= Banner Area ============= */
.inner-banner {
    height: 480px;
    background-image: url(/wp-content/uploads/2026/08/about-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
}
.inner-banner:before {
    content:"";
    position:absolute;
    inset: 0;
    background:#4f483f;
    opacity: 0.5;
    z-index: -1;
}
.blog_banner .custom_container{
    margin-top: 80px;
}
.custom_container {
    margin: 0 auto;
    padding: 0 13px;
    max-width: 1280px;
    width: 100%;
}
.custom_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.custom_row .col{
    width: 50%;
    /* padding: 0 12px; */
}
.blog_banner .col-left{
    width: 57%;
}
.blog_banner .col-right{
    width: 37%;
}
.inner_banner_title h1 {
    font-size: 49px;
    font-family: 'Playfair Display';
    font-weight: 400;
    color: #fff;
    margin: 0;
}
.banner_text {
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
}

/* ============= Blog Archive Area ============= */
.blog_archive {
    padding: 80px 0px 80px;
    background: #f8f7f2;
}
.blog_archive_container {
    width: min(100% - 60px, 1080px);
    margin: 0 auto;
}
.blog_categories {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-bottom: 37px;
    margin-bottom: 60px;
    border-bottom: 1px solid #d6ccc2;
}
.blog_category {
    font-size: 18px;
    font-family: 'Poppins';
    padding: 5px 26px;
    border-radius: 30px;
    border: 1px solid #d6ccc2;
    background: #FFFEF6;
    color: #4f483f;
}
.blog_category:hover,
.blog_category.active {
    background: #8b986d;
    border-color: #8b986d;
    color: #fff;
}
.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
.blog_card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #FFFEF6;
    border: 1px solid #D6CCC2;
    border-radius: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog_card_image {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    overflow: hidden;
}
.blog_card_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog_card:hover .blog_card_image img {
    transform: scale(1.04);
}
.blog_no_image {
    width: 100%;
    height: 100%;
    background: #deddd5;
}
.blog_card_content {
    padding: 23px 23px 11px;
}
.blog_card_categories {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 10px;
}
.blog_card_category {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 30px;
    background: #4F483F;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
}
.blog_card_category:hover {
    background: #8b986d;
    color: #fff;
}
.blog_card_title {
    margin: 14px 0 10px;
    font-family: 'Playfair Display';
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_card_title a {
    color: #000;
    text-decoration: none;
}
.blog_card_title a:hover {
    color: #8b986d;
}
.blog_card_excerpt {
    margin-bottom: 15px;
    color: #4F483F;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog_read_more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding: 13px 8px 0;
    color: #8b986d;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-top: 1px solid #d6ccc2;
}
.blog_read_more:hover {
    color: #8b986d;
}
.blog_read_arrow {
    width: 20px;
}
.blog_no_posts {
    grid-column: 1 / -1;
    padding: 50px 20px;
    text-align: center;
    color: #666;
}
@media (max-width: 991px) {
    .blog_archive_container {
        width: min(100% - 40px, 760px);
    }
    .blog_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============= Blog Single Area ============= */
.single_blog_page {
    padding: 0px 0 80px;
    background: #F6F5EF;
}
.single_blogSection{
    padding: 80px 0 80px;
}
.single_blogContainer {
    height: 401px;
    padding: 50px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* max-width: 100%; */
    top: 0px;
}
.single_blog_hero_image_wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -2;
}
.single_blogContainer::before{
    content: "";
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, #7e8961c7 33%, #7e896180 68%);
    /* opacity: 0.5; */
    z-index: -1;
}
.single_blog_hero_image_wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single_blog_content {
    width: 65%;
}
.single_blog_sidebar{
    width: 26%;
}
.sidebar_box{
    background: #EBE5DE;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}
.sidebar_box h3{
    font-size: 25px;
    font-family: 'Playfair Display';
    font-weight: 500;
}
.sidebar_categories {
    background: #FFFEF6;
    padding: 10px 18px;
    border-radius: 10px;
}
.sidebar_categories a{
    display: block;
    padding: 10px 15px;
    color: #4f483f;
    font-size: 15px;
    font-family: 'Poppins';
    font-weight: 400;
    border-bottom: 1px solid #d6ccc2;
    position: relative;
    isolation: isolate;
}
.sidebar_categories a:last-child{
    border-bottom: none;
}
.sidebar_categories a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s ease;
}
.sidebar_categories a:hover::before{
    background: #ebe5de8a;
    width: 100%;
}
.recent_post_card {
    overflow: hidden;
    background: #FFFEF6;
    border: 1px solid #D6CCC2;
    border-radius: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recent_post_content {
    padding: 16px 16px 11px;
}
.recent_post_image {
    height: 170px;
    display: block;
}
.recent_post_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.recent_post_content  .blog_card_title a{
    font-size: 18px;
}
.recent_post_content p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
}
.recent_post_content .blog_read_more{
    margin-top: 15px;
    padding: 8px 8px 0;
}
.single_blog_content h1,
.single_blog_content h2,
.single_blog_content h3,
.single_blog_content h4{
    font-family: 'Playfair Display';
    font-weight: 500;
    font-size: 27px;
    margin: 21px 0 9px;
}
.single_blog_content img{
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 15px;
}
.wp-block-quote {
    background: #EBE5DE;
    margin: 0;
    padding: 20px;
    border-left: 3px solid #7e8961;
    border-radius:10px;
}
.single_stickyBox{
    position: sticky;
    top: 80px;
}
/* ============== Reviews ============ */
.home_testimonial .ti-header{
	display:none !important;
}
.home_testimonial .ti-widget.ti-goog .ti-review-item>.ti-inner{
	background-color:white !important;
}
body .home_products .products li.product.type-product{
	background:#f6f5ef !important;
	border:0 !important;
	padding:13px !important;
	border-radius:10px !important;
}
body .home_products .products li.product.type-product:hover{
	transform:none !important;
	box-shadow:none !important;
}
body .home_products .products li.product.type-product:hover img{
	transform:none !important;
}
.home_products .products li.product.type-product .woocommerce-loop-product__title{
	font-size:18px !important;
	color:black !important; 
}
.home_products .products li.product.type-product .button{
	background: #7E8961 !important;
	border:none !important;
	color:white !important;
}
.shopengine_add_to_list_action, .shopengine-quickview-trigger, .shopengine-comparison{
	display:none;
}
button{
    white-space: wrap !important;
}
.wc-block-cart-item__image img{
    height: 70px !important;
    aspect-ratio: 1/1 !important;
}
.wc-block-cart__submit-button:hover{
    color: #fff !important;
}
.alignwide{
    margin:0 !important;
}
/* ================== */
@media (max-width:767px){
	.mobile_menu #ekit-megamenu-new-menu{
	    left:-100%;
    }
	.mobile_menu #ekit-megamenu-new-menu.active{
	    left:0%;
    }
    .single_blogSection{
        padding: 40px 0 80px;
    }
    .single_blog_content, .single_blog_sidebar{
        width: 100%;
    }
    .single_blog_sidebar{
        display: none;
    }
    .single_blog_page{
        padding: 0;
    }
    .pp-below .pp-service-name{
        font-size: 30px;
    }
    .single-service .inner_banner_title h1{
        font-size: 24px;
    }
    .single-service .blog_banner .custom_container {
        margin-top: 105px;
    }
}	

/* --- Product Grid --- */
.custom-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
/* =========== Woocommerce =========== */
.product_archive_section{
    padding: 80px 0px 120px;
}
/* --- Top Skin Type Row --- */
.top-filters-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}
.top-filter-tabs {
    display: flex;
    background-color: var(--bg-color);
    border-radius: 50px;
    padding: 8px;
    margin-bottom: 40px;
    background: #F6F5EF;
}
.top-filter-tabs a {
    padding: 10px 30px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 21px;
    transition: all 0.3s ease;
    font-family: 'Playfair Display';
}
.top-filter-tabs a.active {
    background-color: #7E8961;
    color: white;
}
.skin-type-circles {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    overflow-x: auto;
    padding: 14px 0;
    width: 100%;
    justify-content: center;
}
.skin-type-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    gap: 10px;
    cursor: pointer;
}
.skin-type-circle-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}
.skin-type-circle-item span {
    font-size: 19px;
    font-weight: 500;
    font-family: 'Playfair Display';
}

/* --- Sidebar & Main Content Grid --- */
.shop-content-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.custom-product-grid-wrap{
    width:73%;
}
.custom-shop-sidebar {
    width: 23%;
    overflow: hidden;
    align-self: start;
    position: sticky;
    top: 70px;
}

.sidebar-header {
    background-color: #4F483F;
    color: white;
    padding: 11px 20px;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    font-family: 'Playfair Display';
    border-radius: 40px;
}
.sidebar-section {
    padding: 20px;
    background-color: #F6F5EF;
    border-radius: 15px;
    margin-top: 14px;
}
.sidebar-categories{
    margin-bottom: 23px;
}
.sidebar-categories h3{
    font-family: 'Playfair Display';
    font-size: 19px;
    margin-bottom: 12px;
}
.sidebar-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-section ul li {
    margin-bottom: 10px;
}
.sidebar-section ul li a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.sidebar-section ul li a:hover, .sidebar-section ul li.current-cat a {
    color: var(--primary-color);
    font-weight: 600;
}

.woocommerce-result-count, .woocommerce-ordering{
    display: none;
}
.custom-product-card {
    background: #f6f5ef !important;
    border: 0 !important;
    padding: 13px !important;
    border-radius: 10px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-image-wrap{
    border-radius: 16px;
    height: 270px;
    width: 100%;
    overflow: hidden;
    display: block;
}
.product-image-wrap img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.product-title{
    font-family: 'Playfair Display', serif !important;
    font-size: 18px ;
    margin-bottom: 8px;
}
.price{
    font-family: 'Inter', sans-serif !important;
    color: #7E8961 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
}
.single_price .price{
    font-family: 'Inter', sans-serif !important;
    color: #000000 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    margin-bottom: 10px !important;
}

.woocommerce-product-gallery .flex-control-thumbs li img{
    border-radius: 6px !important;
}
.custom-add-to-cart{
    background-color: #7E8961 !important;
    border: none !important;
    color: white !important;
    width: 100%;
    border-radius: 50px !important;
    text-align: center;
    font-size: 13px !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    padding: 12px 28px !important;
}
.woocommerce-pagination{
    margin-top: 50px;
}
.woocommerce-pagination .page-numbers li, .woocommerce-pagination .page-numbers{
    border: none !important;
}
.woocommerce-pagination .page-numbers li a{
    float: left;
    overflow: hidden;
    margin: 0 12px !important;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f6f5ef;
    border: 1px solid #e9e7db;
    color: #000000;
}
.woocommerce-pagination .page-numbers li span.current{
    float: left;
    overflow: hidden;
    margin: 0 12px !important;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #7E8961 !important;
    border: 1px solid #e9e7db;
    color: #ffffff !important;
}

/* ================ Service Css =============== */
.tes-service-content{
    background:#F6F5EF
}
.svc-tabsection {
    padding: 80px 0 80px;
}
.svc-tabs-wrap {
    width: 900px;
    margin: auto;
    background: white;
    padding: 8px;
    border-radius: 50px;
}
.svc-tabs {
    display: flex;
    flex-direction: row;
    /* flex-wrap: nowrap !important; */
    align-items: center;
    justify-content: flex-start !important;
    width: 96%;
    margin: auto;
    gap: 4px;
    border-radius: 50px;
    overflow-y: hidden;
}
.svc-tabs::-webkit-scrollbar {
    height: 4px;
}
.svc-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    width: 90%;
    margin: auto;
}
.svc-tabs::-webkit-scrollbar-thumb {
    background: #7e8961;
    border-radius: 10px;
}
.svc-tabs::-webkit-scrollbar-thumb:hover {
    background: #7e8961;
}
.svc-tabs .svc-tab {
    padding: 7px 24px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    transition: .3s;
    cursor: pointer;
    font-family: 'Playfair Display';
    white-space: nowrap;
    margin-bottom: 7px;
}
.svc-tab:hover{
    background:var(--tes-linen)
}
.svc-tab.active{
    background:#39451C;
    color: #fff;
}
.svc-hero h1{
    font-size: 41px;
    font-family: 'Playfair Display';
    margin-bottom: 20px;
    font-weight: 400;
    color: #000;
}
.svc_section{
    padding-bottom: 120px;
}
.svc-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.svc-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items:center;
    padding: 12px;
    gap: 42px;
    align-items: stretch;
}
.svc-card-img {
    width: 280px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.svc-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.svc-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
}
.svc-card-title {
    font-size: 21px;
    font-weight: 500;
    font-family: 'Playfair Display';
    margin-bottom: 8px;
    color:#000;
}
.svc-card-desc {
    font-size: 15px;
    color: #665f56;
    margin-bottom: 24px;
}
.svc-card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}
.svc-btn {
    padding: 8px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    transition: .3s;
    text-align: center;
    border: 1px solid transparent;
}
.svc-btn-enquire {
    background: #fff;
    border-color: #ccc;
    color: var(--tes-latte);
}
.svc-card-actions .svc-btn-book {
    background: #39451C;
    color: #fff;
}
.svc-card-pricing {
    width: 240px;
    flex-shrink: 0;
    background: #F6F5EF;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.svc-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
    font-size: .85rem;
}
.svc-tier:last-child{
    border-bottom:none;
}
.svc-tier-duration {
    color: var(--tes-latte);
    opacity: .7;
}
.svc-tier-price {
    font-weight: 600;
    color: var(--tes-dark-green);
}
.svc-empty{text-align:center;padding:80px 20px;color:var(--tes-latte);opacity:.6;font-size:1rem}

/* =============================== */
[type=button]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
    background: #4F483F;
}
.contact_text p, .contact_text a{
    color:#fff !important;
}
.tes-header-cart{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}
.tes-header-cart:hover{
    color:#fff;
}
.tes-header-cart .tes-cart-count {
    position: absolute;
    top: -9px;
    right: -6px;
    background: #7e8961;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    font-size: 11px;
    border-radius: 50%;
}
/* =============================== */
/* Responsive */
@media (max-width: 573px) {
    .custom-product-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .custom-product-card {
        padding: 7px !important;
    }
    .product-title{
        font-size: 15px;
    }
    .custom-add-to-cart{
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    .custom-product-grid{
        gap: 11px;
    }
    .top-filter-tabs{
        flex-direction: column;
        border-radius: 6px;
    }
    .svc-list{
        gap: 28px;
    }
    .svc-card{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 27px;
        width: 100% !important;
    }
    .svc-card-img {
        width: 100%;
    }
    .svc-card-body{
        width: 100%;
    }
    .svc-card-pricing{
        width:100%;
    }

}
@media (max-width: 767px) {
    .shop-content-layout {
        grid-template-columns: 1fr;
    }
    .inner-banner {
        height: 320px;
    }
    .custom_row .col{
        width: 100%;
    }
    .inner_banner_title h1{
        font-size: 30px;
        margin-bottom: 20px;
    }
    .blog_categories{
        margin-bottom: 40px;
    }
    .blog_archive {
        padding: 40px 13px 80px;
    }
    .blog_card_content {
        padding: 15px 16px 11px;
    }
    .blog_card_excerpt{
        -webkit-line-clamp: 2;
    }
    .blog_read_more{
        margin-top: 13px;
    }
    .blog_grid {
        gap: 15px;
    }
    .blog_banner .custom_container {
        /* margin-top: 40px; */
    }
    .tes-services-slider .tes-slide-card {
        flex: 0 0 168px;
    }
    .elementor-1416 .elementor-element.elementor-element-68b6f0f ul.products{
        gap: 15px !important;
    }
    body .home_products .products li.product.type-product {
        padding: 7px !important;
    }
    .home_products .products li.product.type-product .woocommerce-loop-product__title{
        font-size: 15px !important;
    }
    .home_products .products li.product.type-product .button{
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    .custom-shop-sidebar{
        display: none;
    }
    .custom-product-grid-wrap{
        width: 100%;
    }
    .product-image-wrap{
        height: 167px;
    }
    .custom-product-grid{
        gap: 15px;
    }
    .product_archive_section{
        padding: 40px 0px 80px;
    }
    .product_archive_section{
        padding: 60px 0px 100px;
    }
    .svc-tabsection{
        padding: 40px 0;
    }
    .svc-hero h1{
        font-size: 30px;
    }
    .svc-list{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 23px;
    }
    .svc-card{
        flex-direction: column;
        gap: 12px;
        width: 48.2%;
    }
    .svc-card-img{
        width:100%;
        height: inherit;
        aspect-ratio: 1 / 0.8;
    }
    .svc-card-pricing{
        Width:100%;
    }
    .svc_section{
        padding-bottom: 80px;
    }
    .svc-tabs-wrap{
        width: 100%;
    }
    .single_blog_content h1, .single_blog_content h2, .single_blog_content h3, .single_blog_content h4{
        font-size: 24px;
    }
    .single_blog_content img{
        height: 294px;
    }
    .woocommerce-product-gallery{
        margin-bottom: 0px !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
     .inner_banner_title h1{
        font-size: 33px;
        margin-bottom: 10px;
    }
    .svc-hero h1{
        font-size: 33px;
    }
}
@media (min-width: 768px) and (max-width: 929px){
    .custom_container {
        max-width: 800px;
}
    .custom-shop-sidebar {
        width: 28%;
        display: none;
    }
    .custom-product-grid-wrap{
        width: 100%;
    }
    .product-image-wrap {
        height: 211px;
    }

}
@media (min-width: 768px) {
    .inner-banner{
        height: 400px;
    }
    .inner_banner_title h1{
        font-size: 33px;
        margin-bottom: 10px;
    }
    /* .custom_container{
        max-width: 720px;
    } */
    .blog_archive_container {
        width: min(100% - 40px, 760px);
    }
    .blog_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .single_blog_sidebar {
        width: 38%;
    }
    .single_blog_content {
        width: 58%;
    }
    .single_blogSection{
        padding: 60px 0 60px;
    }
   
    .tes-services-slider .tes-slide-card {
        flex: 0 0 184px;
    }
    .custom-product-grid-wrap {
        width: 100%;
    }
    .svc-tabsection{
        padding: 60px 0;
    }
    .svc-tabs-wrap{
        width: 100%;
    }
    .svc-list{
        gap: 28px;
    }
    .svc-card{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 27px;
        width: 100%;
        align-items:center;
    }
    .svc-card-img {
        width: 28%;
    }
    .svc-card-body{
        width: 41%;
    }
    .svc-card-pricing{
        width:23%;
    }
    
}

@media (min-width: 930px){
    .custom_container{
        max-width: 900px;
    }
    .custom-shop-sidebar {
        width: 28%;
    }
    .custom-product-grid-wrap {
        width: 67%;
    }
    .custom-product-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1100px){
    .custom_container{
        max-width: 1000px;
    }
    .blog_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .inner-banner{
        height: 480px;
    }
    .custom-product-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .pp-modal-box {
        max-width: 66%;
    }
}
@media (min-width: 1260px){
    .inner-banner{
        height: 480px;
    }
    .custom_container{
        max-width: 1100px;
    }
    .inner_banner_title h1{
        font-size: 49px;
    }
    .blog_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .single_blog_sidebar {
        width: 31%;
    }
    .tes-services-slider .tes-slide-card {
        flex: 0 0 197px;
    }
    .custom-product-grid{
        grid-template-columns: repeat(3, 1fr);
    }
    .custom-shop-sidebar {
        width: 23%;
    }
    .custom-product-grid-wrap {
        width: 73%;
    }
    .svc-tabsection{
        padding: 80px 0;
    }
    .svc-tabs-wrap{
        width:900px;
    }
}
@media (min-width: 1320px){
    .custom_container{
        max-width: 1280px;
    }
    .blog_grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (min-width: 1480px){
    .custom_container{
        max-width: 1280px;
    }
}
