html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a:focus,
button:focus {
  outline: none;
}

input {
  border: none;
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  border: none;
  outline: none;
  resize: none;
}

table {
  width: 100%;
}

@font-face {
  font-family: "Google Sans";
  src: local("Google Sans"), url("fonts/GoogleSans-Regular.woff2") format("woff2"), url("fonts/GoogleSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans";
  src: local("Google Sans"), url("fonts/GoogleSans-Medium.woff2") format("woff2"), url("fonts/GoogleSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans";
  src: local("Google Sans"), url("fonts/GoogleSans-Bold.woff2") format("woff2"), url("fonts/GoogleSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: "Google Sans", sans-serif;
  --f-regular: 400;
  --f-medium: 500;
  --f-bold: 700;
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-26: 26px;
  --fs-35: 35px;
  --fs-50: 50px;
  --lh-110: 110%;
  --lh-120: 120%;
  --lh-130: 130%;
  --lh-140: 140%;
  --lh-150: 150%;
  --lh-160: 160%;
  --grey: #3a3a3a;
  --white: #fff;
  --yellow: #ffcb16;
  --black: #171d25;
  --blue: #112b4c;
  --blue-light: #899ab1;
  --bg: #f5f7fa;
  --bg-2: #7f90a6;
  --bg-highlight: #c2cad6;
  --stroke: #f0f4f7;
  --title-detail-grey: rgba(107, 140, 180, 0.2);
  --light-grey: #f9fafc;
  --border-color: rgba(127, 144, 166, 0.1);
  --transition: 0.3s;
}

@media (min-width: 768px) {
  :root {
    --fs-12: 11px;
    --fs-14: 13px;
    --fs-16: 15px;
    --fs-18: 17px;
    --fs-20: 18px;
    --fs-35: 30px;
    --fs-50: 46px;
  }
}

@media (min-width: 1024px) {
  :root {
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 19px;
    --fs-20: 22px;
    --fs-35: 38px;
    --fs-50: 48px;
  }
}

@media (min-width: 1200px) {
  :root {
    --fs-12: 12px;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-18: 19px;
    --fs-20: 23px;
    --fs-35: 40px;
    --fs-50: 52px;
  }
}

@media (min-width: 1440px) {
  :root {
    --fs-12: 13px;
    --fs-14: 15px;
    --fs-16: 17px;
    --fs-18: 20px;
    --fs-20: 24px;
    --fs-35: 42px;
    --fs-50: 56px;
  }
}

@media (min-width: 1600px) {
  :root {
    --fs-12: 13px;
    --fs-14: 16px;
    --fs-16: 18px;
    --fs-18: 21px;
    --fs-20: 25px;
    --fs-35: 44px;
    --fs-50: 58px;
  }
}

@media (min-width: 1680px) {
  :root {
    --fs-12: 13px;
    --fs-14: 16px;
    --fs-16: 18px;
    --fs-18: 21px;
    --fs-20: 26px;
    --fs-35: 48px;
    --fs-50: 62px;
  }
}

@media (min-width: 1700px) {
  :root {
    --fs-12: 14px;
    --fs-14: 17px;
    --fs-16: 19px;
    --fs-18: 22px;
    --fs-20: 28px;
    --fs-35: 50px;
    --fs-50: 68px;
  }
}

@media (min-width: 1800px) and (min-height: 1100px) {
  :root {
    --fs-12: 15px;
    --fs-14: 18px;
    --fs-16: 20px;
    --fs-18: 24px;
    --fs-20: 30px;
    --fs-35: 55px;
    --fs-50: 70px;
  }
}

body {
  position: relative;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: var(--fs-14);
  font-weight: var(--f-regular);
  line-height: var(--lh-160);
  font-style: normal;
  color: var(--blue);
  background-color: var(--white);
  overflow-x: hidden;
}

body.hidden {
  overflow: hidden;
}

main {
  flex-grow: 1;
}

.container {
  max-width: calc(1720px + 10vw);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 4vw;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 5vw;
  }
}

.section {
  position: relative;
  padding-bottom: 5.71em;
  overflow-x: hidden;
}

@media (min-width: 1200px) {
  .section {
    padding-bottom: 8.33em;
  }
}

.section-grey {
  position: relative;
  margin-bottom: 5.71em;
  padding: 5.71em 0;
  padding: 2.5em 0 5.71em 0;
  background-color: var(--bg);
}

@media (min-width: 1200px) {
  .section-grey {
    margin-bottom: 8.33em;
    padding: 8.33em 0;
    padding: 4em 0 8.33em 0;
  }
}

.section-grey .container {
  max-width: calc(1700px + 10vw);
}

.section-first {
  padding-top: 6.92em;
}

@media (min-width: 768px) {
  .section-first {
   /*  padding-top: 8.33em; */
  }
}

@media (min-width: 1024px) {
  .section-first {
    /* padding-top: 10.33em; */
  }
}

.section-no-mb {
  margin-bottom: 0;
}

.title-details {
  position: relative;
  margin-bottom: 1.71em;
  font-weight: var(--f-medium);
  font-size: var(--fs-35);
  line-height: var(--lh-120);
  color: var(--blue);
}

@media (min-width: 768px) {
  .title-details {
    display: flex;
    align-items: center;
    gap: 0.6em;
  }
}

@media (min-width: 1200px) {
  .title-details {
    margin-bottom: 2em;
    gap: 1.09em;
  }
}

.title-details sup {
  top: -0.1em;
  font-size: 80%;
}

@media (min-width: 768px) {
  .title-details br {
    display: none;
  }
}

.title-details__text {
  position: relative;
}

@media (min-width: 768px) {
  .title-details__text {
    max-width: 17.12em;
    text-align: center;
  }
}

.title-details__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.65em;
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--yellow);
}

@media (min-width: 768px) {
  .title-details__text::after {
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
  }
}

@media (min-width: 1200px) {
  .title-details__text::after {
    bottom: -0.54em;
  }
}

.title-details__before {
  display: none;
}

@media (min-width: 768px) {
  .title-details__before {
    display: block;
    height: 2px;
    flex-grow: 1;
    position: relative;
    background: linear-gradient(270deg, var(--title-detail-grey), transparent);
  }

  .title-details__before::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 32%;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--yellow);
  }
}

.title-details__after {
  position: absolute;
  left: 4.34em;
  right: 0;
  top: 0.6em;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--title-detail-grey), transparent);
}

@media (min-width: 768px) {
  .title-details__after {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    flex-grow: 1;
  }
}

.title-details__after::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--yellow);
}

@media (min-width: 768px) {
  .title-details__after::before {
    right: calc(0.72em + 6px + 12px);
  }
}

.title-details__after::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--yellow);
}

@media (min-width: 768px) {
  .title-details__after::after {
    right: 0.72em;
  }
}

.title-details .link-arrow {
  font-weight: var(--f-regular);
  font-size: var(--fs-14);
  line-height: var(--lh-160);
}

.title-underline {
  position: relative;
  font-weight: var(--f-medium);
  font-size: var(--fs-35);
  line-height: var(--lh-120);
  color: var(--blue);
}

.title-underline sup {
  top: -0.1em;
  font-size: 80%;
}

.title-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.65em;
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--yellow);
}

@media (min-width: 768px) {
  .title-underline::after {
    width: 134px;
  }
}

@media (min-width: 1200px) {
  .title-underline::after {
    bottom: -0.54em;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.71em;
  color: var(--grey);
  transition: color var(--transition);
  cursor: pointer;
}

.link-arrow::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.42em;
  height: 1.42em;
  background-image: url("img/arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.link-arrow:hover {
  color: var(--blue);
}

.btn-grey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.11em;
  padding: 1.14em 1.42em;
  font-weight: var(--f-bold);
  color: var(--white);
  background-color: var(--bg-2);
  transition: background-color var(--transition);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .btn-grey {
    padding: 1.11em 1.66em;
  }
}

.btn-grey svg {
  display: none;
}

