/*
Theme Name: Woodstuff
Theme URI: https://wordpress.org/themes/twentytwenty/
Template: twentytwenty
Author: the WordPress team
Author URI: https://wordpress.org/

*/

/* ************************* Global ************************* */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #E14E13;
    --secondary: #F2D41D;
    --accent: #5D9A63;
    --white: #fff;

    --bg-primary: #f9f9f9;

    --black: #000;
    --base: #535862;

    --title-font: "Lato", sans-serif;
    --body-font: "Noto Serif", serif;
    --base-transition: all .3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--body-font);
    min-height: 100svh;
    color: var(--base);
}

img {
    vertical-align: top;
    width: 100%;
    height: auto;
}

body a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: currentColor;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font);
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0 !important;
}

.h--1,
h1 {
    font-size: 60px;
    line-height: 1.2;
}

.h--2,
h2 {
    font-size: 48px;
    line-height: 1.2;
}

.h--3,
h3 {
    font-size: 36px;
    line-height: 1.2;
}

.h--4,
h4 {
    font-size: 30px;
    line-height: 1.2;
}

.h--5,
h5 {
    font-size: 24px;
    line-height: 1.2;
}

.h--6,
h6 {
    font-size: 20px;
    line-height: 1.2;
}

.text--primary {
    color: var(--primary);
}

.bg--primary {
    background-color: var(--bg-primary);
}

.text-xl {
    font-size: 18px;
    line-height: 1.5;
}

section {
    padding-block: 80px;
    padding-inline: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.block {
    display: flex;
    flex-direction: column;
}

.gap-s {
    gap: 2.5rem;
}

.gap-m {
    gap: 4rem;
}

.grid {
    display: grid;
    grid-template-rows: 1fr;
}

.title-tag {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-weight: 600;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
}

.title-tag::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 60px;
    height: 2px;
    border-radius: 4px;
    left: 0;
    bottom: 0;
}

.btn-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: .8em 1.5em;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 4px;
    font-size: 17px;
    border: 2px solid transparent;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--black);
    border-color: var(--secondary);
}

.btn-white {
    color: var(--primary);
    background: var(--white);
}

.btn-white:hover {
    color: var(--white);
    background: var(--accent);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--black);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.grid-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.text--center {
    text-align: center;
}

.intro {
    max-width: 768px;
    margin-inline: auto;
    gap: 1.5em;
}

.text--center .title-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ************************* Global ************************* */
/* ************************* Error ************************* */
.error-sec {
    min-height: 400px;
    display: flex;
    align-items: center;
    padding-top: 160px;
}

.error-sec .intro {
    align-items: center;
}

.error404 .site_header {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.error404 .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--black);
}

.error404 .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a:hover {
    color: var(--primary);
}

.error404 .site_header .header_logo .logo-1,
.privacy-policy .site_header .header_logo .logo-1 {
    display: block;
}

.error404 .header_logo .logo-2,
.privacy-policy .header_logo .logo-2 {
    display: none;
}

/* ************************* Error ************************* */
/* ************************* single content ************************* */

#site-content {
    padding-bottom: 80px;
    padding-top: 180px;
    padding-inline: 20px;
}

#site-content article {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

#site-content article ol,
#site-content article ul {
    padding-left: 1.5em;
    margin: 0px 0px 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#site-content article h1,
#site-content article h2,
#site-content article h3,
#site-content article h4,
#site-content article h5,
#site-content article h6 {
    margin-top: 1em;
    margin-bottom: 0.3em;
}

#site-content article>*:first-child {
    margin-top: 0 !important;
}

#site-content article>*:last-child {
    margin-bottom: 0 !important;
}

#site-content article header .entry-header-inner .entry-title {
    margin-top: 0px;
}

.privacy-policy .site_header {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.privacy-policy .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--black);
}

.privacy-policy .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a:hover {
    color: var(--primary);
}

.privacy-policy .footer-nav-widgets-wrapper.header-footer-group {
    display: none;
}

.privacy-policy .header_menu .mobile_toggle_icon span {
    background: var(--primary);
}

.error404 .site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow,
.error404 .site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.privacy-policy .site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.privacy-policy .site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
    filter: unset;
}

.error404 .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a:hover+.sub-arrow,
.privacy-policy .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a:hover+.sub-arrow {
    filter: brightness(0) saturate(100%) invert(34%) sepia(87%) saturate(1634%) hue-rotate(354deg) brightness(90%) contrast(95%);
}

.error404 .header_menu .mobile_toggle_icon span {
    background: var(--primary);
}

@media(max-width:768px) {
    #site-content {
        padding-bottom: 60px;
        padding-top: 150px;
    }
}

/* ************************* single content ************************* */

/* ************************* Home ************************* */
.hero-sec {
    padding-block: 60px;
}

.home_banner_sec {
    min-height: calc(100svh - 110px);
    overflow: hidden;
}

.home_banner_sec .container {
    padding-top: 120px;
    position: relative;
}

.home_banner_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.home_banner_sec .home_banner_bg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.home_banner_bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(45deg, black, transparent);
}

