.special {
  position: relative;
  overflow: hidden;
}
.special .bg-wrp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.special .bg-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special .img-wrp {
  position: absolute;
  top: 0;
  left: 0;
  width: 72.7%;
  height: 100%;
  z-index: 2;
}
.special .img-wrp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.special .container {
  position: relative;
  z-index: 3;
}
.special .container .row {
  justify-content: flex-end;
}
.special .scroll-down {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  cursor: pointer;
}
.special .scroll-down img {
  animation: movedown 0.7s infinite alternate;
}
.special .container .row .col-lg-7 {
  position: relative;
  padding-bottom: 128px;
  padding-top: 316px;
  color: white;
  padding-left: 62px;
}
.special .container .row .col-lg-7::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: rgba(28, 28, 28, 0.89);
  backdrop-filter: blur(1px) brightness(1.05);
  z-index: -1;
}
.special .container .row .col-lg-7 h2 {
  margin-bottom: 34px;
}
.special .container .row .col-lg-7 .button {
  margin-top: 40px;
  margin-bottom: 45px;
}
.special .container .row .col-lg-7 .gallery {
  display: flex;
}
.special .container .row .col-lg-7 .gallery a {
  display: flex;
  margin-right: 10px;
  width: calc(20% - 8px);
  height: 0;
  padding-bottom: calc(20% - 8px);
  position: relative;
  overflow: hidden;
}
.special .container .row .col-lg-7 .gallery a:last-child {
  margin-right: 0;
}
.special .container .row .col-lg-7 .gallery a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 250ms ease;
}
.special .container .row .col-lg-7 .gallery a:hover img {
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .special .container .row .col-lg-7 {
    padding-top: 150px;
    padding-left: 30px;
  }
}
@media (max-width: 768px) {
  .special .container .row .col-lg-7 {
    padding-top: 80px;
  }
  .special .container .row .col-lg-7 .gallery a {
    width: calc(50% - 12px);
    padding-bottom: calc(50% - 12px);
    margin-bottom: 12px; 
  }
  .special .container .row .col-lg-7 .gallery {
    flex-wrap: wrap;  
  }
  .special .container .row .col-lg-7 .gallery a:last-child {
    display: none; 
  }
}
@media (max-width: 480px) {
  
}