@media (min-width: 1024px) {
  .btn-grey svg {
    flex-shrink: 0;
    display: block;
    width: 1.33em;
    height: 1.33em;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.btn-grey svg g {
  transition: opacity var(--transition);
}

.btn-grey:hover {
  background-color: var(--blue);
}

.btn-grey:hover svg g {
  opacity: 1;
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.11em;
  padding: 1.14em 1.42em;
  font-weight: var(--f-bold);
  color: var(--white);
  background-color: var(--blue);
  transition: background-color var(--transition);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .btn-blue {
    padding: 1.11em 1.66em;
  }
}

.btn-blue svg {
  display: none;
}

@media (min-width: 1024px) {
  .btn-blue svg {
    flex-shrink: 0;
    display: block;
    width: 1.33em;
    height: 1.33em;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.btn-blue svg g {
  transition: opacity var(--transition);
}

.btn-blue:hover {
  background-color: var(--yellow);
}

.btn-blue:hover svg g {
  opacity: 1;
}



.btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

.btn-box .btn-grey svg,
.btn-box .btn-blue svg {
  flex-shrink: 0;
  display: block;
  width: 1.33em;
  height: 1.33em;
  -o-object-fit: contain;
  object-fit: contain;
}

.disclaimer-yellow {
  padding: 1.25em;
  display: flex;
  align-items: flex-start;
  gap: 0.625em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
  background-color: var(--yellow);
}

@media (min-width: 1024px) {
  .disclaimer-yellow {
    padding: 1em 1.5em;
    gap: 0.75em;
    align-items: center;
  }
}

.disclaimer-yellow::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("img/disclaimer-dark.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 1024px) {
  .disclaimer-yellow::before {
    width: 1.2em;
    height: 1.2em;
  }
}

.disclaimer-small {
  font-size: 0.8em;
  line-height: 145%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 1.14em 0;
  padding: 1.3em 0;
  transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
  background-color: var(--yellow);
}

@media (min-width: 1024px) {
  .header {
    /* padding: 2.22em 0; */
  }
}

.header-bg {
  background-color: var(--yellow) !important;
  box-shadow: 0px 6px 20px 0px rgba(34, 60, 80, 0.2);
}

@media (min-width: 1024px) {
  .header-bg {
    padding: 1.3em 0;
  }
}

.header-inner-page {
  /* background-color: var(--bg); */
}

.header__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.header__logo {
  display: block;
  flex-shrink: 0;
  width: 8em;
}

@media (min-width: 1024px) {
  .header__logo {
    width: 8em;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: var(--blue);
  transition: background-color var(--transition);
}

@media (min-width: 1024px) {
  .header__btn {
    display: none;
  }
}

.header__btn-band {
  display: block;
  position: relative;
  display: block;
  width: 21px;
  height: 2px;
  background-color: var(--white);
  transition-duration: var(--transition);
}

.header__btn-band::before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  top: -5px;
  background-color: var(--white);
  transition-duration: var(--transition);
  transition: background-color var(--transition), transform var(--transition), top var(--transition) var(--transition);
}

.header__btn-band::after {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  width: 100%;
  left: 0;
  top: 5px;
  background-color: var(--white);
  transition-duration: var(--transition);
  transition: background-color var(--transition), transform var(--transition), top var(--transition) var(--transition);
}

.header__nav {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  width: 100%;
  height: calc(100vh - 77px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1em;
  padding: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--stroke);
  background-color: var(--white);
  overflow-y: auto;
  background-image: url("img/mobile-menu-bg.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: opacity var(--transition), z-index var(--transition), visibility var(--transition);
}

@media (min-width: 768px) {
  .header__nav {
    height: calc(100vh - 75px);
    padding: 40px 4vw;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    position: static;
    transform: translateY(0);
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    border-top: none;
    background-color: transparent;
    background-image: none;
    opacity: 1;
    z-index: 0;
    visibility: visible;
  }
}

.header__list {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

@media (min-width: 1024px) {
  .header__list {
    flex-direction: row;
    align-items: center;
    gap: 2.5em;
    font-size: var(--fs-14);
    line-height: var(--lh-160);
  }

  .header__list li {
    width: min-content;
    line-height: 120%;
  }
}

@media (min-width: 1080px) {

  .header__list {
    gap: 1.5em;

  }
  .header__list li {
    width: auto;
  }
}

@media (min-width: 1200px) {
  .header__list {
    gap: 2.22em;
  }
}

@media (min-width: 1440px) {
  .header__list {
    gap: 2.4em;
  }
}

.header__list a {
  transition: color var(--transition);
}

.header__list a:hover {
  color: var(--yellow);
}

.header-bg .header__list a:hover {
  color: var(--yellow);
}

.header__list li.current-menu-item a {
  color: var(--yellow);
}

.header-bg .header__list li.current-menu-item a {
  color: var(--yellow);
}

.header-info {
  display: flex;
  flex-direction: column;
  gap: 1.42em;
  padding: 1.42em 1.14em;
  border: 1px solid var(--border-color);
  background: var(--white);
}

@media (min-width: 1024px) {
  .header-info {
    display: none;
  }

  .header__list a:hover {
    color: #fff;
  }

  .header-bg .header__list a:hover {
    color: #fff;
  }

  .header__list li.current-menu-item a {
    color: #fff;
  }

  .header-bg .header__list li.current-menu-item a {
    color: #fff;
  }
}

.header-info p,
.header-info span {
  display: block;
  color: var(--bg-2);
}

.header-info span:not(:last-child) {
  margin-bottom: 0.35em;
}

.header-info a {
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

.header.open {
  background-color: var(--white);
}

@media (min-width: 1024px) {
  .header.open {
    background-color: transparent;
  }
}

.header.open .header__btn {
  background: var(--bg);
}

.header.open .header__btn .header__btn-band {
  transition-duration: 0.1s;
  transition-delay: var(--transition);
  background-color: transparent;
}

.header.open .header__btn .header__btn-band::before {
  border-radius: 2px;
  background-color: var(--blue);
  transition: top var(--transition), transform var(--transition) var(--transition);
  top: 1px;
  transform: rotateZ(-45deg);
}

.header.open .header__btn .header__btn-band::after {
  border-radius: 2px;
  background-color: var(--blue);
  transition: top 0.4s, transform var(--transition) var(--transition);
  top: 1px;
  transform: rotateZ(45deg);
}

.header.open .header__nav {
  opacity: 1;
  z-index: 10;
  visibility: visible;
}

.footer {
  padding: 2.85em 0;
  background-color: var(--bg);
}

@media (min-width: 1024px) {
  .footer {
    padding: 5.55em 0 1.66em;
  }
}

.footer__box {
  margin-bottom: 2.85em;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.85em;
}

@media (min-width: 768px) {
  .footer__box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer__box {
    margin-bottom: 3.33em;
    grid-template-columns: 7fr 4fr;
  }
}

@media (min-width: 1440px) {
  .footer__box {
    -moz-column-gap: 6em;
    column-gap: 6em;
  }
}

@media (min-width: 1400px) {
  .footer__box {
    -moz-column-gap: 9.16em;
    column-gap: 9.16em;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2.14em;
}

@media (min-width: 768px) {
  .footer-nav {
    padding-top: 2.22em;
    order: 2;
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    gap: 2.77em;
  }
}

.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: var(--fs-18);
  line-height: var(--lh-140);
  color: var(--bg-2);
}

.footer-nav__list a {
  display: inline-block;
  position: relative;
  transition: color var(--transition);
}

.footer-nav__list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.13em;
  transform: translate(-20%, -50%);
  display: block;
  width: 0.8em;
  height: 0.8em;
  background-image: url("img/arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-nav__list a:hover {
  color: var(--blue);
}

.footer-nav__list a:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.footer-nav__list-small {
  display: flex;
  flex-direction: column;
  gap: 0.71em;
}

@media (min-width: 1024px) {
  .footer-nav__list-small {
    gap: 0.5em;
  }
}

.footer__icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.71em;
  font-weight: var(--f-medium);
  color: var(--bg-2);
  transition: color var(--transition);
}


@media (min-width: 1024px) {
  .footer__icon-link {
    gap: 0.83em;
  }
}

.footer__icon-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.44em;
  transform: translate(-20%, -50%);
  display: block;
  width: 1.33em;
  height: 1.33em;
  background-image: url("img/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.footer__icon-link.rotated svg {
  transform: rotate(-180deg);
}

.footer__icon-link svg {
  width: 1.42em;
  height: 1.42em;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .footer__icon-link svg {
    width: 1.33em;
    height: 1.33em;
  }
}

.footer__icon-link:hover {
  color: var(--blue);
}

.footer__icon-link:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.footer__noicon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.71em;
  color: var(--bg-2);
  transition: color var(--transition);
  font-size: var(--fs-12);
}

.footer__noicon-link:hover {
  color: var(--blue);
}

.footer-contacts {
  padding: 1.42em 1.14em;
  border: 1px solid var(--border-color);
  background-color: var(--light-grey);
}

@media (min-width: 768px) {
  .footer-contacts {
    grid-row: span 2;
    order: 1;
  }
}

@media (min-width: 1024px) {
  .footer-contacts {
    padding: 2.22em;
  }
}

.footer-contacts__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.42em;
}

@media (min-width: 1024px) {
  .footer-contacts__row {
    grid-template-columns: 19em 1fr;
    -moz-column-gap: 1.7em;
    column-gap: 1.7em;
  }
}

@media (min-width: 1200px) {
  .footer-contacts__row {
    -moz-column-gap: 3.4em;
    column-gap: 3.4em;
  }
}

@media (min-width: 1400px) {
  .footer-contacts__row {
    -moz-column-gap: 6.11em;
    column-gap: 6.11em;
  }
}

.footer-contacts__row:not(:last-child) {
  padding-bottom: 1.66em;
  margin-bottom: 1.66em;
  border-bottom: 1px solid rgba(127, 144, 166, 0.2);
}

.footer-contacts__left-text {
  color: var(--bg-2);
}

.footer-contacts__list {
  display: flex;
  flex-direction: column;
  gap: 1.42em;
}

@media (min-width: 1024px) {
  .footer-contacts__list {
    max-width: 22.22em;
  }
}

@media (min-width: 1024px) {
  .footer-contacts__list:not(:last-child) {
    grid-row: span 2;
  }
}

.footer-contacts__list span:first-child {
  display: block;
  margin-bottom: 0.35em;
  color: var(--bg-2);
}

.footer-contacts__list a {
  font-size: var(--fs-18);
  line-height: var(--lh-140);
  transition: color var(--transition);
}

.footer-contacts__list a:hover {
  color: var(--black);
}

.footer-contacts__list address {
  font-style: normal;
}

.footer-contacts .footer__icon-link {
  align-self: self-end;
  justify-self: start;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  font-size: var(--fs-12);
  line-height: var(--lh-160);
  color: var(--bg-2);
}

@media (min-width: 768px) {
  .footer-copyright {
    order: 3;
    padding-bottom: 3.33em;
    align-items: flex-end;
  }
}

.footer-copyright__logo {
  width: 6.14em;
}

@media (min-width: 1024px) {
  .footer-copyright__logo {
    width: 7em;
  }
}

.footer-copyright__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footnotes {
  margin-bottom: 2.5em;
  font-size: var(--fs-12);
  line-height: 100%;
  color: var(--bg-2);
  opacity: 0.7;
}

@media (min-width: 1024px) {
  .footnotes {
    margin-bottom: 4em;
  }
}

.footnotes li {
  font-size: 0.8em;
}

.footnotes li:not(:last-child) {
  margin-bottom: 0.3em;
}

@media (min-width: 1024px) {
  .footnotes li:not(:last-child) {
    margin-bottom: 0.3em;
  }
}

.footnotes ol {
  counter-reset: footnotes;
}

.footnotes ol li {
  padding-left: 1.41em;
  position: relative;
  counter-increment: footnotes;
}

@media (min-width: 1024px) {
  .footnotes ol li {
    padding-left: 1.66em;
  }
}

.footnotes ol li::before {
  content: counter(footnotes) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.disclaimer {
  padding-top: 1.17em;
  border-top: 1px solid rgba(127, 144, 166, 0.2);
  text-align: center;
  font-size: 17px;
  line-height: var(--lh-150);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bg-2);
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .disclaimer {
    padding-top: 1.3em;
    font-size: 23px;
    line-height: var(--lh-150);
    letter-spacing: 0.02em;
  }
}

.hero-banner {
  margin-bottom: 2.14em;
  padding-top: 6.92em;
  background-image: url("img/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

@media (min-width: 768px) {
  .hero-banner {
    padding-top: 6em;
    margin-bottom: 1.66em;
    background-image: url("img/hero-bg-desktop.jpg");
  }
}

@media (min-width: 1440px) {
  .hero-banner {
    padding-top: 8em;
  }
}

@media (min-width: 768px) {
  .hero-banner__box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1em;
  }
}

.hero-banner__content {
  margin-bottom: 0.71em;
}

@media (min-width: 768px) {
  .hero-banner__content {
    padding-bottom: 2.4em;
    margin-bottom: 0;
    max-width: 29em;
    background: radial-gradient(var(--bg) 20%, transparent);
  }
}

@media (min-width: 1024px) {
  .hero-banner__content {
    max-width: 37em;
  }
}

@media (min-width: 1200px) {
  .hero-banner__content {
    max-width: 47.5em;
  }
}

@media (min-width: 1440px) {
  .hero-banner__content {
    padding-bottom: 4em;
  }
}

.hero-banner__title {
  position: relative;
  margin-bottom: 0.8em;
  font-weight: var(--f-medium);
  font-size: var(--fs-50);
  line-height: var(--lh-110);
  text-transform: uppercase;
}

.hero-banner__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-0.4em + 1px);
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--yellow);
}

@media (min-width: 1024px) {
  .hero-banner__title::after {
    width: 134px;
  }
}

.hero-banner__title sup {
  font-size: 60%;
}

.hero-banner__text-box {
  margin-bottom: 2.14em;
  display: flex;
  flex-direction: column;
  gap: 0.57em;
}

@media (min-width: 768px) {
  .hero-banner__text-box {
    margin-bottom: 1.66em;
  }
}

@media (min-width: 1024px) {
  .hero-banner__text-box {
    gap: 0.55em;
  }
}

.hero-banner__subtitle {
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

.hero-banner__descr {
  color: var(--grey);
}

.hero-banner-list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}

@media (min-width: 768px) {
  .hero-banner-list {
    gap: 0.2em;
  }
}

.hero-banner-list__item {
  display: flex;
  align-items: center;
  gap: 0.625em;
}

@media (min-width: 768px) {
  .hero-banner-list__item {
    gap: 0.5em;
  }
}

.hero-banner-list__icon {
  display: block;
  flex-shrink: 0;
  width: 2.75em;
  height: 2.75em;
}

@media (min-width: 768px) {
  .hero-banner-list__icon {
    width: 2em;
    height: 2em;
  }
}

.hero-banner-list__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero-banner__img {
  position: relative;
  margin-right: -16px;
  margin-left: -16px;
}

@media (min-width: 480px) {
  .hero-banner__img {
    max-width: 460px;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .hero-banner__img {
    margin-right: -4vw;
  }
}

@media (min-width: 1024px) {
  .hero-banner__img {
    max-width: 48em;
    max-width: 38em;
  }
}

@media (min-width: 1200px) {
  .hero-banner__img {
    margin-right: -5vw;
  }
}

@media (min-width: 1440px) {
  .hero-banner__img {
    max-width: 40em;
  }
}

.hero-banner__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero-banner__img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10%, -270%);
  display: block;
  width: 27%;
  aspect-ratio: 98/150;
  background-image: url("img/molecule-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 480px) {
  .hero-banner__img::before {
    transform: translate(10%, -160%);
  }
}

@media (min-width: 768px) {
  .hero-banner__img::before {
    transform: translate(-20%, -70%);
    width: 40%;
    aspect-ratio: 394/296;
    background-image: url("img/molecule.svg");
  }
}

@media (min-width: 1680px) {
  .hero-banner__img::before {
    width: 48%;
  }
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 8px;
  column-gap: 8px;
  row-gap: 2.14em;
}

@media (min-width: 640px) {
  .hero-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 2em;
    column-gap: 2em;
  }
}

@media (min-width: 1024px) {
  .hero-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .hero-list__item {
    position: relative;
    flex-grow: 1;
  }
}

@media (min-width: 1024px) {
  .hero-list__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -0.71em;
    right: 0;
    display: block;
    height: 100%;
    width: 2px;
    background-color: var(--yellow);
  }

  .hero-list__item:not(:last-child) .hero-list__link {
    padding-right: 1em;
  }
}