.home_banner_bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home_banner_bg video {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.home_banner_row {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 767px;
    gap: 32px;
}

.home_banner_inner .h--6 {
    font-weight: 400;
    max-width: 550px;
    margin-top: 20px;
    line-height: 1.5;
}

.user-review {
    flex-direction: row;
    column-gap: 1em;
    row-gap: 1em;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.avatar-group-md {
    flex-direction: row;
}

.avatar-group-md__card {
    border: 2px solid var(--white);
    border-radius: 50%;
    width: 50px;
    margin-left: -12px;
    overflow: hidden;
    background: var(--accent);
}

.avatar-group-md__card:first-child {
    margin: 0;
}

.avatar-group-md__card img {
    border: 0.75px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.rating__wrap {
    gap: 2px;
}

.rating__block {
    flex-direction: row;
    column-gap: 4px;
    align-items: center;
}

.rating__block img {
    height: 20px;
    width: auto;
}

.service_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 64px 32px
}

.sl-card {
    width: calc(33.33% - 21.33px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    position: relative
}

.sl-card__title h4 {
    font-size: 24px;
    margin: 0 0 16px;
    color: var(--primary);
}

.sl-card__desc {
    font-size: 16px
}

.sl-card__info .btn_wrap {
    justify-content: center;
    margin-top: 32px;
    position: relative;
    z-index: 3
}

.sl-card__feature-img {
    position: relative;
    padding: 12px;
    background: #f1f1f1;
    border-radius: 4px;
}

.sl-card__feature-img .sl-card__feature_main img {
    object-fit: cover;
    width: 100%;
    height: 270px
}

.sl-card__feature-icon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 50%;
    background: var(--white);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 1px dashed var(--white);
    outline-offset: 6px;
    z-index: 1
}

.sl-card__feature-icon img {
    width: 36px;
    aspect-ratio: 1/1;
    object-fit: contain
}

a.sl-card__absolute-link {
    position: absolute;
    inset: 0;
    z-index: 2
}

.sl-card__feature-img::after {
    content: '';
    position: absolute;
    background: var(--accent);
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    left: 12px;
    top: 12px;
    opacity: 0;
    transition: all .5s ease-in-out
}

.sl-card:hover .sl-card__feature-img::after {
    opacity: .5
}

.sl-card__feature-icon:after {
    content: '';
    background: var(--accent);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    transition: all .3s ease-in-out;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center
}

.sl-card:hover .sl-card__feature-icon:after {
    transform: translate(-50%, -50%) scale(1)
}

.sl-card__feature_main {
    overflow: hidden;
    border-radius: 4px;
}

.sl-card__feature_main img {
    transform: scale(1.01);
    transition: all .4s ease-in-out
}

.sl-card:hover .sl-card__feature_main img {
    transform: scale(1.1)
}

/* ************************* Home ************************* */

.gallery_list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    display: grid;
    grid-template-rows: auto;
}

.gallery_list img {
    height: 100%;
    object-fit: cover;

}

.gallery_list a:nth-child(1) {
    grid-column: span 2;
    height: 500px;
    grid-row: span 2;
}

.gallery_list a:nth-child(2) {
    grid-column: span 3;
    height: 300px;
}

.gallery_list a:nth-child(3) {
    height: 400px;
    width: calc(166% - 24px);
}

.gallery_list a:nth-child(4) {
    height: 400px;
    grid-column: span 2;
    width: calc(79% - 24px);
    margin-left: auto;
}

.gallery_list a:nth-child(5) {
    grid-column: span 2;
    margin-top: -224px;
    height: 280px;
}

.gallery_list a:nth-child(6) {
    grid-column: span 3;
    grid-row: span 2;
    height: 444px;
}

.gallery_list a:nth-child(7) {
    grid-column: span 2;
    margin-top: 0;
}

.gallery_list a {
    position: relative;
}

.gallery_list a::after {
    content: '';
    position: absolute;
    background: var(--black);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: var(--base-transition);
}

.gallery_list a:hover::after {
    opacity: 0.5;
}

.gallery_list a::before {
    position: absolute;
    content: '';
    pointer-events: none;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMTYsNDhWOTZhOCw4LDAsMCwxLTE2LDBWNjcuMzFsLTQyLjM0LDQyLjM1YTgsOCwwLDAsMS0xMS4zMi0xMS4zMkwxODguNjksNTZIMTYwYTgsOCwwLDAsMSwwLTE2aDQ4QTgsOCwwLDAsMSwyMTYsNDhaTTk4LjM0LDE0Ni4zNCw1NiwxODguNjlWMTYwYTgsOCwwLDAsMC0xNiwwdjQ4YTgsOCwwLDAsMCw4LDhIOTZhOCw4LDAsMCwwLDAtMTZINjcuMzFsNDIuMzUtNDIuMzRhOCw4LDAsMCwwLTExLjMyLTExLjMyWk0yMDgsMTUyYTgsOCwwLDAsMC04LDh2MjguNjlsLTQyLjM0LTQyLjM1YTgsOCwwLDAsMC0xMS4zMiwxMS4zMkwxODguNjksMjAwSDE2MGE4LDgsMCwwLDAsMCwxNmg0OGE4LDgsMCwwLDAsOC04VjE2MEE4LDgsMCwwLDAsMjA4LDE1MlpNNjcuMzEsNTZIOTZhOCw4LDAsMCwwLDAtMTZINDhhOCw4LDAsMCwwLTgsOFY5NmE4LDgsMCwwLDAsMTYsMFY2Ny4zMWw0Mi4zNCw0Mi4zNWE4LDgsMCwwLDAsMTEuMzItMTEuMzJaIj48L3BhdGg+PC9zdmc+');
    width: 100%;
    height: 100%;
    background: var(--white);
    mask-position: center;
    mask-repeat: no-repeat;
    opacity: 0;
    transform: scale(0);
    transition: var(--base-transition);
    z-index: 2;
    mask-size: 40px;
}

.gallery_list a:hover::before {
    opacity: 1;
    transform: scale(1);
}


/* ################## ***** House ***** ################### */

.house_cta_sec {
    background-color: var(--bg-primary);
}

.house_cta_row {
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 70% 1fr;
    gap: 30px;
}

.house_cta_left {
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 24px;
}

.house_cta_left img {
    width: 100%;
    border-radius: 8px;
    max-width: 300px;
}

.house_cta_inner {
    gap: 10px;
}

.house_cta_title {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 700;
}

.house_cta_right.block {
    align-items: end;
}

/* ################## ***** House ***** ################### */

/* ################## ***** Faq ***** ################### */

.faq_sec .faq_row {
    grid-template-columns: 43% 1fr;
    gap: 60px;
}

.faq_sec .faq_row .faq__left {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 24px;
    /* max-height: 580px; */
    justify-content: flex-end;
    min-height: 450px;
    max-width: 600px;
}

.faq_sec .faq_row .faq_block {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    gap: 20px;
}

.faq_sec .faq_row .faq_block_inner h6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 8px;
}

.faq_sec .faq_row .faq__right {
    gap: 40px;
}


.faq__right.block {
    gap: 40px;
}

.accordion_wrapper {
    gap: 20px;
}

.accordion_item {
    background: #f1f1f1;
    border-radius: 12px;
}

