/* ----------------------------------------- */
/* ---------- LARGE DEVICE ---------- */
/* ------------------------------------------*/

/*-----------------------
  Hero Section Start
-------------------------*/

.hero__section {
  padding-top: 30px;
  display: flex;
  flex-direction: row;
}

.hero__left {
  max-width: 600px;
  width: 100%;
}

.hero__left-title {
  max-width: 600px;
  width: 100%;
  color: #262626;
  font-size: 72px;
  font-family: Noto Sans;
  font-weight: 600;
  line-height: 1.2;
  word-wrap: break-word;
  margin-top: 44px;
}

.hero__left-desc {
  margin-top: 24px;
  max-width: 569px;
  width: 100%;
  color: #687078;
  font-size: 18px;
  font-family: Noto Sans;
  font-weight: 400;
  line-height: 27px;
  word-wrap: break-word;
}

.hero__left-btns {
  margin-top: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  grid-column-gap: 20px;
}


.hero__left-see-btn {
  width: 170px;
  height: 64px;
  background: #4099D4;
  color: white;
  border: none;
  border-radius: 10px;
}

.hero__left-see-btn:hover {
  background-color: black;
  color: white;
}

.hero__left-play-btn {
  display: flex;
  align-items: center;
  grid-column-gap: 10px;
}

.play__btn-icon {
  width: 40px;
  height: 40px;
  background: grey;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}

.play__btn-text {
  color: #171100;
  font-size: 18px;
  font-family: Noto Sans;
  font-weight: bold;
  margin-bottom: 0 !important;
}

.hero__right {
  width: 100%;
  position: relative;
  display: flex;
}

.hero__right-thumb {
  max-width: 470px;
  width: 100%;
  height: 571px;
  object-fit: contain;
  border-radius: 20px;
  position: relative;
  margin-left: auto;
}

.hero__right-cart {
  max-width: 270px;
  width: 100%;
  right: calc(100% - 260px);
  bottom: -99px;
  border-radius: 12px;
  transform: translateX(0px);
  background: #FFF;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.05);
  position: absolute;
  padding: 12px 0;
}

.hero__right-cart-item {
  display: flex;
  flex-direction: row;
  padding: 12px 24px;
}


.cart__item-icon {
  max-width: 48px;
  width: 100%;
  height: 48px;
  display: flex;
  background: #FFF9E8;
  border-radius: 9999px;
  margin-right: 16px;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.cart__item-icon-img {
  width: 24px;
  height: 24px;

}

.cart__item-content {
  max-width: 112px;
  width: 100%;
  height: 50px;

}

.cart__item-sub-title {
  color: #262626;
  font-size: 18px;
  font-family: Noto Sans;
  font-weight: 600;
  line-height: 24px;
  word-wrap: break-word;
}

.cart__item-title {
  color: #687078;
  font-size: 14px;
  font-family: Noto Sans;
  font-weight: 400;
  line-height: 20px;
  word-wrap: break-word;
  margin-bottom: 8px;
}


/*-----------------------
    Hero Section End
  -------------------------*/

/*-----------------------
    Our_Course Start
  -------------------------*/
.courses__section {
  padding: 180px 0 110px;

}

.section__title {
  color: black;
  font-size: 42px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 64px;
}


.course__card {
  padding: 25px;
  border: none;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .10);
  margin-bottom: 20px;
  display: block;
}

.course__card-thumb {
  width: 100%;
  height: 100px;
  margin-bottom: 30px;
  object-fit: contain;
}

.course__card-title {
  margin-bottom: 6px;
  color: #262626;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.course__card-desc {
  color: #959CA3;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

/*-----------------------
    Our_Course End
  -------------------------*/

/*-----------------------
    Feature Start
  -------------------------*/
.feature__section {
  margin-bottom: 40px;
}

.feature__card {
  border-radius: 20px;
  text-align: center;
  padding: 70px 15px 50px;
  position: relative;
  margin-bottom: 60px;
}

.feature__card-title {
  color: #262626;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}

.feature__card-desc {
  color: #262626;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.feature__card.one {
  background: #EBF7FF;
}

.feature__card.two {
  background: #FFF7E5;
}

.feature__card.theree {
  background: #EBFAF1;
}

.feature__card.four {
  background: #FFF2F0;
}

.feature__card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 17px 2px rgba(0, 0, 0, 0.2);
}

.feature__card-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/*-----------------------
    Feature End
  -------------------------*/

/*-----------------------
    Trending course Start
  -------------------------*/
.trend-course__section {
  margin-bottom: 100px;
}

.trend__course-title {
  color: #262626;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 64px;
}

.trend__card {
  border-radius: 8px;
  /* box-shadow: 0px -1px 18px 0px rgba(0, 0, 0, 0.42);
    -webkit-box-shadow: 0px -1px 18px 0px rgba(0, 0, 0, 0.42);
    -moz-box-shadow: 0px -1px 18px 0px rgba(0, 0, 0, 0.42); */
  margin: 20px 8px;
  overflow: hidden;
  display: block;
  border: 1px solid #ddd;
}

.trend__card-thumb {
  position: relative;
}

.trend__card-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  transition: all .2s ease-in-out;
}