@media (min-width: 1024px) {
  .hero-list__item:not(:first-child) .hero-list__link {
    padding-left: 1em;
  }
}

.hero-list__link {
  display: flex;
  flex-direction: column;
  gap: 0.93em;
  align-items: flex-start;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  transition: background-color var(--transition);
}

@media (min-width: 1024px) {
  .hero-list__link {
    gap: 0.5em;
  }
}

@media (min-width: 1440px) {
  .hero-list__link {
    flex-direction: row;
    gap: 0.75em;
  }
}

@media (min-width: 1024px) {
  .hero-list__link:hover {
    background-color: var(--bg);
  }
}

.hero-list__link:hover .hero-list__text::after {
  transform: translateX(20%);
}

.hero-list__icon {
  flex-shrink: 0;
  width: 3.125em;
  height: 3.125em;
}

@media (min-width: 1024px) {
  .hero-list__icon {
    width: 2.5em;
    height: 2.5em;
  }
}

@media (min-width: 1200px) {
  .hero-list__icon {
    width: 2.6em;
    height: 2.6em;
  }
}

@media (min-width: 1600px) {
  .hero-list__icon {
    width: 3em;
    height: 3em;
  }
}

.hero-list__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero-list__text {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .hero-list__text {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5em;
  }
}

.hero-list__text::after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  left: 4.28em;
  top: -3.18em;
  background-image: url("img/arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition);
}

@media (min-width: 1024px) {
  .hero-list__text::after {
    position: static;
  }
}

.why__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.14em;
}

@media (min-width: 768px) {
  .why__box {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why__box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 1em;
    column-gap: 1em;
    row-gap: 0.5em;
  }
}

@media (min-width: 1200px) {
  .why__box {
    gap: 1em;
  }
}

.why-card {
  display: block;
}

@media (min-width: 768px) {
  .why-card {
    align-self: center;
  }
}

.why-card:hover .why-card__link {
  color: var(--yellow);
}

.why-card:hover .why-card__link::after {
  transform: translateX(10%);
}

.why-card-big {
  display: block;
  padding: 1.42em;
  border: 1px solid var(--stroke);
  /* background-image: url("img/why-card.svg"); */
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
}

@media (min-width: 768px) {
  .why-card-big {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .why-card-big {
    position: relative;
    padding: 2.22em;
    min-height: 25.8em;
    /*
    background-image: url("img/why-card-desktop.svg");
    */
  }

  .why-card-big::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    opacity: 0.3;
    display: none;
  }
}

@media (min-width: 768px) {
  .why-card-big .why-card__link {
    margin-top: auto;
  }
}

.why-card-big .why-card__title,
.why-card-big .why-card__list {
  max-width: 496px;
}

.why-card-big:hover .why-card__link {
  color: var(--yellow);
}

.why-card-big:hover .why-card__link::after {
  transform: translateX(10%);
}

.why-card-img {
  order: 4;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}

@media (min-width: 768px) {
  .why-card-img {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .why-card-img {
    order: 0;
    grid-column: span 1;
    grid-row: span 2;
  }
}

.why-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}

.why-card__title {
  position: relative;
  margin-bottom: 0.75em;
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

.why-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.625em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

@media (min-width: 1024px) {
  .why-card__list {
    gap: 0.75em;
  }
}

.why-card__list:not(:last-child) {
  margin-bottom: 4.28em;
}

@media (min-width: 768px) {
  .why-card__list:not(:last-child) {
    margin-bottom: 2em;
  }
}

.why-card__list li {
  padding-left: 20px;
  position: relative;
}

.why-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--yellow);
  opacity: 0.2;
}

.why-card__list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(0.43em + 3px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--yellow);
}

.why-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.71em;
  color: var(--grey);
  transition: color var(--transition);
}

.why-card__link::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.42em;
  height: 1.42em;
  background-image: url("img/arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition);
}

.why-card__descr {
  color: var(--grey);
}

.yellow-bg-title .title-details__text {
  display: inline-block;
  padding: 0.2em;
  background-color: var(--yellow);
}

.yellow-bg-title .title-details__text::after {
  display: none;
}

.yellow-bg-title .title-details__after {
  display: none;
}

@media (min-width: 768px) {
  .yellow-bg-title .title-details__after {
    display: block;
  }
}

@media (min-width: 768px) {
  .release::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 21.7%;
    aspect-ratio: 417/342;
    background-image: url("img/release-bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
  }
}

.release .title-details__after {
  left: 6.02em;
}

@media (min-width: 768px) {
  .release .title-details__after {
    left: auto;
  }
}

.release__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.14em;
}

@media (min-width: 768px) {
  .release__list {
    position: relative;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .release__list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 32%;
    display: block;
    height: 100%;
    width: 1px;
    background-color: var(--stroke);
  }
}

@media (min-width: 768px) {
  .release__list::after {
    content: "";
    position: absolute;
    top: 0;
    right: 32%;
    display: block;
    height: 100%;
    width: 1px;
    background-color: var(--stroke);
  }
}

.release__item {
  position: relative;
  display: flex;
  gap: 1.42em;
}

@media (min-width: 768px) {
  .release__item {
    flex-direction: column;
    align-items: center;
    justify-self: center;
  }
}

@media (min-width: 1200px) {
  .release__item {
    gap: 3.4em;
  }
}

.release__item:not(:last-child) {
  padding-bottom: 2.14em;
  border-bottom: 1px solid var(--stroke);
}

