.header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.top-container {
    width: 100%;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
}

.bottom-container {
    width: 100%;
    background-color: #FDCA41;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 12px 16px;
    gap: 16px;
}

.header-feature {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.header-feature:not(:last-child) {
    border-right: solid 1px #141836;
    padding-right: 16px;
}

.header-feature__image {
    display: none;
}

.top-text {
    color: rgba(242, 239, 234, 1);
    font-size: 15px;
    font-weight: 450;
    text-align: center;
    line-height: 20px;
}

.header-feature__text {
    color: #141836;
    font-size: 12px;
    font-weight: 450;
}

.products {
    background-color: #F2EFEA;
    padding: 24px 16px 58px 16px;
}

.checkout__title {
    margin: 0 auto;
    color: var(--color-primary);
    font-size: 28px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: -0.2px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    max-width: 977px;
}

.products__cards {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 59px;
}

.refund-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 970px;
    margin: 0 auto;
    gap: 15px;

    margin-top: 48px;
}

.refund__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.refund__header--icon {
    width: 26px;
    height: auto;
}

.refund__header--text {
    color: var(--color-primary);
    font-size: 16px;
    line-height: 27px;
    font-weight: 450;
}

.refund__cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.refund__header--card {
    height: 30px;
    width: auto;
}

@media (min-width: 769px) {

    .bottom-container {
        gap: 36px;
    }

    .header-feature:not(:last-child) {
        border-right: none;
        padding-right: 0;
    }

    .top-text {
        font-size: 18px;
        line-height: 27px;
    }

    .header-feature__text {
        font-size: 15px;
    }

    .header-feature__image {
        display: block;
        height: auto;
    }

    .fire {
        width: 18px;
    }

    .happy {
        width: 22px;
    }

    .shield {
        width: 20px;
    }

    .checkout__title {
        font-size: 48px;
        line-height: 68px;
        margin-bottom: 100px;
    }
}

@media (min-width: 1024px) {

    .products__cards {
        flex-direction: row;
        gap: 20px;
    }

    .checkout__title {
        font-size: 50px;
        padding-bottom: 60px;
    }

    .refund-block {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 52px;
        padding-block: 24px;
    }

    .products {
        padding: 62px 24px 24px 24px;
    }
}