:root {
    --primary-color: #1778BE;
    --success-color: #30AD1C;
    --body-heading: #263238;
    --body-text: #555555;
    --light-color: #F1F7FB;
}

.mb-80 {
    margin-bottom: clamp(2.5rem, -0.9555rem + 9.6154vw, 5rem);
}

.bg-light {
    background-color: var(--light-color) !important;
}

.button {
    padding: 24px 40px;
    border-radius: 10px;
}

.button.button__primary {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.button.button__primary:hover {
    background-color: var(--success-color);
}

body {
    color: var(--body-text);
    font-size: clamp(1.125rem, -1.5rem + 3vw, 1.5rem);
}

.spacer-xxl {
    padding-block: clamp(3.125rem, -0.1707rem + 9.1707vw, 9rem);
}


.text-heading,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--body-heading);
}

@media (min-width: 1200px) {

    section h1,
    section .h1 {
        font-size: clamp(4.875rem, -13.0625rem + 20.5vw, 7.4375rem) !important;
    }

    section h2,
    section .h2 {
        font-size: clamp(3.5rem, -6.125rem + 11vw, 4.875rem) !important;
    }

    section h3,
    section .h3 {
        font-size: clamp(2.375rem, -5.5rem + 9vw, 3.5rem) !important;
    }

    section h4,
    section .h4 {
        font-size: clamp(2rem, -0.625rem + 3vw, 2.375rem) !important;
    }

    section h5,
    section .h5 {
        font-size: clamp(1.75rem, 0rem + 2vw, 2rem) !important;
    }

    section h6,
    section .h6 {
        font-size: clamp(1.5rem, -0.25rem + 2vw, 1.75rem) !important;
    }
}

@media (min-width: 992px) {
    .sticky__top {
        position: sticky;
        top: 155px;
    }
}

@media (max-width: 1199px) {
    body {
        font-size: clamp(0.875rem, 0.645rem + 0.64vw, 1.125rem);
    }

    section h1,
    section .h1 {
        font-size: clamp(2.375rem, 0.075rem + 6.4vw, 4.875rem);
    }

    section h2,
    section .h2 {
        font-size: clamp(2rem, 0.62rem + 3.84vw, 3.5rem);
    }

    section h3,
    section .h3 {
        font-size: clamp(1.75rem, 1.175rem + 1.6vw, 2.375rem);
    }

    section h4,
    section .h4 {
        font-size: clamp(1.5rem, 1.04rem + 1.28vw, 2rem);
    }

    section h5,
    section .h5 {
        font-size: clamp(1.125rem, 0.55rem + 1.6vw, 1.75rem);
    }

    section h6,
    section .h6 {
        font-size: clamp(1rem, 0.54rem + 1.28vw, 1.5rem);
    }
}

.outline {
    color: currentColor;
    -webkit-text-fill-color: transparent;
    /* Will override color (regardless of order) */
    -webkit-text-stroke: 2px currentColor;
    /* position: relative; */
}

/* .outline::before {
    position: absolute;
    content: attr(data-text);
    top: 0;
    left: 0;
    max-width: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-text-fill-color: currentColor;
}

.outline:hover::before {
    max-width: 100%;
} */

/* @media (min-width: 1600px) {
    .container {
        max-width: 1624px;
        padding-inline: 12px;
    }
} */

.container-fluid {
    padding-inline: 80px;
}

.tick-list li {
    display: flex;
    align-items: start;
    font-weight: 600;
    gap: 24px;
    padding: 48px;
}

.tick-list li::before {
    content: '';
    height: 42px;
    width: 42px;
    background: var(--tick-icon);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.benifit-list {
    border: 1px solid #E0E0E0;
    border-radius: 40px;
}

.benifit-list li:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
}