.swiper {
  width: 100%;
  height: 100%;

  @media screen and (max-width: 740px) {
    overflow: visible;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  height: auto;
  @media screen and (max-width: 740px) {
     width: 300px;
  }
}


.benefit-item{
  border-radius: 10px;
  border: 1px solid #DDD;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
  align-self: stretch;
  padding: 24px;
  height: 100%;
  text-align: left;
}
.benefit-item-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.benefit-item-header .benefit-item-title{
  color: #0D3363;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */

}
.benefit-item-description{
  color: #000;
  font-size: 16px;
font-weight: 400;
line-height: 24px; /* 150% */
}
.benefit-item-list{
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 16px;
  list-style: disc;
  padding-left: 15px;
}
.benefit-item-list li{
  color: #000;
  font-size: 16px;
  line-height: 24px;
}
.benefits-container{
  position: relative;
  margin-top: 36px;
  @media screen and (max-width: 1335px) and (min-width: 740px) {
   padding-inline: 54px;
  }
  @media screen and (max-width: 768px) {
    margin-top: 30px;
  }

  .swiper-button-next, .swiper-button-prev{
     width: 54px;
     height: 54px;
     border-radius: 50%;
     background: #006FCF;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     &:focus-visible{
      outline: 2px solid #006FCF;
      outline-offset: 2px;
     }
     @media screen and (max-width: 1440px) {
      width: 44px;
      height: 44px;
     }
     @media (max-width: 740px) {
      display: none;
     }

     svg{
      height: auto;
      width: auto;
     }
  }
    .swiper-button-next{
      right: -74px;
      @media screen and (max-width: 1440px) {
        right: -54px;
      }
      @media screen and (max-width: 1335px) and (min-width: 740px) {
        right: -0;
      }
    }
    .swiper-button-prev{
      left: -74px;
      @media screen and (max-width: 1440px) {
        left: -54px;
      }
      @media screen and (max-width: 1335px) and (min-width: 740px) {
        left: 0;
      }
    }
}
.swiper-pagination{
  display: none;
  position: relative;
  margin-top: 30px;
  height: auto;
  padding: 0;
  @media (max-width: 740px) {
    display: block;
  }
}
.swiper-pagination-bullet{
   background: #D9D9D9;
   opacity: 1;
}
.swiper-pagination-bullet-active{
  background: #006FCF;
  width: 18px;
  border-radius: 20px;
}