.gallery {
  position: relative;
  height: 717px;
}

.gallery__title {
  position: absolute;
  top: 60px;
  z-index: 100;
  color: rgb(255, 255, 255);
  font-size: 22px;
  line-height: 30px;
}

.gallery__name {
  bottom: 14%;
  width: 429px;
  height: 41px;
  position: absolute;
  color: rgb(255, 255, 255);
  z-index: 100;
}

.gallery__controls {
  display: flex;
  justify-content: space-between;
  width: 93px;
  position: absolute;
  bottom: 163px;
  left: 35px;
  z-index: 15;
}

.gallery__control-next,
.gallery__control-prev {
  background-image: url("../resources/arrow.png");
  width: 40px;
  height: 40px;
  border: none;
  background-color: inherit;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.gallery__control-next {
  transform: rotate(180deg);
}

.gallery__control-prev:hover {
  opacity: 50%;
}

.gallery__control-next:hover {
  opacity: 50%;
}

.gallery__slides {
  position: relative;
}

.gallery__slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 717px;
  width: 100%;
  opacity: 0;
}

.gallery__slide_active {
  opacity: 1;
}

.gallery__img {
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.gallery__img_forest {
  background-image: url("../resources/Rectangle 10.png");
}

.gallery__img_living {
  background-image: url("../resources/living.png");
}

.gallery__img_kitchen {
  background-image: url("../resources/kitchen.png");
}

.gallery__img_wind {
  background-image: url("../resources/wind.png");
}

@media (max-width: 1199px) {
  .gallery {
    height: 536px;
  }

  .gallery__title {
    top: 80px;
    left: 51px;
    font-size: 20px;
  }

  .gallery__name {
    left: 50px;
    bottom: 20%;
    width: 357px;
  }

  .gallery__controls {
    bottom: 152px;
    left: 43px;
  }

  .gallery__slide {
    height: 536px;
  }
}

@media (max-width: 767px) {
  .gallery {
    height: 387px;
  }

  .gallery__title {
    left: 12px;
    top: 40px;
    font-size: 14px;
    line-height: 19px;
  }

  .gallery__name {
    bottom: 18%;
    left: 14px;
    width: 257px;
  }

  .gallery__controls {
    top: 44%;
    left: 14px;
    width: calc(100% - 25px);
  }

  .gallery__control-prev {
    width: 14.71px;
    height: 25px;
  }

  .gallery__control-next {
    width: 14.71px;
    height: 25px;
  }

  .gallery__slide {
    height: 387px;
  }
}
