/* About page */

.about__wrp {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.about-text {
    width: calc(50% - 24px);
    margin-right: 48px;
    background: #fff;
    border-radius: 15px;
}

.about-text p {
    color: var(--title);
}

.about-video {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 24px);
    border-radius: 15px;
}

.about-video-bg {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80px;
    width: 80px;
    z-index: 2;
}

@media (max-width: 1000px) {
    .about__wrp {
        flex-direction: column;
    }

    .about-video-bg {
        width: 100%;
    }

    .about-text {
        width: 100%;
        order: 1;
        padding: 0;
        margin-right: 0;
        margin-top: 24px;
    }

    .about-video {
        width: 100%;
    }
}