.swiper-wrapper {
  width: 100%;
}

.swiper {
  height: 100%;
}

.swiper-slide-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1300px) {
  .full-width-header {
    width: 100%;
    height: auto !important;
    padding: 0px !important;
  }

  .full-width-header-bg {
    background-image: url("../images/img/slide/slide-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: auto !important;
    width: 100%;
    border-radius: 1rem;
    padding: 0px !important;
    text-align: center;
  }

  .swiper {
    width: 100%;
  }
  .swiper-slide-item {
    flex-direction: column;
  }
  .navigation-area {
    display: none !important;
  }

  .navigation-area .button-prev {
    display: none;
  }

  .navigation-area .button-next {
    display: none;
  }

  .slide-item-title {
    width: 100% !important;
    font: normal normal 600 2rem Montserrat !important;
    letter-spacing: 0px;
    color: #3e3e3e;
    text-align: center !important;
    margin-bottom: 1rem !important;
  }

  .item-image {
    padding: 1rem !important;
  }

  .slide-item-content {
    width: 100% !important;
    text-align: center !important;
    font: normal normal normal 1rem Montserrat !important;
    letter-spacing: 0px;
    color: #808080;
  }

  .btn-incele {
    margin-bottom: 1rem !important;
  }
}

.swiper-slide-item .item-text {
  flex: 1;
}

.swiper-slide-item .item-image {
  flex: 1;
}

.swiper-slide-item .item-image img {
  width: 100%;
  max-width: 866px;
  height: 100%;
  border-radius: 3rem;
}

.slide-item-title {
  width: 50%;
  font: normal normal 600 40px/57px Montserrat;
  letter-spacing: 0px;
  color: #3e3e3e;
}

.slide-item-content {
  width: 50%;
  font: normal normal normal 15px/19px Montserrat;
  letter-spacing: 0px;
  color: #808080;
}

.navigation-area {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  flex-wrap: wrap;
  gap: 2rem;
  top: 50%;
  left: 48%;
  z-index: 100;
  padding: 1rem;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 11px;
}

.navigation-area .button-prev {
  flex: 1;
  color: #d8011a;
  transition: all 0.3s ease-in-out;
}

.navigation-area .button-prev:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.navigation-area .button-next {
  flex: 1;
  color: #d8011a;
  transition: all 0.3s ease-in-out;
}

.navigation-area .button-next:hover {
  transform: scale(1.2);
  cursor: pointer;
}

.slick-active .item-text {
  animation: fade-in-move-down 0.8s;
}

.slick-active .item-image {
  animation: fade-in-move-up 0.5s;
}

@keyframes fade-in-move-down {
  0% {
    opacity: 0;
    transform: scale(0.25) translateY(100%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fade-in-move-up {
  0% {
    opacity: 0;
    transform: scale(0.25) translateX(100%);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}
