.about--section {
    padding-top: 80px;
    background-color: #fff;
    padding-bottom: 110px;
}

@media (max-width: 575px) {
    .about--section {
        padding-top: 80px;
        background-color: #fff;
        padding-bottom: 50px;
    }
}

/* subtitle */

.about--section-title {
    font-weight: 700;
    max-width: 600px;
}

.about--section-subtitle {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-main-grey);
}

.statement--button.for-about {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
    color: #fff;
}

.statement--button.for-about:hover,
.statement--button.for-about:focus {
    border-color: var(--color-secondary-hover);
    background-color: transparent;
    color: var(--color-secondary);
}

/* about video */

.about--video {
    width: 80%;
    max-width: 350px;
    height: 430px;
    margin: auto;
    border-radius: 40px;
    object-fit: cover;
}

@media (max-width: 575px) {
    .about--video {
        width: 100%;
        max-width: 350px;
        height: 400px;
        margin: auto;
        border-radius: 40px;
        object-fit: cover;
    }
}

.about--video-logo {
    position: absolute;
    text-orientation: sideways;
    object-fit: contain;
    width: 200px;
    height: 30px;
    transform: rotate(270deg);
    bottom: 45%;
    right: -8%;
}

/* meals */

.about--meal {
    margin: auto;
    width: 200px;
    max-height: 200px;
    aspect-ratio: 1/1;
    background-color: rgb(242, 242, 242);
    border: 2px solid var(--bs-body-bg);
    border-radius: 50%;
    padding: 15px;
    box-shadow: 7px 17px 9px #dcdcdc;
    position: relative;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .about--meal {
        width: 150px;
        max-height: 150px;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .about--meal img {
        transform: translateY(-20px) !important;
    }
}

.about--meal:hover img {
    transform: translateY(-20px) !important;
}

.about--meal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about--meal .about--meal-subtitle {
    position: absolute;
    bottom: -40px;
    left: 0px;
    right: 0px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    background-color: var(--background-meal-subtitle);
    border-radius: 2px;
    padding: 5px 10px;
    font-size: 13px;
    visibility: hidden;
}

@media (max-width: 767px) {
    .about--meal .about--meal-subtitle {
        visibility: visible;
    }
}

.about--meal:hover .about--meal-subtitle,
.about--meal:focus .about--meal-subtitle {
    visibility: visible;
}
