.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: var(--light-color);
  box-shadow: 4px -10px 97px 0 rgba(0, 0, 0, 0.17);
  transform: translateY(0);
  transition: transform 0.4s ease;
  z-index: 99;
}
.header .container {
  background: var(--light-color);
}
.header.header--hidden {
  transform: translateY(-170%);
}
.header-container {
  width: 100%;
  max-width: 842px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  background: var(--light-color);
}
.header-nav {
  position: relative;
  z-index: 88;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-nav__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: var(--title-color);
  transition: color 0.3s ease;
}
.header-nav__link:hover {
  color: var(--accent-color);
}
.header-btn {
  max-width: 190px;
  height: 56px;
}
.header-burger {
  display: none;
}
@media screen and (max-width: 1100px) {
  .header-container {
    justify-content: space-between;
  }
  .header-burger {
    display: flex;
  }
  .header-nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 500px;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
  }
  .header-nav.active {
    transform: translateY(0);
  }
  .header-nav__list {
    padding: 130px 0;
    flex-direction: column;
    box-shadow: 4px -10px 97px 0 rgba(0, 0, 0, 0.17);
    background: #fff;
  }
  .header-btn {
    height: 49px;
    font-size: 15px;
  }
}

.hero {
  padding: 0;
  background-repeat: no-repeat;
  background-size: 1920px 700px;
  background-position: center;
  background-image: url("../img/hero-bg.jpg");
}
.hero-container {
  min-height: 700px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.hero-announcement__title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--light-color);
}
.hero-announcement__wrapper {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-announcement__date {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--light-color);
}
.hero-announcement__box {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-announcement__desc {
  padding: 10px 26px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--accent-color);
  border-radius: 20px;
  border: 1px solid var(--accent-color);
}
.hero-title {
  margin-top: 16px;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 88px;
  line-height: 100%;
  color: var(--light-color);
}
.hero-desc {
  position: relative;
  max-width: 526px;
  margin-top: 20px;
  padding-left: 104px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  color: var(--light-color);
}
.hero-desc::before {
  position: absolute;
  content: "";
  left: 80px;
  top: 8px;
  width: 2px;
  height: 53px;
  background: var(--accent-color);
}
.hero-desc b {
  font-weight: 600;
}
.hero-nav {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 100%;
  color: var(--light-color);
}
.hero-nav__link:nth-of-type(1) {
  width: 320px;
  border-radius: 100px;
  padding: 24px 10px;
  background: var(--accent-color);
}
.hero-nav__link:nth-of-type(2) {
  font-weight: 700;
}
.hero-nav__link:nth-of-type(2) img {
  transform: rotate(90deg);
}
.hero-text {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--light-color);
}
.hero-text__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--accent-color);
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
  background-image: url("../img/icons/check.svg");
}
@media screen and (max-width: 760px) {
  .hero {
    background-size: cover;
    background-image: url("../img/hero-bg-mb.jpg");
  }
  .hero-container {
    min-height: 754px;
  }
  .hero-announcement__title {
    font-size: 14px;
    line-height: 171%;
  }
  .hero-announcement__wrapper {
    margin-top: 20px;
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  .hero-announcement__date {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: var(--light-color);
  }
  .hero-announcement__box {
    gap: 12px;
  }
  .hero-announcement__desc {
    padding: 12px 20px;
    font-size: 16px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
  }
  .hero-title {
    margin-top: 30px;
    font-size: 44px;
  }
  .hero-desc {
    margin-top: 30px;
    padding-left: 26px;
    font-weight: 600;
    font-size: 16px;
  }
  .hero-desc::before {
    left: 0;
    top: 0;
  }
  .hero-nav {
    margin-top: 40px;
    flex-direction: column;
    gap: 30px;
  }
  .hero-text {
    font-size: 14px;
  }
}

.symptom .container {
  max-width: 1388px;
}
.symptom-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.symptom-title {
  font-weight: 300;
}
.symptom-text {
  margin-top: 30px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 170%;
  color: var(--text-color);
  text-align: center;
}
.symptom-list {
  width: 100%;
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 30px;
  background: rgba(28, 167, 190, 0.05);
}
.symptom-list__item {
  padding: 40px 44px;
}
.symptom-list__box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.symptom-list__number {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 60px;
  line-height: 120%;
  color: var(--accent-color);
}
.symptom-list__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 121%;
  color: var(--title-color);
}
.symptom-list__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
}
.symptom-list__item:nth-of-type(2) {
  background: var(--accent-color);
  color: var(--light-color);
}
.symptom-list__item:nth-of-type(2) .symptom-list__title,
.symptom-list__item:nth-of-type(2) .symptom-list__number {
  color: var(--light-color);
}
@media screen and (max-width: 1100px) {
  .symptom-text {
    font-size: 16px;
  }
  .symptom-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: var(--light-color);
  }
  .symptom-list__item {
    width: 100%;
    max-width: 330px;
    border-radius: 30px;
    background: rgba(28, 167, 190, 0.05);
  }
  .symptom-list__number {
    font-size: 40px;
  }
  .symptom-list__title {
    font-size: 24px;
  }
  .symptom-list__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .symptom-text {
    max-width: 284px;
    font-size: 16px;
  }
  .symptom-list {
    gap: 22px;
  }
  .symptom-list__number {
    font-size: 30px;
  }
  .symptom-list__title {
    font-size: 22px;
  }
}