@media (min-width: 768px) {
  .release__item:not(:last-child) {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.release__img {
  flex-shrink: 0;
  width: 8em;
}

@media (min-width: 768px) {
  .release__img {
    width: 12em;
  }
}

@media (min-width: 1024px) {
  .release__img {
    width: 14em;
  }
}

@media (min-width: 1200px) {
  .release__img {
    width: 17.83em;
  }
}

.release__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.release__title {
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

.release__title sup {
  top: -0.3em;
}

.release__subtitle {
  display: block;
  margin-top: -0.2em;
  margin-bottom: 0.33em;
}

.release__descr {
  margin-bottom: 1.25em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

@media (min-width: 1024px) {
  .release__descr {
    margin-bottom: 2em;
  }
}

.release__place {
  display: flex;
  gap: 0.5em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

.release__place::before {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("img/release-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 1024px) {
  .release__place::before {
    width: 1.2em;
    height: 1.2em;
  }
}

.materials__head {
  margin-bottom: 4.28em;
}

@media (min-width: 768px) {
  .materials__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
  }
}

@media (min-width: 1200px) {
  .materials__head {
    margin-bottom: 5.33em;
  }
}

.materials__all-desktop {
  display: none;
}

@media (min-width: 768px) {
  .materials__all-desktop {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .materials__all-mobile {
    display: none;
  }
}

.materials__slider {
  position: relative;
  padding-bottom: 4em;
  margin-bottom: 1.66em;
}

@media (min-width: 768px) {
  .materials__slider {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  .materials__slider .swiper-wrapper {
    width: 100% !important;
    transform: translate3d(0px, 0px, 0px) !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (min-width: 1024px) {
  .materials__slider .swiper-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

.materials__slider .swiper-slide {
  height: 100%;
}

@media (min-width: 768px) {
  .materials__slider .swiper-slide {
    width: auto !important;
  }
}

.materials__slider .swiper-button-next,
.materials__slider .swiper-button-prev {
  top: auto;
  bottom: 0;
  color: var(--yellow);
  z-index: 2;
}

.materials__slider .swiper-button-next::after,
.materials__slider .swiper-button-prev::after {
  font-size: var(--fs-35);
}

.materials__slider .swiper-button-next {
  right: 0;
}

.materials__slider .swiper-button-prev {
  left: 0;
}

.materials__pagination {
  z-index: 1;
}

.materials__pagination .swiper-pagination-bullet-active {
  background: var(--yellow);
}

.materials-card {
  display: block;
  padding: 1.42em;
  border: 1px solid var(--border-color);
  background-color: #f0f0f0;
  transition: background-color var(--transition);
}

@media (min-width: 768px) {
  .materials-card {
    height: 100%;
  }
}

@media (min-width: 1200px) {
  .materials-card {
    padding: 2.22em;
  }
}

.materials-card:hover {
  background-color: var(--white);
}

.materials-card:hover .materials-card__content::after {
  position: static;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.materials-card__head {
  margin-bottom: 1.14em;
  padding-bottom: 1.14em;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 1680px) {
  .materials-card__head {
    margin-bottom: 1.66em;
    padding-bottom: 1.3em;
  }
}

.materials-card__title {
  min-height: 4.2em;
  font-size: var(--fs-18);
  line-height: var(--lh-140);
  color: var(--blue);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*
.materials-card:hover .materials-card__title {
  color: var(--yellow);
} */

.materials-card__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.materials-card__content::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.33em;
  height: 1.33em;
  background-image: url("img/arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-20%);
  /*
  visibility: hidden;
  opacity: 0; */
  transition: opacity 0s, visibility 0s, transform 0s;
}

.materials-card__text {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--grey);
}

.comparative .title-details sup {
  top: -0.8em;
  font-size: 50%;
}

.comparative .title-details__after {
  display: none;
}

@media (min-width: 768px) {
  .comparative .title-details__after {
    display: block;
  }
}

.comparative__box {
  position: relative;
  margin-bottom: 1em;
}

@media (min-width: 1024px) {
  .comparative__box {
    margin-bottom: 2em;
    max-height: 50vh;
    max-height: 40vh;
    overflow: hidden;
  }
}

@media (min-width: 1200px) {
  .comparative__box {
    margin-bottom: 3.33em;
  }
}

@media (min-width: 1024px) {
  .comparative__box.visible-all {
    max-height: none;
    overflow: visible;
  }

  .comparative__box.visible-all .comparative__shadow {
    display: none;
  }
}

@media (min-width: 1024px) {
  .comparative__table {
    display: grid;
    grid-template-columns: 20% repeat(6, minmax(0, 1fr));
    font-size: var(--fs-12);
  }

  .comparative__box__2 .comparative__table {
    grid-template-columns: 20% repeat(5, minmax(0, 1fr));

  }
}

@media (min-width: 1440px) {
  .comparative__table {
    grid-template-columns: 25% repeat(6, minmax(0, 1fr));
  }

  .comparative__box__2 .comparative__table {
    grid-template-columns: 25% repeat(5, minmax(0, 1fr));

  }
}

.comparative__column-first {
  display: none;
}

@media (min-width: 1024px) {
  .comparative__column-first {
    display: block;
  }

  .comparative__column-first .comparative__data {
    justify-content: flex-start;
    color: var(--grey);
  }

  .comparative__column-first .comparative__data:first-child {
    border-bottom: none;
  }

  .comparative__column-first .comparative__data span {
    display: inline-block;
    padding-right: 0.5em;
    line-height: var(--lh-140);
  }
}

.comparative__column:not(:last-child) {
  margin-bottom: 0.57em;
}

@media (min-width: 1024px) {
  .comparative__column:not(:last-child) {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .comparative__column:nth-child(2n) {
    background-color: var(--bg);
  }

  .comparative__column:nth-child(2n) .comparative__pluses {
    background-color: var(--white);
  }
}

.comparative__column.js-table-acc {
  border: 1px solid var(--stroke);
}

@media (min-width: 1024px) {
  .comparative__column.js-table-acc {
    border: none;
  }
}

.comparative__column.js-table-acc .comparative__content {
  display: none;
}

@media (min-width: 1024px) {
  .comparative__column.js-table-acc .comparative__content {
    display: block;
  }
}

.comparative__column.js-table-acc.open .comparative__content {
  display: block;
}

.comparative__column.js-table-acc.open .comparative__title::after {
  transform: rotate(-45deg);
}

.comparative__title {
  padding: 1.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  font-weight: 700;
  font-size: var(--fs-16);
  line-height: var(--lh-160);
  background-color: var(--bg);
}

@media (min-width: 1024px) {
  .comparative__title {
    padding: 0;
    justify-content: center;
    text-align: center;
    height: 3.8em;
    font-size: var(--fs-12);
    line-height: var(--lh-160);
    background-color: transparent;
  }

  .comparative__box__2 .comparative__title {
    padding: 0.5em;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.1);
    height: 3.9em;
  }
}

@media (min-width: 1200px) {
  .comparative__title {
    height: 2.9em;
  }
}

.comparative__title::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("img/accordion-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition);
}

@media (min-width: 1024px) {
  .comparative__title::after {
    display: none;
  }
}

.comparative__content {
  padding: 0.71em 1.42em 1.42em;
  background-color: var(--white);
}

@media (min-width: 1024px) {
  .comparative__content {
    padding: 0;
    background-color: transparent;
  }
}

.comparative__data {
  padding: 0.71em 0px;
  height: 4.57em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}

.comparative__box__2 .mtp,
.comparative__box__2 .mtp .comparative__number,
.comparative__box__2 .metilprednizolon,
.comparative__box__2 .metilprednizolon .comparative__number {
  font-weight: bold;
}

@media (min-width: 1024px) {
  .comparative__data {
    padding: 0.5em 0px;
    height: 3.8em;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .comparative__data {
    height: 2.9em;
  }
}

.comparative__data:not(:last-child) {
  border-bottom: 1px solid rgba(103, 103, 103, 0.1);
}

.comparative__descr {
  color: var(--grey);
}

@media (min-width: 1024px) {
  .comparative__descr {
    display: none;
  }
}

.comparative__number {
  font-weight: var(--f-bold);
}

.comparative__box__2 .comparative__number {

  font-weight: normal;
}

@media (min-width: 1024px) {
  .comparative__box__2 .comparative__number {
    text-align: center;
    line-height: 130%;
    padding: 0 0.5em;
  }
}

.comparative__pluses {
  flex-shrink: 0;
  display: inline-flex;
  gap: 4px;
  border-radius: 40px;
  padding: 12px 14px;
  padding: 10px;
  background-color: var(--bg);
}

@media (min-width: 1024px) {
  .comparative__pluses {
    padding: 6px;
  }
}

@media (min-width: 1024px) {
  .comparative__pluses img {
    width: 8px;
    height: 8px;
  }
}

.comparative__shadow {
  display: none;
}

@media (min-width: 1024px) {
  .comparative__shadow {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  }
}

@media (min-width: 1024px) {
  .comparative-scroll .comparative__box.visible-all .comparative__title {
    position: sticky;
    top: 70px;
    left: 0;
  }

  .comparative-scroll .comparative__column:nth-child(2n) .comparative__title {
    background-color: var(--bg);
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.1);
  }

  .comparative-scroll .comparative__column:nth-child(2n) .comparative__data {
    transition: background-color var(--transition);
  }

  .comparative-scroll .comparative__column:nth-child(2n) .comparative__data.highlight {
    background-color: var(--bg-highlight);
  }

  .comparative-scroll .comparative__column:nth-child(2n-1) .comparative__title {
    background-color: var(--white);
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.1);
  }

  .comparative-scroll .comparative__column:nth-child(2n-1) .comparative__data {
    transition: background-color var(--transition);
  }

  .comparative-scroll .comparative__column:nth-child(2n-1) .comparative__data.highlight {
    background-color: var(--bg);
  }

  .comparative-scroll .comparative__column:nth-child(2n-1) .comparative__data.highlight .comparative__pluses {
    background-color: var(--white);
  }

  .comparative-scroll .comparative__column:first-child .comparative__title {
    background-color: transparent;
    box-shadow: none;
  }
}

@media (min-width: 1440px) {
  .comparative-scroll .comparative__box.visible-all .comparative__title {
    top: 80px;
  }
}

@media (min-width: 1600px) {
  .comparative-scroll .comparative__box.visible-all .comparative__title {
    top: 90px;
  }
}

@media (min-width: 1800px) {
  .comparative-scroll .comparative__box.visible-all .comparative__title {
    top: 100px;
  }
}

.section-grey.why-aspect {
  padding-bottom: 2em;
}

@media (min-width: 1200px) {
  .section-grey.why-aspect {
    padding-bottom: 1em;
  }

}

@media (min-width: 1200px) {
  .why-aspect .title-details {
    margin-bottom: 0.54em;
  }
}

@media (min-width: 768px) {
  .why-aspect .title-details__text::after {
    width: 100%;
  }
}

.why-aspect .title-details__after {
  left: 7.2em;
}

@media (min-width: 768px) {
  .why-aspect .title-details__after {
    left: auto;
  }
}

.why-aspect .why-card-big {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.22em;
  border-top: none;
  border-left: none;
  background-size: contain;
}

@media (min-width: 768px) {
  .why-aspect .why-card-big {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 3em;
    column-gap: 3em;
  }
}

@media (min-width: 1200px) {
  .why-aspect .why-card-big {
    gap: 2.22em;
    -moz-column-gap: 3em;
    column-gap: 3em;
    column-gap: 6em;
  }
}

.why-aspect .why-card-big::before {
  opacity: 0.5;
}

.why-aspect .why-card-big .why-card-big__box.why-card-big__pack img {
  max-width: 50%;
  min-width: 250px;
}


.why-aspect .why-card-big .why-card__title,
.why-aspect .why-card-big .why-card__list {
  max-width: none;
}

.why-aspect .why-card__title {
  margin-bottom: 1.2em;
  font-size: var(--fs-18);
  line-height: var(--lh-140);
  font-weight: 500;
}

@media (min-width: 768px) {
  .why-aspect .why-card__title {
    margin-bottom: 0.65em;
  }
}

.why-aspect .why-card__list {
  gap: 0.33em;
  font-size: var(--fs-14);
  line-height: var(--lh-160);
}

.section-grey.where {
  margin-bottom: 5px;
}

.where .title-details__after {
  display: none;
}

@media (min-width: 768px) {
  .where .title-details__after {
    display: block;
  }
}

@media (min-width: 768px) {
  .where .title-details__text::after {
    width: 100%;
  }
}

.where__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.71em;
}

@media (min-width: 640px) {
  .where__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .where__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  .where__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.where__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  padding: 0 !important;
  aspect-ratio: 14/8;
  border: 1px solid var(--border-color);
  background-color: var(--light-grey);
  transition: background-color var(--transition);
}

@media (min-width: 1024px) {
  .where__link {
    padding: 2.22em;
  }
}

.where__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.where__link:hover {
  background-color: var(--white);
}

.indications .title-details {
  font-size: var(--fs-26);
  line-height: var(--lh-120);
  margin-bottom: 3.3em;
}

@media (min-width: 640px) {
  .indications .title-details {
    font-size: var(--fs-35);
    line-height: var(--lh-120);
  }
}

@media (min-width: 1200px) {
  .indications .title-details {
    margin-bottom: 2em;
  }
}

.indications .title-details__after {
  left: 5.8em;
}

@media (min-width: 768px) {
  .indications .title-details__after {
    left: auto;
  }
}

.indications .title-details__text::after {
  display: none;
}

@media (min-width: 768px) {
  .indications .title-details__text::after {
    display: block;
  }
}

.indications .title-details .link-arrow {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(150%);
}

@media (min-width: 768px) {
  .indications .title-details .link-arrow {
    left: auto;
    right: 0;
    transform: translateY(130%);
  }
}

@media (min-width: 1024px) {
  .indications .title-details .link-arrow {
    transform: translateY(150%);
  }
}

@media (min-width: 1200px) {
  .indications .title-details .link-arrow {
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    max-width: 9.4em;
    transform: translateY(-50%);
    padding-left: 2em;
    /* background-color: var(--white); */
  }
}

.indications .link-arrow::after {
  background-image: url("img/arrow-right-white.svg");
}

.indications .comparative__box {
  margin-bottom: 0;
}

.indications__box:not(:last-child) {
  margin-bottom: 1.42em;
}

@media (min-width: 1024px) {
  .indications__box:not(:last-child) {
    margin-bottom: 2.22em;
  }
}

.indications__title {
  margin-bottom: 0.55em;
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

@media (min-width: 1024px) {
  .indications__title {
    margin-bottom: 0.8em;
  }
}

.indications__list {
  display: flex;
  flex-direction: column;
  gap: 0.625em;
  color: var(--grey);
}

@media (min-width: 1024px) {
  .indications__list {
    gap: 0.4em;
  }
}

.indications__list:not(:last-child) {
  margin-bottom: 4.28em;
}

@media (min-width: 768px) {
  .indications__list:not(:last-child) {
    margin-bottom: 2em;
  }
}

.indications__list li {
  padding-left: 20px;
  position: relative;
}

.indications__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--yellow);
  opacity: 0.2;
}

.indications__list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(0.43em + 3px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--yellow);
}

@media (min-width: 1024px) {
  .indications-row {
    display: grid;
    grid-template-columns: 25% 1fr;
  }
}

.indications-row:not(:last-child) {
  margin-bottom: 0.71em;
}

@media (min-width: 1024px) {
  .indications-row:not(:last-child) {
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .indications-row:nth-child(2n-1) {
    background-color: var(--bg);
  }
}

.indications-row__content {
  padding: 1.25em;
  border: 1px solid var(--border-color);
  display: none;
}

@media (min-width: 1024px) {
  .indications-row__content {
    display: block;
    border: none;
  }
}

.indications-row.open .indications-row__content {
  display: block;
}

.indications-row.open .comparative__title::after {
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .indications-row .comparative__title {
    height: 100%;
    padding: 1.25em;
    justify-content: flex-start;
    align-items: stretch;
    text-align: left;
    font-size: var(--fs-16);
    line-height: var(--lh-160);
    border-right: 1px solid rgba(103, 103, 103, 0.1);
  }
}

.standards .title-underline {
  font-size: var(--fs-26);
  line-height: var(--lh-120);
}

@media (min-width: 640px) {
  .standards .title-underline {
    font-size: var(--fs-35);
    line-height: var(--lh-120);
  }
}

.standards .materials__head {
  position: relative;
}

@media (min-width: 1024px) {
  .standards .materials__head {
    gap: 2em;
  }
}

.standards .materials__head .link-arrow {
  position: absolute;
  left: 0;
  top: calc(100% + 1em);
}

@media (min-width: 1024px) {
  .standards .materials__head .link-arrow {
    position: static;
    flex-shrink: 0;
    width: 11em;
  }
}

.standards .materials__head .title-underline::after {
  display: none;
}

@media (min-width: 1024px) {
  .standards .materials__head .title-underline::after {
    display: block;
  }
}

.standards .materials-card {
  background-color: var(--yellow);
}

.standards .materials-card:hover {
  background-color: var(--white);
}

.standards .materials-card:hover .materials-card__title::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.standards .materials-card__title {
  position: relative;
  padding-right: 1.8em;
  display: block;
  min-height: 1.0em;
}

.standards .materials-card__title::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.33em;
  height: 1.33em;
  background-image: url("img/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(-20%);
  /*visibility: hidden;
  opacity: 0;*/
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.directions {
  background-image: url("img/materials-bg.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
}

.directions .materials__head {
  margin-bottom: 4em;
}

@media (min-width: 1200px) {
  .directions .materials__head {
    margin-bottom: 4em;
  }
}

.directions .title-underline {
  font-size: var(--fs-26);
  line-height: var(--lh-120);
}

@media (min-width: 640px) {
  .directions .title-underline {
    font-size: var(--fs-35);
    line-height: var(--lh-120);
  }
}

.directions .title-underline::after {
  width: 100%;
  height: 9px;
}

@media (min-width: 768px) {
  .directions {
    background-image: url("img/materials-bg-desktop.svg");
    background-size: cover;
  }
}

.directions__grid-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .directions__grid-box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.directions .materials-card {
  background-color: var(--white);
  transition: background-color var(--transition), border var(--transition);
}

@media (min-width: 1200px) {
  .directions .materials-card {
    padding: 1.1em 1.42em;
  }
}

.directions .materials-card__head {
  margin-bottom: 0.66em;
  padding-bottom: 0.66em;
}

@media (min-width: 1200px) {
  .directions .materials-card__head {
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}

.directions .materials-card__title {
  display: block;
  min-height: 0;
}

.directions .materials-card__content::after {
  opacity: 1;
  visibility: visible;
}

.directions .materials-card:hover .materials-card__content::after {
  background-image: url("img/arrow-right-blue.svg");
}

.directions .materials-card:hover {
  border: 1px solid var(--yellow);
  background-color: var(--yellow);
}

.tools {
  background-image: url("img/materials-bg.svg");
  background-position: bottom right;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .tools {
    background-image: url("img/materials-bg-desktop.svg");
  }
}

@media (min-width: 768px) {
  .tools .title-details {
    margin-bottom: 0.27em;
  }
}

@media (min-width: 768px) {
  .tools .title-details__text::after {
    display: none;
  }
}

.tools .title-details__after {
  left: 7.17em;
}

@media (min-width: 768px) {
  .tools .title-details__after {
    left: auto;
  }
}

.tools__subtitle {
  display: none;
  margin-bottom: 2em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

@media (min-width: 768px) {
  .tools__subtitle {
    display: block;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .tools__subtitle {
    margin-bottom: 40px;
  }
}

.tools-nav {
  margin-bottom: 2.85em;
  padding: 0 16px;
  overflow-x: auto;
  position: sticky;
  top: 77px;
  left: 0;
  z-index: 5;
  background-color: var(--bg-highlight);
}

@media (min-width: 768px) {
  .tools-nav {
    top: 75px;
    overflow: visible;
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .tools-nav {
    top: 63px;
  }
}

@media (min-width: 1200px) {
  .tools-nav {
    margin-bottom: 4.44em;
  }
}

@media (min-width: 1440px) {
  .tools-nav {
    top: 67px;
  }
}

@media (min-width: 1600px) {
  .tools-nav {
    top: 72px;
  }
}

@media (min-width: 1700px) {
  .tools-nav {
    top: 76px;
  }
}

.tools-nav__list {
  display: flex;
}

.tools-nav__item {
  border: 1px solid var(--stroke);
}

.tools-nav__item:not(:last-child) {
  border-right: none;
}

.tools-nav__btn {
  position: relative;
  display: block;
  padding: 0.71em 1.42em;
  white-space: nowrap;
  color: var(--grey);
  background-color: var(--white);
  transition: background-color var(--transition), color var(--transition);
}

@media (min-width: 1200px) {
  .tools-nav__btn {
    padding: 0.86em 1.8em;
  }
}

.tools-nav__btn::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  display: block;
  height: 2px;
  width: 5em;
  background-color: var(--yellow);
}

.tools-nav__btn.active {
  color: var(--blue);
  background-color: var(--bg);
}

.tools-acc {
  margin: 0 -16px;
  border-bottom: 1px solid var(--stroke);
  background-color: var(--white);
}

@media (min-width: 768px) {
  .tools-acc {
    margin: 0;
    border: 1px solid var(--stroke);
  }
}

.tools-acc:first-child {
  border-top: 1px solid var(--stroke);
}

@media (min-width: 768px) {
  .tools-acc:not(:last-child) {
    margin-bottom: 10px;
  }
}

.tools-acc.open .tools-acc__title::after {
  transform: rotate(-45deg);
}

.tools-acc.open .tools-acc-content {
  display: block;
}

.tools-acc__title {
  padding: 1.78em;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1em;
  color: var(--white);
  cursor: pointer;
  background-color: var(--blue-light);
}

@media (min-width: 768px) {
  .tools-acc__title {
    padding: 2.22em 2.77em;
  }
}

.tools-acc__title span {
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

.tools-acc__title::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1em;
  height: 1em;
  font-size: var(--fs-20);
  line-height: var(--lh-130);
  background-image: url("img/accordion-icon-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition);
}

@media (min-width: 1024px) {
  .tools-acc__title::after {
    width: 0.8em;
    height: 0.8em;
  }
}

.tools-acc-content {
  display: none;
  padding: 1.78em 16px;
}

@media (min-width: 768px) {
  .tools-acc-content {
    padding: 2.22em 2.77em;
  }
}

.tools-acc-content__text {
  font-size: var(--fs-16);
  line-height: var(--lh-160);
  color: var(--grey);
}

.tools-acc-content__text:not(:last-child) {
  margin-bottom: 1.25em;
}

@media (min-width: 1200px) {
  .tools-acc-content__text:not(:last-child) {
    margin-bottom: 2.5em;
  }
}

.tools-acc-content__text p:not(:last-child) {
  margin-bottom: 0.625em;
}

@media (min-width: 1200px) {
  .tools-acc-content__text p:not(:last-child) {
    margin-bottom: 0.5em;
  }
}

.tools-acc-content__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.42em;
}

.tools-acc-content__block.hidden,
.tools-acc-content-result.hidden {
  display: none;
}

@media (min-width: 768px) {
  .tools-acc-content__block {
    grid-template-columns: 1.5fr 1fr;
  }
}

.tools-acc-content-result {
  padding: 1.42em;
  padding-left: 1.28em;
  border-left: 2px solid var(--bg-2);
  background-color: var(--bg);
}

@media (min-width: 1200px) {
  .tools-acc-content-result {
    padding: 1.66em 2.22em;
    padding-left: 2.11em;
  }
}

.tools-acc-content-result__title {
  margin-bottom: 1.11em;
  font-size: var(--fs-18);
  line-height: var(--lh-140);
}

.tools-acc-content-result__subtitle {
  margin-bottom: 0.625em;
  font-weight: var(--f-bold);
  font-size: var(--fs-18);
  line-height: var(--lh-150);
}

.tools-acc-content-result-info {
  margin-bottom: 0.93em;
  display: flex;
  align-items: center;
  -moz-column-gap: 0.625em;
  column-gap: 0.625em;
  row-gap: 0.375em;
  flex-wrap: wrap;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}

.tools-acc-content-result-info>span {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.625em;
}

.tools-acc-content-result-info__descr-big {
  font-weight: var(--f-medium);
  font-size: var(--fs-18);
  line-height: var(--lh-140);
}

.tools-acc-content-result__text {
  color: var(--grey);
}

.tools-acc-content-result__text p:not(:last-child) {
  margin-bottom: 0.3125em;
}

.tools-acc-content-result__info {
  margin-top: 2em;
}

.tools-acc-content-result__block {
  margin-bottom: 1.11em;
}

.tools-acc-content-result__disclaimer {
  margin-top: 1em;
  font-size: var(--fs-12);
  line-height: var(--lh-160);
  color: var(--grey);
}

.tools-acc-content-result__disclaimer p:not(:last-child) {
  margin-bottom: 0.3125em;
}

.tools-acc-content-result-yellow {
  border-left: 2px solid var(--blue);
  background-color: var(--yellow);
}

.tools-acc-content__box {
  padding: 1.28em;
  display: flex;
  flex-direction: column;
  gap: 1.07em;
  background-color: var(--yellow);
}

@media (min-width: 1200px) {
  .tools-acc-content__box {
    padding: 1.66em 2.22em;
    gap: 1.66em;
  }
}

.tools-acc-content__box h3 {
  font-size: var(--fs-18);
  line-height: var(--lh-140);
}

.tools-acc-content__box ul {
  display: flex;
  flex-direction: column;
  gap: 0.625em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

@media (min-width: 1024px) {
  .tools-acc-content__box ul {
    gap: 0.75em;
  }
}

.tools-acc-content__box ul li {
  padding-left: 20px;
  position: relative;
}

.tools-acc-content__box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--grey);
  opacity: 0.2;
}

.tools-acc-content__box ul li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(0.43em + 3px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--grey);
}


#count_comment a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.11em;
  padding: 1.14em 1.42em;
  font-weight: var(--f-bold);
  color: var(--blue);
  background-color: #fff;
  transition: background-color var(--transition);
}

#count_comment a:hover {
  background-color: var(--blue);
  color: #fff;
  transition: background-color var(--transition);
}


.tools-acc-calc {
  margin-bottom: 1.42em;
  padding: 1.42em;
  background-color: var(--bg);
}

@media (min-width: 1024px) {
  .tools-acc-calc {
    padding: 1.42em 2.77em;
  }
}

.tools-acc-calc__form {
  display: grid;
  grid-template-columns: 1fr 90px;
  -moz-column-gap: 0.4em;
  column-gap: 0.4em;
  row-gap: 1.07em;
}

@media (min-width: 768px) {
  .tools-acc-calc__form {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    -moz-column-gap: 0.71em;
    column-gap: 0.71em;
    row-gap: 1.07em;
  }
}

@media (min-width: 1024px) {
  .tools-acc-calc__form {
    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr) auto;
    gap: 0.5em;
  }
}

@media (min-width: 1200px) {
  .tools-acc-calc__form {
    grid-template-columns: minmax(0, 1fr) 140px minmax(0, 1fr) auto;
    gap: 1.11em;
  }
}

.tools-acc-calc__form .choices,
.tools-acc-calc__form .choices__inner,
.tools-acc-calc__form .choices__list--dropdown .choices__item,
.tools-acc-calc__form .choices__list[aria-expanded] .choices__item {
  font-size: var(--fs-14);
  line-height: var(--lh-160);
}

.tools-acc-calc__form .choices__inner {
  padding: 0.85em;
  padding-left: 1.14em;
  border: 1px solid transparent;
  background-color: var(--white);
  border-radius: 0;
  transition: color var(--transition);
}

.tools-acc-calc__form .is-focused .choices__inner,
.tools-acc-calc__form .is-open .choices__inner {
  border: 1px solid var(--blue);
  color: var(--grey);
}

.tools-acc-calc__form .choices[data-type*=select-one] .choices__inner {
  padding-bottom: 0.78em;
}

@media (min-width: 768px) {
  .tools-acc-calc__form .choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0.66em;
  }
}

@media (min-width: 1024px) {
  .tools-acc-calc__form .choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0.75em;
  }
}

@media (min-width: 1200px) {
  .tools-acc-calc__form .choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0.8em;
  }
}

@media (min-width: 1440px) {
  .tools-acc-calc__form .choices[data-type*=select-one] .choices__inner {
    padding-bottom: 0.85em;
  }
}

.tools-acc-calc__form .choices[data-type*=select-one]::after {
  width: 24px;
  height: 24px;
  margin-top: 0;
  transform: translateY(-50%);
  border: none;
  background-image: url("img/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--transition);
}

.tools-acc-calc__form .choices[data-type*=select-one].is-open::after {
  transform: translateY(-50%) rotate(-180deg);
}

.tools-acc-calc__form .choices__list--dropdown,
.tools-acc-calc__form .choices__list[aria-expanded] {
  margin-top: 0;
  top: calc(100% + 7px);
  background-color: var(--white);
  border: none;
}

.tools-acc-calc__form .is-flipped .choices__list--dropdown,
.tools-acc-calc__form .is-flipped .choices__list[aria-expanded] {
  top: auto;
  margin-bottom: 7px;
}

.tools-acc-calc__form .choices__list--dropdown .choices__item,
.tools-acc-calc__form .choices__list[aria-expanded] .choices__item {
  padding: 1.11em 1.66em;
  color: var(--grey);
}

.tools-acc-calc__form .choices__list--dropdown .choices__item:not(:last-child),
.tools-acc-calc__form .choices__list[aria-expanded] .choices__item:not(:last-child) {
  border-bottom: 1px solid var(--stroke);
}

.tools-acc-calc__form .choices__list--dropdown .choices__item--selectable.is-highlighted,
.tools-acc-calc__form .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: transparent;
}

.tools-acc-calc__form .choices__list--dropdown .choices__item--selectable.is-selected {
  position: relative;
}

.tools-acc-calc__form .choices__list--dropdown .choices__item--selectable.is-selected::after {
  content: "";
  position: absolute;
  right: 1.66em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.33em;
  height: 1.33em;
  background-image: url("img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .tools-acc-calc__from {
    grid-column: span 5;
  }
}

@media (min-width: 1024px) {
  .tools-acc-calc__from {
    grid-column: span 1;
  }
}

.tools-acc-calc__to {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .tools-acc-calc__to {
    grid-column: span 3;
  }
}

@media (min-width: 1024px) {
  .tools-acc-calc__to {
    grid-column: span 1;
  }
}

.tools-acc-calc__title {
  display: block;
  margin-bottom: 0.71em;
  color: var(--grey);
}

@media (min-width: 1200px) {
  .tools-acc-calc__title {
    margin-bottom: 0.75em;
    font-size: vsr(--fs-16);
    line-height: var(--lh-150);
  }
}

.tools-acc-calc__label {
  position: relative;
  display: block;
}

.tools-acc-calc__label input {
  display: block;
  width: 100%;
  padding: 1.07em;
  padding-right: 2.14em;
  border: 1px solid transparent;
  text-align: center;
  background-color: var(--white);
  transition: border var(--transition);
}

@media (min-width: 1200px) {
  .tools-acc-calc__label input {
    padding: 1.11em 1.66em;
    padding-right: 3.2em;
    text-align: left;
  }
}

.tools-acc-calc__label input:hover,
.tools-acc-calc__label input:focus {
  border: 1px solid var(--blue);
  border: 1px solid var(--yellow);
}

.tools-acc-calc__label span {
  position: absolute;
  top: 1.14em;
  right: 0.71em;
  color: var(--grey);
}

@media (min-width: 1200px) {
  .tools-acc-calc__label span {
    right: 1.66em;
  }
}

@media (min-width: 1440px) {
  .tools-acc-calc__label span {
    top: 1.2em;
  }
}

.tools-acc-calc .btn-grey {
  margin-top: 1.07em;
  grid-column: span 2;
}

@media (min-width: 768px) {
  .tools-acc-calc .btn-grey {
    margin-top: 0;
    padding: 1.14em 0.6em;
    align-self: self-end;
    grid-column: span 3;
  }
}

@media (min-width: 1024px) {
  .tools-acc-calc .btn-grey {
    grid-column: span 1;
    padding: 1.16em 1.66em;
    margin-left: 0.5em;
  }
}

@media (min-width: 1200px) {
  .tools-acc-calc .btn-grey {
    margin-left: 1.66em;
  }
}

.tools-acc-list-blue__item {
  padding: 1.42em 16px;
}

@media (min-width: 768px) {
  .tools-acc-list-blue__item {
    padding: 1.42em 2.77em;
  }
}

@media (min-width: 1024px) {
  .tools-acc-list-blue__item {
    padding: 2em 2.77em;
  }
}

@media (min-width: 1200px) {
  .tools-acc-list-blue__item {
    padding: 2.22em 2.77em;
  }
}

.tools-acc-list-blue__item-bg {
  background-color: var(--bg);
}

.tools-acc-list-blue__title {
  font-size: var(--fs-18);
  line-height: var(--lh-140);
  font-weight: var(--f-bold);
}

.tools-acc-list-blue__title:not(:last-child) {
  padding-bottom: 1.11em;
  margin-bottom: 1.11em;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
  .tools-acc-list-blue__title:not(:last-child) {
    padding-bottom: 1.25em;
    margin-bottom: 1.45em;
  }
}

.tools-acc-list-blue__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.42em;
}

@media (min-width: 768px) {
  .tools-acc-list-blue__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .tools-acc-list-blue__content {
    gap: 2.22em;
  }
}

.tools-acc-list-blue__box {
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

.tools-acc-list-blue__box b {
  font-weight: var(--f-medium);
}

.tools-acc-list-blue__subtitle {
  margin-bottom: 0.3125em;
  font-weight: var(--f-bold);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--blue);
}

@media (min-width: 1024px) {
  .tools-acc-list-blue__subtitle {
    margin-bottom: 1em;
  }
}

.tools-acc-list-blue .btn-grey sup {
  top: -0.1em;
  font-size: 95%;
}

.tools-acc-inner-box {
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

.tools-acc-inner-box p:not(:last-child) {
  margin-bottom: 0.5em;
}

.tools-acc-inner-box b {
  font-weight: var(--f-medium);
}

.tools-acc-inner-box__disclaimer {
  padding: 1.32em;
  background-color: var(--bg);
}

.tools-acc-inner-box__disclaimer:not(:last-child) {
  margin-bottom: 1.32em;
}

.tools-acc-inner-box__border-top {
  margin-top: 1.32em;
  padding-top: 1.32em;
  border-top: 1px solid var(--border-color);
}

.tools-acc-inner-list {
  margin: 0.3125em 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  font-size: var(--fs-14);
  line-height: var(--lh-160);
}

@media (min-width: 1024px) {
  .tools-acc-inner-list {
    margin: 0.66em 0;
  }
}

.tools-acc-inner-list li {
  padding-left: 20px;
  position: relative;
}

.tools-acc-inner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--yellow);
  opacity: 0.2;
}

.tools-acc-inner-list li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(0.5em + 3px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--yellow);
}

.tools-acc-inner-list~p {
  margin-top: 1em;
}

.tools-acc-inner-table {
  margin: 0.66em 0;
  font-size: var(--fs-14);
  line-height: var(--lh-160);
  border: 1px solid var(--border-color);
}

@media (min-width: 1024px) {
  .tools-acc-inner-table {
    margin: 1.32em 0;
  }
}

.tools-acc-inner-table td {
  padding: 0.66em 0.3em;
  vertical-align: top;
  border-bottom: 1px solid var(--border-color);
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .tools-acc-inner-table td {
    padding: 0.66em;
    overflow-wrap: normal;
  }
}

.tools-acc-inner-table td:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.tools-acc-inner-table .bg-dark {
  font-weight: var(--f-medium);
  color: var(--white);
  background-color: var(--bg-2);
}

.tools-acc-inner-table .bg-dark td {
  padding: 1em 0.3em;
}

@media (min-width: 640px) {
  .tools-acc-inner-table .bg-dark td {
    padding: 1em 0.66em;
  }
}

.tools-acc-inner-table .bg-light {
  font-weight: var(--f-medium);
  background-color: var(--bg);
}

.tools-acc-inner-table .bg-light td {
  padding: 1em 0.3em;
}

@media (min-width: 640px) {
  .tools-acc-inner-table .bg-light td {
    padding: 1em 0.66em;
  }
}

.tools-acc-inner-table .text-center {
  text-align: center;
}

.tools-acc-quiz {
  margin-right: -16px;
  margin-left: -16px;
  margin-bottom: 1.42em;
  padding: 1.78em 16px 1.42em;
  background-color: var(--bg);
}

@media (min-width: 768px) {
  .tools-acc-quiz {
    margin-right: -2.77em;
    margin-left: -2.77em;
    margin-bottom: 2.77em;
    padding: 1.78em 2.77em 1.42em;
  }
}

@media (min-width: 1024px) {
  .tools-acc-quiz {
    padding: 2em 2.77em;
  }
}

@media (min-width: 1200px) {
  .tools-acc-quiz {
    padding: 2.77em 2.77em;
  }
}

.tools-acc-quiz__form {
  display: flex;
  flex-direction: column;
  gap: 2.14em;
}

@media (min-width: 640px) {
  .tools-acc-quiz__form {
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .tools-acc-quiz__form {
    gap: 2.77em;
  }
}

.tools-acc-quiz__list {
  display: flex;
  flex-direction: column;
  gap: 1.78em;
  counter-reset: quiz;
}

.tools-acc-quiz-item {
  counter-increment: quiz;
}

.tools-acc-quiz-item__title {
  display: flex;
  align-items: flex-start;
  gap: 0.55em;
  font-size: var(--fs-18);
  line-height: var(--lh-140);
}

@media (min-width: 1200px) {
  .tools-acc-quiz-item__title {
    gap: 0.625em;
  }
}

.tools-acc-quiz-item__title::before {
  content: counter(quiz) ".";
}

.tools-acc-quiz-item__note {
  margin-bottom: 0.83em;
  font-size: var(--fs-14);
  line-height: var(--lh-160);
  color: var(--grey);
}

@media (min-width: 1200px) {
  .tools-acc-quiz-item__note {
    margin-bottom: 1.04em;
  }
}

.tools-acc-quiz-item__note.stressdose_error {
  color: red;
}

.tools-acc-quiz-item__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

@media (min-width: 1200px) {
  .tools-acc-quiz-item__list {
    gap: 0.75em;
  }
}

.tools-acc-quiz-item__item span.rate {
  color: var(--bg-2);
}

.tools-current span.marker,
.tools-acc span.marker {
  width: 0.8em;
  height: 0.8em;
  display: inline-block;
  border-radius: 50%;
}

.tools-acc-content-result__block span.marker {
  width: 1em;
  height: 1em;
  border: 1px solid var(--bg);

}

span.marker.marker_red {
  background-color: red;
}

span.marker.marker_yellow {
  background-color: var(--yellow);
}

span.marker.marker_green {
  background-color: green;
}


.tools-acc-quiz-item__radio {
  position: relative;
  cursor: pointer;
}

.tools-acc-quiz-item__radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 1;
}

.tools-acc-quiz-item__radio input:checked~span::before {
  border: 1px solid var(--yellow);
  background-color: transparent;
}

.tools-acc-quiz-item__radio input:checked~span::after {
  opacity: 1;
}

.tools-acc-quiz-item__radio>span {
  position: relative;
  display: block;
  padding: 3px 0;
  padding-left: 32px;
  font-size: var(--fs-14);
  line-height: var(--lh-160);
}

.tools-acc-quiz-item__radio>span::before {
  content: "";
  position: absolute;
  top: calc(var(--fs-14) * 1.6 / 2 - 8px);
  left: 3px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--bg-2);
  background-color: var(--white);
  transition: background-color var(--transition), border var(--transition);
}

.tools-acc-quiz-item__radio>span::after {
  content: "";
  position: absolute;
  top: calc(var(--fs-14) * 1.6 / 2 - 4px);
  left: 7px;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--yellow);
  opacity: 0;
  transition: opacity var(--transition);
}

