.title-slide .title_slide {
  position: relative;
}
.title-slide .swiper.swiper-loading .swiper-wrapper {
  opacity: 0;
  visibility: hidden;
}
.title-slide .button-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 3px;
}
.title-slide .button-dots.swiper-pagination-bullets {
  width: 100% !important;
  left: 50% !important;
  transform: translate(0, -50%) !important;
}
.title-slide .button-dots .swiper-pagination-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #D1D1D6;
  border-radius: 30px;
  -webkit-backface-visibility: visible;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.title-slide .button-dots .swiper-pagination-bullet.swiper-pagination-bullet-active, .title-slide .button-dots .swiper-pagination-bullet:hover {
  width: 12px;
  border-radius: 5px;
  opacity: 1;
  background-color: #FF3514;
}
.title-slide .button-nav {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 10px 40px 0px rgba(6, 22, 58, 0.1);
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-top: -20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.title-slide .button-nav.button-prev {
  left: -20px;
}
.title-slide .button-nav.button-next {
  right: -20px;
}
.title-slide .button-nav:focus {
  outline: none;
}
.title-slide .button-nav i {
  display: flex;
  font-size: 26px;
  color: #42516d;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.title-slide .button-nav:hover i {
  color: #ff3514;
}
@media screen and (max-width: 768px) {
  .title-slide .button-nav {
    display: none;
  }
}
.title-slide:hover .button-nav {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.3s;
}