/* CSS VERSION 1.1 */
/* 2 Mar 2026 */

/* =============================== */
/*  SECTION BANNER
/* =============================== */

.banner {
    text-align: center;
    background-color: var(--dark-green);
    padding: 20px max(5%, 30px);
    border-radius: 25px;
    margin-bottom: 30px;

    & span {
        display: block;
        font-size: 1.2rem;
        font-weight: 500;
        color: #fff;
        margin-top: 5px;
    }
}

.site-logo {
    max-width: 250px;
    display: block;
    margin: 0 auto;
}

/* =============================== */
/* PAGE STEP 1 */
/* =============================== */
/*  SECTION FORM
/* =============================== */

/* FORM */
.form-background {
    background-color: var(--main-green);
    padding: 50px 25px 35px 25px;
    border-radius: 50px;    
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper {
    position: relative;
    background-color: var(--white);
    padding: 35px 10%;
    border-radius: 30px;
}

.form-header {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-1.5deg);
    text-align: center;
    margin-bottom: 30px;
    background-color: var(--dark-green);
    padding: 30px 20px;
    border-radius: 35px;
    width: 90%;

    & h2 {
        color: #fff;
        text-transform: uppercase;
        font-size: 2rem;
        font-weight: 600;
        margin: 0;
        margin-right: 50px;
    }
}

.form-savings {
    position: absolute;
    top: -50px;
    right: -150px;
    transform: translate(-50%, -50%) rotate(3deg);
    text-align: center;
    margin-bottom: 30px;
    background-color: var(--mint);
    padding: 30px 20px;
    border-radius: 35px;

    & h4 {
        display: block;
        font-weight: 600;
        font-size: 1.3rem;
        color: var(--purple);
        transform: rotate(-3deg);
        margin: 0;

        & .savings-value {
            font-size: 3rem;
            font-weight: 600;
            color: var(--purple);
        }
    }
}

.form-subtitle {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* STEPS */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;

    & p {
        margin-top: 15px;
    }

}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.step-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-green-50);
    transition: 0.35s ease-in-out;

    &:hover {
        background-color: var(--dark-green);
    }

    &.step-item-active {
        background-color: var(--dark-green);
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

 
}

.step-item-line {
    width: 20px;
    height: 3px;
    background-color: var(--green);
}

/* BENEFITS */
.benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
    & p {
        margin-bottom: 0;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
    }

    & h3 {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    & li {
        color: #fff;
        font-weight: 500;
        font-size: 1.1rem;
        
    }

    & ul {
        padding-left: 20px;
    }
}

.benefit-1, .benefit-2, .benefit-3 {
    background-color: var(--main-green);
    width: 100%;
    min-height: 120px;
    max-width: 400px;
    padding: 20px min(40px, 10%);
    border-radius: 25px;
}

.benefit-1, .benefit-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.benefit-2 {
    background-color: var(--green);
    margin-top: -60px;
}

.benefit-3 {
    background-color: var(--dark-green);
    margin-top: -50px;
}

.checkmark-list-item {
    position: relative;
    padding-left: 1rem;
    line-height: 1.2rem;
    margin-bottom: 1rem;

    &:before {
        content: '';
        position: absolute;
        background-image: url('../images/checkmark-mint.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        top: 0;
        left: -1rem;
        width: 22px;
        height: 22px;

    }
}

/* =============================== */
/* SECTION HOW SIMPLE */
/* =============================== */

.simple-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.simple-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(120px, 33.33%, 180px);
    aspect-ratio: 1/1;
    padding: 20px min(5%, 20px);
    line-height: 1.3rem;
    border-radius: 30%;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;


    & p {
        margin-bottom: 0;
    }
}

.simple-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(2deg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--mint);
    color: var(--dark-green);
    font-size: 2.5rem;
    font-weight: 600;
    width: 4rem;
    height: 4rem;
    border-radius: 25%;


    & span {
        display: inline-block;
        transform: rotate(-2deg);
    }
}

/* =============================== */
/* SECTION REVIEWS */
/* =============================== */

.reviews-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.review-item-background {
    background-color: var(--main-green);
    padding: 20px;
    border-radius: 40px;
    width: 33.33%;
    max-width: 350px;
    height: 350px;

}

.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 30px 15%;
    border-radius: 30px;
    height: 100%;

    & p {
        margin-bottom: 0;
    }
}

.review-content {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 20px;
}

.review-author {
    line-height: 1.3rem;
}

/* =============================== */
/* PAGE STEP 2 */
/* =============================== */
/*  SECTION OFFER
/* =============================== */

/* LAYOUT */
.main-summary {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 1200px;

    & .offers-wrapper {
        width: 65%;
        margin: 0 auto;
    }

    & aside {
        width: 35%;
        margin: 0 auto;
 
    }
}

