.introduction {
  height: 800px;
  background: rgb(74, 101, 156);
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.introduction::before {
  content: "";
  width: 500px;
  height: 500px;
  border-radius: 100%;
  border: 100px solid rgba(255, 255, 255, 0.13);
  position: absolute;
  bottom: 0;
  left: -200px;
}
.introduction__slider {
  height: 100%;
}
.introduction__slider-controls {
  height: 100px;
  width: 100%;
  display: flex;
  gap: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.introduction__slider-pr, .introduction__slider-nx {
  display: flex;
  width: 50px;
  height: 25px;
  background: url(../icons/arrow-slider.svg) no-repeat center center;
  cursor: pointer;
}
.introduction__slider-nx {
  transform: rotate(180deg);
}
.introduction__slider-pg {
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 120%;
  -webkit-text-stroke: 1px #ffffff;
  -webkit-text-fill-color: transparent;
}
.introduction__item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0 !important;
}
.introduction__item-desc {
  width: 55%;
}
.introduction__item-title {
  font-style: normal;
  font-weight: bold;
  font-size: 56px;
  line-height: 120%;
  color: #ffffff;
  margin-bottom: 20px;
}
.introduction__item-text {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  color: #ffffff;
  margin-bottom: 50px;
}
.introduction__item-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.introduction__item-button {
  padding: 15px 45px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  border-radius: 5px;
  transition: 0.3s;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  cursor: pointer;
  color: #ffffff;
}
.introduction__item-button:hover {
  background: #ffffff;
  color: #263238;
}
.introduction__item-button.white {
  background: #ffffff;
  color: #263238;
}
.introduction__item-button.white:hover {
  background: transparent;
  color: #ffffff;
}
.introduction__item-img {
  width: 45%;
}
.introduction__item-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: breathing 4s ease 1.5s infinite normal;
          animation: breathing 4s ease 1.5s infinite normal;
}
.introduction__bglines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.introduction__bglines span {
  height: 100%;
  width: 3px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
}
.introduction__bglines span::before {
  content: "";
  background: rgb(74, 101, 156);
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100%;
  transition: 0.3s;
}
.introduction__bglines span:nth-child(1)::before {
  display: none;
}
.introduction__bglines span:nth-child(2)::before {
  -webkit-animation: moving 45s ease infinite normal;
          animation: moving 45s ease infinite normal;
}
.introduction__bglines span:nth-child(3)::before {
  -webkit-animation: moving 22s ease infinite normal;
          animation: moving 22s ease infinite normal;
}
.introduction__bglines span:nth-child(4)::before {
  -webkit-animation: moving 80s ease infinite normal;
          animation: moving 80s ease infinite normal;
}
.introduction__bglines span:nth-child(5)::before {
  -webkit-animation: moving 15s ease infinite normal;
          animation: moving 15s ease infinite normal;
}

@-webkit-keyframes moving {
  0% {
    top: 5%;
  }
  25% {
    top: 50%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 5%;
  }
}

@keyframes moving {
  0% {
    top: 5%;
  }
  25% {
    top: 50%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 5%;
  }
}
@-webkit-keyframes breathing {
  0% {
    transform: scale(0.95);
  }
  25% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.95);
  }
}
@keyframes breathing {
  0% {
    transform: scale(0.95);
  }
  25% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.95);
  }
}
.swiper {
  height: 100%;
}
.swiper-slide-active {
  opacity: 1 !important;
}
.swiper-slide-active .introduction__item-title {
  -webkit-animation: fadeInLeft;
          animation: fadeInLeft;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}
.swiper-slide-active .introduction__item-text {
  -webkit-animation: fadeInLeft;
          animation: fadeInLeft;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
.swiper-slide-active .introduction__item-buttons {
  -webkit-animation: fadeInLeft;
          animation: fadeInLeft;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
.swiper-slide-active .introduction__item-img {
  -webkit-animation: fadeInRight;
          animation: fadeInRight;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

@media (max-width: 992px) {
  .introduction {
    height: unset;
    padding-top: 90px;
  }
  .introduction::before {
    width: 400px;
    height: 400px;
  }
  .introduction__item {
    flex-direction: column-reverse;
  }
  .introduction__item-desc {
    width: 100%;
  }
  .introduction__item-title {
    font-size: 46px;
    text-align: center;
  }
  .introduction__item-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }
  .introduction__item-buttons {
    justify-content: center;
    margin-bottom: 90px;
  }
  .introduction__item-img {
    width: 50%;
  }
  .introduction__slider {
    justify-content: space-between;
  }
  .introduction__slider-pr {
    order: 1;
  }
  .introduction__slider-pg {
    order: 2;
    width: unset;
    justify-content: center;
    text-align: center;
  }
  .introduction__slider-nx {
    order: 3;
  }
  .introduction__bglines span:nth-child(4) {
    display: none;
  }
}
@media (max-width: 768px) {
  .introduction::before {
    bottom: -60px;
    left: -250px;
  }
  .introduction__item-title {
    font-size: 36px;
  }
  .introduction__bglines span:nth-child(1) {
    display: none;
  }
}
@media (max-width: 576px) {
  .introduction__item-title {
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 15px;
  }
  .introduction__item-desc {
    font-size: 14px;
    line-height: 140%;
  }
  .introduction__item-buttons {
    margin-bottom: 80px;
  }
  .introduction__slider-controls {
    height: auto;
    bottom: 20px;
    padding: 0 40px;
  }
  .introduction__slider-pg {
    font-size: 36px;
  }
}