.accordion_header.active {
    background: var(--primary);
    color: #fff;
}

.accordion_header {
    padding: 14px 20px;
    border: 1px solid #d7d6d6;
    background: var(--white);
    border-radius: 12px;
    font-size: 20px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    transition: var(--base-transition);
}

.accordion_header span.arrow {
    width: 48px;
    height: 48px;
    background-image: url('https://woodstuff.mystagingwebsite.com/wp-content/uploads/2026/02/caret-right.svg');
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #d7d6d6;
    border-radius: 50%;
    background-color: var(--white);
    flex-shrink: 0;
    transition: var(--base-transition);
}

.accordion_header.active span.arrow {
    transform: rotate(90deg);
}

.accordion_item .answer {
    display: none;
}

.accordion_item_answe_inner {
    padding: 20px;
    border-radius: 0 0 12px 12px;
}

.accordion_item_answe_inner p {
    margin-bottom: 1em;
}

/* ################## ***** Faq ***** ################### */

/* ################## ***** Benefit sec ***** ################### */

.benefit_inner {
    grid-template-columns: 48% 45%;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.benefit_img_block img {
    object-fit: cover;
    position: absolute;
    border-radius: 24px;
    object-position: top center;
}

.benefit_inner__left {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-block: 70px;
    max-width: 800px;
}

.benefit_img_block {
    width: 100%;
    position: absolute;
    height: 100%;
}

.benefit_img_block img:first-child {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: calc(50% - 10px);
    height: 90%;
}

.benefit_img_block img:nth-child(2) {
    width: 43%;
    right: 4%;
    top: 0;
    height: calc(50% - 10px);
}

.benefit_img_block img:nth-child(3) {
    width: calc(50% - 20px);
    right: 0;
    top: auto;
    bottom: 0;
    height: calc(50% - 10px);
}

.benefit_counter {
    background: var(--accent);
    z-index: 2;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    margin: 0px 20px;
}

.number_cont_box {
    text-align: center;
}

.number_cont_box_inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    gap: 10px;
    margin-bottom: 8px;
}

.number_cont_box_inner p {
    font-size: 36px;
    line-height: 1;
}

.number_cont_child:not(:last-child) {
    border-bottom: 1px solid currentColor;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.number_cont_box span {
    font-size: 17px;
}

.benefit_icon_box {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.benefit_icon__wrap {
    border-radius: 50%;
    background: var(--primary);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.benefit_icon__wrap img {
    height: 34px;
    width: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(38%) hue-rotate(254deg) brightness(110%) contrast(110%);
}

.benefit_icon_box_content {
    gap: 8px;
}

.benefit_inner__right {
    gap: 32px;
}

.benefit_icon_box_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
}

.benefit_sec .benefit_row .desc_wrapper {
    border-left: 1px solid var(--accent);
    padding-left: 30px;
}

/* ################## ***** Benefit sec ***** ################### */


/* ################## ***** Testimonail Card ***** ################### */


.testimonial-sec {
    background: var(--bg-primary);
}

.testimonial_list__bottm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.testimonial_list__bottm .rating-container>a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.testimonial_list__bottm .rating-container>a:hover {
    color: var(--accent);
}

.testimonial_list__bottm .rating-container>a .google-logo {
    width: 100%;
    text-align: center;
}

.testimonial_list__bottm .rating-container>a .google-logo img {
    max-width: 80px;
    vertical-align: middle;
    width: 100%;
}

.testimonial_list__bottm .rating-container>a .star-rating img {
    width: 22px;
    object-fit: contain;
    height: auto;
}

.testimonial_list__bottm .rating-container>a .star-rating {
    display: flex;
    width: 100%;
    margin: auto;
    gap: 3px;
}

.testimonial_list__bottm .rating-container>a .review-info {
    font-weight: 600;
    font-size: 16px;
    width: 100%;
}

.testimonial_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}


.tl-card__info {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.tl-card__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    position: relative;
    flex-grow: 1;
}

.tl-card__info-title {
    font-weight: 600;
    margin-bottom: 1.2em;
    font-size: 20px;
    line-height: 1.5;
    z-index: 1;
    position: relative;
    padding-right: 73px;
}

.tl-card__info-desc {
    font-size: 17px;
    line-height: 1.5;
    z-index: 1;
    position: relative;
}

.tl-card__info>i {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 78px;
    line-height: 1;
    color: #dee4eb;
}

.tl-card__author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px 8px;
}

.tl-card__author-info {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

span.tl-card__author-name {
    color: var(--color-primary);
    font-weight: 500;
}

span.tl-card__author-date {
    font-size: 14px;
    text-align: right;
}

.tl-card__author-rating {
    color: #f6bb06;
}

.tl-card__media {
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    border-radius: 12px;
}

.tl-card__media img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}

.tl-card {
    padding: 16px;
    background: #E4E4EA;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 21.33px);
}

/* ################## ***** Testimonail Card ***** ################### */


/* *************************** Contact *************************** */
/* hero-banner */
.hero-sec::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.6);
}

.hero-sec .hero-sec_row {
    grid-template-columns: 1fr 40%;
    align-items: center;
}

.hero-sec .container {
    padding-top: 120px;
}

.hero-sec .hero-sec_row .hero-sec_intro {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 767px;
    gap: 32px;
    margin: auto;
}

.hero-sec .hero-sec_row .hero-sec_inner .h--6 {
    font-weight: 400;
    margin-top: 20px;
    line-height: 1.5;
}

.hero-sec_row:not(:has(.hero-sec_video)) {
    text-align: center;
    grid-template-columns: 1fr;
}

.hero-sec_row:not(:has(.hero-sec_video)) .btn-wrap {
    justify-content: center;
}

.hero-sec_row:not(:has(.hero-sec_video)) .title-tag::after {
    left: 50%;
    transform: translateX(-50%)
}

.hero-sec .hero-sec_row .hero-sec_video {
    max-width: 558px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-sec .hero-sec_row .hero-sec_video a {
    position: relative;
    display: block;
}

.hero-sec .hero-sec_row .hero-sec_video a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 240px;
    aspect-ratio: 480/320;
    transform: scale(1);
}

