.Section-slider {
  flex-direction: row;
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.banner-section {
  margin-bottom: 80px;
  flex-direction: row;
}

.banner-section-title {
  font-family: var(--font-Raleway) !important;
  font-size: var(--fs-800);
  line-height: 1.1;
  font-style: normal;
  font-weight: 800;
  flex-wrap: wrap;
  text-align: center;
  text-transform: none;
  word-break: normal;
}

.banner-section-subtitle {
  line-height: 1.3;
  font-size: var(--fs-600);
  font-weight: 600;
  text-align: center;
}

.banner-bold {
  font-weight: 700;
}

.banner-container {
  position: relative;
  word-wrap: break-word;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1)),linear-gradient(90deg, rgba(208, 148, 34, 0.2), rgba(208, 148, 34, 0.2));
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.Section-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: slider 37.5s infinite;
}

.Section-slider .slide:nth-child(1) {
  background-image: url("../../assets/img/1.jpg");
  animation-delay: 0s;
}

.Section-slider .slide:nth-child(2) {
  background-image: url("../../assets/img/2.jpg");
  animation-delay: -7.5s;
}

.Section-slider .slide:nth-child(3) {
  background-image: url("../../assets/img/3.jpg");
  animation-delay: -15s;
}

.Section-slider .slide:nth-child(4) {
  background-image: url("../../assets/img/4.jpg");
  animation-delay: -22.5s;
}

.Section-slider .slide:nth-child(5) {
  background-image: url('../../assets/img/5.jpg');
  animation-delay: -30s;
}

.top-divider, .bottom-divider {
  overflow: hidden;
  width: 100%;
  height: 75px;
}

@media (min-width: 768px) {
  .top-divider img {
    height: 50px;
    width: 100%;
  }
}

@media (min-width: 300px) {
  .top-divider img {
    height: 40px;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .top-divider img {
    width: 100%;
    height: 75px;
  }
}