.tools-acc-quiz-item__radio>span span.note {
  display: block;
  font-size: var(--fs-12);
  line-height: var(--lh-160);
}

.tools-acc-quiz-item__radio:hover>span::before {
  border: 1px solid var(--yellow);
}

.tools-acc-quiz-item__checkbox {
  position: relative;
  cursor: pointer;
}

.tools-acc-quiz-item__checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 1;
}

.tools-acc-quiz-item__checkbox input:checked~span::before {
  border: 1px solid var(--yellow);
}

.tools-acc-quiz-item__checkbox input:checked~span::after {
  opacity: 1;
}

.tools-acc-quiz-item__checkbox>span {
  position: relative;
  display: block;
  padding: 3px 0;
  padding-left: 32px;
  font-size: var(--fs-14);
  line-height: var(--lh-160);
}

.tools-acc-quiz-item__checkbox>span::before {
  content: "";
  position: absolute;
  top: calc(var(--fs-14) * 1.6 / 2 - 8px);
  left: 3px;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--bg-2);
  background-color: var(--white);
  transition: border var(--transition);
}

.tools-acc-quiz-item__checkbox>span::after {
  content: "";
  position: absolute;
  top: calc(var(--fs-14) * 1.6 / 2 - 8px);
  left: 3px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity var(--transition);
}

