.banner-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.banner-wrap h1{
    margin-bottom: 0;
}
.about-description p a{
    color: var(--gray);
    text-decoration: none;
}
.about-description p a:hover{
    color: var(--secondary-color);
}
.about-content.bees-content{
    padding-bottom: 50px;
}
.video-section{
    position: relative;
}
#video{
    width: 100%;
    position: relative;
}
.play-button-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%);
	
}
.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}
.play-btn {
    width: 100px;
    height: 100px;
    background-color: rgb(0 0 0 / 30%);
    border-radius: 50%;
    opacity: 0.9;
    border: 3px solid var(--white);
    text-align: center;
    line-height: 90px;
    position: relative;
}
.play-btn svg {
    width: 55px;
    height: 55px;
    fill: var(--white);
    position: absolute;
    top: 51%;
    left: 54%;
    transform: translate(-50%, -50%);
}

.group {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.group iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#poster-image {
    background: url('../images/bees_video_cover.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    opacity: 1.0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    cursor: pointer;
}

strong{
    font-weight: bold;
}


/* responsive css */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .bees-banner-logo{
        width: 25%;
    }
    .about-content.bees-content {
        padding-bottom: 0px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .banner-wrap {
        padding: 40px 0 100px;
    }
    .bees-banner-logo{
        width: 25%;
    }
    .about-content.bees-content {
        padding-bottom: 0px;
    }
    .play-btn {
        width: 80px;
        height: 80px;
    }
    .play-btn svg {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 767px){
    .banner-wrap h1 {
        font-size: 22px;
        width: 50%;
        line-height: 26px;
    }
    a.bees-banner-logo{
        width: 40%;
    }
    .banner-wrap {
        padding: 40px 0 100px;
    }
    .play-btn {
        width: 50px;
        height: 50px;
    }
    .play-btn svg {
        width: 20px;
        height: 20px;
    }
    .about-content.bees-content {
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 767px){
    .banner-wrap h1 {
        font-size: 20px;
        width: 50%;
    }
    a.bees-banner-logo{
        width: 42%;
    }
    .play-btn {
        width: 40px;
        height: 40px;
    }
    .play-btn svg {
        width: 15px;
        height: 15px;
    }
}