.hero-sec .hero-sec_row:has(.hero-sec_video) .hero-sec_intro {
    margin: 0px;
}

.play_btn::before,
.play_btn::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffd;
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--white);
    animation: button-ripple 3s infinite;
    opacity: 0.6;
    z-index: 0;
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 50%;
    z-index: 3;
}

.play_btn::after {
    animation-delay: 0.3s;
}

.play_btn::before {
    animation-delay: 0.9s;
}

@keyframes button-ripple {
    70% {
        box-shadow: 0 0 0 35px var(--white);
        opacity: 0;
    }

    100% {
        box-shadow: 0 0 0 0 var(--white);
        opacity: 0;
    }
}

/* hero-banner */

/* ################## ***** Choose us ***** ################### */

.choose-us-sec .choose-us_map iframe {
    height: 500px !important;
    width: 100% !important;
}

.choose-us-sec .choose-us_row .choose-us_inner {
    grid-template-columns: 1fr 1fr;
}

.intro-content ul {
    padding-left: 22px;
    flex-wrap: wrap;
}

.intro-content ul li {
    list-style: disc;
    width: 100%;
}

.choose-us_inner .intro-content ul {
    margin-top: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-us_inner .intro-content ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.choose-us_inner .intro-content ul li .icon-bg {
    background: var(--primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
}

.choose-us_inner .intro-content ul li .contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choose-us_inner .intro-content ul li .contact-list h6 {
    font-size: 20px;
    line-height: 1.2;
}

.page-template-contact .faq_sec {
    background: var(--bg-primary);
}

.choose-us-sec .choose-us_inner .choose-us_form {
    background-color: #eee;
    padding: 30px;
    border-radius: 10px;
}

/* ################## ***** Choose us ***** ################### */


/* *************************** Contact *************************** */

/* *************************** Thank you *************************** */

.details-sec .details-sec_row {
    grid-template-columns: 1fr 1fr;
}

.details-sec .details-sec_row .details-right,
.details-sec .details-sec_row .details-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.details-sec .details_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.details_inner::before {
    content: "";
    border-left: 2px solid var(--accent);
    position: absolute;
    top: 5px;
    bottom: 5%;
    left: 12px;
}

.details-sec .details_inner .details-item {
    padding-left: 45px;
    position: relative;
    z-index: 2;
}

.details-sec .details_inner .details-item .details-item_count h6 {
    width: 26px;
    height: 26px;
    border-radius: 24px;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    line-height: 26px;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 4px;
    font-variant: lining-nums;
}

.details-sec .details_inner .details-item .details-item_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-sec_row .details-left .faq_sec {
    padding: 0px;
}

/* *************************** Thank you *************************** */


/* *************************** About *************************** */
.about-sec__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-sec__info {
    gap: 1.5rem;
}

.about-sec__desc ul,
.product-card_desc ul {
    display: flex;
    flex-direction: column;
}

.about-sec__desc ul li,
.product-card_desc ul li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
    display: inline-block;
    padding-left: 26px;
}

.about-sec__desc ul li::before,
.product-card_desc ul li:before {
    content: "";
    display: block;
    background-image: url(/wp-content/uploads/2026/02/check-mark.svg);
    width: 1em;
    height: 1.625em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    position: absolute;
    left: 0px;
    top: 4px;
}

.about-sec__desc ul li:last-child,
.product-card_desc ul li:last-child {
    margin: 0px;
}

.about-sec__img {
    position: relative;
    padding-right: 24px;
    padding-bottom: 24px;
    max-width: 600px;
}

.about-sec__img img {
    position: relative;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 548/450;
}

.about-sec__img::before {
    position: absolute;
    content: '';
    left: 20px;
    bottom: 0px;
    background: linear-gradient(0deg, #E14E13 40%, #ff9367 100%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 10px;
}

.team-member__item {
    width: calc((100% / var(--column)) - (((var(--column) - 1) * var(--gap)) / var(--column)));
}

.team-member__list {
    --column: 3;
    --gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem var(--gap);
    align-items: stretch;
    justify-content: center;
}

.team-member__card-img img {
    aspect-ratio: 383/400;
    object-fit: cover;
}

.team-member__card {
    text-align: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 54, 110, 0.15);
    border-bottom: 3px solid var(--primary);
    height: 100%;
}

.team-member__card-name {
    padding: 1.5rem 1rem;
    flex-grow: 1;
}

.team-member__card-name h3 {
    color: var(--primary);
}

.team-member__card-name span {
    font-weight: 400;
    display: block;
    color: var(--black);
    font-size: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
}

.know_more {
    margin-top: auto;
}

.know_more a {
    position: relative;
    color: var(--accent);
    font-family: var(--title-font);
    text-underline-offset: 0.25em;
    font-weight: 600;
}

.know_more a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    left: 0;
    bottom: -3px;
    border-radius: 4px;
    transition: var(--base-transition);
}

.know_more a:hover::after {
    left: auto;
    right: 0;
    width: 0;
}

/* popup */
.team_member_popup {
    display: none;
}

.team_member_popup .popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.team_member_popup .main_wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translateY(-50%) translateX(-50%);
    height: calc(100vh - 40px);
    display: flex;
    width: calc(100vw - 40px);
}

.team_member_popup .content_wrapper {
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    padding: 0;
    position: relative;
    width: 100%;
}

.team_member_popup .content_wrapper .close_popup {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 32px;
    line-height: 20px;
}

.team_member_popup .content_wrapper .close_popup {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 32px;
    line-height: 20px;
}

.team_member_popup .content_wrapper .popup_data {
    display: flex;
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
}

.team_member_popup .content_wrapper .popup_data .member_img {
    width: 40%;
}