.intro {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../img/intro-bg.jpg");
}
.intro-container {
  padding: 188px 0;
}
.intro-wrapper {
  width: 100%;
  padding: 110px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  border-radius: 40px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.27);
}
.intro-subtitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--title-color);
}
.intro-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 180%;
  color: var(--text-color);
}
.intro-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.intro-box__item {
  padding: 20px 22px;
  border: 1px solid rgba(28, 167, 190, 0.22);
  border-radius: 100px;
  background: rgba(28, 167, 190, 0.11);
}
@media screen and (max-width: 1400px) {
  .intro-container {
    padding: 0;
  }
}
@media screen and (max-width: 1100px) {
  .intro-wrapper {
    padding: 50px 0;
  }
  .intro-subtitle {
    font-size: 16px;
  }
  .intro-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .intro {
    background-size: cover;
    background-image: url("../img/intro-bg-mb.jpg");
  }
  .intro-wrapper {
    padding: 40px;
  }
  .intro-subtitle {
    font-size: 14px;
  }
  .intro-text {
    font-weight: 400;
  }
  .intro-box {
    margin-top: 14px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .intro-box__item {
    padding: 12px 18px;
    font-size: 14px;
  }
}

.suitable {
  background-repeat: no-repeat;
  background-size: 1920px 700px;
  background-position: center;
  background-image: url("../img/suitable-bg.jpg");
}
.suitable-container {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.suitable-subtitle {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.12em;
  color: var(--light-color);
}
.suitable-title {
  margin-top: 14px;
  color: var(--light-color);
}
.suitable-decor {
  display: block;
  margin-top: 22px;
  width: 100px;
  height: 4px;
  background: var(--accent-color);
}
.suitable-list {
  width: 100%;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.suitable-list__item {
  padding: 26px 32px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.02);
}
.suitable-list__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 90%;
  text-transform: uppercase;
  color: var(--accent-color);
}
.suitable-list__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: var(--light-color);
  text-align: left;
}
.suitable-link {
  margin-top: 56px;
  max-width: 320px;
}
@media screen and (max-width: 1100px) {
  .suitable-subtitle {
    font-size: 14px;
  }
  .suitable-title {
    margin-top: 12px;
  }
  .suitable-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .suitable-list__item {
    width: 100%;
    max-width: 330px;
    padding: 32px;
  }
  .suitable-list__title {
    font-size: 20px;
  }
  .suitable-list__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .suitable {
    background-size: cover;
    background-position: center;
    background-image: url("../img/suitable-bg-mb.jpg");
  }
  .suitable-container {
    padding: 0;
  }
  .suitable-list {
    margin-top: 24px;
    gap: 12px;
  }
  .suitable-link {
    display: none;
  }
}

