:root {
    --page-primary-bg: #971514;
    --page-secondary-bg: #2B466E;
    --page-fade: #F8FBFF;
    --primary-light: #4770B3;
    --text-theme: #000000;
    --text-grey: #58606A;
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.primary-light {
    background-color: var(--primary-light);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey);
}

.highlight {
    color: var(--page-secondary-bg) !important;
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
    border-radius: 0 !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color) !important;
    border: 1px solid var(--white-color) !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    white-space: nowrap !important;
    font-weight: 600 !important;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

@keyframes pulso-effect {
    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);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-theme);
}

.section-wrapper h1,
.section-wrapper .h1 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h2,
.section-wrapper .h2 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h3,
.section-wrapper .h3 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h4,
.section-wrapper .h4 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h5,
.section-wrapper .h5 {
    font-family: 'Gilroy' !important;
}

.section-wrapper h6,
.section-wrapper .h6 {
    font-family: 'Gilroy' !important;
}

p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Home Block */

.hero-intro {
    background-color: #F0EBE8;
}

.banner-content {
    width: 100%;
    border: 2px solid #FFFFFF80;
    backdrop-filter: blur(100px);
    padding: 40px 40px;
}

.banner-text {
    font-size: 40vw;
    line-height: 31vw;
    font-weight: 800;
    color: #F9F9F9CC;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: -1;
    opacity: 0.8;
    text-align: center;
}

/* Counter Block */

.counter-shape {
    position: absolute;
    right: 0;
    bottom: -30px;
    z-index: -1;
    width: 100%;
    max-width: 200px;
}

.counter-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}

.counter-block {
    width: 100%;
    height: 100%;
    text-align: center;
    /* background-color: var(--white-color); */
    padding: 20px 20px;
}

.counter-wrapper .counter-block:not(:last-child) {
    border-right: 1px dashed #D8D8D8;
}

.counter-block h2 {
    font-size: clamp(2.5rem, 5.8vw, 4rem) !important;
    color: var(--text-theme);
}

/* Tab Intro */

.tab-intro {
    background: url(../images/lawppc-images/tab-intro.webp), var(--page-primary-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.tab-wrapper {
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 20px 0 0 20px;
    padding: 40px 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-direction: column;
    background-color: var(--white-color);
}

.tab-wrapper .nav-link {
    color: var(--text-theme);
    font-size: 22px;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid #D8D8D8;
    width: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    display: flex;
    gap: 20px;
}

.tab-wrapper .nav-link.active {
    background-color: var(--primary-light);
    color: var(--white-color) !important;
    border: var(--primary-light) !important;
}

#tabPanelBlock {
    border-radius: 0 20px 20px 0 !important;
    padding: 40px 40px;
    min-height: 450px;
    background-color: var(--page-secondary-bg);
    display: flex;
    align-items: center;
}

/* Service Block */

.service--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: var(--white-color);
    border: 1px solid #E5E5E5;
}

.service--icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--page-primary-bg);
    border-radius: 50px;
    transition: all 0.3s;
    padding: 10px;
}

.service--block:hover {
    background-color: var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
}

.service--block:hover h4,
.service--block:hover p {
    color: var(--white-color) !important;
}

/* Link Block */

.link-box {
    display: flex;
    gap: 10px;
    padding: 30px 20px;
    border-radius: 10px;
    background: var(--page-fade);
    position: relative;
    color: #0B0C0D !important;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.link-box svg {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 22px;
    transform: rotate(40deg);
    transform-origin: center;
    transition: transform .2s;
}

.link-box:hover {
    background: var(--page-secondary-bg) !important;
    color: var(--white-color) !important;
}

.link-box:hover svg {
    transform: rotate(0deg);
}

.link-box:hover svg path {
    fill: var(--white-color);
    transition: all 0.3s;
}

/* Solution Block */

.swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.solution--block {
    padding: 30px 30px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
    background-color: transparent;
    transition: all 0.3s;
}