.team_member_popup .content_wrapper .popup_data .member_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team_member_popup .content_wrapper .popup_data .about_member {
    width: 60%;
    padding: 40px;
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
    overflow-y: scroll;
    /*     scrollbar-width: none; */
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
    overflow-y: scroll;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info .about_member__position {
    color: var(--primary);
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info .about_member_content {
    padding-top: 10px;
}

/* popup */
/* *************************** About *************************** */

/* *************************** product *************************** */
.product-filter-main-wrap {
	display: flex;
	gap: 30px;
	align-items: center;
    justify-content: center;
}

.product-filter-main-wrap .product-filter_categories {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.product-sec .product_wrap .product-inner-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* update */

.product-card:nth-child(2n) .product-card_info.block {
    padding-left: 40px;
}
.product-filter-main-wrap .product-filter_categories {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.product-filter-main-wrap .product-filter_categories li {
	display: flex;
}
.product-filter-main-wrap .product-filter.active .product-filter_categories_link,
.product-filter-main-wrap .product-filter_categories .product-filter_categories_link:hover {
	background: var(--primary);
	color: var(--white);
}
.product-filter-main-wrap .product-filter_categories .product-filter_categories_link {
	background: #eee;
	padding: 8px 14px;
	font-size: 14px;
	border-radius: 6px;
	color: var(--primary);
	line-height: 1.3;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	transition: var(--base-transition);
}
/* update */

.product-card:nth-child(2n) .product-card_info.block {
    padding-left: 40px;
}

.product-card {
    padding: 10px;
    background: var(--bg-primary);
    border-radius: 10px;
    align-items: center;
    gap: 4rem;
    display: flex;
    flex-wrap: wrap;
}

.product-table-wrap {
	overflow-x: auto;
}
.product-table-wrap .product-table {
	border-top: 1px solid var(--base);
	max-width: 558px;
	width: 100%;
}
.product-table .table-row {
  display: flex;
}
.product-table_cell {
	flex: 1;
	padding: 6px;
	border: 1px solid var(--base);
	font-size: 14px;
	border-top: 0px;
}
.product-table_header .product-table_cell {
	background: var(--accent);
	color: var(--bg-primary);
    font-weight: 600;
}
.product-table .table-row > .product-table_cell:first-child {
	border-right: 0px;
}
.product-card .product-card_img-wrap {
    max-width: 600px;
    width: calc(50% - 2rem);
}

.product-card .product-card_img-wrap .product-card_img {
    aspect-ratio: 558/400;
    object-fit: cover;
    width: 100%;
    min-height: 220px;
    border-radius: 8px;
}

.product-card .product-card_info {
    gap: 18px;
    width: calc(50% - 2rem);

}

.product-card .product-card_info .product-card_desc {
    max-width: 500px;
}

.product-card_info .btn-wrap {
    margin-top: 20px;
}

.product-card:nth-child(2n) {
    flex-direction: row-reverse;
}

.get_started .get_started_row {
    max-width: 786px;
    margin: auto;
    width: 100%;
}

.get_started .get_started_row .intro-inner .get_started_title {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 52px;
    line-height: 1.4;
    color: var(--primary);
}

.get_started .get_started_inner {
    position: relative;
    display: flex;
    justify-content: center;
}

.get_started .get_started_inner a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--accent);
}

.get_started_inner a .play_btn::before,
.get_started_inner a .play_btn::after {
    box-shadow: 0 0 0 0 var(--accent);
}

.get_started .get_started_inner a .play_btn {
    position: relative;
    transform: unset;
    left: unset;
    top: unset;
}

.get_started .get_started_row .gform-footer {
    display: flex;
    justify-content: center;
}

.get_started_form .gform_wrapper .gform_heading {
    display: none;
}

.get_started_form .gform_wrapper .gfield .gsection_title {
    font-size: 22px;
}

/* *************************** product *************************** */

/* *************************** Product Calculator *************************** */
.hero-sec_video.product-calc-wrapper {
	border-radius: 0px !important;
	overflow: unset !important;
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;
}

.product-calc_inner .product-calc_desc ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-left: 22px;
}
.product-calc_inner .product-calc_desc ul li{
    list-style: disc;
}

.product-calc {
    max-width: 350px;
    margin: auto;
    border-radius: 10px ;
    border: 2px solid var(--primary);
    /* overflow: hidden; */
    text-align: left;
    background-color: var(--white);
    width: 100%;
}

.product-calc .product-calc_header,
.product-calc .product-calc_footer {
    background: var(--primary);
    padding: 12px 18px;
}
.product-calc .product-calc_footer{
        border-radius: 0px 0px 6px 6px;
}
.product-calc .product-calc_header{
    border-radius: 6px 6px 0px 0px;
}
.product-calc .product-calc_header .product-calc_title,
.product-calc .product-calc_footer .product-calc_footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.product-calc .product-calc_footer_total {
    margin-top: 10px;
    color: var(--white);
}

.product-calc .product-calc_body {
    padding: 18px;
}

.product-calc .product-calc_body .form-group {
    padding: 8px 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-calc_body .form-group label {
    font-size: 14px;
    line-height: 1.2;
}

.product-calc .product-calc_body .form-group .input-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.product-calc .product-calc_body .form-group .input-wrap span {
    font-size: 14px;
    line-height: 1.2;
    color: var(--base);
}

.product-calc .product-calc_body .help-text {
    font-size: 14px;
    display: flex;
    gap: 4px;
    align-items: center;
 position: relative;
}

/* calc popup */
.calc-popup {
	position: absolute;
	top: 24px;
	left: 20%;
	background: var(--white);
	padding: 10px;
	border-radius: 6px;
	box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
	width: 100%;
	z-index: 2;
    display: none;
    transition: var(--base-transition);
}
.calc-popup .calc-popup-inner .calc-popup-desc ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 12px;
	line-height: 1.4;
	padding-left: 20px;
}
.calc-popup .calc-popup-inner .calc-popup-desc ul li {
	list-style: disc;
}
.calc-popup::after {
	content: '';
	width: 14px;
	height: 14px;
	display: block;
	background: var(--white);
	position: absolute;
	top: -3px;
	left: 33%;
	transform: rotate(130deg);
	box-shadow: 20px 20px 20px 1px rgba(0, 0, 0, 0.1);
}
/* calc popup */

.product-calc .product-calc_body .help-text .info {
  display: block;
}
.product-calc .product-calc_body .help-text .info:hover:before{
    display: block;
}
.product-calc .product-calc_body .help-text .info:before {
  content: '';
  background: transparent;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 20%;
  top: 18px;
  pointer-events: all;
  display: none;
}
.product-calc .product-calc_body .help-text p {
    margin: 0;
}

.product-calc .product-calc_body .help-text .info > p{
    width: 16px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    border: 2px solid var(--black);
    aspect-ratio: 1/1;
    height: 16px;
    border-radius: 50%;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
}
.product-calc .product-calc_body .help-text .info:hover .calc-popup {
	display: block;
}
.product-calc .product-calc_body .form-group .input-wrap input {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 14px;
    color: var(--black);
    padding: 6px 12px;
    transition: all 500ms ease;
    line-height: 26px;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
    outline: none !important;
    background-color: var(--white);
}

.address-sec .address_row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;

}