.work .container {
  max-width: 1370px;
}
.work-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.work-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-color);
}
.work-title {
  margin-top: 35px;
}
.work-online {
  margin-top: 45px;
  padding: 10px;
  width: 247px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--accent-color);
  border-radius: 100px;
}
.work-online__decor {
  width: 20px;
  height: 20px;
  border: 5px solid var(--accent-color);
  border-radius: 100px;
}
.work-online__text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: var(--title-color);
}
.work-list {
  width: 100%;
  margin-top: 44px;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
}
.work-list__item {
  width: 100%;
  max-width: 270px;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color);
}
.work-list__item:nth-of-type(2) {
  position: relative;
  padding: 0;
  max-width: 326px;
  color: var(--accent-color);
}
.work-list__item:nth-of-type(2) .work-list__number {
  color: rgba(28, 167, 190, 0.06);
}
.work-list__item:nth-of-type(2)::before, .work-list__item:nth-of-type(2)::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.work-list__item:nth-of-type(2)::before {
  top: 80px;
  left: -210px;
  width: 222px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icons/work-decor-1.svg");
  transform: rotate(-14deg);
}
.work-list__item:nth-of-type(2)::after {
  top: 110px;
  right: -186px;
  width: 186px;
  height: 21px;
  background-image: url("../img/icons/work-decor-2.svg");
  transform: rotate(16deg);
}
.work-list__number {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 68px;
  line-height: 100%;
  text-align: center;
  color: rgba(31, 31, 31, 0.06);
}
.work-list__title {
  margin-top: 22px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  color: inherit;
}
.work-list__time {
  position: relative;
  margin-top: 16px;
  padding-left: 34px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  text-align: center;
  color: inherit;
}
.work-list__time::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 22px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/icons/clock.svg");
}
.work-list__text {
  margin-top: 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  text-align: center;
  color: inherit;
}
@media screen and (max-width: 1200px) {
  .work-list__item:nth-of-type(2)::before, .work-list__item:nth-of-type(2)::after {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .work-online {
    margin-top: 30px;
    padding: 10px;
    width: 212px;
    height: 64px;
  }
  .work-online__text {
    font-size: 22px;
  }
  .work-list {
    margin-top: 32px;
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .work-list__item {
    padding: 0;
  }
  .work-list__item:nth-of-type(2) .work-list__number {
    color: rgba(31, 31, 31, 0.06);
  }
}
@media screen and (max-width: 760px) {
  .work-title {
    text-align: center;
  }
  .work-subtitle {
    font-size: 14px;
  }
  .work-list__item {
    width: 100%;
    max-width: 400px;
    align-items: start;
    text-align: left;
  }
  .work-list__item:nth-of-type(2) {
    max-width: 400px;
  }
  .work-list__number {
    font-size: 48px;
  }
  .work-list__title {
    margin-top: 16px;
    font-size: 22px;
  }
  .work-list__time {
    font-size: 16px;
    line-height: 144%;
  }
  .work-list__text {
    margin-top: 16px;
    text-align: left;
    font-size: 16px;
  }
}

.program-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.program-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.program-list__item {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.program-list__item .program-list__decor {
  position: absolute;
  z-index: 9;
}
.program-list__item:nth-of-type(1) .program-list__decor {
  top: 242px;
  left: 0;
}
.program-list__item:nth-of-type(2) .program-list__decor {
  top: 202px;
  left: 14px;
}
.program-list__item:nth-of-type(3) .program-list__decor {
  top: 202px;
  left: -32px;
}
.program-list__item:nth-of-type(4) .program-list__decor {
  top: 186px;
  left: 20px;
}
.program-list__item:nth-of-type(5) .program-list__decor {
  top: 186px;
  left: 0px;
}
.program-list__item:nth-of-type(6) .program-list__decor {
  top: 175px;
  left: 107px;
}
.program-list__wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.program-list__time {
  margin-bottom: 28px;
  padding: 20px 28px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--light-color);
  background: var(--accent-color);
  border-radius: 100px;
}
.program-list__title {
  position: relative;
  padding-left: 30px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  color: var(--text-color);
}
.program-list__title::before {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 21px;
  height: 21px;
  border: 1px solid #1ca7be;
  border-radius: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/icons/check.svg");
}
.program-list__text {
  position: relative;
  margin-top: 24px;
  padding-left: 88px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 115%;
  color: var(--text-color);
}
.program-list__text::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 2px;
  left: 62px;
  top: 10px;
  background: var(--accent-color);
}
.program-list__text--second {
  padding-left: 126px;
}
.program-list__text--second::before {
  left: 82px;
}
.program-list__img img {
  max-width: 500px;
}
@media screen and (max-width: 1100px) {
  .program-container {
    gap: 36px;
  }
  .program-list {
    max-width: 420px;
    gap: 34px;
  }
  .program-list__time {
    display: none;
  }
  .program-list__item {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .program-list__item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .program-list__item:last-child .program-list__title::after {
    display: none;
  }
  .program-list__decor {
    display: none;
  }
  .program-list__title {
    margin-top: 4px;
    position: relative;
  }
  .program-list__title::after {
    position: absolute;
    content: "";
    top: 30px;
    left: -6px;
    width: 40px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../img/work-decor-mb.svg");
  }
  .program-list__text {
    font-size: 16px;
  }
  .program-list__img img {
    max-width: 400px;
    max-height: 350px;
  }
}
@media screen and (max-width: 760px) {
  .program-list__item:nth-child(1) .program-list__title::after {
    height: 414px;
  }
  .program-list__item:nth-child(2) .program-list__title::after {
    height: 424px;
  }
  .program-list__item:nth-child(4) .program-list__title::after {
    height: 450px;
  }
  .program-list__item:nth-child(5) .program-list__title::after {
    height: 446px;
  }
  .program-list__item:nth-child(6) .program-list__title::after {
    height: 446px;
  }
  .program-list__text {
    margin-top: 22px;
    padding-left: 56px;
    font-size: 16px;
    line-height: 144%;
  }
  .program-list__text::before {
    left: 30px;
  }
  .program-list__text--second {
    padding-left: 56px;
  }
  .program-list__text--second::before {
    left: 30px;
  }
  .program-list__img img {
    width: 284px;
    height: 263px;
  }
}

.get-container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.get-list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}
.get-list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.get-list__item:nth-child(2) {
  padding-left: 118px;
}
.get-list__item:nth-child(3) {
  padding-left: 44px;
}
.get-list__item:nth-child(4) {
  padding-left: 122px;
}
.get-list__box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.get-list__number {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 60px;
  line-height: 120%;
  color: var(--accent-color);
}
.get-list__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 121%;
  color: var(--title-color);
}
.get-list__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  color: var(--text-color);
}
.get-info__subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: var(--text-color);
}
.get-info__title {
  margin-top: 18px;
}
.get-info__img {
  margin-top: 40px;
}
.get-info__img img {
  width: 100%;
  max-width: 448px;
  border-radius: 40px;
}
.get-btn {
  position: absolute;
  width: 320px;
  bottom: -36px;
  right: 260px;
}
@media screen and (max-width: 1100px) {
  .get-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
  }
  .get-btn {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .get-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 32px;
  }
  .get-list__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .get-list__item:nth-child(2) {
    padding-left: 50px;
  }
  .get-list__item:nth-child(3) {
    padding-left: 20px;
  }
  .get-list__item:nth-child(4) {
    padding-left: 60px;
  }
  .get-list__box {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .get-list__number {
    font-size: 36px;
    line-height: 100%;
  }
  .get-list__title {
    font-size: 22px;
    line-height: 100%;
  }
  .get-list__text {
    font-size: 16px;
  }
}