.solution-img {
    width: 100%;
    height: 250px;
}

.solution-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.solution--block:hover {
    background-color: var(--page-secondary-bg);
    border-color: var(--page-secondary-bg);
}

.solution--block:hover h4,
.solution--block:hover p {
    color: var(--white-color) !important;
}

.slider-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 50px 0 0;
}

.slider-btn .swiper-button-next,
.slider-btn .swiper-button-prev {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: 1px solid var(--page-primary-bg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    color: var(--page-primary-bg);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:hover,
.slider-btn .swiper-button-prev:hover {
    background: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after  {
    font-size: 18px;
}

/* Table Block */

.inner-pricing-section table tr th {
    border-bottom: 1px solid #d5d5d580;
    border-right: 1px solid #d5d5d580;
    text-align: center;
    height: 120px;
    padding: 10px;
    font-size: 18px;
    color: var(--white-color);
}

.inner-pricing-section table tr th span {
    width: 100%;
    display: inline-block;
    font-weight: 300;
}

tbody tr td:first-child {
    background-color: #C24543;
    font-weight: 600;
    font-size: 18px !important;
    color: var(--white-color) !important;
}

tbody tr td {
    background-color: var(--white-color);
    font-weight: 500;
    color: #1C1B21 !important;
}

.inner-pricing-section table tr th:nth-child(1) {
    background-color: #B23331;
}

.inner-pricing-section table tr th:nth-child(2) {
    background-color: #A82524;
}

.inner-pricing-section table tr th:nth-child(3) {
    background-color: #931A19;
}

.inner-pricing-section table tr th:last-child {
    background-color: #881110;
}

.flex-featured {
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-pricing-section img {
    width: 100%;
    max-width: 24px;
}

.inner-pricing-section table tr td {
    font-size: 17px;
    padding: 20px 20px;
    border-bottom: 1px solid #d5d5d5;
    border-right: 1px solid #d5d5d5;
}

/* CTA */

.cta-intro {
    background-image: url(../images/lawppc-images/cta-intro.webp);
    background-color: var(--page-primary-bg);
    background-repeat: no-repeat;
    background-size: cover;
}

.cta--block {
    background-image: url(../images/lawppc-images/cta--block.webp);
    background-color: var(--page-secondary-bg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 90px;
    border-radius: 20px;
}

.list--block {
    display: flex;
    justify-content: center;
    gap: 30px;
    border: 1px dashed #C3C3C3;
    border-radius: 10px;
    padding: 14px 14px;
    width: 100%;
    max-width: fit-content;
    margin: auto;
}

.list--block li {
    position: relative;
    padding: 0 0 0 38px;
}

.list--block li::before {
    content: '';
    background-image: url(../images/lawppc-images/check-icon.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    min-width: 20px;
    height: 20px;
    position: absolute;
    inset: 0 auto 0 0;
    margin: auto;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

/* Responsive */

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
    
    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 991px) {

    .hero-intro {
        padding: 60px 0 !important;
    }

    .counter-shape {
        display: none;
    }

    .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
        align-items: unset;
        gap: 30px;
    }

    .counter-wrapper .counter-block:nth-child(2) {
        border: none;
    }
    
    .service--block {
        padding: 20px 20px;
    }
    
    .cta--block {
        padding: 50px 20px;
    }

    .list--block {
        flex-wrap: wrap;
        gap: 20px;
    }

    .list--block li {
        padding: 0 0 0 28px;
    }
    
    .cta-intro {
        background-position: center;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }

    .inner-pricing-section {
        overflow: auto;
    }

    .tab-wrapper {
        border-radius: 20px 20px 0 0;
        padding: 20px 20px;;
    }

    #tabPanelBlock {
        border-radius: 0 0 20px 20px !important;
        padding: 20px 30px;
    }

    .tab-wrapper .nav-link {
        padding: 20px 20px;
    }
}