.story {
    padding: 229px 0 176px 0;
    background-color: #245852;
    color: #fff;
}

.story-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.story-content {
    margin-right: 30px;
    max-width: 580px;
}

.story-heading {
    font-size: 50px;
    line-height: 157%;
    font-weight: 700;
    font-family: 'Georgia', serif;
}

.story-heading + * {
    margin-top: 33px;
}

.story-text {
    font-weight: 600;
    font-size: 25px;
    line-height: 157%;
}

.story-text + * {
    margin-top: 57px;
}

.story-btn {
    display: flex;
}

.story-video-object {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

.story-video {
    max-width: 895px;
    cursor: pointer;
}

.story-video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.story-video-wrapper {
    position: relative;

}

.story-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 17px;
}

.story-video-object {
    border-radius: 17px;
}

@media (max-width: 1199px) {
    .story {
        padding: 90px 0 90px;
    }

    .story-video {
        margin-bottom: 40px;
    }

    .story-heading {
        font-size: 40px;
        line-height: 130%;
    }

    .story-text {
        font-size: 20px;
        line-height: 130%;
    }
}

@media (max-width: 991px) {
    .story {
        padding: 60px 0 60px;
    }

    .story-row {
        flex-direction: column-reverse;
    }

    .story-text {
        font-size: 18px;
    }

    .story-heading {
        font-size: 30px;
    }

}