.video-section {
    background-image: url('/img/fifth-section/video-bg1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: #f3f3f3;
    height: 650px;
}

.video-section iframe {
    height: inherit;
    width: inherit;
    object-fit: cover;
}

.video-section-text {
    height: 650px;
}

.content {
    position: relative;
}

.play-button {
    display: block;
    margin: 0 auto;
}

.video-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1;
}

video {
    max-width: 100%;
    max-height: 100%;
}

.close-button-container {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.play-btn {
    width: 102px;
    height: 102px;
    background: #5AA1E3 url('/img/fifth-section/video-icon.png') no-repeat left top;
    background-size: 102px;
    margin: -50px 0 0 -50px;
    position: absolute;
    opacity: 0.8;
    border-radius: 100%;
    transition: background-color 0.3s ease-in-out;
}

.play-btn:hover {
    background-color: #5AA1E3 !important;
}