.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.control-row {
  font-size: 1.5em;
  margin-top: 1.583em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1680px) {
  .control-row {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .control-row {
    font-size: 14px;
  }
}
.control-row .left-content {
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  max-width: 44.1666666667em;
}
.control-row .right-controls {
  display: flex;
  gap: 0.8333333333em;
}
.control-row .right-controls .nav-button {
  width: 2.6666666667em;
  height: 2.6666666667em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.control-row .right-controls .nav-button i {
  font-size: 1.125em;
}
.control-row .right-controls .nav-button.prev-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white;
  border: 1px solid #D84C21;
  color: #D84C21;
}
.control-row .right-controls .nav-button.prev-button:hover {
  background: #D84C21;
  color: white;
}
.control-row .right-controls .nav-button.next-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: linear-gradient(270deg, #D84C21 0%, #F4AE00 100%);
  color: white;
  border: 1px solid #D84C21;
}
.control-row .right-controls .nav-button.next-button:hover {
  opacity: 0.9;
}

.swiper-section {
  display: block;
  width: 100%;
}

.swiper-container {
  font-size: 24px;
  width: 100%;
  margin-top: 1.6666666667em;
  margin-bottom: 1.6666666667em;
}
@media (max-width: 1680px) {
  .swiper-container {
    font-size: 16px;
  }
}
@media (max-width: 990px) {
  .swiper-container {
    font-size: 14px;
  }
}
.swiper-container .swiper-wrapper .swiper-slide {
  width: auto;
}
.swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  text-decoration: none;
}
.swiper-container .swiper-wrapper .swiper-slide a .image-wrapper {
  width: 100%;
  aspect-ratio: 521/361;
  overflow: hidden;
}
.swiper-container .swiper-wrapper .swiper-slide a .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.swiper-container .swiper-wrapper .swiper-slide a .slide-title {
  margin-top: 1.4583333333em;
  font-style: normal;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  color: #666666;
  text-align: center;
}
.swiper-container .swiper-wrapper .swiper-slide a:hover .image-wrapper img {
  transform: scale(1.05);
}