.wrap {
  margin-top: 100px;
}

.anim-slider {
  position: relative;
  margin-top: 90px;
  transition: transform .3s;
  border-radius: 10px;

}

.anim-slide__right-block {
  clip-path: url(#anim-slider__clip-path);
  background-size: cover;
  -webkit-clip-path: url(#anim-slider__clip-path);
  width: max-content;
  max-width: 100%;
}

.anim-slide__right-block img {
  max-width: 100%;
  height: auto;
}

.anim-slide {
  display: flex;
  justify-content: flex-end;
  background-color: #e7266b;
  background-image: url("./img/rings.png");
  background-position: 48% 0%;
  background-repeat: no-repeat;
}

.anim-slide--blue {
  background-color: #3069b2;
  background-image: url("./img/rings-blue.png");
}

.anim-slide__left-block {
  flex-shrink: 0;
  padding-left: 20px;
}

.anim-slide__text {
  letter-spacing: 0.1em;
  font-size: 76px;
  line-height: 76px;
  font-family: "Libel Suit", "Arial", sans-serif;
  color: white;
  margin: 84px 0 0 0;
  max-width: 527px;
  width: 100%;
  text-transform: uppercase;
}

.anim-slide__link {
  font-size: 18px;
  line-height: 24px;
  display: inline-flex;
  gap: 17px;
  align-items: center;
  color: white;
  margin-top: 24px;
  font-weight: 500;
}

.anim-slide__link span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.25s;
}

.anim-slide__link span path {
  transition: all 0.25s;
}

.anim-slide__link:hover,
.anim-slide__link:focus {
  color: white;
  text-decoration: none;
}
.anim-slide__link:hover span,
.anim-slide__link:focus span {
  background-color: white;
}

.anim-slide__link:hover span path,
.anim-slide__link:focus span path {
  fill: #e7266b;
}

.anim-slider .owl-carousel .owl-item img {
  border-radius: 0;
}

.anim-slider__progress {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}

.anim-slider__title-list {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding-left: 8px;
}

.anim-slider__title {
  color: white;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  gap: 15px;
}

.mail-slider__progress-bar {
  max-width: 1280px;
  margin: 24px auto 0 auto;
  height: 2px;
  position: relative;
}

.mail-slider__progress-empty {
  background-color: white;
  opacity: 0.4;
  height: 2px;
}

.mail-slider__progress-full {
  width: 0;
  max-width: 100%;
  height: 2px;
  background: white;
  position: relative;
  top: -2px;
}

.main-slider__progress-full-container {
  display: grid;
}

@media (min-width: 1800px) {
  .anim-slide {
    gap: 50px;
  }
}

@media (max-width: 1440px) {
  .anim-slide__right-block {
    max-width: 812px;
  }
  .anim-slide__text{
    margin-top: 80px;
  }
  .anim-slide__left-block{
    padding-left: 7vw;
    padding-bottom: 236px;
  }
  .anim-slider__title-list{
    max-width: 1240px;
    padding-left: 18px;
  }
  .mail-slider__progress-bar{
    max-width: 1240px;
    padding-left: 10px;
  }
  .anim-slide__right-block img{
    height: 100%;
  }
}
@media (max-width: 1024px) {
  .anim-slide__text{
    margin-top: 40px;
    font-size: 56px;
    max-width: 400px;
  }
  .anim-slide__left-block{
    padding-left: 1.5vw;
    padding-bottom: 168px;
  }
  .anim-slider__title-list{
    max-width: 1240px;
    padding-left: 18px;
  }
  .mail-slider__progress-bar{
    max-width: 1240px;
    padding: 0 20px;
  }
  .anim-slide__right-block img{
    height: 100%;
  }
}

@media (max-width: 768px) {
  .anim-slider {
    margin-top: 80px;
    overflow: hidden;
  }
  .anim-slide {
    flex-wrap: wrap;
    background-image: url("./img/rings-mob.png");
    background-position: right center;
  }
  .anim-slide--blue {
    background-image: url("./img/rings-mob-blue.png");
  }
  .anim-slide__left-block {
    flex-shrink: 1;
    padding: 0;
  }
  .anim-slide__text {
    max-width: 100%;
    width: auto;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0.12em;
    padding: 0 20px;
    margin: 38px 0 0 0;
  }

  .anim-slide__link span {
    width: 48px;
    height: 48px;
  }

  .anim-slide__link {
    margin-left: 20px;
  }

  .anim-slider__title {
    font-size: 14px;
    line-height: 19px;
    max-width: 241px;
  }

  .anim-slide__right-block {
    max-width: unset;
    width: 100%;
    height: 375px;
    margin-top: 50px;
    clip-path: url(#anim-slider__clip-path--mob);
    -webkit-clip-path: url(#anim-slider__clip-path--mob);
  }

  .anim-slide__right-block img {
    object-fit: cover;
    max-width: unset;
    height: 100%;
  }

  .anim-slider__progress {
    max-width: unset;
    width: 100%;
    left: 0px;
    bottom: 34px;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    overflow-x: scroll;
  }

  .anim-slider__title-list {
    width: 700px;
    gap: 65px;
    padding-left: 0px;
  }

  .mail-slider__progress-bar {
    margin-top: 10px;
    padding: 0px;
    width: 100%;
    position: fixed;
    padding-right: 40px;
  }
}
