/* Gilroy Regular */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Gilroy Regular Italic */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-RegularItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

/* Gilroy Bold */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Gilroy Bold Italic */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

/* Gilroy ExtraBold */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* ExtraBold */
    font-style: normal;
}

/* Gilroy ExtraBold Italic */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800; /* ExtraBold */
    font-style: italic;
}

/* Gilroy Light */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
}

/* Gilroy Light Italic */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-LightItalic.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: italic;
}

/* Gilroy Medium */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

/* Gilroy Medium Italic */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-MediumItalic.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: italic;
}

/* Gilroy SemiBold */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-SemiBold.ttf') format('truetype');
    font-weight: 600; /* SemiBold */
    font-style: normal;
}

/* Gilroy SemiBold Italic */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy/Gilroy-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600; /* SemiBold */
    font-style: italic;
}


:root{
    --primary_color: #000;
    --secondary_color: #FFA600;
    --light_text: #5F5F5F;
    --heading_color: #0D0D0D;
    --body_color: #000000;
    --heading_font: 'Gilroy';
    --black: #000;
}
.heading_font{
    font-family: var(--heading_font);
}
.btn_primary, .btn_white{
    display: inline-block;
    text-align: center;
    font-size: 18px;
    padding: 15px 42px;
}
.btn_primary_outlined, .btn_white_outlined{
    display: inline-block;
    text-align: center;
    font-size: 18px;
    padding: 15px 30px;
    font-weight: 600;
}
.btn_primary{
    background-color: var(--primary_color);
    color: #fff;
    border: 1px solid var(--primary_color);
}
.btn_primary_outlined{
    color: var(--primary_color);
    border: 1px solid var(--primary_color);
}
.btn_white{
    background-color: #fff;
    color: var(--black);
    border: 1px solid var(--black);
}
.btn_white_outlined{
    color: #fff;
    border: 1px solid #fff;
}

.bg_black{
    background-color: var(--black);
}
.bg_light{
    background-color: #F6F6F6;
}
.mb_100{
    margin-bottom: 100px;
}
.mb_60{
    margin-bottom: 60px;
}
.mb_30{
    margin-bottom: 30px;
}
.blend_darken{
    mix-blend-mode: darken;
}

.hero_section{
    padding-top: 90px;
    padding-bottom: 90px;
}
.hero_content{
    padding-top: 45px;
}
.hero_section h6{
    color: var(--secondary_color);
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: -1px;
    margin: 0 0 17px;
}
.hero_section h1{
    color: var(--heading_color);
    font-size: 54px;
    font-weight: 400;
    line-height: 1.05em;
    margin: 0 0 52px;
}

.counters_section h2{
    font-size: 28px;
    line-height: 1.5em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--body_color);
}
.counters_section h3{
    color: var(--secondary_color);
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: -1px;
    font-weight: 500;
    line-height: 1.1em;
}

.counters_area{
    display: flex;
    justify-content: space-between;
    padding: 65px 0;
}
.counter_item h4{
    font-size: 116px;
    color: var(--body_color);
    letter-spacing: -0.04em;
    font-weight: 400;
    font-family: var(--heading_font);
    line-height: 1em;
}
.counter_item h6{
    font-size: 20px;
    color: var(--light_text);
    letter-spacing: 0;
    font-weight: 400;
}