/* OFFER TILES */
.offers-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.offer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--main-green);
    padding: 20px 15px;
    border-radius: 50px;
    transform: rotate(-1.5deg);
    transition: 0.35s ease-in-out;
    max-width: 350px;
    min-height: 500px;

    &:hover {
        transform: rotate(0deg);
        cursor: pointer;
    }

    &:hover .offer-name {
        transform: translate(-50%, -50%) rotate(0deg);
 
    }

    &:hover .offer-content {
        transform: rotate(0deg);
    }

    &.selected {
        background-color: var(--dark-green);
     
        & .offer-name {
            background-color: var(--purple);
            color: #fff;
        }

    }
}

.offer-name {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(1.5deg);
    background-color: var(--mint);
    width: 60%;
    padding: 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    transition: 0.35s ease-in-out;
    text-align: center;
    z-index: 1;
    color: var(--dark-green);

    & h3 {
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    & span {
        display: block;
        font-size: 2rem;

    }
}

.offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 20px min(5%, 40px);
    border-radius: 40px;
    transform: rotate(1.5deg);
    transition: 0.35s ease-in-out;
    height: 100%;

    & .offer-content-title {
        text-align: center;
        text-transform: uppercase;
        margin-top: 40px;
        margin-bottom: 10px;
        color: var(--purple);
    }
}

.offer-rate {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 20px;

    & .offer-rate-value {
        font-size: 3rem;
        margin-right: 5px;
    }
}

.offer-features {
    
    & li {
        padding-left: 20px;
        position: relative;
        color: var(--dark-green);
        font-weight: 500;
        font-size: 1rem;
        line-height: 1.3rem;
        margin-bottom: 10px;

        &:before {
            content: '';
            position: absolute;
            background-image: url('../images/checkmark.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            top: 0;
            left: -0.1rem;
            width: 0.9rem;
            height: 0.9rem;
        }
    }
}

/* SUMMARY BOX */



.summary-wrapper {
    position: fixed;
    background-color: var(--dark-green);
    padding: 20px;
    border-radius: 35px;
    width: 30%;
    max-width: 400px;

    & h3 {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 0;
        margin-top: 10px;
    }

    & h4 {
        color: #fff;
        margin-bottom: 10px;
    }
}

.steps-white {
    color: var(--dark-green);

    & .step-item {
        background-color: var(--white);
        color: var(--dark-green)!important;
    }

    & .step-item-line {
        background-color: var(--white);
    }

    & .step-item-inactive {
        background-color: transparent!important;
        color: #fff !important;
        border: 1px solid #fff;
    }

}

/* Summary Table */

.summary-table {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-row {
    display: grid;
    grid-template-columns: 5% 50% 45%;
    gap: 5px;
    background-color: var(--white);
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 15px;
    line-height: 1.3rem;
}

.summary-value {
    color: var(--purple);
    font-weight: 600;
    display: flex;
    align-items: end;

    & .summary-value-large {
        font-size: 1.3rem;
        margin-right: 5px;
        margin-bottom: 2px;
    }

    & .summary-value-medium {
        display: inline-block;
        /* font-size: 1.1rem; */
        margin-right: 5px;
    }

    & .summary-value-crossed {
        display: none;
        color: #CA3716;
        margin-left: 2px;
        position: relative;

        &:before {
            content: '–––––––––';
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            top: 0;
            left: 0;
            width: 0.9rem;
            height: 0.9rem;
        }
    }   
}


.summary-completed  {
    opacity: 0;
    transition: 0.35s ease-in-out;

    &.active {
        opacity: 1;
    }

}
/* ================================================ */
/* SECTION USAGE SELECTION */
/* ================================================ */

/* SLIDER */
.usage-wrapper {
    position: relative;
    max-width: 600px;
    margin: auto;
    text-align: center;
    
}

.slider {
    position: relative;
}

#usage-range {
    position: relative;
    width: 100%;
    max-width: 400px;
    appearance: none;
    background: transparent;
    /* margin-bottom: 24px; */
}

#usage-range::-webkit-slider-runnable-track {
    height: 8px;
    background: #bfeeee;
    border-radius: 999px;
    z-index: 0;
    max-width: 500px;
}

#usage-range::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:var(--dark-green);
    margin-top: -8px;
    cursor: pointer;
    z-index: 999;
}

#usage-range::-moz-range-track {
    height: 8px;
    background: #bfeeee;
    border-radius: 999px;
    z-index: 0;
    max-width: 400px;
}

#usage-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:var(--dark-green);
    margin-top: -8px;
    cursor: pointer;
    z-index: 999;
}


/* !BUG this shows above the slider input handle */
/* .usage-dots {
    display: flex;
    justify-content: space-between;
    position: absolute;
    max-width: 400px;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
    pointer-events: none;
}


.usage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0aa79d;
} */

