.how-to-order {
    padding-top: 48px;
    padding-bottom: 80px;
}
.how-to-order__main {
    margin-bottom: 32px;
}
.how-to-order__main a {
    color: #161513;
}
.how-to-order__main__title {
    margin-bottom: 24px;
    font-size: 34px;
    font-weight: 600;
    line-height: 45px;
}
.how-to-order__main__info {
    margin-bottom: 16px;
}
.how-to-order__card-container__card {
    position: relative;
    border-radius: 15px;
    aspect-ratio: 1.715;
    margin-bottom: 16px;
    background-size: contain;
}
.how-to-order__card-container__card__play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    cursor: pointer;
}
.how-to-order__card-container__card__play-button img {
    transform: translateX(2px);
}
.how-to-order__card-container__video-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
}
.how-to-order__modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100vh;
    top: 0;
}
.how-to-order__modal.active {
    display: flex;
}
.how-to-order__modal__background {
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(22, 21, 19, 0.3);
    cursor: pointer;
    z-index: 1;
}
.how-to-order__modal video {
    width: 60%;
    z-index: 10;
}

video {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .how-to-order__main__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
    }
    .how-to-order__card-container__video-title {
        margin-bottom: 32px;
    }
}