.tasting-experiences {
    padding: 60px 0;
    position: relative;
    background: #ceb35726;
}
.video-review {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.video-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.video-review .tasting-title {
    color: #FFF;
    font-size: var(--fs-20);
    text-align: center;
    font-family: "DM Sans", sans-serif;
    background: rgb(206 179 87);
    max-width: fit-content;
    margin: 0 auto 20px;
    display: block;
    padding: 8px 24px;
    text-transform: uppercase;
    clip-path: polygon(100% 0%, calc(100% - 0.75rem) 50%, 100% 100%, 0 100%, 0.75rem 50%, 0 0);
}
.video-review .fs-35 {
    text-align: center;
    margin: 0 auto 40px;
}
.video-test {
    position: relative;
}
.video-palyer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    line-height: 1;
    border: 1px solid;
    color: #FFFFFF;
    border-color: #FFFFFF;
    background: #ceb357;
    border-radius: 50%;
    transition: all .4s ease-in-out;
}
.circle-1 {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #FFF;
    z-index: -1;
    animation: circle-fade-before 2s infinite ease-in-out;
    -webkit-animation: circle-fade-before 2s infinite ease-in-out;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.video-palyer:hover {
    border-color: #6C6D70;
    background-color: #6C6D70;
}
.video-palyer:hover .circle-1 {
    border-color: #6C6D70;
}
.myVideoReviews .swiper-button-next::after, 
.myVideoReviews .swiper-button-prev::after {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 2px #6C6D70;
}
.video-thumbnail {
    overflow: hidden;
    position: relative;
    transition: all .4s ease;
}
.video-test img {
    transition: all .5s linear;
}
.video-test:hover img {
    transform: scale(1.1);
    filter: brightness( 75% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );
}
#videoPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    padding: 0 10px;
    transition: all .4s ease;
}
#videoPopup.show {
    display: block;
}
span.close-pop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    transition: all .4s ease-in-out;
}
.popup-body {
    max-width: 800px;
    width: 100%;
    position: relative;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -05%);
    background: #FFF;
    padding: 4px;
    line-height: 0;
    border-radius: 4px;
}
.popup-body video {
    width: 100%;
    height: 100%;
}
.close-popup {
    position: absolute;
    top: -40px;
    right: -10px;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 0 8px;
}
@media (max-width: 991px) {
    .tasting-experiences {
        padding: 40px 0;
    }
    .video-review .fs-35 {
        margin-bottom: 20px;
    }
}
@keyframes circle-fade-before {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    10% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}