.address-sec .address-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 20px;
    border: 3px solid var(--accent);
    border-radius: 10px;
    width: calc(33.33% - 20px);
    align-items: center;
}

.address-sec .address-card .address-card_icon {
    font-size: 22px;
    /* background: var(--primary); */
    /* 	width: 44px;
	height: 44px;
	border-radius: 8px; */
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}

.address-sec .address-card .address-card_title {
    color: var(--primary);
}

/* *************************** Product Calculator *************************** */

/* *************************** Gallery *************************** */
.gallery-tab-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.gallery-tab-wrap ul {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-tab-wrap ul li {
    display: flex;
}

.gallery-tab-wrap ul li .gallery-tab-list {
    background: #eee;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
    color: var(--primary);
    line-height: 1.3;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: var(--base-transition);
}

.gallery-tab-wrap ul li .gallery-tab-list.active,
.gallery-tab-wrap ul li .gallery-tab-list:hover {
    background: var(--primary);
    color: var(--white);
}

.gallery-tab-wrap .gallery-tab_box {
    display: none;
}

.gallery-tab-wrap .gallery-tab_box.active {
    display: flex;
}

/* *************************** Gallery *************************** */

/* *************************** Get started *************************** */
body .gform_wrapper .ginput_container_radio .gfield_radio {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* *************************** Get started *************************** */

/* *************************** Location *************************** */

/* Banner */
.location-banner {
    padding: 60px 20px;
    background-size: cover;
    background-position: right bottom;
    padding-block: 40px;
    position: relative;
}

.location-banner .location-banner_main {
    grid-template-columns: 1fr 40%;
    gap: 4rem;
    align-items: center;
}

.location-banner .location-banner__left .btn-wrap {
	align-items: center;
}

.location-banner .btn-wrap .number {
    font-weight: 700;
    color: var(--white);
}

.location-banner .btn-wrap .number:hover {
    color: var(--secondary);
}

.location-banner .location-banner__left {
    display: flex;
    flex-direction: column;
}

.location-banner .location-banner_row {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--bg-primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.location-banner_row .location-banner_maps iframe {
    width: 100% !important;
    height: 300px !important;
}

.location-banner_row .location-banner_maps {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--primary);
    width: calc(58% - 10px);
    display: flex;
}

.location-banner_row .location-banner_hours .intro-title {
    color: var(--primary);
}

.location-banner_row .location-banner_hours {
    width: calc(42% - 10px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.location-banner_row .location-banner_hours_wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: var(--white);
}

.location-banner_hours_wrap ul {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    flex-wrap: wrap;
    list-style: none;
}

.location-banner_hours_wrap ul.active {
    font-weight: 600;
}

.location-banner .home-banner__right {
	position: relative;
}


.location-banner .product_slider {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
}
.product_main_slider .product-main__img-wrap {
	overflow: hidden;
	border: 2px solid var(--primary);
	border-radius: 10px;
}

.product_main_slider .product-main__img-wrap a {
	display: block;
	width: 100%;
}
.product_main_slider .product-main__img-wrap a img {
	aspect-ratio: 476/360;
	cursor: pointer;
	object-fit: cover;
	max-height: 540px;
	min-height: 260px;
}
.location-banner .product_slider .product_thumbnail_slider {
	display: flex;
	padding: 0px 45px;
}

.location-banner .product_slider .product_thumbnail_slider .splide__track .splide__list .splide__slide.is-active {
	border: 0px !important;
}
.product_thumbnail_slider .splide__track .splide__list .splide__slide.is-active .product-thumbnail__img-wrap {
	border: 1px solid var(--primary);
}
.product_thumbnail_slider .splide__track .splide__list .splide__slide .product-thumbnail__img-wrap {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid transparent;
}
.product_thumbnail_slider .splide__track .splide__list .splide__slide .product-thumbnail__img-wrap img {
	height: 100px;
	object-fit: cover;
}
.product-catalog__arrows {
	width: 0px;
}

.product-catalog__arrows .splide__arrows {
    flex-direction: row;
    gap: 1rem;
    display: flex;
}

.product-catalog__arrows .splide__arrow {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--white);
    transition: all .3s ease;
    color: var(--white);
    opacity: 1;
}

.product_thumbnail_slider .product-catalog__arrows .splide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
}
.product_thumbnail_slider .product-catalog__arrows .splide__arrow.splide__arrow--next {
    right: 0px;
    left: auto;
}
.product-catalog__arrows .splide__arrow svg {
    width: 1.3em;
    height: 1.3em;
    fill: transparent;
    transform: unset;
}
.product_thumbnail_slider .product-catalog__arrows .splide__arrow.splide__arrow--prev svg {
    transform: rotate(-180deg) !important;
}


/* Banner */

.location-list {
    --column: 4;
    --gap: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem var(--gap);
    align-items: stretch;
    justify-content: center;
    z-index: 1;
    padding: 0px 6px 6px 0px;
}

.location-card {
    width: calc((100% / var(--column)) - (((var(--column) - 1) * var(--gap)) / var(--column)));
    position: relative;
    background: #fff;
    box-shadow: 6px 6px 0px 0px var(--primary);
    border-radius: 6px;
    overflow: hidden;
    height: auto;
}

.location-card__feature img {
    aspect-ratio: 4/3;
    object-fit: cover;
    min-height: 176px;
}

.location-card__info .location-card__desc {
    font-size: 12px;
}

.location-card__info {
    padding: 18px;
    gap: 18px;
    flex-grow: 1;
    background: #eee;
}

.location-card__name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 16px;
}