/* LABELS */
.usage-slider-labels {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.usage-option {
    flex: 1;
    text-align: center;
}


.usage-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a4a4a;
}

.usage-title.active {
    color: #066a7b;
}

.usage-subtitle {
    color: #666;
}

.usage-input-wrap {
    width: 250px;
    margin: 24px auto 0;
    border: 2px solid var(--dark-green);
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;

}
/* INPUT */
#usage-input {
    width: 120px;
    border: 0;
    outline: 0;
    background: #fff;
    font-weight: 700;
    color: #4a4a4a;
    text-align: center;
}

.usage-input-wrap span {
    font-size: 24px;
    color: #666;
}



/* LARGE USAGE WRAPPER */
.large-usage-wrapper {
    position: relative;
    background-color: var(--main-green);
    border-radius: 50px;
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        max-height 0.45s ease,
        margin-top 0.35s ease,
        padding 0.35s ease;

    & h4 {
        font-size: 1.2rem;
    }

    & p {
        font-size: 1rem;
        font-weight: 400;
        margin-top: 20px
    }

    &.is-visible {
        opacity: 1;
        transform: translateY(0);
        max-height: unset;
        pointer-events: auto;
        margin-top: 70px;
        padding: 40px 5%;
        overflow: visible;
    }
}

.large-usage-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--mint);
    padding: 10px 20px;
    border-radius: 15px;
    margin-bottom: 20px;

    & h3 {
        margin-bottom: 0;
        color: var(--dark-green);
    }
}

.large-usage-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;

    & .cta {
        font-size: 0.9rem;
        width: 50%;
        padding-inline: 10px;
    }

    & .cta-outline-white {
        border: 1px solid #fff;

        &:hover {
            background-color: #ffffff5d;
        }
    }

    & .cta-orange {
        text-transform: none;
    }
}

/* ================================================ */
/* SECTION PROVIDERS */
/* ================================================ */


#providers {
    padding-inline: min(5%, 60px);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}


.provider {
    border: 1px solid var(--purple);
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--purple);
    transition: 0.35s ease-in-out;
    cursor: pointer;

    &:hover {
        background-color: var(--purple-50);
    }

    &.selected {
        background-color: var(--purple);
        color: #fff;
    }
}

/* PROVIDERS OTHER */
.providers-other {
    display: none;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;

    &.is-open {
        display: flex;
    }
}

.provider-other {
    border: 1px solid var(--purple);
    padding: 10px;
    border-radius: 50px;
    min-width: 120px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--purple);
    transition: 0.35s ease-in-out;
    cursor: pointer;

    &:hover {
        background-color: var(--purple-50);
    }

    &.selected {
        background-color: var(--purple);
        color: #fff;
    }
}



/* ================================================ */
/* SECTION INVOICE */
/* ================================================ */

.invoice-content-description h4 {
    font-size: 1.2rem;
    color: var(--dark-green);
}

.invoice-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.invoice-dropzone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 3px dashed var(--dark-green);
    min-height: 200px;
    width: 100%;
    max-width: 700px;
    border-radius: 40px;

    margin-top: 20px;
    padding: 20px 10%;

    font-size: 1.2rem;
    line-height: 1.3rem;
    text-align: center;

    cursor: pointer;
    transition: 0.35s ease-in-out;

    overflow: hidden; /* important */
}

/* progress layer */
.invoice-dropzone::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--dark-green);
    transition: width 0.3s linear;
    z-index: 0;
}

/* text stays above */
.invoice-dropzone span {
    position: relative;
    z-index: 2;
}

.invoice-aux-text {
    font-size: 0.8rem;
    transition: 0.35s ease-in-out;
}

/* uploading state */
.invoice-dropzone.is-uploading {
    border-style: solid;
}

/* when full */
.invoice-dropzone.is-complete::before {
    width: 100%;
    min-width: 400px;
}

/* text color switch when filled */
.invoice-dropzone.is-complete {
    color: white;
}

.invoice-remove {
    border: 1px solid var(--dark-green);
    border-radius: 50px;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--dark-green);
    transition: 0.35s ease-in-out;
    cursor: pointer;

    &:hover {
        background-color: var(--dark-green-50);
    }
}

/* ================================================ */
/* SECTION DOCUMENTS */
/* ================================================ */

.documents-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--dark-green);
    padding: 20px;
    border-radius: 50px;
}

.documents-list {
    color: #fff;
}