.authors-container {
  padding-bottom: 200px;
}
.authors-list {
  display: flex;
  flex-direction: column;
  gap: 212px;
}
.authors-list__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 55px;
}
.authors-list__item:nth-of-type(2) {
  flex-direction: row-reverse;
}
.authors-list__item:nth-of-type(2) .authors-list__desc {
  right: 80px;
  bottom: -210px;
  width: 525px;
}
.authors-list__img {
  flex: 1 1 40%;
  max-width: 448px;
  min-width: 280px;
}
.authors-list__img img {
  border-radius: 40px;
  width: 100%;
  max-width: 448px;
}
.authors-list__info {
  flex: 1 1 60%;
  display: flex;
  align-items: start;
  flex-direction: column;
}
.authors-list__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: var(--text-color);
}
.authors-list__name {
  margin-top: 20px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 68px;
  line-height: 126%;
  color: var(--title-color);
}
.authors-list__position {
  margin-top: 22px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-color);
}
.authors-list__practice {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: var(--accent-color);
}
.authors-list__practice span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-color);
}
.authors-list__text {
  margin-top: 26px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  color: var(--text-color);
}
.authors-list__desc {
  position: absolute;
  right: 0;
  bottom: -128px;
  width: 695px;
  padding: 30px 45px;
  border-radius: 30px;
  box-shadow: 0 4px 64px 0 rgba(0, 0, 0, 0.06);
  background: var(--light-color);
}
.authors-list__desc p {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  color: var(--text-color);
}
.authors-list__desc ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style-type: disc;
}
.authors-list__desc ol li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  color: var(--text-color);
}
@media screen and (max-width: 1100px) {
  .authors-list {
    gap: 180px;
  }
  .authors-list__img {
    flex: 1 1 40%;
    max-width: 448px;
    min-width: 280px;
  }
  .authors-list__img img {
    border-radius: 40px;
    width: 100%;
    max-width: 448px;
  }
  .authors-list__info {
    flex: 1 1 60%;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .authors-list__title {
    font-size: 14px;
  }
  .authors-list__name {
    font-size: 32px;
    line-height: 138%;
  }
  .authors-list__position {
    font-size: 22px;
    line-height: 132%;
  }
  .authors-list__practice {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 36px;
    line-height: 140%;
  }
  .authors-list__practice span {
    font-size: 16px;
    line-height: 125%;
  }
  .authors-list__text {
    margin-top: 16px;
    font-size: 16px;
  }
  .authors-list__desc {
    position: absolute;
    right: 0;
    bottom: -128px;
    width: 695px;
    padding: 30px 38px;
  }
  .authors-list__desc p {
    font-size: 16px;
    line-height: 206%;
  }
  .authors-list__desc ol li {
    font-size: 16px;
  }
}
@media screen and (max-width: 760px) {
  .authors-container {
    padding: 0;
  }
  .authors-list {
    gap: 50px;
  }
  .authors-list__item {
    position: relative;
  }
  .authors-list__item:nth-of-type(2) {
    flex-direction: row;
  }
  .authors-list__item:nth-of-type(2) .authors-list__desc {
    position: static;
    width: 100%;
    max-width: 525px;
  }
  .authors-list__img {
    position: absolute;
    top: 110px;
    left: 0;
    right: 0;
    width: 320px;
    height: 306px;
  }
  .authors-list__info {
    flex: 1 1 60%;
    display: flex;
    align-items: start;
    flex-direction: column;
  }
  .authors-list__position {
    margin-top: 370px;
  }
  .authors-list__desc {
    position: static;
    margin-top: 44px;
    bottom: -128px;
    width: 100%;
    max-width: 500px;
    padding: 30px 38px;
  }
}

.decision-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.decision-container::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 384px;
  height: 418px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/decision.jpg");
  border-radius: 30px;
}
.decision-title {
  max-width: 766px;
  margin-top: 26px;
}
.decision-subtitle {
  margin-top: 50px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  color: var(--text-color);
}
.decision-list {
  margin-top: 86px;
  display: flex;
}
.decision-list__item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  border-radius: 30px;
}
.decision-list__item:nth-of-type(2) {
  background: var(--accent-color);
}
.decision-list__item:nth-of-type(2) .decision-list__title,
.decision-list__item:nth-of-type(2) .decision-list__text {
  max-width: 364px;
  color: var(--light-color);
}
.decision-list__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: var(--text-color);
}
.decision-list__text {
  max-width: 430px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 180%;
  color: var(--text-color);
}
@media screen and (max-width: 1150px) {
  .decision-container::after {
    top: 190px;
    right: -110px;
  }
  .decision-list {
    margin-top: 30px;
    flex-direction: column;
  }
}
@media screen and (max-width: 760px) {
  .decision-container {
    padding-bottom: 380px;
  }
  .decision-container::after {
    top: auto;
    bottom: 0px;
    width: 320px;
    height: 347px;
    right: 50%;
    transform: translateX(50%);
  }
  .decision-title {
    margin-top: 0;
  }
  .decision-subtitle {
    margin-top: 28px;
    font-size: 26px;
  }
  .decision-list {
    margin-top: 0;
  }
  .decision-list__text {
    font-size: 16px;
  }
}

