.gallery-banner {
  position: relative;
  z-index: 10;
  background-image: url(../image/gal-ban.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 500px;
}

.gallery {
  text-align: center;
  margin: 100px 0;
}

.gal-con {
  display: none;
  margin-bottom: 30px;
}

.new-con {
  margin-top: 77px;
}

.gallery-img {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.gallery-img::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

.gallery-img:hover::before {
  animation: 0.75s shining;
}
@keyframes shining {
  100% {
    left: 125%;
  }
}

.gallery-btn {
  margin-top: 3%;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
  padding: 10px 12px;
  background-color: var(--primary-color);
}

.icon_one {
  display: inline-block;
  width: 7%;
  margin-right: 15px;
}

.icon_one img {
  width: 100%;
}

.icon_two {
  display: inline-block;
  width: 7%;
}

.icon_two img {
  width: 100%;
}

.gallery .new-btn {
  background-color: #ffffff;
  margin-left: 0;
  margin-top: 45px;
  box-shadow: 0 4px 4px 0 rgba(119, 40, 43, 0.2);
}

.gallery .btn-txt {
  color: var(--primary-color);
}

.gallery-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  transition: all 250ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.modal--bg {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.modal__content {
  position: absolute;
  top: 30%;
  width: 600px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100px);
  transition: all 250ms ease-in-out;
  z-index: 999;
}

.modal__content--show {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.modal__img {
  width: 100%;
}

.modal__close {
  position: absolute;
  top: -45%;
  right: -95%;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  z-index: 3;
}

.modal__left {
  margin: 0 auto;
  width: 100%;
}

.video {
  text-align: center;
  margin-bottom: 100px;
}

.video-slide {
  margin-top: 77px;
  background-image: url(../image/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 20px 0;
}

.slider-video {
  position: relative;
  overflow: hidden;
  width: 93%;
  height: 208px;
  z-index: 0;
  border-radius: 25px;
  padding: 15px 12px;
  border: 3px solid #fff;
  margin: 0 auto;
}

.slider-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.video-slide .owl-carousel .owl-nav.disabled {
  display: block;
}

.video-slide .owl-dots {
  display: none !important;
}

.video-slide .owl-nav {
  width: 5%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%);
}

.video-slide .owl-nav button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff !important;
  color: #ff0000 !important;
  border: 1px solid rgba(0, 52, 135, 0.65) !important;
}

/* .video-slide .owl-nav button.owl-prev {
  left: 5%;
}

.video-slide .owl-nav button.owl-next {
  right: 5%;
} */
