.history {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column-reverse;
}

.history .image-container {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 16px;
    max-height: 600px;

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.history .tittle {
    font-size: 2rem;
}

.history .text {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-top: 16px;
}

@media screen and (min-width: 768px) {
    .history {
        padding-top: 64px;
        padding-bottom: 64px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .history>*:not(:last-child) {
        margin-right: 24px;
    }
}

.family>* {
    margin-inline: auto;
    text-align: center;
}

.special-container {
    padding-top: 32px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.special-container>*:not(:last-child) {
    margin-bottom: 16px;
}

.special-list>*:not(:last-child) {
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
    .special-container {
        padding-top: 64px;
        padding-bottom: 64px;
        flex-direction: row;
        align-items: center;
    }
}


.mission {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
}