.cta {
  background-repeat: no-repeat;
  background-size: 1920px 700px;
  background-position: center;
  background-image: url("../img/cta-bg.jpg");
}
.cta .container {
  max-width: 1304px;
}
.cta-container {
  position: relative;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  text-align: center;
}
.cta-text {
  margin-top: 14px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 180%;
  text-align: center;
  color: var(--text-color);
}
.cta-form {
  width: 100%;
  max-width: 555px;
  margin-top: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-form__input {
  width: 100%;
  padding: 28px 25px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: var(--light-color);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  border: 3px solid transparent;
  transition: border 0.3s ease;
}
.cta-form__input:focus {
  border: 3px solid var(--accent-color);
}
.cta-form__input::placeholder {
  color: var(--light-color);
}
.cta-form__btn {
  position: absolute;
  width: 555px;
  bottom: -28px;
}
@media screen and (max-width: 1100px) {
  .cta-title {
    margin-top: 80px;
  }
}
@media screen and (max-width: 760px) {
  .cta {
    background-size: contain;
    background-image: url("../img/cta-bg-mb.jpg");
  }
  .cta-title {
    margin-top: 0;
    font-size: 31px;
  }
  .cta-text {
    max-width: 220px;
    margin-top: 18px;
    font-size: 16px;
  }
  .cta-form {
    margin-top: 85px;
  }
  .cta-form__input {
    padding: 22px 25px;
    font-weight: 500;
  }
  .cta-form__btn {
    width: 320px;
    bottom: -36px;
  }
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: var(--text-color);
}
.faq-title {
  margin-top: 14px;
}
.faq-list {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list__border {
  width: 100%;
  padding: 1px;
  color: var(--text-color);
  border: 1px solid rgba(28, 167, 190, 0.22);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  background: rgba(28, 167, 190, 0.05);
  transition: border-radius 0.5s ease;
}
.faq-list__border:has(details[open]) {
  border-radius: 50px;
}
.faq-list__border h3, .faq-list__border p {
  color: inherit;
}
.faq-list__item {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.faq-list__item-details h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--text-color);
  text-align: left;
}
.faq-list__item-text {
  padding: 0 36px 36px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 164%;
  color: var(--text-color);
  text-align: left;
}
.faq-list__item-content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.6s;
}
.faq-list__item-body {
  overflow: hidden;
}
.faq-list__item-summary {
  width: 100%;
  padding: 36px 46px 36px 36px;
  color: inherit;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-list__item-summary h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 20px;
}
.faq-list__item-summary::marker {
  list-style-type: none;
  content: "";
}
.faq-list__btn {
  position: absolute;
  width: 18px;
  height: 10px;
  top: 36px;
  right: 36px;
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/icons/faq-arrow.svg");
}
.faq-list__item-details[open] + .faq-list__item-content {
  display: grid;
  grid-template-rows: 1fr;
  transition-duration: 0.6s;
}
.faq-list__item-details[open] ~ .faq-list__btn {
  transform: rotate(180deg);
}
@media screen and (max-width: 760px) {
  .faq-subtitle {
    font-size: 14px;
  }
  .faq-list__item-summary h3 {
    font-size: 15px;
  }
  .faq-list__item-text {
    font-size: 14px;
  }
  .faq-list__btn {
    top: 46px;
    right: 26px;
  }
}

.footer-container {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-info a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 134%;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.footer-info a:hover {
  color: var(--accent-color);
}
.footer-rights {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 131%;
  color: var(--text-color);
}
.footer-policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-policy__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 131%;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.footer-policy__link:hover {
  color: var(--accent-color);
}
.footer-policy__decor {
  width: 100%;
  height: 2px;
  background: var(--accent-color);
}
@media screen and (max-width: 760px) {
  .footer-container {
    padding: 66px 0 48px;
    flex-direction: column;
    gap: 48px;
    border-top: 1px solid rgba(28, 167, 190, 0.25);
  }
  .footer-info {
    order: 1;
  }
  .footer-policy {
    order: 2;
  }
  .footer-rights {
    order: 3;
    padding-bottom: 66px;
  }
}/*# sourceMappingURL=style.css.map */