/* ==== PRODUCT ITEM == START ==== */
.product_item{
    padding-top: 90px;
    padding-bottom: 100px;
}
@media(min-width: 767px){
    .product_item .row{
        display: flex;
        align-items: center;
    }
}
.product_item .product_item_info h2{
    font-size: 62px;
    color: var(--heading_color);
    margin: 0 0 35px;
    line-height: 1.1em;
    font-weight: 400;
    text-transform: capitalize;
}
.product_item .product_item_info p{
    font-size: 18px;
    margin: 0 0 25px;
    color: var(--light_text);
    line-height: 1.5em;
}
.product_item .product_item_info .kitchen_size{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--body_color);
    margin: 0 0 15px;
}
.product_item_btns{
    padding-top: 5px;
    display: flex;
    gap: 10px;
}
.product_item_btns.justify_end{
    justify-content: end;
}
.product_item .product_item_info.border_top_right{
    border-top: 1px solid rgb(0 0 0 / 33%);
    border-right: 1px solid rgb(0 0 0 / 33%);
    padding: 90px 50px 0 0;
    margin-left: 10px;
}
.product_item .product_item_info.border_top_left{
    border-top: 1px solid rgb(0 0 0 / 33%);
    border-left: 1px solid rgb(0 0 0 / 33%);
    padding: 90px 0 0 50px;
}
.product_item .paddign_right{
    padding-right: 30px;
}
.product_item .paddign_left{
    padding-left: 30px;
}

.product_item.bg_black .product_item_info h2, 
.product_item.bg_black .product_item_info p,
.product_item.bg_black .product_item_info .kitchen_size{
    color: #fff;
}
.product_item.bg_black .product_item_info.border_top_right{
    border-color: rgb(255 255 255 / 33%);;
}
.product_item .product_item_info.border_top_right.margin_left_0{
    margin-left: 0;
}
/* ==== PRODUCT ITEM == END ==== */

