/* template: over kepser */
.video {
    position: relative;
    overflow: hidden;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 1;
    background-color: #00565d;
}
.video .play_btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    visibility: visible;
    opacity: 1;
    transition: visibility ease 0.15s, opacity ease 0.15s;
    z-index: 1000;
    background-image: url("../../images/video-play_btn.svg");
    background-position: center;
    background-size: 160px;
    background-repeat: no-repeat;
}
.video .play_btn.active {
    visibility: hidden;
    opacity: 0;
    background-image: url("../../images/video-pause_btn.svg?2");
}
.video video {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}
/* responsive-ness */
@media screen and (max-width: 1300px) {
    /* template: over kepser */
    .video .play_btn {
        display: none;
        background-size: 80px;
    }
}
@media screen and (max-width: 1000px) {
    /* template: over kepser */
}



/* values 2024 */
.row.over_kepser_values {
    background: #efefef;
}
.row.over_kepser_values .page_content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 100px;
    padding: 5% 0;
}
.row.over_kepser_values .page_content .col {
    width: 50%;
    text-align: center;
    padding: 0 6%;
    box-sizing: border-box;
}
.row.over_kepser_values .page_content .col img {
    display: block;
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 2em;
}

@media screen and (max-width: 1000px) {
    .row.over_kepser_values .page_content {
        flex-direction: column;
        row-gap: 30px;
    }
    .row.over_kepser_values .page_content .col {
        width: 100%;
        padding: 0 0%;
    }

}

