:root {
    --primary-bg: #B8FB3C;
    --page-fade: #F7FFE9;
    --page-light: #FBFBFB;
    --page-dark: #070A0D;
    --tick-icon: url(../images/plumbing-images/check-icon.webp);
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.padding-left {
    --page-width: 1600px;
    padding-left: calc(50% - (var(--page-width) / 2) + 12px);
}

.button_theme-secondary {
    justify-content: center !important;
}

.button {
    transition: all 0.3s;
}

.button-secondary {
    display: flex !important;
    align-items: center;
    gap: 20px;
    width: fit-content !important;
}

.button-secondary {
  color: #FFF;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.button-secondary.button-icon::after {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-fade {
    background-color: var(--page-fade);
}

.primary-bg {
    background-color: var(--primary-bg);
}

.page-light {
    background-color: var(--page-light);
}

.page-dark {
    background-color: var(--page-dark);
}

.highlight-text {
    color: var(--primary-bg) !important;
}

.z-1 {
    position: relative;
   z-index: 1;
}

.img-blk {
    border-radius: 20px;
}

/* Banner */

.page-hero {
    padding-block: 20px 60px !important;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 15px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--page-dark);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* About Wrapper */

.about--wrapper {
    background-color: var(--page-dark);
    padding: 40px 40px;
    border-radius: 20px;
}

/* Benefit Block */

.benefit--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #DEDEDE;
}

.icon--box {
    min-width: 80px;
}

/* Choose Block */

.sticky-cloumn {
    position: sticky;
    top: 180px;
}

.choose-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.choose-wrapper .benefit--block {
    display: flex;
    gap: 20px;
}

/* Cta Block */

.cta--wrapper {
    border-radius: 20px;
    background-image: url(../images/plumbing-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 90px 90px;
}

.cta--theme {
    background-color: var(--primary-bg);
    padding: 80px 50px;
    border-radius: 20px;
}

.cta--block {
    border-radius: 20px;
    background-color: var(--page-dark);
    padding: 0 40px 0 0;
}

.cta--block img {
    margin: -40px !important;
}

/* Faq */

.accordion__heading {
    font-weight: 500 !important;
}

@media only screen  and (max-width: 1599px) {

    h2, .h2 {
        font-size: clamp(32px, -17.76px + 4.9538vw, 68px);
    }
}

@media only screen  and (max-width: 1200px) {

}

@media only screen  and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .tick-list {
        grid-template-columns: repeat(1, 1fr);
        width: fit-content;
        margin-inline: auto !important;
    }

    .cta--wrapper {
        padding: 50px 20px;
    }

    .cta--wrapper img {
        margin: 0 !important;
    }

    .button-mx {
        margin-inline: auto !important;
    }
}

@media only screen  and (max-width: 767px) {
    
    .benefit--block {
        padding: 20px 20px;
    }

    .choose-wrapper .benefit--block {
        flex-direction: column;
    }
}