/* ==== PRODUCT ITEM COLUMN DESIGN ==== */
.product_item.product_item_v2 .product_item_info h2{
    font-size: 36px;
    margin-bottom: 25px;
}
.product_item.product_item_v2 .border_left_top{
    padding-left: 30px;
    padding-top: 20px;
    border-top: 1px solid rgb(0 0 0 / 33%);
    border-left: 1px solid rgb(0 0 0 / 33%);
    margin-bottom: 30px;
}
.product_item.product_item_v2 .product_item_info{
    padding-top: 20px;
}
.product_item.product_item_v2 .product_item_btns{
    /* flex-direction: column; */
}
.product_item_info_fullw{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product_item.product_item_v2 .product_item_info.product_item_info_fullw{
    padding-top: 50px;    
}
.product_item_info_fullw p{
    text-align: center !important;
}

.choose_option_section{
    background-color: #F6F6F6;
    padding: 53px 0;
}
.choose_option_section h2{
    color: var(--secondary_color);
    font-size: 64px;
    text-align: center;
    line-height: 1em;
}

/* ==== DOOR ITEM == START ==== */
.doors_section{
    padding-top: 130px;
    padding-bottom: 130px;
}
.doors_section h2{
    font-size: 91px;
    color: var(--body_color);
    line-height: 1.05em;
    margin-bottom: 50px;
}
.doors_section .doors_heading{
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px;
    text-transform: uppercase;
    color: var(--body_color);
}
.door_style_item{
    margin-bottom: 20px;
}
.door_style_item h5{
    font-size: 16px;
    color: var(--body_color);
}
@media(min-width: 992px){
    .doors_style_images .row{
        display: flex;
    }
}
.doors_colors .d_flex{
    display: flex;
    flex-wrap: wrap;
    gap: 0 60px;
}
.color_item{
    flex: 0 0 calc(50% - 30px);
    height: 17px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.pros_cons_section ul{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
}
.pros_cons_section li{
    font-size: 18px;
    color: var(--body_color);
    line-height: 1.34em;
    list-style-type: none;
    flex: 0 0 calc(50% - 40px);
    position: relative;
    padding-left: 30px;
}
.pros_cons_section li:before{
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 4px;
    z-index: 1;
}
.pros_cons_section li.cons_item:before{
    background-image: url(../images/cross.png);
}
.doors_section.bg_black, 
.doors_section.bg_black h2,
.doors_section.bg_black,
.doors_section.bg_black .doors_heading,
.doors_section.bg_black .pros_cons_section li{
    color: #fff;
}
/* ==== DOOR ITEM == END ==== */


.how_section{
    background-color: var(--black);
    padding: 100px 0 80px;
}
.how_section h2{
    color: #fff;
    font-size: 64px;
    line-height: initial;
    margin-bottom: 60px;
}
@media(min-width: 768px){
    .how_section .row{
        display: flex;
    }
}
.how_item{
    background-color: #252525;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #252525;
}
.how_item img{
    margin-bottom: 30px;
}
.how_item h4{
    font-size: 24px;
    color: #fff;
    margin-top: auto;
    font-weight: 400;
}
.how_item p{
    font-size: 16px;
    line-height: 1.35em;
    text-align: left !important;
    color: #fff;
}
.how_item:hover{
    border-color: var(--secondary_color);
}


.structure_section{
    padding-top: 130px;
    padding-bottom: 130px;
    position: relative;
}
.structure_section .faded_text{
    letter-spacing: -1px;
    font-size: 136px;
    font-weight: 400;
    line-height: 0.92em;
    opacity: 0.1;
    display: inline-block;
    transform: rotate(-90deg);
    position: absolute;
    /* right: -9%; */
    right: -1.2em;
    /* bottom: 28%; */
    bottom: 24%;
    z-index: 0;
}
.structure_section ul{
    padding: 0;
    list-style-type: none;
}
.structure_section ul li{
    color: var(--light_text);
    display: flex;
    font-size: 20px;
    margin-bottom: 50px;
}
.structure_section ul li strong{
    width: 50px;
    color: var(--heading_color);
}
.structure_section h2{
    color: var(--heading_color);
    font-size: 64px;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 70px;
}
.structure_section .heading_area{
    position: relative;
    padding-left: 45px;
}
.structure_section .heading_area span{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    transform: rotate(-90deg);
    display: inline-block;
    position: absolute;
    left: -40px;
    top: 50px;
    z-index: 1;
}

.quote_section{
    padding-top: 100px;
    padding-bottom: 100px;
}
.quote_section h2{
    color: var(--heading_color);
    font-size: 62px;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 1em;
    margin-bottom: 30px;
    margin-top: 0;
}
.quote_section p{
    color: var(--light_text);
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 50px;
}
.quote_section .img_area{
    padding-left: 30px;
}

.reviews_area{
    padding-top: 130px;
}
.review_item{
    padding-left: 50px;
}
.review_item h4{
    font-size: 21px;
    font-weight: 500;
    color: var(--body_color);
    line-height: 1.5em;
    margin-bottom: 20px;
}
.review_item p{
    font-size: 18px;
    color: var(--body_color);
    line-height: 1.5em;
}
.review_item .d_flex{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
}
.review_item .d_flex img{
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50px;
}
.review_item .d_flex .review_name{
    font-size: 16px;
    font-weight: 700;
    color: var(--body_color);
    margin: 0 ;

}
.review_item .d_flex .review_designation{
    font-size: 14px;
    font-weight: 400;
    color: var(--body_color);
    margin: 0;
    letter-spacing: 0;
}
.reviews_section{
    position: relative;
    padding-top: 150px;
    padding-bottom: 90px;
}
.reviews_section .faded_text{
    font-size: 136px;
    font-weight: 400;
    line-height: 0.92em;
    color: var(--body_color);
    display: inline-block;
    transform: rotate(-90deg);
    position: absolute;
    /* left: -4%; */
    left: -0.45em;
    bottom: 28%;
    z-index: 0;
}

.warranty_section h2{
    font-size: 80px;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 1.05em;
    color: var(--heading_color);
}
@media(min-width: 768px){
    .warranty_section .row{
        display: flex;
        align-items: center;
    }
}


/* ==== RESPONSIVE ==== */
@media(max-width: 1199px){
    .hero_content{
        padding-top: 0;
    }
    .hero_section h1{
        font-size: 54px !important;
        line-height: 1.05em !important;
    }
    .counters_section h2 {
        font-size: 28px !important;
        line-height: 1.5em !important;
    }
    .counters_section h3 {
        font-size: 30px !important;
        line-height: 1.1em !important;
    }
    .counter_item h4{
        font-size: 86px !important;
        line-height: 1em !important;
    }
    .product_item .product_item_info h2{
        font-size: 54px !important;
        line-height: 1.1em !important;
    }
    .product_item.product_item_v2 .product_item_info h2{
        font-size: 32px !important;
    }
    .product_item .product_item_info.border_top_right,
    .product_item .product_item_info.border_top_left{
        padding-top: 50px;
    }
    .product_item .product_item_info.border_top_left{
        padding-left: 40px;
    }
    .product_item .product_item_info.border_top_right{
        padding-right: 40px;
    }
    .btn_primary, .btn_white,
    .btn_primary_outlined, .btn_white_outlined{
        font-size: 16px;
        padding: 12px 20px;
    }
    .choose_option_section h2,
    .structure_section h2,
    .how_section h2 {
        font-size: 64px !important;
        line-height: 1em !important;
    }
    .quote_section h2 {
        font-size: 54px !important;
        line-height: 1em !important;
    }
    .doors_section h2 {
        font-size: 80px !important;
        line-height: 1.05em !important;
        margin-bottom: 40px;
    }    
    .doors_section .doors_heading {
        font-size: 28px !important;
    }
    .structure_section .heading_area span{
        top: 55px;
    }
    .structure_section .faded_text,
    .reviews_section .faded_text{
        font-size: 106px;
    }
    .how_item h4{
        font-size: 20px !important;
    }
    .how_item p {
        font-size: 14px;
    }
    .reviews_section{
        padding-top: 100px;
    }
    .review_item h4 {
        font-size: 21px !important;
        line-height: 1.5em;
    }
    .reviews_area {
        padding-top: 80px;
    }
    .warranty_section h2 {
        font-size: 56px !important;
        line-height: 1.05em !important;
    }
}

@media(max-width: 991px){
    .hero_section h1 {
        font-size: 42px !important;
        margin-bottom: 22px;
    }
    /* .hero_section h6{
        font-size: 18px;
        margin-bottom: 10px;
    } */
    .counters_section h2{
        font-size: 24px !important;
    }
    .counters_section h3 {
        font-size: 30px !important;
    }
    .counter_item h4 {
        font-size: 75px !important;
    }
    .counters_area{
        padding-bottom: 0;
    }

    .product_item .product_item_info h2 {
        font-size: 44px !important;
        margin-bottom: 20px;
    }
    .product_item .product_item_info p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .product_item .paddign_right {
        padding-right: 0;
    }
    .product_item .paddign_left {
        padding-left: 0;
    }
    .product_item .product_item_info.border_top_right {
        padding-right: 25px;
    }
    .product_item .product_item_info.border_top_left {
        padding-left: 25px;
    }
    .btn_primary, .btn_white, .btn_primary_outlined, .btn_white_outlined {
        font-size: 14px;
        padding: 10px 25px;
    }
    .product_item .btn_primary, 
    .product_item .btn_white, 
    .product_item .btn_primary_outlined, 
    .product_item .btn_white_outlined {
        padding: 10px 10px;
    }
    .product_item .product_item_info.border_top_right, .product_item .product_item_info.border_top_left {
        padding-top: 30px;
    }
    .choose_option_section h2, 
    .structure_section h2, 
    .how_section h2, 
    .quote_section h2 {
        font-size: 44px !important;
    }
    .doors_section h2 {
        font-size: 64px !important;
        margin-bottom: 30px;
        margin-top: 0;
    }
    .doors_section {
        padding-top: 100px;
        padding-bottom: 90px;
    }
    .pros_cons_section li {
        /* font-size: 16px; */
        flex: 0 0 calc(50% - 35px);
    }
    .pros_cons_section ul{
        gap: 25px 70px;
    }
    .doors_section .doors_heading {
        font-size: 24px !important;
    }    
    .doors_section .doors_style_images .row{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .structure_section .heading_area span {
        top: 34px;
        font-size: 16px;
        left: -34px;
    }
    .structure_section .heading_area {
        padding-left: 37px;
    }
    .structure_section ul li {
        margin-bottom: 40px;
        /* font-size: 18px; */
    }
    .structure_section .mb_100 {
        margin-bottom: 40px;
    }
    .structure_section .faded_text, .reviews_section .faded_text {
        font-size: 86px;
    }
    .structure_section .faded_text{
        transform: none;
        bottom: 3%;
        right: 0;
    }
    .how_item img{
        width: 70px;
    }
    .how_item{
        padding: 20px;
    }
    .warranty_section h2 {
        font-size: 48px !important;
    }
    .quote_section p {
        margin-bottom: 25px;
    }
    .quote_section h2{
        margin-bottom: 20px;
    }
    .quote_section .img_area{
        padding-left: 0;
    }
    .review_item p {
        font-size: 14px;
    }
    .review_item h4 {
        font-size: 18px !important;
    }
    .reviews_section .faded_text{
        left: -0.7em;
    }
}
@media(max-width: 767px){
    .hero_section {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .hero_content{
        padding-bottom: 30px;
        text-align: center;
    }
    .hero_section h1 {
        font-size: 40px !important;
    }
    .hero_section .hero_img_col{
        padding: 0;
    }
    .hero_section .hero_img_col img{
        width: 100%;
    }
    .counters_section{
        text-align: center;
    }
    .counters_section h2{
        font-size: 20px !important;
        margin-bottom: 30px;
    }
    .counters_section h3 {
        font-size: 30px !important;
    }
    /* .counter_item h4 {
        font-size: 36px !important;
    }
    .counter_item h6 {
        font-size: 16px;
        margin-bottom: 0;
    } */
    .counters_area{
        padding-top: 45px;
        flex-direction: column;
        gap: 50px;
    }
    .product_item {
        /* padding-top: 50px;
        padding-bottom: 50px; */
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .product_item .product_item_info{
        text-align: center;
    }
    .product_item .product_item_info.border_top_right, .product_item .product_item_info.border_top_left{
        border: none;
        padding: 0;
        margin: 0;
    }
    .product_item .product_item_info h2 {
        /* font-size: 36px !important; */
        font-size: 48px !important;
        margin-bottom: 40px;
    }
    .product_item .product_item_info p{
        text-align: center !important;
        font-size: 18px;
    }
    .product_item_btns{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .product_item .btn_primary, .product_item .btn_white, .product_item .btn_primary_outlined, .product_item .btn_white_outlined{
        padding: 14px 40px;
    }
    .product_item .row.d_xs_flex,
    .doors_section .row.d_xs_flex{
        display: flex;
        flex-direction: column;
    }
    .product_item .row.d_xs_flex.xs_flex_reverse,
    .doors_section .row.d_xs_flex.xs_flex_reverse{
        flex-direction: column-reverse;
    }
    .product_item img{
        /* margin-bottom: 25px; */
        margin-top: 50px;
    }
    .product_item.product_item_v2 img{
        margin-top: 0;
    }
    .product_item.product_item_v2 .product_item_btns {
        flex-direction: column;
        align-items: stretch;
    }
    .product_item.product_item_v2 .product_item_info.product_item_info_fullw {
        padding-top: 20px;
    }
    .choose_option_section h2{
        font-size: 42px !important;
    }
    .choose_option_section {
        padding: 40px 0;
    }    
    .doors_section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .doors_section .door_main_img img{
        margin-top: 50px;
        width: 100%;
    }
    .doors_section .door_main_img {
        padding: 0;
    }
    
    .doors_section h2 {
        /* font-size: 46px !important;
        margin-top: 20px;
        margin-bottom: 15px; */
        text-align: center;
    }
    .doors_section .doors_heading {
        font-size: 28px !important;
        text-align: center;
        line-height: 1.5em !important;
    }
    .doors_colors .d_flex{
        gap: 0 20px;
    }
    .color_item{
        /* flex: 0 0 calc(50% - 10px); */
        flex: 100%;
    }
    .pros_cons_section ul{
        flex-direction: column;
    }
    .doors_section .mb_60 {
        margin-bottom: 50px;
    }
    .doors_section .doors_style_images .row {
        gap: 15px 0;
    }
    .btn_primary, .btn_white, .btn_primary_outlined, .btn_white_outlined {
        /* font-size: 14px; */
        /* padding: 10px 21px; */
        font-size: 18px;
        padding: 14px 40px;
    }
    .structure_section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .structure_section .heading_area{
        padding: 0;
    }
    .structure_section h2{
        font-size: 64px !important;
        text-align: center;
        margin-bottom: 40px;
    }
    .structure_section ul li {
        /* margin-bottom: 20px; */
        line-height: 1.5em;
    }
    .structure_section ul{
        padding-left: 40px;
    }
    .structure_section .heading_area span {
        /* top: 25px; */
        position: static;
        transform: none;
        display: block;
        text-align: center;
        font-size: 18px;
        margin-bottom: 19px;
    }
    .structure_section .row.d_xs_flex{
        display: flex;
        flex-direction: column-reverse;
    }
    .structure_section img{
        display: block;
        margin: 0 auto;
        padding: 0px 55px;
    }
    .structure_section .product_item_btns.visible-xs{
        display: flex !important;
        padding-top: 70px;
    }
    .structure_section .faded_text {
        writing-mode: vertical-lr;
        transform: rotate(180deg);
        bottom: 25%;
    }
    .structure_section .faded_text br{
        display: none;
    }
    
    .structure_section .faded_text, .reviews_section .faded_text {
        font-size: 64px;
    }
    .how_section {
        padding: 70px 0 60px;
    }
    .how_section h2{
        font-size: 48px;
    }
    .how_item p {
        font-size: 16px;
    }
    .how_item h4 {
        font-size: 24px !important;
    }
    .how_item img {
        width: auto;
    }
    .quote_section {
        padding-top: 65px;
        padding-bottom: 0px;
        text-align: center;
    }
    .quote_section .img_area{
        margin: 45px -15px 0;
    }
    .quote_section .img_area img{
        width: 100%;
    }
    .quote_section h2 {
        font-size: 44px !important;
        margin-bottom: 25px;
    }
    .quote_section p{
        text-align: center !important;
        font-size: 18px;
        margin-bottom: 40px;
    }
    .warranty_section h2 {
        font-size: 40px !important;
        text-align: center;
        margin-bottom: 60px;
        padding: 0 30px;
    }
    .warranty_section .row{
        display: flex;
        flex-direction: column-reverse;
    }
    .reviews_section .faded_text{
        position: static;
        transform: none;
        font-weight: 400;
        margin-bottom: 40px;
        text-align: center;
        display: block;
    }
    .reviews_section {
        padding-top: 70px;
        padding-bottom: 40px;
    }
    .reviews_section .product_item_btns.justify_end{
        justify-content: start;
    }
    .reviews_area {
        padding-top: 20px;
    }
    .review_item {
        padding: 30px 0;
    }
    .review_item h4 {
        font-size: 21px !important;
        line-height: 1.5em !important;
    }
    .review_item p {
        font-size: 18px;
    }

}
/* ==== END NEW SHOP ==== */



/* ==== FOOTER ==== */
.footer_section{
    background-color: var(--black);
    padding-bottom: 100px;
}
.footer_section .footer_logo{
    display: inline-block;
    width: 167px;
}
.footer_section ul.quick_links{
    list-style-type: none;
    padding: 0;
}
.footer_section ul.quick_links li{
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0.5;
    transition: 0.3s;
}
.footer_section ul.quick_links li a{
    color: #fff;
    display: inline-block;
}
.footer_section ul.quick_links li:hover{
    opacity: 1;
}
.footer_section .faded_text{
    letter-spacing: -1px;
    font-size: 136px;
    font-weight: 400;
    line-height: 0.92em;
    opacity: 0.2;
    display: inline-block;
    color: #fff;
    margin-bottom: 75px;
}
@media(max-width: 1199px){
    .footer_section .faded_text {
        font-size: 106px;
    }
}
@media(max-width: 991px){
    .footer_section .faded_text {
        font-size: 86px;
    }
    .footer_section .footer_logo{
        width: 120px;
    }
    .footer_section ul.quick_links li {
        font-size: 14px;
    }
}
@media(max-width: 767px){
    .footer_section .faded_text {
        font-size: 48px;
        text-align: center;
        margin: 0;
        padding: 30px 0;
        display: block;
    }
    .footer_section{
        padding-bottom: 50px;
        text-align: center;
    }
    .footer_section ul.quick_links li{
        margin-bottom: 15px;
        font-size: 16px;
    }
    .footer_section ul.quick_links{
        margin-top: 50px;
    }
    .footer_section .footer_logo{
        margin-bottom: 20px;
    }
}
/* ==== END FOOTER ==== */


/* ==== HEADER ==== */
.header_section{
    background-color: #fff;
}
.header_section .offer_bar{
    background-color: var(--black);
}
.header_section .offer_bar p{
    margin: 0;
    font-size: 16px;
    color: #fff;
    text-align: center !important;
    padding: 4px 15px;
}
.header_section .offer_bar p a{
    color: #fff;
}
.header_section .header_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px;
    gap: 15px;
}
.header_section .header_area .left_area,
.header_section .header_area .right_area{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_area .header_logo img{
    width: 60px;
}
.header_area .icon_btn{
    width: 55px;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.33);
}
/* -- Menu Sidebar */
.header_sidebar{
    max-width: 100%;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background-color: var(--black);
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.5s;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}
.header_sidebar::-webkit-scrollbar {
    display: none; 
}
.header_sidebar_inner{
    padding: 20px;
}
.header_sidebar button.close_btn{
    background-color: transparent;
    color: #fff;
    border: none;
    padding: 0 0 10px;
}
.header_sidebar ul li{
    border-top: 1px solid rgb(255 255 255 / 22%);
}
.header_sidebar ul li a{
    display: inline-block;
    width: 100%;
    color: #fff;
    padding: 10px 20px 10px 0;
    position: relative;
}
.header_sidebar ul li a.dropdown-toggle:after{
    content: "\f107";
    font: normal normal normal 14px / 1 FontAwesome;
    position: absolute;
    right: 0;
    top: 14px;
}
.header_sidebar ul ul{
    list-style-type: none;
    padding: 0;
}
#services_dropdown{
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    transition: height 0.3s ease-out;
    height: 0;
    overflow: hidden;
}
#services_dropdown li{
    flex: 0 0 calc(50% - 10px);
    border: none;
}
#services_dropdown li a{
    padding: 0 0 10px;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1.4em;
    color: rgb(255 255 255 / 70%);
}
#services_dropdown li a img{
    margin-bottom: 5px;
}
@media(max-width: 767px){
    .header_section .header_area{
        padding: 12px 0px;
    }
    .header_area .icon_btn {
        width: 45px;
        height: 45px;
    }
    .header_area .header_logo{
        margin-left: auto;
        margin-right: auto;
        padding-left: 55px;
    }
    .header_area .header_logo{
        flex: 1;
    }
}
/* ==== END HEADER ==== */


#pa_cabinet-style+.tiles-wrapper .image-tile{
	padding: 5px;
}


/* ==== PRODUCT ARCHIVE PAGE ==== */
.cat_tag_info{
	padding-top: 70px;
    padding-bottom: 30px;
}
.cat_tag_info h1{
	font-size: 62px;
    color: var(--heading_color);
	line-height: 1em;
    margin-bottom: 35px;
}
.cat_tag_info .row{
	display: flex;
	align-items: center;
}
@media(max-width: 1199px){
	.cat_tag_info h1{
		font-size: 54px !important;
		line-height: 1em !important;
	}
}
@media(max-width: 991px){
	.cat_tag_info h1{
		font-size: 48px !important;
	}
}
@media(max-width: 767px){
	.cat_tag_info .row{
		flex-direction: column-reverse;
	}
	.cat_tag_info+.sort-cont-drop{
		padding-top: 0 !important
	}
	.cat_tag_desc{
		margin-bottom: 30px;
	}
	.cat_tag_info img{
		width: 100%;
	}
}