.about-hero {
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 40px;
}

.about-hero .hero__content {
    display: flex;
    flex-direction: column;
    gap: 10px 10px;
}

.about-hero .hero__subtitle {
    text-align: center;
    font-size: 1.725rem;
    font-weight: 400;
    line-height: 1.3em;
    color: #c1955d;
    font-family: 'greatVibes';
}

@media only screen and (max-width: 768px) {
    .about-hero .hero__subtitle {
        font-size: 1.5rem;
    }
}

.about-hero .hero__title {
    text-align: center;
    line-height: 1.4em;
    font-size: 4.25rem;
    font-weight: 400;
    font-family: 'playFairRegular', serif;
    color: #4c423a;
    margin: 0 0 !important;
}

@media only screen and (max-width: 768px) {
    .about-hero .hero__title {
        font-size: 3rem;
    }
}

.bento-grid-box {
    padding: 80px 0;
}

.bento-grid-box .bento-grid-box__content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 100px;
    place-content: center;
}

.bento-grid-box .bento-grid-box__content .bento-grid-box__content_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

@media only screen and (max-width: 768px) {
    .bento-grid-box .bento-grid-box__content .bento-grid-box__content_box {
        flex-direction: column;
        gap: 20px;
    }
}

.bento-grid-box .bento-grid-box__content .bento-grid-box__content_box:nth-child(even) {
    flex-direction: row-reverse;
}

@media only screen and (max-width: 768px) {
    .bento-grid-box .bento-grid-box__content .bento-grid-box__content_box:nth-child(even) {
        flex-direction: column;
    }
}

.bento-grid-box .bento-grid-box__content img {
    width: 50%;
    aspect-ratio: 5/4;
    height: auto;
    object-fit: cover;
}

@media only screen and (max-width: 768px) {
    .bento-grid-box .bento-grid-box__content img {
        width: 100%;
    }
}

.bento-grid-box .bento-grid-box__content h3 {
    line-height: 1.3em;
    color: #4c423a;
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'greatVibes';
    margin-top: 15px;
}

@media only screen and (max-width: 768px) {
    .bento-grid-box .bento-grid-box__content h3 {
        font-size: 2rem;
    }
}

.bento-grid-box .bento-grid-box__content p {
    line-height: 1.3em;
    color: #4c423a;
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    font-family: 'playFairRegular';
    margin-top: 15px;
}

.timeline .timeline__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'greatVibes';
    color: #4c423a;
    margin-bottom: 40px;
}

.timeline .timeline__title {
    text-align: center;
    line-height: 1.4em;
    font-size: 4.25rem;
    font-weight: 400;
    font-family: 'playFairRegular', serif;
    color: #4c423a;
    margin: 0 0 !important;
}

@media only screen and (max-width: 768px) {
    .timeline .timeline__title {
        font-size: 3rem;
    }
}

.timeline .container {
    text-align: center;
    max-width: 957px;
    font-family: 'playFairRegular' !important;
}

.timeline .timeline__content {
    position: relative;
    font-family: 'playFairRegular' !important;
}

.timeline .timeline__content::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #4c423a;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.left .content {
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::before {
    content: " ";
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background-color: #4c423a;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.content {
    position: relative;
}

@media only screen and (max-width: 768px) {
    .timeline-item {
        text-align: start;
    }
}

.content h3 {
    font-size: 1.275rem;
}

@media only screen and (max-width: 768px) {
    .content h3 {
        text-align: start !important;
    }
}

.timeline-item.left .content {
    margin-left: auto;
}

.timeline-item.right .content {
    margin-right: auto;
}

@media only screen and (max-width: 768px) {
    .timeline-item.left .content {
        text-align: left;
    }

    .timeline .timeline__content::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left {
        left: 0%;
    }

    .timeline-item::before {
        left: 10px !important;
    }
}