.tools-acc-quiz-item__checkbox>span span.note {
  display: block;
  font-size: var(--fs-12);
  line-height: var(--lh-160);
}

.tools-acc-quiz-item__checkbox:hover>span::before {
  border: 1px solid var(--yellow);
}

@media (min-width: 1800px) and (min-height: 1100px) {
  .tools-nav {
    top: 81px;
  }
}

.tools-current {
  margin-bottom: 2.85em;
}

@media (min-width: 1200px) {
  .tools-current {
    margin-bottom: 4.15em;
  }
}

.tools-current-link-box {
  display: flex;
  justify-content: center;
}

.banner {
  padding-top: 5.71em;
  margin-bottom: 5.71em;
  background-color: var(--bg);
}

@media (min-width: 1200px) {
  .banner {
    margin-bottom: 8.33em;
  }
}

@media (min-width: 768px) {
  .banner__box {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1em;
  }
}

.banner__title {
  position: relative;
  margin-bottom: 1.4em;
  font-weight: var(--f-medium);
  font-size: var(--fs-26);
  line-height: var(--lh-110);
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .banner__title {
    font-size: var(--fs-35);
    line-height: var(--lh-110);
  }
}

.banner__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-0.7em + 1px);
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--yellow);
}

@media (min-width: 1024px) {
  .banner__title::after {
    width: 134px;
  }
}

