.saving-brick {
    width: 100%;
    margin: 65px 0;
}

.saving-brick-header {
    width: 100%;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.saving-title {
    width: 100%;
    text-transform: uppercase;
    margin-block-end: 20px;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
}

.saving-brick-header p {
    margin-bottom: .9rem;
}

.saving-wrapper {
    width: 99%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    max-width: 1400px;
    margin: 20px auto 0 auto;
}

.saving-card {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 28px;
    gap: 30px;
}

.saving-card-img-container {
    width: 100%;
    height: auto;
}

.saving-card-description-img-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.saving-card-description-img-container {
    width: 30%;
    height: auto;
    margin: 0;
}

.saving-card-img-container picture img,
.saving-card-description-img-container picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
}

.saving-card-img-container picture img {
    height: 500px;
    max-height: 500px;
}

.saving-card-description-container {
    width: 70%;
    height: auto;
    margin: 0;
}

.saving-card-title {
    width: 100%;
    text-transform: uppercase;
    padding: 20px 20px 0 20px;
}

.saving-card-title h2 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.saving-card-description {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0 20px 0 20px;
    line-height: 1.5;
}

/* Media query  */
@media (max-width: 768px) {
    .saving-wrapper,
    .saving-card-description-img-wrapper {
        flex-direction: column;
    }

    .saving-card {
        width: 95%;
        margin: 20px auto;
    }

    .saving-card-description-img-container,
    .saving-card-description-container {
        width: 95%;
        margin: 20px auto;
    }
}