.banner__slider {
  height: 100vh;
  width: 100%;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  }
  
  .banner__slider__wrapper .item {
    position: relative;
    text-decoration: none;
  }
  
  .banner__slider__wrapper .item .arrow {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  
  .banner__slider__wrapper .item .content {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
      top: 0;
  }
  
  .banner__slider__wrapper .item .btn-more {
    position: absolute;
    bottom: 11%;
    left: 50%;
    margin-left: -57px;
    background: #3F8EDD;
    text-align: center;
    border-radius: 300px;
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }
  
  .banner__slider__wrapper .item .content > div {
    text-align: center;
  }
  
  .banner__slider__wrapper .item .content .title {
    font-weight: 400;
    font-size: 68px;
    line-height: 71px;
    color: #fff;
  }
  
  .banner__slider__wrapper .item .content .description {
    font-weight: 400;
    font-size: 25px;
    line-height: 32px;
    color: #fff;
  }
  
  .banner__slider__wrapper .item:hover svg path {
    stroke: #fff;
  }
  
  
  .banner__slider__controls {
    z-index: 10;
  }
  
  .banner__slider__controls .arrow--prev {
    left: 50%;
    position: absolute;
    bottom: 10%;
    z-index: 10;
    margin-left: -130px;
  }
  
  .banner__slider__controls .arrow--next {
    right: 50%;
    position: absolute;
    bottom: 10%;
    z-index: 10;
    margin-right: -130px;
  }
  
  .banner__slider__controls .arrow.swiper-button-disabled {
    opacity: 0.3;
  }
  
  .banner__slider__controls .swiper-pagination {
    display: flex;
    align-items: center;
    gap: 2px;
    position: unset;
    transform: translateY(-1px);
    background-color: #64646850;
  }
  
  .banner__slider__controls .swiper-pagination .swiper-pagination-bullet {
    cursor: pointer;
    width: 100%;
    height: 1px;
    border-radius: 0;
    background-color: #64646820;
    transition: 0.3s all ease;
    opacity: 1;
  }
  
  .banner__slider__controls .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #3F8EDD;
    border-radius: 0;
    opacity: 1;
  }
  
  @media screen and (max-width: 768px) {  
  
    .banner__slider__wrapper .item .arrow {
      position: absolute;
      right: 15px;
      top: 15px;
    }

    .banner__slider__wrapper .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .banner__slider {
      height: 60vh;
    }

    .banner__slider__wrapper .item .content {
      height: 60vh;
    }

    .banner__slider__wrapper .item .content .title {
      font-size: 50px;
      line-height: 55px;
    }

    .banner__slider__wrapper .item .content .description {
      font-weight: 400;
      font-size: 20px;
      line-height: 27px;
      color: #fff;
    }

  }