@charset "UTF-8";
.notAuth {
  font-size: 30px;
  text-align: center;
  margin: 30px;
  font-weight: 600;
}

.line {
  background: linear-gradient(90deg, #666F78 0%, #8696A0 14%, #C9CED1 27%, #8696A0 41%, #CBCFD2 53%, #C9CED1 65%, #8696A0 77%, #666F78 87%, #8696A0 100%);
  width: 100%;
  height: 24px;
}

.hero {
  position: relative;
  z-index: 0;
  background-image: url("./assets/hero-lr-3.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero__content {
  padding: 50px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.hero__name {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  color: black;
  margin: 0;
}
.hero__name span {
  font-size: 36px;
  font-family: "Anticva", sans-serif;
  line-height: 1.5;
}
.hero__span {
  color: #C10352;
  line-height: 1.5;
}
.hero__shield {
  width: 240px;
}

.logo {
  width: 20%;
  height: auto;
}

.flex-block {
  display: flex;
  flex-direction: row;
}
.flex-block .lr-img {
  width: 20%;
  height: auto;
}

.ol-numbers {
  list-style: none;
  padding-left: 0;
  margin: 0;
  counter-reset: pink-counter;
}

.ol-numbers li {
  font-size: 18px;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1.2em;
  line-height: 1.5;
  counter-increment: pink-counter;
}

.ol-numbers li::before {
  content: counter(pink-counter) ".";
  position: absolute;
  left: 0;
  color: rgb(193, 3, 82);
  font-weight: bold;
  font-size: 1.1em;
}

.ul-bullets {
  list-style: none;
  padding-left: 24px;
  margin: 16px 0;
}

.ul-bullets li {
  font-size: 18px;
  position: relative;
  padding-left: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.ul-bullets li::before {
  content: "•";
  color: rgb(193, 3, 82);
  font-size: 28px;
  position: absolute;
  left: -12px;
  top: -2px;
  line-height: 1;
}

.accordion {
  padding-bottom: 60px;
  padding-top: 40px;
}
.accordion__content {
  display: flex;
  flex-direction: column;
}
.accordion__desc {
  margin: 0;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s ease;
  overflow: hidden;
  padding: 20px 0;
}
.accordion__desc.active {
  opacity: 1;
  max-height: max-content;
  overflow: hidden;
}
.accordion__btn {
  display: flex;
  gap: 10px;
  cursor: pointer;
}
.accordion__btn span {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: black;
}
.accordion__btn-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #C10352;
}
.accordion__btn-arrow img {
  transition: all 0.2s ease;
}
.accordion__btn.active img {
  transform: rotate(90deg);
}

.tag {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1540px) {
  .flex-block .lr-img {
    width: 30%;
    height: auto;
    align-self: center;
  }
  .logo {
    width: 23%;
  }
}
@media screen and (max-width: 1400px) {
  .hero {
    background-position: 70%;
    background-size: cover;
  }
}
@media screen and (max-width: 1200px) {
  .flex-block {
    flex-direction: column;
  }
  .flex-block .lr-img {
    width: 40%;
    height: auto;
    align-self: center;
  }
}
@media screen and (max-width: 992px) {
  .logo {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    padding: 30px 0;
  }
  .hero__name {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
  }
  .hero__name span {
    font-size: 24px;
  }
  .line {
    height: 12px;
  }
  .flex-block .lr-img {
    width: 80%;
  }
  .ol-numbers li {
    font-size: 16px;
  }
  .ul-bullets li {
    font-size: 16px;
  }
}
@media screen and (max-width: 474px) {
  .logo {
    width: 165px;
    height: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