.banner__title sup {
  font-size: 60%;
}

.banner__text-box {
  margin-bottom: 2.14em;
}

@media (min-width: 768px) {
  .banner__text-box {
    margin-bottom: 0;
    padding-bottom: 2.85em;
    max-width: 29em;
  }
}

@media (min-width: 1024px) {
  .banner__text-box {
    max-width: 37em;
  }
}

@media (min-width: 1200px) {
  .banner__text-box {
    max-width: 47.5em;
  }
}

@media (min-width: 1440px) {
  .banner__text-box {
    padding-bottom: 5.71em;
  }
}

.banner-list {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}

@media (min-width: 768px) {
  .banner-list {
    gap: 0.6em;
  }
}

.banner-list>li {
  font-weight: var(--f-medium);
  font-size: var(--fs-18);
  line-height: var(--lh-140);
  padding-left: calc(1em + 8px);
  position: relative;
}

.banner-list>li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 3px;
  background-image: url("img/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.banner-list>li>ul {
  padding: 0.5em 0;
  display: flex;
  flex-direction: column;
  gap: 0.625em;
  font-weight: var(--f-regular);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

@media (min-width: 1024px) {
  .banner-list>li>ul {
    gap: 0.75em;
  }
}

.banner-list>li>ul li {
  padding-left: 20px;
  position: relative;
}

.banner-list>li>ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43em;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--yellow);
  opacity: 0.2;
}

