.home-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 1em;
    padding-right: 1em;

    padding-top: max(10vh, 70px);
}

.home-banner-title {
    --font-size-multiplier: 2.1;
    font-weight: 600;
    margin-bottom: .7em;

    text-align: center;
}

.home-banner-desc {
    --font-size-multiplier: 1.1;
    font-weight: 300;

    text-align: center;
}

.home-body {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;

    padding-top: max(5vh, 50px);
}








/** how it works section **/
.how-it-works {
    margin-top: 5em;
    padding-top: 60px;
    padding-bottom: 60px;

    background-color: rgba(255, 255, 0, 0.04);
}

.how-it-works-title {
    --font-size-multiplier: 1.7;
    margin-bottom: .7em;
    text-align: center;
    line-height: 1.3;
}

.how-it-works-steps {
    display: flex;
    align-items: flex-start;
    column-gap: 3em;

    max-width: 1100px;
    padding-left: 1.5em;
    padding-right: 1.5em;

    margin-left: auto;
    margin-right: auto;
}

.how-it-works-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.how-it-works-step-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.how-it-works-step-title {
    font-weight: 600;
    --font-size-multiplier: 1.4;
    text-align: center;
    line-height: 1.3;
    margin-bottom: .7em;
}

.how-it-works-step-desc {
    line-height: 1.3;
    font-weight: 300;
    text-align: center;
}

.how-it-works-footer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.how-it-works-footer-cta {
    display: inline-flex;
    padding: 1.2em 2.6em;
    border-radius: 3px;
    color: white;
    background-color: #5e5d5d;
    transition: filter 199ms ease-in-out;
    text-transform: uppercase;
}

.how-it-works-footer-cta:hover {
    filter: brightness(1.3);
}


@media (max-width: 960px) {
    .how-it-works-steps {
        flex-direction: column;
        column-gap: initial;
        row-gap: 3em;
    }
}





/** value provided **/
.value-provided {
    padding-top: 7em;
    padding-bottom: 5em;
}

.value-provided-title {
    --font-size-multiplier: 1.7;
    text-align: center;
    line-height: 1.3;

}

.value-provided-steps {
    margin-top: 3em;
    display: flex;
    flex-direction: column;
}

.value-provided-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: #add8e630;
    padding-top: 50px;
    padding-bottom: 50px;
}

.value-provided-step-content {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 30px;
}

.value-provided-step-content-info {
    flex: 1;
    text-align: right;
    padding-top: 6%;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.value-provided-step-content-image {

}

.value-provided-step-content-image img {
    display: block;
    width: 250px;
    height: 250px;
    object-fit: contain;
    object-position: center bottom;
}


.value-provided-step:nth-child(2) {
    background-color: #f0808021;
}
.value-provided-step:nth-child(3) {
    background-color:#ffff000a;
}

.value-provided-step:nth-child(even) .value-provided-step-content {
    flex-direction: row-reverse;
}

.value-provided-step:nth-child(even) .value-provided-step-content-info {
    text-align: left;
    align-items: flex-start;
}

.value-provided-step-title {
    --font-size-multiplier: 1.5;
    font-weight: 500;
    margin-bottom: .7em;
}

.value-provided-step-subtitle {
    font-weight: 600;
    margin-bottom: .7em;
}

.value-provided-step-desc {
    max-width: 500px;
    font-weight: 300;
}

@media (max-width: 768px) {

    .value-provided-title {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .value-provided-step {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .value-provided-step-content {
        max-width: initial;
        column-gap: initial;
        flex-direction: column!important;
        align-items: center;
    }

    .value-provided-step-content-info {
        padding-top: initial;
        align-items: center!important;
        text-align: center!important;
        margin-bottom: 1em;
    }

    .value-provided-step-content-image img {
        width: 180px;
        height: 180px;
    }
}



/** faq **/
.faq {
    padding-top: 7em;
    padding-bottom: 5em;
    background: linear-gradient(0deg, rgba(177, 228, 254, 0.38) -21.6%, rgba(255, 255, 255, 0) 80.48%);
    background-size: cover;
}

.faq-title {
    --font-size-multiplier: 1.7;
    text-align: center;
    line-height: 1.3;
}


.faq-contents {
    margin-top: 3em;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contents dt {
    display: block;
    border-bottom: 1px solid rgba(0,0,0,.1);
    user-select: none;

    font-weight: 600;
    color: black;
    --font-size-multiplier: 1.3;
    padding-top: .7em;
    padding-bottom: .7em;
    line-height: 1.3;
}

.faq-contents dd {
    padding: 1em;
    border-radius: .7em;
    background: rgba(0, 0, 0, .1);
}

.faq-contents dt[tabindex] {
    cursor: pointer;

    background: no-repeat right 1em center url("./../img/icons/plus.png");
    background-size: .8em auto;

    padding-right: 60px;
}

.faq-contents dt[aria-expanded="true"] {
    border-bottom-color: transparent;
    background-image: url("./../img/icons/dash.png");
}

.faq-contents dt[aria-expanded="true"] + dd {
    margin-bottom: 1em;
}

@media (max-width: 720px) {
    .faq {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .faq-contents dt {
        --font-size-multiplier: 1.2;
    }
}