.location-card__info .btn-wrap {
    margin-top: auto;
}

.location-card__info .btn {
    font-size: 12px;
}

/* *************************** Location *************************** */


/* ********************** What we do ********************** */
.page-template-location .benefit_sec{
	background: linear-gradient(to bottom, #f9f9f9, #fff);
}
.page-template-location .faq_sec{
background-color: var(--bg-primary);
}
.what-we-do__sec .info-tabs {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
}

.info-tabs .ui-tabs-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.page-template-location .home_banner_bg::after {
	content: '';
	background: #000;
	opacity: 0.7;
    background-image: unset;
}

.info-card {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1em;
    border: 1px solid #d5d5d5;
    padding: 1em 1.5em;
    align-items: center;
    transition: all .3s ease;
    border-radius: 6px;
    outline: 2px solid transparent;
    outline-offset: -1px;
    background-color: #fff;
}
.info-card .info-card__icon {
	width: 40px;
	height: 40px;
}

.info-card:hover {
    outline-color: var(--accent);
}

.info-card__title {
    font-weight: 500;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    line-height: 1.5;
}

.info-tabs .ui-tabs-nav a {
    text-decoration: none;
    transition: all .3s ease;
}

.info-tabs .ui-tabs-nav .ui-tabs-active .info-card__title {
    color: #fff;
}

.info-tabs .ui-tabs-nav .ui-tabs-active .info-card__icon img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(19%) saturate(3463%) hue-rotate(345deg) brightness(106%) contrast(90%);
}

.info-tabs .ui-tabs-nav .ui-tabs-active .info-card {
    border-color: var(--accent);
    background: var(--accent);
}

.info-tabs__content {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    height: 100%;
    border-radius: 6px;
    opacity: 0;
    transition: all .3s ease;
    padding: 12px;
    display: flex;
    outline: 12px solid #f5f5f5;
}

.info-tabs .ui-tabs-panel {
    box-shadow: 0 4px 64px rgba(0, 0, 0, 0.3);
}

.info-tabs__content-bg {
    position: absolute;
    object-fit: cover;
    height: 100%;
    inset: 0;
    transform: scale(1.01);
    transition: all .5s ease-in-out;
}

.info-tabs__content-links {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.info-tabs__desc .btn-wrap .btn {
	position: relative;
	z-index: 2;
}
.info-tabs__content:hover .info-tabs__content-bg {
    transform: scale(1.1);
}

.ui-tabs-panel[aria-hidden="false"] .info-tabs__content {
    opacity: 1;
}

.info-tabs__desc {
    width: 100%;
    z-index: 1;
    padding: 24px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    position: relative;
    transition: all .3s ease;
    color: #fff;
    margin-top: auto;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    align-items: flex-end;
    gap: 10px;
}

.info-tabs__desc .btn-wrap {
    display: flex;
    justify-content: end;
}

span.info-tabs__arow::after {
    content: '';
    width: 28px;
    height: 28px;
    display: block;
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMDQsNjRWMTY4YTEyLDEyLDAsMCwxLTI0LDBWOTNMNzIuNDksMjAwLjQ5YTEyLDEyLDAsMCwxLTE3LTE3TDE2Myw3Nkg4OGExMiwxMiwwLDAsMSwwLTI0SDE5MkExMiwxMiwwLDAsMSwyMDQsNjRaIj48L3BhdGg+PC9zdmc+);
    mask-position: center;
    mask-size: 100%;
    mask-repeat: no-repeat;
    background: #fff;
}
.info-tabs__inner {
    font-size: 18px;
}

/* ********************** What we do ********************** */

/* *************************** Responsive *************************** */