.trend__card-thumb:hover::before {
  background-color: rgba(0, 13, 26, 0.281);
}

.trend__card .card__thumb-img {
  width: 100%;
  object-fit: cover;
  background-color: #00A34A;
  object-position: center;
  aspect-ratio: 4/3.2;
}

.trend__card .card__thumb-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  outline: none;
  border: none;
  background-color: #00A34A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all .2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.trend__card .card__thumb-btn:hover {
  background-color: #19b65f;
}

.trend__card-thumb:hover .card__thumb-btn {
  opacity: 1;
  visibility: visible;
}

.trend__card-body {
  padding: 16px 14px;
}

.trend__card-title {
  color: #171100;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.trend__card-rat-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: 5px;
  margin-bottom: 12px;
}

.trend__card-rating {
  display: flex;
  align-items: center;
  grid-column-gap: 10px;
}

.trend__card .card__rating-star {
  display: flex;
  align-items: center;
  grid-column-gap: 2px;
}

.trend__card .card__rating-star-icon {
  margin-top: -4px;
}

.trend__card .card__rating-rat {
  color: #262626;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.trend__card .card__rating-user {
  color: #959CA3;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2
}

.trend__card-price {
  color: #00A34A;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.trend__card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: 5px;
}

.trend__card-lesson {
  display: flex;
  align-items: center;
  color: #262626;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  grid-gap: 10px;
}