.document {
    position: relative;
    margin-bottom: 15px;

    &:before {
        content: '';
        position: absolute;
        background-image: url('../images/document-icon.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        top: -2px;
        left: -40px;
        width: 30px;
        height: 30px;
    }

    & a {
        transition: 0.35s ease-in-out;

        &:hover {
            color: var(--mint);
        }
    }
}


/* =============================== */
/* PAGE THANK YOU */
/* =============================== */
/*  SECTION THANK YOU HEADER
/* =============================== */

.thankyou-header {
    text-align: center;
    margin-bottom: 30px;
    color: var(--main-green);

    & h1 {
        font-size: 3.5rem;
        font-weight: 600;
        color: var(--main-green);
    }
    & h2 {
        font-size: 1.7rem;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--main-green);
        margin-bottom: 50px;
    }
    & h3 {
        font-size: 1.5rem;
        font-weight: 400;
    }
    
}

.agents-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
}

.agent-card {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin: auto;
    max-width: 350px;
}

.image-wrapper {
    background-color: var(--main-green);
    border-radius: 40px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.image-wrapper-inner {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 40px;
}

.agent-img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.agent-name h3 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--green);
    /* margin-bottom: 10px; */
}

.agent-description p {
    text-align: center;
    color: var(--green);
    line-height: 1.2rem;
    min-height: 3rem;;
}

.specialty-wrapper {
    background-color: var(--dark-green);
    color: #fff;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 120px;

    & h4 {
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
    }
    & p {
        text-align: center;
        font-size: 0.9rem;
        font-weight: 300;
        line-height: 1.1rem;
        margin-bottom: 0;
    }
}

.agent-phone, .agent-email {
    color: var(--green);
    font-weight: 500;
    /* font-size: 1.1rem; */
}


.contact-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    gap: 20px;
    background-color: var(--green);
    padding: 20px 40px;
    border-radius: 30px;
    width: fit-content;

    & img {
        width: 50px;
    }

    & p {
        margin-bottom: 0;
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
    }
}
    


/* SECTION MEDIA QUERIES   /////////////////////////////// */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 992px) {
    .form-header h2 {
        margin-right: 20px;
    }

    .form-savings {
        padding: 20px;

        & h4 {
            font-size: 1.1rem;

            & .savings-value {
                font-size: 2.5rem;
            }
        }
    }

    /* PAGE STEP 2 */

    .main-summary {
        display: block;
        max-width: 100%;
        padding-bottom: 260px; /* space for fixed summary */
    }

    .main-summary .offers-wrapper {
        width: 100%;
    }

    .main-summary aside {
        position: fixed;
        left: -12%;
        right: 0;
        bottom: 0;
        width: min(90%, 420px);
        margin: 0 auto;
        padding-inline: 0;
        z-index: 999;
        transform: translateY(calc(100% - 60px));
        transition:
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.4s ease;
        will-change: transform;
    }
    
    .main-summary aside.show-summary {
        transform: translateY(calc(100% - 650px));
    }

    .main-summary aside .summary-wrapper {
        cursor: pointer;
    }

    .main-summary aside .container,
    .main-summary aside .row,
    .main-summary aside .col-12 {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .main-summary aside .summary-wrapper {
        width: 100%;
        z-index: 2;
        border: 10px solid #fff;
        box-sizing: border-box;

        &:before {
            content: '';
            position: absolute;
            background-image: url('../images/summary-bump.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 60px;
            z-index: -1;
            /* background-color: red */
        }

        &:after {
            content: '';
            position: absolute;
            background-image: url('../images/chevron.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 60px;
            z-index: 2;
        }
        
    }


    .large-usage-cta {
        flex-direction: column;

        & .cta {
            width: 100%;
            max-width: 300px;
        }
    }

      /* PAGE THANK YOU */

      .thankyou-page #banner {
        padding-bottom: 0;
      }

      .thankyou-header {
        & h1 {
            font-size: 2.5rem;
        }
        & h2 {
            font-size: 1.5rem;
        }
        & h3 {
            font-size: 1.3rem;
        }
      }

    .agents-wrapper {
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        gap: 50px;
        margin-bottom: 20px;
    }

    .agent-phone, .agent-email {
        font-size: 1.1rem;
        text-align: center;
    }

}

@media (max-width: 768px) {

    /* PAGE STEP 1 */

    .form-savings {
        right: -100px;

        & h4 {
            font-size: 1rem;

            & .savings-value {
                font-size: 2rem;
            }
        }
    }
    .form-header h2 {
        font-size: 1.5rem;
        margin-right: 30px;
    }

    #form .steps-wrapper {
        margin-top: 50px;
    }

    .simple-steps {
        flex-direction: column;
        gap: 30px;
    }

    .reviews-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .review-item-background {
        width: 100%;
    }

    /* PAGE STEP 2 */

    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    /* FORM */
    .form-background {
        padding: 50px 15px 35px 15px;
        border-radius: 50px;    
        max-width: 600px;
        margin: 0 auto;
    }

    .form-wrapper {
        padding: 35px 5%;
    }

}