.banner_section_main {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.banner_section_slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner_section_track {
  position: relative;
  width: 100%;
}

.banner_section_item {
  display: none;
  width: 100%;
}

.banner_section_item.active {
  display: block;
  animation: banner_section_fade 0.5s ease;
}

.banner_section_item img {
  width: 100%;
  /* height:650px; */
  object-fit: cover;
  display: block;
}

.banner_section_prev,
.banner_section_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #00000073;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100;
}

.banner_section_prev:hover,
.banner_section_next:hover {
  background: #e60000;
}

.banner_section_prev {
  left: 20px;
}

.banner_section_next {
  right: 20px;
}

@keyframes banner_section_fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* Large Screen */

@media (max-width: 1600px) {
  .banner_section_item img {
    height: 620px;
  }
}

/* Laptop */

@media (max-width: 1400px) {
  .banner_section_item img {
    height: 100%;
  }
}

/* Notebook */

@media (max-width: 1200px) {
  .banner_section_item img {
    height: 100%;
  }
}

/* Tablet */

@media (max-width: 992px) {
  .banner_section_item img {
    height: 100%;
  }

  .banner_section_prev,
  .banner_section_next {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .banner_section_item img {
    height: 300px;
  }

  .banner_section_prev,
  .banner_section_next {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}

/* Small Mobile */

@media (max-width: 576px) {
  .banner_section_item img {
    height: 100%;
  }

  .banner_section_prev {
    left: 8px;
  }

  .banner_section_next {
    right: 8px;
  }

  .banner_section_prev,
  .banner_section_next {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* Extra Small */

@media (max-width: 400px) {
  .banner_section_item img {
    height: auto;
  }
}
