#video-block {
  margin-bottom: 60px;
}
#video-block .overflow {
  position: relative;
  margin-top: 50px;
}
#video-block .slider__holder {
  width: 100%;
  overflow: hidden;
}
#video-block .item__slide {
  box-sizing: border-box;
  display: flex;
  height: 341px;
  background-color: #d2d2db;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
#video-block .item__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#video-block .btn-play {
  position: absolute;
  top: calc(50% - 38px);
  left: calc(50% - 38px);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background-image: linear-gradient(12.18deg, #002f6c -18.77%, #1c69b2 221.97%);
  background-color: #002f6c;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
#video-block .item__slide:hover .btn-play {
  background-image: linear-gradient(12.18deg, #002f6c -18.77%, #002f6c 221.97%);
  box-shadow: inset 0px 3px 14px #552727;
}
#video-block .gallery-main-photo {
  width: 570px;
  height: 570px;
  flex-shrink: 0;
  display: block;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  margin-right: 30px;
  outline: none;
}
#video-block .gallery-right-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#video-block .gallery-second-photo {
  width: calc(50% - 15px);
  height: 270px;
  margin-bottom: 30px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  outline: none;
}
#video-block .item__slide .image__holder .hover__effect {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(116, 56, 55, 0.8);
  opacity: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in;
  pointer-events: none;
}
#video-block .item__slide .image__holder:hover .hover__effect {
  opacity: 1;
}
#video-block .item__slide .item__image {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
#video-block .item__slide .image_1 {
  grid-row: 1/3;
}
#video-block .item__slide .image_3 {
  grid-column: 3/5;
}
#video-block .item__slide .image_4 {
  grid-column: 2/4;
}
#video-block .swiper-button-prev:after,
#video-block .swiper-button-next:after {
  display: none;
}
#video-block .swiper-button-prev,
#video-block .swiper-button-next {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid #002f6c;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  margin-top: 0;
}
#video-block .swiper-button-prev:hover,
#video-block .swiper-button-next:hover {
  background-color: #002f6c;
}
#video-block .swiper-button-prev path,
#video-block .swiper-button-next path {
  transition: fill 0.3s;
}
#video-block .swiper-button-prev:hover path,
#video-block .swiper-button-next:hover path {
  fill: #fff;
}
#video-block .swiper-button-prev {
  left: -80px;
}
#video-block .swiper-button-next {
  right: -80px;
}
@media (max-width: 1350px) {
  #video-block .swiper-button-prev {
    left: -15px;
  }
  #video-block .swiper-button-next {
    right: -15px;
  }
}

@media (max-width: 991px) {
  #video-block .item__slide {
    height: 240px;
    border-radius: 20px;
  }
  #video-block .overflow {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  #video-block .swiper-button-prev,
  #video-block .swiper-button-next {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 600px) {
  #video-block .item__slide {
    height: 175px;
  }
  #video-block .btn-play {
    width: 60px;
    height: 60px;
  }
}