@media(max-width:1024px) {
    .grid-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .title-tag {
        margin-bottom: 15px;
    }

    .benefit_inner {
        grid-template-columns: 1fr;
    }

    .sl-card {
        width: calc(50% - 32px);
    }

    .tl-card {
        width: calc(50% - 16px);
    }

    .faq_sec .faq_row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .house_cta_row {
        grid-template-columns: 1fr;
    }

    .house_cta_right.block {
        align-items: start;
    }

    .gallery_list {
        gap: 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery_list a {
        width: calc(33.33% - 16px) !important;
    }

    .gallery_list a:nth-child(1),
    .gallery_list a:nth-child(2),
    .gallery_list a:nth-child(3),
    .gallery_list a:nth-child(4),
    .gallery_list a:nth-child(5),
    .gallery_list a:nth-child(6),
    .gallery_list a:nth-child(7) {
        height: 300px;
        width: 100%;
        grid-column: unset;
        grid-row: unset;
        margin: 0px;
    }

    .about-sec__grid {
        grid-template-columns: 1fr;
    }

    .team-member__list {
        --column: 2;
    }

    .hero-sec .hero-sec_row {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .details-sec .details-sec_row {
        grid-template-columns: 1fr;
    }

    .team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
        scrollbar-width: thin;
        max-height: 490px;
        padding-right: 10px;
    }

    .product-card {
        gap: 30px;
    }

    .product-card .product-card_info {
        padding-bottom: 30px;
        width: 100%;
    }

    .product-card .product-card_img-wrap {
        max-width: 600px;
        width: 100%;
    }

    .product-card:nth-child(2n) .product-card_info.block {
        padding-left: 0;
    }

    .location-list {
        --column: 3;
    }
    .location-banner .location-banner_main {
	grid-template-columns: 1fr;
    gap: 3rem;
}
.what-we-do__sec .info-tabs {
	grid-template-columns: 250px 1fr;
}
}

@media(max-width:768px) {
    html {
        scroll-padding-top: 90px;
    }

    .h--1,
    h1 {
        font-size: 40px;
    }

    .h--2,
    h2 {
        font-size: 38px;
    }

    .h--3,
    h3 {
        font-size: 30px;
    }

    .h--4,
    h4 {
        font-size: 28px;
    }

    .service_list {
        gap: 32px;
    }

    .sl-card {
        width: 100%;
    }

    .number_cont_box_inner p {
        font-size: 32px;
        line-height: 1;
    }

    .benefit_counter {
        padding: 20px;
    }

    .tl-card {
        width: 100%;
        max-width: 600px;
    }

    .house_cta_left {
        grid-template-columns: 1fr;
    }

    .home_banner_sec .container {
        padding-top: 90px;
    }

    .gallery_list a {
        width: calc(50% - 12px) !important;
        height: 280px !important;
    }

    .team-member__list {
        --column: 1;
    }

    .choose-us-sec .choose-us_map iframe {
        height: 400px !important;
    }

    .team_member_popup .content_wrapper .popup_data {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .team_member_popup .content_wrapper .popup_data .member_img,
    .team_member_popup .content_wrapper .popup_data .about_member {
        width: 100%;
    }

    .team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
        scrollbar-width: thin;
        max-height: 430px;
        padding-right: 10px;
    }

    .team_member_popup .content_wrapper .popup_data .member_img img {
        aspect-ratio: 767/650;
    }

    .team_member_popup .content_wrapper .popup_data .about_member {
        padding: 32px 24px;
    }

    .address-sec .address-card {
        width: calc(50% - 15px);
    }

    .gallery-tab_overwrap {
        overflow: auto;
    }

    .error-sec {
        padding-top: 140px;
    }

    .location-list {
        --column: 2;
    }
   .what-we-do__sec .info-tabs {
	grid-template-columns: 1fr;
	gap: 2rem;
}
.what-we-do__sec .info-tabs .ui-tabs-nav {
	flex-direction: row;
	min-width: 100%;
	overflow-x: auto;
}
.what-we-do__sec .info-tabs .ui-tabs-nav .ui-tabs-tab {
	min-width: fit-content;
}
.what-we-do__sec .info-tabs .ui-tabs-panel {
	padding: 12px;
	border-radius: 18px;
}
}

@media(max-width:575px) {

    .h--1,
    h1 {
        font-size: 32px;
    }

    .h--2,
    h2 {
        font-size: 30px;
    }

    .h--3,
    h3 {
        font-size: 28px;
    }

    .h--4,
    h4 {
        font-size: 26px;
    }

    .h--5,
    h5 {
        font-size: 22px;
    }

    .title-tag {
        font-size: 14px;
        line-height: 1.4;
    }

    .btn {
        padding: .6em 1.2em;
        font-size: 15px;
    }

    .text-xl {
        font-size: 16px;
        line-height: 1.4;
    }

    section {
        padding-block: 60px;
    }

    .gap-m {
        gap: 2.6rem;
    }

    .home_banner_inner .h--6 {
        font-size: 18px;
        line-height: 1.4;
    }

    .home_banner_sec {
        min-height: calc(100svh - 90px);
    }

    .sl-card__feature-img .sl-card__feature_main img {
        height: 240px;
    }

    .sl-card {
        gap: 20px;
    }

    .sl-card__title h4 {
        font-size: 22px;
        margin: 0 0 12px;
    }

    .benefit_sec .benefit_row .desc_wrapper {
        padding-left: 20px;
    }

    .benefit_inner {
        grid-template-columns: 1fr;
    }

    .number_cont_box_inner p {
        font-size: 22px;
    }

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

    .number_cont_child:not(:last-child) {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .benefit_inner__left {
        padding-block: 54px;
    }

    .benefit_icon_box {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit_icon__wrap {
        width: 44px;
    }

    .benefit_icon__wrap img {
        height: 20px;
    }

    .benefit_icon_box_title {
        font-size: 20px;
        line-height: 1.3;
    }

    .tl-card__info-title {
        padding-right: 58px;
        padding-bottom: 18px;
    }

    .tl-card__info>i {
        font-size: 58px;
    }

    .tl-card__info {
        padding: 32px 20px;
    }

    .house_cta_title {
        font-size: 28px;
    }

    .faq_sec .faq_row .faq__left {
        min-height: 300px;
        padding: 20px;
    }

    .faq_sec .faq_row .faq_block {
        padding: 20px;
    }

    .faq_sec .faq_row .faq_block_inner h6 {
        font-size: 22px;
        line-height: 1.3;
    }

    .accordion_header {
        padding: 12px 18px;
        border-radius: 8px;
        font-size: 18px;
    }

    .accordion_header span.arrow {
        width: 36px;
        height: 36px;
        background-size: 16px;
    }

    .faq_sec .faq_row .faq__right {
        gap: 36px;
    }

    .gallery_list {
        gap: 16px !important;
    }

    .gallery_list a {
        width: calc(50% - 8px) !important;
        height: auto !important;
        aspect-ratio: 1/1;
    }

    .about-sec__grid {
        gap: 30px;
    }

    body .choose-us_form .gform_wrapper h2 {
        font-size: 30px;
        line-height: 26px;
    }

    .choose-us-sec .choose-us_inner .choose-us_form {
        padding: 30px 18px;
    }

    .choose-us-sec .choose-us_map iframe {
        height: 260px !important;
    }

    .choose-us_inner .intro-content ul li {
        flex-direction: column;
    }

    .hero-sec .container {
        padding-top: 80px;
    }

    .product-filter .product-filter_title {
        transition: var(--base-transition);
        font-size: 18px;
    }

    .product-card .product-card_info {
        gap: 8px;
    }

    .get_started .get_started_row .intro-inner .get_started_title {
        font-size: 32px;
    }

    .get_started .get_started_inner a {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .address-sec .address-card {
        width: 100%;
    }

    .location-list {
        --column: 1;
    }
    .location-banner_row .location-banner_maps,
    .location-banner_row .location-banner_hours {
	width: 100%;
}
.location-banner .location-banner_row{
    flex-direction: column;
}
.location-banner_row .location-banner_maps iframe {
	height: 260px !important;
}
.info-tabs__inner {
	font-size: 16px;
}
.info-card {
	padding: 10px 14px;
    gap: 6px;
}
.info-card__title {
	font-size: 16px;
}
.info-card .info-card__icon {
	width: 36px;
	height: 36px;
}
.calc-popup {
	left: 12%;
}
.product-table {
	min-width: 575px;
}
.product-filter-main-wrap {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	flex-direction: column;
}
}

/* *************************** Responsive *************************** */