/* Common Style starts */
:root {
    --page-primary-bg: #4C2E0F;
    --page-secondary-bg: linear-gradient(90deg, #2F2317 0%, #866543 25%, #413120 75%, #36291B 100%);
    --page-fade: #EFF5FF;
    --page-theme: #30AD1C;
    --text-theme: #0B0C0D;
    --text-grey : #58606A;
    --tick-icon: url(../images/roofing-images/check-icon.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.theme-gradient {
    background: var(--theme-gradient);
}

.page-theme {
    background-color: var(--page-theme);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

html body {
    color: var(--text-theme) !important;
}

.sections-wrapper h1,.sections-wrapper .h1,
.sections-wrapper h2,.sections-wrapper .h2,
.sections-wrapper h3,.sections-wrapper .h3,
.sections-wrapper h4,.sections-wrapper .h4,
.sections-wrapper h5,.sections-wrapper .h5,
.sections-wrapper h6,.sections-wrapper .h6 {
    color: var(--text-theme) !important;
}

.sections-wrapper .page-text {
    color: var(--page-primary-bg) !important;
}

.sections-wrapper .w-normal {
    font-weight: 400 !important;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--page-primary-bg);
    background: var(--white-color) !important;
}

.button-secondary svg {
    animation: pulso-eff 2s infinite !important;
    border-radius: 100px;
}

@keyframes pulso-eff {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgb(62 47 31);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.button svg {
    animation: pulso 2s infinite;
    border-radius: 100px;
}

.z-1 {
    position: relative;
    z-index: 1;
}

@keyframes pulso {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Hero Section */

.hero-section {
    background: linear-gradient(258.99deg, rgba(255, 255, 255, 0.5) 0%, #F0F0F0 100%);
}

.seprator {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.check-list li {
    font-size: 20px;
    padding: 0 0 0 44px;
    position: relative;
}

.check-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 1px auto 0 0;
    width: 28px;
    height: 28px;
    background-size: 28px;
    background-repeat: no-repeat;
}

/* Counter */

.counter-wrapper {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
}

.counter-block {
    background: #FFFFFF0F;
    box-shadow: -20px 20px 0px 0px #00000033;
    padding: 30px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.counter-block img {
    position: absolute;
    inset: 0 0 0 auto;
    width: 100%;
    max-width: 100px;
    margin: auto;
    opacity: 0.2;
    transition: all 0.3s;
}

.counter-block:hover {
    background-color: var(--white-color);
}

.counter-block:hover h2 {
    background: linear-gradient(90deg, #2F2317 0%, #866543 25%, #413120 75%, #36291B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-block:hover p {
    color: var(--page-primary-bg) !important;
}

.counter-block:hover img {
    opacity: 1;
}

/* Service Block */

.service--block {
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
    position: relative;
    border-radius: 20px;
    width: 100%;
    background: transparent;
    box-shadow: 0px 10px 40px 0px #41281C0F;
    transition: all 0.3s;
}

.service--block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--page-secondary-bg);
    width: 100%;
    height: 0;
    border-radius: 20px;
    transition: all 0.3s;
}

.service--block:hover::before {
    height: 100%;
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}

.service--block:hover .service---icon img {
    filter: invert();
}

.service---img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid var(--white-color);
    margin-inline: auto;
}

.sticky-column {
    position: sticky;
    top: 180px;
}

/* Management Block */

.management-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.management-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #FFFFFF14;
    border: 2px solid #FFFFFF40;
    backdrop-filter: blur(10px);
    padding: 30px 30px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.management-icon {
    width: 100%;
    max-width: 80px;
}

.count-text {
    position: absolute;
    right: 20px;
    top: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
}

.management-block:hover {
    border-color: var(--white-color);
}

/* Process Block */

.process-intro {
    background-color: var(--page-primary-bg);
    padding-bottom: clamp(4.375rem, -15.4943rem + 55.2885vw, 14rem) !important;
    position: relative;
}

.process-intro::before {
    content: url(../images/roofing-images/process-overlay.webp);
    position: absolute;
    width: fit-content;
    height: auto;
    inset: 0;
    opacity: 0.3;
    backdrop-filter: blur(10px);
    margin: auto;
}

.process-block {
    position: relative;
}

.process-count {
    position: absolute;
    left: -30px;
    top: -20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
    z-index: -1;
}

.process-slider .swiper-slide:not(:last-child)::after {
    content: '';
    width: 60%;
    height: 1px;
    position: absolute;
    left: 35%;
    top: 44px;
    background: transparent;
    border: 0.5px dashed #ffffff90;
}

.process-intro > span {
    opacity: 10%;
    color: var(--white-color);
    font-size: 12vw;
    text-align: center;
    display: block;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 2;
}

/* CTA */

.cta-wrapper {
    background: var(--page-secondary-bg);
    padding: 70px 120px;
    border-radius: 40px;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 28px 0px !important;
}

.sections-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 24px !important;
}

/* Responsive */

@media (max-width: 1599px) {

    .sections-wrapper .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 1399px) {

}

@media only screen and (max-width: 991px) {

    .check-list {
        margin-inline: auto;
        width: fit-content;
    }

    .service--block {
        padding: 20px 20px;
    }

    .management-block {
        padding: 20px 20px;
        border-radius: 20px;
    }

    .cta-wrapper {
        padding: 40px 20px;
        border-radius: 30px;
    }
}

@media only screen and (max-width: 767px) {

}