.trend__card-lesson-icon {
  width: 22px;
  height: 22px;
  background-color: #c3d5e2;
  border-radius: 50%;
  margin-top: -4px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.trend-course__slider {
  margin: 0 -8px;
}

.trend-course__slider .splide__arrows {
  display: none;
}

.trend-course__slider .splide__pagination {
  grid-column-gap: 10px;
  margin-top: 20px;
}

.trend-course__slider .splide__pagination__page {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: #c3d5e2;
}

.trend-course__slider .splide__pagination__page.is-active {
  background-color: #2F90D0;
}

/*-----------------------
    Trending course End
  -------------------------*/

/*-----------------------
    Our-Platform Start
  -------------------------*/
.our__platform-section {
  background-color: #5C8AFF;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-bottom: 100px;
}

.course__det-thumb {
  position: relative;
  margin-right: 30px;
}

.course__det-thumb::before {
  position: absolute;
  inset: 0;
  content: '';
  background-color: rgba(13, 21, 53, 0.404);
  border-radius: 23px;
  z-index: 9;
}

.course__det-thumb .det__thumb-img {
  border-radius: 23px;
  background-color: aqua;
  height: 378px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.course__det-thumb .det__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.course__det-thumb .det__video-play-btn {
  position: relative;
  border: none;
  outline: none;
  width: 87px;
  height: 87px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course__det-thumb .det__video-play-btn::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  animation: animate 2s infinite;
  -webkit-animation: animate 2s infinite;
  z-index: -1;
}

@keyframes animate {
  0% {
    width: 87px;
    height: 87px;
  }

  100% {
    width: 160px;
    height: 160px;
    opacity: 0.1;
  }
}

.course__det-thumb .det__video-play-btn::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  animation: animate2 2s infinite;
  -webkit-animation: animate2 2s infinite;
  z-index: -1;
}

@keyframes animate2 {
  20% {
    width: 87px;
    height: 87px;
  }

  100% {
    width: 125px;
    height: 125px;
    opacity: 0.1;
  }
}








.our__platform-player-title {
  color: #FFF;
  font-family: Noto Sans;
  font-size: 42px;
  font-weight: 700;
  line-height: 50.4px;
  letter-spacing: -0.84px;
  margin-bottom: 16px;
}

.our__platform-player-title-desc {
  color: #FFF;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.84px;
  max-width: 458px;
}

.our__platform-player-text-btn {
  max-width: 154px;
  width: 100%;
  height: 64px;
  margin-top: 44px;
  border: none;
  border-radius: 10px;
  color: #4099D4;
  background: #FFF;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

/*-----------------------
    Our-Platform End
  -------------------------*/

/*-----------------------
    Benefits_From-Us Start
  -------------------------*/
.benefits__section {
  margin-bottom: 100px;
}

.benefits__section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  padding-bottom: 64px;
}

.benefit__card {
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 0px 14px -4px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px;
}

.benefit__card-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.benefit__card-thumb-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.benefit__cart-title {
  color: #262626;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}

.benefit__cart-desc {
  color: #687078;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

/*-----------------------
    Benefits_From-Us End
  -------------------------*/

/*-----------------------
    Brand_Add-Section Start
  -------------------------*/
.brand__section {
  background: #2F90D0;
  margin-bottom: 140px;
  padding: 35px 0;
}

.brand__imgs-list {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 10px;
  padding: 0 30px;
}

.brand__img-item {
  max-width: 184px;
  width: 100%;
  height: 52px;
  object-fit: contain;

}


/*-----------------------
    Brand_Add-Section End
  -------------------------*/


/*-----------------------
 Testimonial_Section Start
-------------------------*/
.testimonial_Section {
  margin-bottom: 100px;
}

.testimonial__title {
  max-width: 359px;
  width: 100%;
  color: #262626;
  font-family: Noto Sans;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial__avatar-imgs {
  display: flex;
  align-items: center;
}

.testimonial__avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid #ddd;
  margin-left: -20px;
}

.testimonial__avatar-img:first-child {
  margin-left: 0;
}

.testimonial_section-avatar {
  display: flex;
  align-items: center;
  margin-top: 48px;
  column-gap: 25px;
}


.right__cart-rating {
  display: flex;
}

/* ----------------------------- */
.testimon__slider {
  padding-left: 90px;
  position: relative;
}

.testimon__slider-btns {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.testimon__slider-btns button {
  background-color: transparent;
}

.testimon__slider-list {
  position: relative;
}

.testimon__slider-item {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all .3s ease;
  z-index: -2;
  top: 0;
  left: 0;
  max-width: 364px !important;
  width: 100%;
  border-radius: 24px;
  background: #FFF;
  box-shadow: 0px 20px 70px 0px rgba(0, 0, 0, 0.08);
  padding: 24px 18px;
}

.testimon__slider-item.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: scale(1);
  z-index: 1;
}

.testimon__slider-item.next {
  opacity: .5;
  visibility: visible;
  top: -60px;
  left: 200px;
  transform: scale(1);
}

.testimon__slider-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.testimon__slider-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding-left: 15px;

}

.testimon__slider-head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimon__slider-user-name {
  color: #262626;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.testimon__slider-user-proff {
  color: #00A34A;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.testimon__slider-comment {
  color: #687078;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.testimon__slider-next.disable,
.testimon__slider-prev.disable {
  opacity: 0.5;
}

/*-----------------------
  testimonial_Section End
-------------------------*/

/*-----------------------
    App Downloads Start
  -------------------------*/
.app__storege {
  width: 100%;
  margin: 0 auto;
  background: #2F90D0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  padding: 70px 0 80px;
}

.app__storege-title {
  max-width: 500px;
  width: 100%;
  color: #FFF;
  text-align: center;
  font-family: Noto Sans;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  /* transform: translateX(161px); */
  margin: 0 auto 20px;
}

.app__storege-desc {
  max-width: 822px;
  width: 100%;
  color: #E4E5E7;
  text-align: center;
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  /* padding-bottom: 64px; */
  /* transform: translateX(185px); */
  margin: 0 auto 30px;
}

.app__storege-btns {
  display: flex;
  justify-content: center;
  row-gap: 30px;
  column-gap: 30px;
  flex-wrap: wrap;
}

.app-btn {
  max-width: 386px;
  width: 100%;
  height: 63px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.padding__left-btn {
  padding-left: 380px !important;
}

.app-btn-box {
  max-width: 177px;
  width: 100%;
  height: 63px;
  border: none;
  border-radius: 10px;
  object-fit: contain;
  f
}
.app-btn-box img{
  width: 100%;
}

/*-----------------------
    App Downloads End
  -------------------------*/

/* ----------------------------------------- */
/* ---------- RESPONSIVE ---------- */
/* ------------------------------------------*/

/* -------- Hero -------- */

@media only screen and (max-width: 1199px) {
  .hero__left-title {
    font-size: 62px;
  }

  .hero__right-cart {
    bottom: -6px;
  }
}

@media only screen and (max-width: 991px) {
  .hero__left-btns {
    margin-top: 32px;
    margin-bottom: 40px;
  }

  .hero__right-cart {
    bottom: unset;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero__right-thumb {
    object-fit: cover;
  }
  .hero__left-title {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero__left-title {
    font-size: 52px;
  }
}

@media only screen and (max-width: 575px) {
  .hero__right-thumb {
    max-width: 100%;
    height: auto;
    aspect-ratio: 3.4/4;
  }

  .hero__right-cart {
    bottom: -50px;
    top: unset;
    transform: translateX(-50%);
    left: 50%;
  }

  .hero__left-title {
    font-size: 46px;
  }

  .hero__left-desc {
    font-size: 16px;
  }

  .hero__left-see-btn {
    width: 156px;
    height: 54px;
    font-size: 16px;
  }

  .play__btn-text {
    font-size: 16px;
  }

  .hero__left-btns {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}

@media only screen and (max-width: 330px) {
  .hero__right-cart {
    display: none;
  }
}

/* -------- courses -------- */

@media only screen and (max-width: 1199px) {
  .courses__section {
    padding: 90px 0 100px;
  }

}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .courses__section {
    padding: 90px 0 80px;
  }

  .section__title {
    font-size: 40px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .courses__section {
    padding: 120px 0 80px;
  }
  .section__title {
    font-size: 36px;
}
}

@media only screen and (max-width: 330px) {
  .courses__section {
    padding: 80px 0 80px;
  }
}



/* -------- feature -------- */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .feature__section {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 420px) {
  .feature__card-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 330px) {}

/* -------- trend course -------- */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .trend__course-title {
    font-size: 40px;
    margin-bottom: 42px;
  }
}

@media only screen and (max-width: 575px) {
  .trend__course-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 330px) {}


/* -------- platform -------- */

@media only screen and (max-width: 1199px) {
  .course__det-thumb {
    margin-right: 0;
  }

  .our__platform-player-title {
    font-size: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .course__det-thumb {
    margin-bottom: 30px;
  }

  .our__platform-player-text-btn {
    margin-top: 28px;
  }
}

@media only screen and (max-width: 767px) {
 
}

@media only screen and (max-width: 575px) {
  .our__platform-player-title {
    font-size: 38px;
  }

  .our__platform-player-text-btn {
    max-width: 146px;
    height: 56px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 330px) {}


/* -------- benefits -------- */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .benefits__section-title {
    font-size: 40px;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .benefits__section-title {
    font-size: 36px;
}
}

@media only screen and (max-width: 330px) {}



/* -------- brands -------- */

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {
  .brand__section {
    margin-bottom: 90px;
  }

}

@media only screen and (max-width: 767px) {
  .brand__section {
    margin-bottom: 80px;
  }

}

@media only screen and (max-width: 575px) {}

@media only screen and (max-width: 330px) {}

/* -------- testimonial -------- */

@media only screen and (max-width: 1199px) {
  .testimon__slider-item.next {
    left: 78px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial_section-avatar {
    margin-top: 28px;
  }

  .testimonial__title {
    max-width: 100%;
    width: 100%;
  }

  .testimonial_section-avatar {
    margin-bottom: 100px;
  }

  .testimon__slider-item.next {
    left: 200px;
  }

}

@media only screen and (max-width: 767px) {
  .testimonial_Section {
    margin-bottom: 160px;
  }

  .testimon__slider-btns {
    bottom: -86px;
    flex-direction: row;
    row-gap: 20px;
    column-gap: 25px;
  }

  .testimon__slider {
    padding-left: 0;
  }

  .testimon__slider-item.next {
    left: 150px;
  }

  .testimonial__title {
    font-size: 38px;
  }
}

@media only screen and (max-width: 575px) {
  .testimonial_Section {
    margin-bottom: 140px;
  }

  .testimonial_section-avatar {
    margin-bottom: 40px;
  }

  .testimon__slider-item.next {
    display: none;
  }

  .testimon__slider-item {
    max-width: 100% !important;
  }

  .testimonial__title {
    font-size: 32px;
  }

  .testimonial__avatar-img {
    width: 52px;
    height: 52px;
  }

  .testimon__slider-avatar {
    width: 52px;
    height: 52px;
  }

  .testimon__slider-info {
    flex-wrap: wrap;
    gap: 3px;
  }

  .testimon__slider-next svg {
    width: 44px;
    height: 44px;
  }

  .testimon__slider-prev svg {
    width: 44px;
    height: 44px;
  }

  .testimon__slider-btns {
    bottom: -72px;
  }
}

@media only screen and (max-width: 330px) {}


/* -------- app -------- */

@media only screen and (max-width: 575px) {
  .app__storege-title {
    font-size: 36px;
  }
}