.banner-list>li>ul li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(0.43em + 3px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--yellow);
}

.banner__img {
  margin-right: -16px;
  margin-left: -16px;
}

@media (min-width: 480px) {
  .banner__img {
    max-width: 460px;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .banner__img {
    margin-right: -4vw;
  }
}

@media (min-width: 1024px) {
  .banner__img {
    max-width: 46em;
    position: relative;
  }

  .banner__img::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    height: 100%;
    width: 15%;
    background: linear-gradient(90deg, transparent, var(--bg));
  }
}

@media (min-width: 1200px) {
  .banner__img {
    margin-right: -5vw;
  }
}

@media (min-width: 640px) {
  .banner-tools {
    padding: 0;
    padding-top: 2em;
  }
}

@media (min-width: 640px) {
  .banner-tools .banner__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
}

.banner-tools .btn-grey svg {
  flex-shrink: 0;
  display: block;
  width: 1.33em;
  height: 1.33em;
  -o-object-fit: contain;
  object-fit: contain;
}

.recommentaions .title-details__after {
  display: none;
}

@media (min-width: 768px) {
  .recommentaions .title-details__after {
    display: block;
  }
}

@media (min-width: 768px) {
  .recommentaions .title-details__text {
    max-width: 16em;
  }
}

@media (min-width: 1600px) {
  .recommentaions .title-details__text {
    max-width: 25em;
  }
}

.recommentaions__list {
  display: flex;
  flex-direction: column;
  gap: 1.66em;
}

.recommentaions__item {
  position: relative;
}

.recommentaions__item:not(:first-child) {
  padding-top: 1.66em;
}

.recommentaions__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--yellow);
}

@media (min-width: 768px) {
  .recommentaions__item:not(:first-child)::before {
    width: 134px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.recommentaions__title {
  margin-bottom: 0.75em;
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

.recommentaions-cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2em;
}

.recommentaions-cards__link:hover .recommentaions-cards__title {
  color: var(--yellow);
}

.recommentaions-cards__link:hover .recommentaions-cards__title::after {
  transform: translateX(0);
  opacity: 1;
}

.recommentaions-cards__link:hover .recommentaions-cards__text {
  color: var(--yellow);
}

.recommentaions-cards__title {
  position: relative;
  margin-bottom: 0.2em;
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  transition: color var(--transition);
}

.recommentaions-cards__title::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 1.33em;
  height: 1.33em;
  background-image: url("img/arrow-right-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-30%);
  opacity: 1;
  transition: transform var(--transition);
}

.recommentaions-cards__text {
  color: var(--grey);
  transition: color var(--transition);
}

.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: var(--fs-18);
  line-height: var(--lh-140);
}

@media (min-width: 768px) {
  .contacts__item {
    flex-direction: row;
  }
}

.contacts__item:not(:last-child) {
  padding-bottom: 1.42em;
  margin-bottom: 1.42em;
  border-bottom: 1px solid rgba(127, 144, 166, 0.2);
}

.contacts__item>a {
  display: inline-block;
  font-size: var(--fs-20);
  line-height: var(--lh-130);
  transition: color var(--transition);
}

.contacts__item>a:hover {
  color: var(--grey);
}

.contacts__list-inner {
  display: flex;
  flex-direction: column;
  font-size: var(--fs-16);
  line-height: var(--lh-150);
  color: var(--grey);
}

.contacts__list-inner li {
  display: flex;
  gap: 0.55em;
}

.contacts__list-inner li:not(:last-child) {
  padding-bottom: 0.71em;
  margin-bottom: 0.71em;
  border-bottom: 1px solid rgba(127, 144, 166, 0.2);
}

.contacts__list-inner li a {
  font-weight: var(--f-regular);
}

.contacts__link-small {
  font-size: var(--fs-18);
  line-height: var(--lh-140);
  transition: color var(--transition);
}

.contacts__link-small:hover {
  color: var(--blue);
}

.breadcrumbs {
  margin-bottom: 1.5em;
  font-size: var(--fs-12);
  line-height: var(--lh-150);
  white-space: nowrap;
  overflow-x: auto;
  color: var(--blue-light);
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin-bottom: 2em;
  }
}

.breadcrumbs>span {
  display: flex;
  gap: 10px;
}

.breadcrumbs a {
  color: var(--blue);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--yellow);
}

.text-page h1 {
  position: relative;
  margin: 0.8em 0;
  font-weight: var(--f-medium);
  font-size: var(--fs-35);
  line-height: var(--lh-120);
}

.text-page h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4em;
  height: 3px;
  width: 100px;
  background-color: var(--yellow);
}

.text-page h2 {
  margin: 0.4em 0;
  font-weight: var(--f-medium);
  font-size: var(--fs-20);
  line-height: var(--lh-130);
}

.text-page h3 {
  margin: 0.5em 0;
  font-weight: var(--f-medium);
  font-size: var(--fs-18);
  line-height: var(--lh-140);
}

.text-page h4 {
  margin: 0.5em 0;
  font-weight: var(--f-medium);
  font-size: var(--fs-16);
  line-height: var(--lh-150);
}

.text-page p:not(:last-child) {
  margin-bottom: 0.3125em;
}

.text-page ul {
  margin: 0.3125em 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

@media (min-width: 1024px) {
  .text-page ul {
    margin: 0.66em 0;
  }
}

.text-page ul li {
  padding-left: 20px;
  position: relative;
}

.text-page ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: var(--yellow);
  opacity: 0.2;
}

.text-page ul li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(0.5em + 3px);
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background-color: var(--yellow);
}

.text-page ol {
  margin: 0.3125em 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  counter-reset: textlist;
}

@media (min-width: 1024px) {
  .text-page ol {
    margin: 0.66em 0;
  }
}

.text-page ol li {
  display: flex;
  gap: 0.5em;
  counter-increment: textlist;
}

.text-page ol li::before {
  content: counter(textlist) ".";
  opacity: 0.5;
}



.instruments__grid-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 2em;
}

@media (min-width: 640px) {
  .instruments__grid-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .instruments__grid-box {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .instruments__grid-box .materials-card {
    padding: 1.5em;
  }
}

.instruments__grid-box .materials-card__title {
  min-height: 3.0em;
}

.instruments__grid-box .materials-card__text {
  -webkit-line-clamp: 3;
}




.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(17, 43, 76, 0.5);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: opacity var(--transition), z-index var(--transition), visibility var(--transition);
}

.modal.opened {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}

.modal__box {
  margin: 1em;
  position: relative;
  border-radius: var(--br-20);
  padding: 1.25em;
  max-width: 40em;
  background-color: var(--bg);
}

@media (min-width: 768px) {
  .modal__box {
    padding: 2em;
  }
}

.modal__text {
  margin-bottom: 1.5em;
}

.modal__text p:not(:last-child) {
  margin-bottom: 1em;
}

.modal .btn-box {
  justify-content: flex-start;
}

.cky-btn.cky-btn-accept {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
}