.full-slider .inner_content__banner {
  position: absolute;
  max-width: 1215px;
  top: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.full-slider figure::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(239, 239, 243, 1) 0%, rgba(239, 239, 243, 0) 50%, rgba(239, 239, 243, 0) 100%);

}

.full-slider figure img {
  width: 100%;
  height: auto;
}

.full-slider .content__banner {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.full-slider .content__banner img {
  width: 215px;
  height: auto;
}

.full-slider .content__banner h2 {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: var(--fs-48);
  margin: 0;
  /*display: flex;
  align-items: flex-end;*/
}

.full-slider .content__banner h2::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--primary-color);
  bottom: 0;
  left: 5px;
  position: relative;
}

.full-slider .content__banner p {
  margin: 0;
  color: var(--secondary-color);
  font-size: var(--fs-28);
  line-height: 120%;
}

.full-slider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  background: #0033664D;
  opacity: .5;
}

.full-slider .swiper-pagination-bullet-active {
  background: #0033664D;
  height: 18px;
  width: 18px;
  opacity: 1;
}

.full-slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: var(--space-56);
}

@media screen and (max-width: 768px) {
  .full-slider .inner_content__banner {
    top: 100%;
    transform: translateY(calc(-100% - 0px));
    padding: 0;
  }

  .full-slider .inner_content__banner > .container {
    padding: 0;
  }

  .full-slider figure::before {
    background: linear-gradient(90deg, rgba(239, 239, 243, 1) 0%, rgba(239, 239, 243, 0.7) 50%, rgba(239, 239, 243, 0) 100%);
    display: none;
  }

  .full-slider figure img {
    object-fit: cover;
  }

  .full-slider .content__banner img {
    width: 180px;
    display: none;
  }

  .full-slider .content__banner {
    max-width: 100%;
    gap: 7px;
    background: var(--secondary-color);
    color: white;
  }

  .full-slider .content__banner h2 {
    font-size: var(--fs-22);
  }

  .full-slider .content__banner h2 span {
    color: white;
    padding: 10px 15px 0 15px;
    display: inline-block;
  }

  .full-slider .content__banner p {
    font-size: .8rem;
    color: white;
  }

  .full-slider .content__banner h2::after{
    display: none;
  }

  .full-slider .content__banner h2 span::after{
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: var(--primary-color);
    bottom: 0;
    left: 5px;
    position: relative;
  }

  .full-slider .content__banner p span{
    padding: 0 15px 10px 15px;
    display: inline-block;
  }

  .full-slider .swiper-button-next,
  .full-slider .swiper-button-prev {
    display: none !important;
  }

  .main_banner .fullwidth {
    padding: 0;
  }

  .main_banner .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    left: 0;
    margin-top: 15px;
    gap: 5px;
}

.main_banner .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  background: #0033664D;
  opacity: .5;
}

.main_banner .swiper-pagination-bullet-active {
  background: #0033664D;
  height: 18px;
  width: 18px;
  opacity: 1;
}


}