.about {
    margin-top: 200px;
    margin-bottom: 120px;
    height: 439px;
}
.about h2 {
    font-size: 54px;
    color: white;
    font-weight: 900;
    margin: 60px 0 0;
    line-height: 1;
}
.about h2.white-bg {
    color: var(--color-button);
}
.about .columns {
    display: flex;
}
.about p {
    color: white;
    font-family: var(--font-osans);
    font-size: 21px;
    max-width: 400px;
}
.about .white-bg p {
    color: #222222;
}
.about span.button {
    width: 244px;
    height: 59px;
    display: flex;
    border-radius: 15px;
    background: var(--color-button);
    align-items: center;
    justify-content: center;
    color: #222222;
    font-family: var(--font-rubrik);
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
    cursor: pointer;
    transition: 0.2s;
}
.about span.button:hover {
    filter: brightness(0.85);
}
.about .white-bg span.button {
    color: white;
}
.about .video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 0 32px;
}
.about svg {
    position: absolute;
    height: 122px;
    width: 122px;
    background: var(--color-section);
    border-radius: 200px;
    fill: white;
    cursor: pointer;
    z-index: 1;
    transition: 0.2s;
}
.about svg:hover {
    transform: scale(1.05);
}
.about .white-bg svg {
    background: var(--color-button);
}
.about video,
.about iframe {
    width: 687px !important;
    height: 386px !important;
}

.about .hidden {
    display: none;
}

@media screen and (max-width: 1150px) {
    .about {
        margin-top: 100px;
        margin-bottom: 220px;
    }
    .about video,
    .about iframe {
        max-width: 100%;
        width: 560px !important;
        height: 315px !important;
    }
}

@media screen and (max-width: 880px) {
    .about .columns {
        flex-direction: column;
    }
    .about p {
        max-width: auto;
    }
    .about .video {
        margin: 0;
    }
}

@media screen and (max-width: 768px) {
    .about {
        margin-top: 50px;
    }
    .about h2 {
        font-size: 49px;
    }
    .about {
        margin-bottom: 0;
        height: auto;
        padding-bottom: 40px;
    }
}
