:root {
  --bs-font-family: "Montserrat", sans-serif;
  --bs-font-size: 16px;
  --bs-font-weight: 400;
  --bs-line-height: 1;
  --bs-font-color: #212529;
  --bs-transition: .3s ease-in-out;
  --bs-radius: 10px;
  --primary-color: #131313;
  --primary-hover-color: #2d2d2d;
  --secondary-color: #ff4040;
  --white: #fff;
  --black: #212529;
  --blue: #185081;
  --bs-shadow: 0px 2px 3px rgba(#000, 10%), 0px 8px 3px rgba(#000, 10%);
  --hover-shadow: 0 0 5px 0 rgba(#000, 10%),
  0 0 10px 0 rgba(#000, 10%),
  0 0 15px 0 rgba(#000, 10%);
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html {
  opacity: 0;
  scroll-behavior: smooth;
  transition: opacity 0.8s ease-in-out;
}
html.loaded {
  opacity: 1;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html,
body {
  width: 100%;
  height: 100%;
  min-width: 320px;
}

body {
  overscroll-behavior: none;
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
  text-rendering: optimizelegibility;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  user-select: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  user-select: none;
}
a:focus, a:active {
  outline: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

sup {
  color: inherit;
}

* {
  scrollbar-width: 0.5rem;
  scrollbar-color: var(--primary-color) #d6d6d6;
}
*::-webkit-scrollbar {
  width: 0.5rem;
  background-color: var(--white-color);
}
*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  background: #eee;
}
*::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
  border: 0 none #fff;
  background-color: var(--primary-color);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover-color);
}

@keyframes show-header {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes fade-up-big {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes rotation {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}

[class*=__container] {
  max-width: 82.75rem;
  margin: 0 auto;
  padding: 0 0.75rem;
}

[class*=-ibg] {
  position: relative;
}
[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

[class*=-ibg_contain] img {
  object-fit: contain;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.page {
  position: relative;
  flex: 1 1 auto;
}
.page [data-observ] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: transparent;
  pointer-events: none;
}
.page_start {
  padding-top: 6.25rem;
}


body {
  color: #212529;
  background-color: #f7f7f7;
}

.button {
  display: inline-flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  padding-right: 1.325rem;
  padding-left: 1.325rem;
  text-align: center;
  background-color: #50b9ce;
  color: var(--white);
  border-radius: 30px;
  font-size: 1.125rem;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
}
@media (min-width: 81.25em) {
  .button {
    padding-top: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-top: clamp( 0.625rem , 0.5025510204rem  +  0.612244898vw , 1rem )) {
    .button {
      padding-top: clamp( 0.625rem , 0.5025510204rem  +  0.612244898vw , 1rem );
    }
  }
  @supports not (padding-top: clamp( 0.625rem , 0.5025510204rem  +  0.612244898vw , 1rem )) {
    .button {
      padding-top: calc(
              0.625rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .button {
    padding-top: 0.625rem;
  }
}
@media (min-width: 81.25em) {
  .button {
    padding-bottom: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-bottom: clamp( 0.625rem , 0.5025510204rem  +  0.612244898vw , 1rem )) {
    .button {
      padding-bottom: clamp( 0.625rem , 0.5025510204rem  +  0.612244898vw , 1rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.625rem , 0.5025510204rem  +  0.612244898vw , 1rem )) {
    .button {
      padding-bottom: calc(
              0.625rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .button {
    padding-bottom: 0.625rem;
  }
}
.button:hover {
  background-color: var(--blue);
  color: #fff;
}
.button.white {
  background-color: #fff;
  color: var(--blue);
}
.button.white:hover {
  background-color: var(--blue);
  color: #fff;
}
.button.blue {
  background-color: #0074d9;
  color: #fff;
}
.button.blue:hover {
  background-color: var(--blue);
  color: #fff;
}

@media (min-width: 81.25em) {
  .block {
    padding-top: 7.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-top: clamp( 2.8125rem , 1.3839285714rem  +  7.1428571429vw , 7.1875rem )) {
    .block {
      padding-top: clamp( 2.8125rem , 1.3839285714rem  +  7.1428571429vw , 7.1875rem );
    }
  }
  @supports not (padding-top: clamp( 2.8125rem , 1.3839285714rem  +  7.1428571429vw , 7.1875rem )) {
    .block {
      padding-top: calc(
              2.8125rem + 4.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .block {
    padding-top: 2.8125rem;
  }
}

h2 {
  font-weight: 600;
  max-width: 37.5rem;
  line-height: 120%;
}
@media (min-width: 81.25em) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 1.5rem , 1.1734693878rem  +  1.6326530612vw , 2.5rem )) {
    h2 {
      font-size: clamp( 1.5rem , 1.1734693878rem  +  1.6326530612vw , 2.5rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.1734693878rem  +  1.6326530612vw , 2.5rem )) {
    h2 {
      font-size: calc(
              1.5rem + 1 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 81.25em) {
  .about {
    padding-top: 3.75rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-top: clamp( 2rem , 1.4285714286rem  +  2.8571428571vw , 3.75rem )) {
    .about {
      padding-top: clamp( 2rem , 1.4285714286rem  +  2.8571428571vw , 3.75rem );
    }
  }
  @supports not (padding-top: clamp( 2rem , 1.4285714286rem  +  2.8571428571vw , 3.75rem )) {
    .about {
      padding-top: calc(
              2rem + 1.75 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about {
    padding-top: 2rem;
  }
}
.about__body {
  min-height: 31.25rem;
  position: relative;
}
@media (min-width: 81.25em) {
  .about__body {
    padding-top: 4.0625rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-top: clamp( 2.375rem , 1.8239795918rem  +  2.7551020408vw , 4.0625rem )) {
    .about__body {
      padding-top: clamp( 2.375rem , 1.8239795918rem  +  2.7551020408vw , 4.0625rem );
    }
  }
  @supports not (padding-top: clamp( 2.375rem , 1.8239795918rem  +  2.7551020408vw , 4.0625rem )) {
    .about__body {
      padding-top: calc(
              2.375rem + 1.6875 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__body {
    padding-top: 2.375rem;
  }
}
@media (min-width: 81.25em) {
  .about__body {
    padding-left: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-left: clamp( 1rem , 0.5102040816rem  +  2.4489795918vw , 2.5rem )) {
    .about__body {
      padding-left: clamp( 1rem , 0.5102040816rem  +  2.4489795918vw , 2.5rem );
    }
  }
  @supports not (padding-left: clamp( 1rem , 0.5102040816rem  +  2.4489795918vw , 2.5rem )) {
    .about__body {
      padding-left: calc(
              1rem + 1.5 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__body {
    padding-left: 1rem;
  }
}
@media (min-width: 81.25em) {
  .about__body {
    padding-right: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-right: clamp( 1rem , 0.5102040816rem  +  2.4489795918vw , 2.5rem )) {
    .about__body {
      padding-right: clamp( 1rem , 0.5102040816rem  +  2.4489795918vw , 2.5rem );
    }
  }
  @supports not (padding-right: clamp( 1rem , 0.5102040816rem  +  2.4489795918vw , 2.5rem )) {
    .about__body {
      padding-right: calc(
              1rem + 1.5 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__body {
    padding-right: 1rem;
  }
}
.about__body::before {
  position: absolute;
  overflow: hidden;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../../images/about-us/about-fon.png) no-repeat center right/cover;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 81.25em) {
  .about__body::before {
    border-radius: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (border-radius: clamp( 1.25rem , 1.0459183673rem  +  1.0204081633vw , 1.875rem )) {
    .about__body::before {
      border-radius: clamp( 1.25rem , 1.0459183673rem  +  1.0204081633vw , 1.875rem );
    }
  }
  @supports not (border-radius: clamp( 1.25rem , 1.0459183673rem  +  1.0204081633vw , 1.875rem )) {
    .about__body::before {
      border-radius: calc(
              1.25rem + 0.625 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__body::before {
    border-radius: 1.25rem;
  }
}
@media (max-width: 520px) {
  .about__body::before {
    background: url(../../images/about-us/about-fon-mob.png) no-repeat center right/cover;
  }
}
.about__quote {
  display: inline-block;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 25px;
  padding: 0.3125rem 0.6875rem;
}
@media (min-width: 81.25em) {
  .about__quote {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 0.875rem , 0.7525510204rem  +  0.612244898vw , 1.25rem )) {
    .about__quote {
      font-size: clamp( 0.875rem , 0.7525510204rem  +  0.612244898vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.7525510204rem  +  0.612244898vw , 1.25rem )) {
    .about__quote {
      font-size: calc(
              0.875rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__quote {
    font-size: 0.875rem;
  }
}
@media (min-width: 81.25em) {
  .about__quote {
    margin-bottom: 2.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (margin-bottom: clamp( 1.5625rem , 1.3584183673rem  +  1.0204081633vw , 2.1875rem )) {
    .about__quote {
      margin-bottom: clamp( 1.5625rem , 1.3584183673rem  +  1.0204081633vw , 2.1875rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.5625rem , 1.3584183673rem  +  1.0204081633vw , 2.1875rem )) {
    .about__quote {
      margin-bottom: calc(
              1.5625rem + 0.625 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__quote {
    margin-bottom: 1.5625rem;
  }
}
.about__title {
  font-weight: 600;
  color: var(--white);
  max-width: 37.5rem;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .about__title {
    font-size: 2.8125rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 1.5625rem , 1.1543367347rem  +  2.0408163265vw , 2.8125rem )) {
    .about__title {
      font-size: clamp( 1.5625rem , 1.1543367347rem  +  2.0408163265vw , 2.8125rem );
    }
  }
  @supports not (font-size: clamp( 1.5625rem , 1.1543367347rem  +  2.0408163265vw , 2.8125rem )) {
    .about__title {
      font-size: calc(
              1.5625rem + 1.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__title {
    font-size: 1.5625rem;
  }
}
@media (min-width: 81.25em) {
  .about__title {
    margin-bottom: 3.4375rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (margin-bottom: clamp( 2.8125rem , 2.6084183673rem  +  1.0204081633vw , 3.4375rem )) {
    .about__title {
      margin-bottom: clamp( 2.8125rem , 2.6084183673rem  +  1.0204081633vw , 3.4375rem );
    }
  }
  @supports not (margin-bottom: clamp( 2.8125rem , 2.6084183673rem  +  1.0204081633vw , 3.4375rem )) {
    .about__title {
      margin-bottom: calc(
              2.8125rem + 0.625 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__title {
    margin-bottom: 2.8125rem;
  }
}
.about__button-row {
  display: flex;
}
.about__button
{
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .about__button-row {
    gap: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (gap: clamp( 0.75rem , 0.6887755102rem  +  0.306122449vw , 0.9375rem )) {
    .about__button-row {
      gap: clamp( 0.75rem , 0.6887755102rem  +  0.306122449vw , 0.9375rem );
    }
  }
  @supports not (gap: clamp( 0.75rem , 0.6887755102rem  +  0.306122449vw , 0.9375rem )) {
    .about__button-row {
      gap: calc(
              0.75rem + 0.1875 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__button-row {
    gap: 0.75rem;
  }
}
@media (max-width: 520px) {
  .about__button-row {
    flex-direction: column;
  }
}
@media (min-width: 81.25em) {
  .about__button {
    font-size: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 0.875rem , 0.7933673469rem  +  0.4081632653vw , 1.125rem )) {
    .about__button {
      font-size: clamp( 0.875rem , 0.7933673469rem  +  0.4081632653vw , 1.125rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.7933673469rem  +  0.4081632653vw , 1.125rem )) {
    .about__button {
      font-size: calc(
              0.875rem + 0.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__button {
    font-size: 0.875rem;
  }
}
@media (max-width: 520px) {
  .about__button {
    width: 100%;
  }
}
.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-top: -6.25rem;
  z-index: 1;
}
@media (min-width: 81.25em) {
  .about__row {
    gap: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .about__row {
      gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem );
    }
  }
  @supports not (gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .about__row {
      gap: calc(
              1.125rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about__row {
    gap: 1.125rem;
  }
}
@media (max-width: 750px) {
  .about__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .about__row {
    margin-top: -1.875rem;
  }
}
@media (max-width: 400px) {
  .about__row {
    margin-top: -3.75rem;
  }
}
@media (max-width: 350px) {
  .about__row {
    margin-top: -6.25rem;
  }
}
.about-content {
  border-radius: 23px;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media (min-width: 81.25em) {
  .about-content {
    padding-top: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-top: clamp( 1.5rem , 1.4183673469rem  +  0.4081632653vw , 1.75rem )) {
    .about-content {
      padding-top: clamp( 1.5rem , 1.4183673469rem  +  0.4081632653vw , 1.75rem );
    }
  }
  @supports not (padding-top: clamp( 1.5rem , 1.4183673469rem  +  0.4081632653vw , 1.75rem )) {
    .about-content {
      padding-top: calc(
              1.5rem + 0.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content {
    padding-top: 1.5rem;
  }
}
@media (min-width: 81.25em) {
  .about-content {
    padding-left: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-left: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .about-content {
      padding-left: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem );
    }
  }
  @supports not (padding-left: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .about-content {
      padding-left: calc(
              1.125rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content {
    padding-left: 1.125rem;
  }
}
@media (min-width: 81.25em) {
  .about-content {
    padding-bottom: 1.75rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-bottom: clamp( 1.5rem , 1.4183673469rem  +  0.4081632653vw , 1.75rem )) {
    .about-content {
      padding-bottom: clamp( 1.5rem , 1.4183673469rem  +  0.4081632653vw , 1.75rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.5rem , 1.4183673469rem  +  0.4081632653vw , 1.75rem )) {
    .about-content {
      padding-bottom: calc(
              1.5rem + 0.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 81.25em) {
  .about-content {
    padding-right: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-right: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .about-content {
      padding-right: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem );
    }
  }
  @supports not (padding-right: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .about-content {
      padding-right: calc(
              1.125rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content {
    padding-right: 1.125rem;
  }
}
@media (min-width: 81.25em) {
  .about-content {
    gap: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (gap: clamp( 1rem , 0.9591836735rem  +  0.2040816327vw , 1.125rem )) {
    .about-content {
      gap: clamp( 1rem , 0.9591836735rem  +  0.2040816327vw , 1.125rem );
    }
  }
  @supports not (gap: clamp( 1rem , 0.9591836735rem  +  0.2040816327vw , 1.125rem )) {
    .about-content {
      gap: calc(
              1rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content {
    gap: 1rem;
  }
}
.about-content__quote {
  display: inline-block;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 25px;
  padding: 0.28125rem 0.75rem;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .about-content__quote {
    font-size: 0.875rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 0.75rem , 0.7091836735rem  +  0.2040816327vw , 0.875rem )) {
    .about-content__quote {
      font-size: clamp( 0.75rem , 0.7091836735rem  +  0.2040816327vw , 0.875rem );
    }
  }
  @supports not (font-size: clamp( 0.75rem , 0.7091836735rem  +  0.2040816327vw , 0.875rem )) {
    .about-content__quote {
      font-size: calc(
              0.75rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content__quote {
    font-size: 0.75rem;
  }
}
.about-content__title {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .about-content__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 1.125rem , 1.0433673469rem  +  0.4081632653vw , 1.375rem )) {
    .about-content__title {
      font-size: clamp( 1.125rem , 1.0433673469rem  +  0.4081632653vw , 1.375rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 1.0433673469rem  +  0.4081632653vw , 1.375rem )) {
    .about-content__title {
      font-size: calc(
              1.125rem + 0.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content__title {
    font-size: 1.125rem;
  }
}
.about-content__list {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
.about-content__item-list {
  line-height: 120%;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .about-content__item-list {
    padding-left: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-left: clamp( 1.0625rem , 1.0012755102rem  +  0.306122449vw , 1.25rem )) {
    .about-content__item-list {
      padding-left: clamp( 1.0625rem , 1.0012755102rem  +  0.306122449vw , 1.25rem );
    }
  }
  @supports not (padding-left: clamp( 1.0625rem , 1.0012755102rem  +  0.306122449vw , 1.25rem )) {
    .about-content__item-list {
      padding-left: calc(
              1.0625rem + 0.1875 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content__item-list {
    padding-left: 1.0625rem;
  }
}
@media (min-width: 81.25em) {
  .about-content__item-list {
    font-size: 1.0625rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 0.9375rem , 0.8966836735rem  +  0.2040816327vw , 1.0625rem )) {
    .about-content__item-list {
      font-size: clamp( 0.9375rem , 0.8966836735rem  +  0.2040816327vw , 1.0625rem );
    }
  }
  @supports not (font-size: clamp( 0.9375rem , 0.8966836735rem  +  0.2040816327vw , 1.0625rem )) {
    .about-content__item-list {
      font-size: calc(
              0.9375rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content__item-list {
    font-size: 0.9375rem;
  }
}
.about-content__item-list::before {
  position: absolute;
  content: "";
  width: 0.4375rem;
  height: 0.4375rem;
  left: 0;
  border-radius: 1px;
  background-color: #0074d9;
}
@media (min-width: 81.25em) {
  .about-content__item-list::before {
    top: 0.375rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (top: clamp( 0.25rem , 0.2091836735rem  +  0.2040816327vw , 0.375rem )) {
    .about-content__item-list::before {
      top: clamp( 0.25rem , 0.2091836735rem  +  0.2040816327vw , 0.375rem );
    }
  }
  @supports not (top: clamp( 0.25rem , 0.2091836735rem  +  0.2040816327vw , 0.375rem )) {
    .about-content__item-list::before {
      top: calc(
              0.25rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .about-content__item-list::before {
    top: 0.25rem;
  }
}
.about-content__item-list.rhomb::before {
  transform: rotate(45deg);
}
.stage {
  position: relative;
}
.stage::before {
  position: absolute;
  content: "";
  width: 41.25rem;
  height: 72.625rem;
  background: url(../../images/about-us/stage-fon.png) no-repeat center center/contain;
  top: -9.375rem;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 520px) {
  .stage::before {
    display: none;
  }
}
.stage__container {
  position: relative;
  z-index: 1;
}
.stage__title
{
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .stage__title {
    margin-bottom: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (margin-bottom: clamp( 1.5rem , 1.3367346939rem  +  0.8163265306vw , 2rem )) {
    .stage__title {
      margin-bottom: clamp( 1.5rem , 1.3367346939rem  +  0.8163265306vw , 2rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.5rem , 1.3367346939rem  +  0.8163265306vw , 2rem )) {
    .stage__title {
      margin-bottom: calc(
              1.5rem + 0.5 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .stage__title {
    margin-bottom: 1.5rem;
  }
}
.stage__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (min-width: 81.25em) {
  .stage__row {
    gap: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .stage__row {
      gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem );
    }
  }
  @supports not (gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .stage__row {
      gap: calc(
              1.125rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .stage__row {
    gap: 1.125rem;
  }
}
@media (max-width: 1125px) {
  .stage__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 625px) {
  .stage__row {
    grid-template-columns: 1fr;
  }
}
.stage__button-row {
  display: flex;
  font-family: "Montserrat", sans-serif;
  justify-content: center;
}
@media (min-width: 81.25em) {
  .stage__button-row {
    margin-top: 3.75rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (margin-top: clamp( 1.5rem , 0.7653061224rem  +  3.6734693878vw , 3.75rem )) {
    .stage__button-row {
      margin-top: clamp( 1.5rem , 0.7653061224rem  +  3.6734693878vw , 3.75rem );
    }
  }
  @supports not (margin-top: clamp( 1.5rem , 0.7653061224rem  +  3.6734693878vw , 3.75rem )) {
    .stage__button-row {
      margin-top: calc(
              1.5rem + 2.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .stage__button-row {
    margin-top: 1.5rem;
  }
}
@media (min-width: 81.25em) {
  .stage__button.button {
    padding-top: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-top: clamp( 0.996875rem , 0.9958545918rem  +  0.0051020408vw , 1rem )) {
    .stage__button.button {
      padding-top: clamp( 0.996875rem , 0.9958545918rem  +  0.0051020408vw , 1rem );
    }
  }
  @supports not (padding-top: clamp( 0.996875rem , 0.9958545918rem  +  0.0051020408vw , 1rem )) {
    .stage__button.button {
      padding-top: calc(
              0.996875rem + 0.003125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .stage__button.button {
    padding-top: 0.996875rem;
  }
}
@media (min-width: 81.25em) {
  .stage__button.button {
    padding-bottom: 1rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-bottom: clamp( 0.996875rem , 0.9958545918rem  +  0.0051020408vw , 1rem )) {
    .stage__button.button {
      padding-bottom: clamp( 0.996875rem , 0.9958545918rem  +  0.0051020408vw , 1rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.996875rem , 0.9958545918rem  +  0.0051020408vw , 1rem )) {
    .stage__button.button {
      padding-bottom: calc(
              0.996875rem + 0.003125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .stage__button.button {
    padding-bottom: 0.996875rem;
  }
}
@media (max-width: 420px) {
  .stage__button.button {
    width: 100%;
  }
}

.item-stage {
  height: auto;
  box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: 20px;
  display: flex;
}
@media (min-width: 81.25em) {
  .item-stage {
    padding-top: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-top: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .item-stage {
      padding-top: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem );
    }
  }
  @supports not (padding-top: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .item-stage {
      padding-top: calc(
              1.125rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage {
    padding-top: 1.125rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage {
    padding-left: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-left: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .item-stage {
      padding-left: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem );
    }
  }
  @supports not (padding-left: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .item-stage {
      padding-left: calc(
              1.125rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage {
    padding-left: 1.125rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage {
    padding-right: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-right: clamp( 0.8125rem , 0.7104591837rem  +  0.5102040816vw , 1.125rem )) {
    .item-stage {
      padding-right: clamp( 0.8125rem , 0.7104591837rem  +  0.5102040816vw , 1.125rem );
    }
  }
  @supports not (padding-right: clamp( 0.8125rem , 0.7104591837rem  +  0.5102040816vw , 1.125rem )) {
    .item-stage {
      padding-right: calc(
              0.8125rem + 0.3125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage {
    padding-right: 0.8125rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage {
    padding-bottom: 1.125rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-bottom: clamp( 0.8125rem , 0.7104591837rem  +  0.5102040816vw , 1.125rem )) {
    .item-stage {
      padding-bottom: clamp( 0.8125rem , 0.7104591837rem  +  0.5102040816vw , 1.125rem );
    }
  }
  @supports not (padding-bottom: clamp( 0.8125rem , 0.7104591837rem  +  0.5102040816vw , 1.125rem )) {
    .item-stage {
      padding-bottom: calc(
              0.8125rem + 0.3125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage {
    padding-bottom: 0.8125rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage {
    min-height: 12.1875rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (min-height: clamp( 11.875rem , 11.7729591837rem  +  0.5102040816vw , 12.1875rem )) {
    .item-stage {
      min-height: clamp( 11.875rem , 11.7729591837rem  +  0.5102040816vw , 12.1875rem );
    }
  }
  @supports not (min-height: clamp( 11.875rem , 11.7729591837rem  +  0.5102040816vw , 12.1875rem )) {
    .item-stage {
      min-height: calc(
              11.875rem + 0.3125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage {
    min-height: 11.875rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage {
    gap: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (gap: clamp( 0.5rem , 0.2551020408rem  +  1.2244897959vw , 1.25rem )) {
    .item-stage {
      gap: clamp( 0.5rem , 0.2551020408rem  +  1.2244897959vw , 1.25rem );
    }
  }
  @supports not (gap: clamp( 0.5rem , 0.2551020408rem  +  1.2244897959vw , 1.25rem )) {
    .item-stage {
      gap: calc(
              0.5rem + 0.75 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage {
    gap: 0.5rem;
  }
}
.item-stage__body {
  flex: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  line-height: 120%;
}
.item-stage__title {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
}
.item-stage__text
{
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .item-stage__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 1rem , 0.9183673469rem  +  0.4081632653vw , 1.25rem )) {
    .item-stage__title {
      font-size: clamp( 1rem , 0.9183673469rem  +  0.4081632653vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9183673469rem  +  0.4081632653vw , 1.25rem )) {
    .item-stage__title {
      font-size: calc(
              1rem + 0.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage__title {
    font-size: 1rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage__text {
    font-size: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 0.875rem , 0.8545918367rem  +  0.1020408163vw , 0.9375rem )) {
    .item-stage__text {
      font-size: clamp( 0.875rem , 0.8545918367rem  +  0.1020408163vw , 0.9375rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.8545918367rem  +  0.1020408163vw , 0.9375rem )) {
    .item-stage__text {
      font-size: calc(
              0.875rem + 0.0625 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage__text {
    font-size: 0.875rem;
  }
}
.item-stage__img {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
}
@media (min-width: 81.25em) {
  .item-stage__img {
    width: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (width: clamp( 3rem , 2.3469387755rem  +  3.2653061224vw , 5rem )) {
    .item-stage__img {
      width: clamp( 3rem , 2.3469387755rem  +  3.2653061224vw , 5rem );
    }
  }
  @supports not (width: clamp( 3rem , 2.3469387755rem  +  3.2653061224vw , 5rem )) {
    .item-stage__img {
      width: calc(
              3rem + 2 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage__img {
    width: 3rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage__img {
    min-width: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (min-width: clamp( 3rem , 2.3469387755rem  +  3.2653061224vw , 5rem )) {
    .item-stage__img {
      min-width: clamp( 3rem , 2.3469387755rem  +  3.2653061224vw , 5rem );
    }
  }
  @supports not (min-width: clamp( 3rem , 2.3469387755rem  +  3.2653061224vw , 5rem )) {
    .item-stage__img {
      min-width: calc(
              3rem + 2 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage__img {
    min-width: 3rem;
  }
}
.item-stage__img img {
  width: 100%;
}
@media (min-width: 81.25em) {
  .item-stage__img:first-child {
    width: 5.625rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (width: clamp( 3.375rem , 2.6403061224rem  +  3.6734693878vw , 5.625rem )) {
    .item-stage__img:first-child {
      width: clamp( 3.375rem , 2.6403061224rem  +  3.6734693878vw , 5.625rem );
    }
  }
  @supports not (width: clamp( 3.375rem , 2.6403061224rem  +  3.6734693878vw , 5.625rem )) {
    .item-stage__img:first-child {
      width: calc(
              3.375rem + 2.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage__img:first-child {
    width: 3.375rem;
  }
}
@media (min-width: 81.25em) {
  .item-stage__img:first-child {
    min-width: 5.625rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (min-width: clamp( 3.375rem , 2.6403061224rem  +  3.6734693878vw , 5.625rem )) {
    .item-stage__img:first-child {
      min-width: clamp( 3.375rem , 2.6403061224rem  +  3.6734693878vw , 5.625rem );
    }
  }
  @supports not (min-width: clamp( 3.375rem , 2.6403061224rem  +  3.6734693878vw , 5.625rem )) {
    .item-stage__img:first-child {
      min-width: calc(
              3.375rem + 2.25 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-stage__img:first-child {
    min-width: 3.375rem;
  }
}

.can__title {
  max-width: 40rem;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .can__title {
    margin-bottom: 2rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (margin-bottom: clamp( 1.5rem , 1.3367346939rem  +  0.8163265306vw , 2rem )) {
    .can__title {
      margin-bottom: clamp( 1.5rem , 1.3367346939rem  +  0.8163265306vw , 2rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.5rem , 1.3367346939rem  +  0.8163265306vw , 2rem )) {
    .can__title {
      margin-bottom: calc(
              1.5rem + 0.5 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .can__title {
    margin-bottom: 1.5rem;
  }
}
.can__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 81.25em) {
  .can__row {
    gap: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .can__row {
      gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem );
    }
  }
  @supports not (gap: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .can__row {
      gap: calc(
              1.125rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .can__row {
    gap: 1.125rem;
  }
}
@media (max-width: 720px) {
  .can__row {
    grid-template-columns: 1fr;
  }
}
.item-can {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
}
@media (min-width: 81.25em) {
  .item-can {
    min-height: 31.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (min-height: clamp( 18.5rem , 14.3367346939rem  +  20.8163265306vw , 31.25rem )) {
    .item-can {
      min-height: clamp( 18.5rem , 14.3367346939rem  +  20.8163265306vw , 31.25rem );
    }
  }
  @supports not (min-height: clamp( 18.5rem , 14.3367346939rem  +  20.8163265306vw , 31.25rem )) {
    .item-can {
      min-height: calc(
              18.5rem + 12.75 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can {
    min-height: 18.5rem;
  }
}
@media (min-width: 81.25em) {
  .item-can {
    padding: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding: clamp( 0.00000625rem , -0.6122366071rem  +  3.0612142857vw , 1.875rem )) {
    .item-can {
      padding: clamp( 0.00000625rem , -0.6122366071rem  +  3.0612142857vw , 1.875rem );
    }
  }
  @supports not (padding: clamp( 0.00000625rem , -0.6122366071rem  +  3.0612142857vw , 1.875rem )) {
    .item-can {
      padding: calc(
              0.00000625rem + 1.875 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can {
    padding: 0.00000625rem;
  }
}
@media (min-width: 81.25em) {
  .item-can {
    border-radius: 1.5625rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (border-radius: clamp( 1.25rem , 1.1479591837rem  +  0.5102040816vw , 1.5625rem )) {
    .item-can {
      border-radius: clamp( 1.25rem , 1.1479591837rem  +  0.5102040816vw , 1.5625rem );
    }
  }
  @supports not (border-radius: clamp( 1.25rem , 1.1479591837rem  +  0.5102040816vw , 1.5625rem )) {
    .item-can {
      border-radius: calc(
              1.25rem + 0.3125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can {
    border-radius: 1.25rem;
  }
}
@media (max-width: 925px) {
  .item-can {
    padding: 0 !important;
  }
}
@media (max-width: 720px) {
  .item-can {
    flex-direction: column;
  }
}
.item-can__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.item-can__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 720px) {
  .item-can__img {
    position: relative;
  }
}
@media (max-width: 720px) and (min-width: 81.25em) {
  .item-can__img {
    min-height: 31.25rem;
  }
}
@media (max-width: 720px) and (min-width: 20em) and (max-width: 81.25em) {
  @supports (min-height: clamp( 18.5rem , 14.3367346939rem  +  20.8163265306vw , 31.25rem )) {
    .item-can__img {
      min-height: clamp( 18.5rem , 14.3367346939rem  +  20.8163265306vw , 31.25rem );
    }
  }
  @supports not (min-height: clamp( 18.5rem , 14.3367346939rem  +  20.8163265306vw , 31.25rem )) {
    .item-can__img {
      min-height: calc(
              18.5rem + 12.75 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 720px) and (max-width: 20em) {
  .item-can__img {
    min-height: 18.5rem;
  }
}
.item-can__body {
  position: relative;
  z-index: 1;
  max-width: 31.875rem;
  background-color: #185081;
  color: var(--white);
  line-height: 123%;
}
@media (min-width: 81.25em) {
  .item-can__body {
    border-radius: 1.5625rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (border-radius: clamp( 1.25rem , 1.1479591837rem  +  0.5102040816vw , 1.5625rem )) {
    .item-can__body {
      border-radius: clamp( 1.25rem , 1.1479591837rem  +  0.5102040816vw , 1.5625rem );
    }
  }
  @supports not (border-radius: clamp( 1.25rem , 1.1479591837rem  +  0.5102040816vw , 1.5625rem )) {
    .item-can__body {
      border-radius: calc(
              1.25rem + 0.3125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can__body {
    border-radius: 1.25rem;
  }
}
@media (min-width: 81.25em) {
  .item-can__body {
    padding: 1.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .item-can__body {
      padding: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem );
    }
  }
  @supports not (padding: clamp( 1.125rem , 1.0025510204rem  +  0.612244898vw , 1.5rem )) {
    .item-can__body {
      padding: calc(
              1.125rem + 0.375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can__body {
    padding: 1.125rem;
  }
}
@media (max-width: 720px) {
  .item-can__body {
    max-width: 100%;
    margin-top: -3.5625rem;
  }
}
.item-can__title {
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 123%;
}
@media (min-width: 81.25em) {
  .item-can__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .item-can__title {
      font-size: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .item-can__title {
      font-size: calc(
              1.125rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can__title {
    font-size: 1.125rem;
  }
}
@media (min-width: 81.25em) {
  .item-can__title {
    margin-bottom: 0.9375rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (margin-bottom: clamp( 0.75rem , 0.6887755102rem  +  0.306122449vw , 0.9375rem )) {
    .item-can__title {
      margin-bottom: clamp( 0.75rem , 0.6887755102rem  +  0.306122449vw , 0.9375rem );
    }
  }
  @supports not (margin-bottom: clamp( 0.75rem , 0.6887755102rem  +  0.306122449vw , 0.9375rem )) {
    .item-can__title {
      margin-bottom: calc(
              0.75rem + 0.1875 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can__title {
    margin-bottom: 0.75rem;
  }
}
.item-can__text {
  line-height: 123%;
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 81.25em) {
  .item-can__text {
    font-size: 1.0625rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 1rem , 0.9795918367rem  +  0.1020408163vw , 1.0625rem )) {
    .item-can__text {
      font-size: clamp( 1rem , 0.9795918367rem  +  0.1020408163vw , 1.0625rem );
    }
  }
  @supports not (font-size: clamp( 1rem , 0.9795918367rem  +  0.1020408163vw , 1.0625rem )) {
    .item-can__text {
      font-size: calc(
              1rem + 0.0625 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .item-can__text {
    font-size: 1rem;
  }
}

.help {
  position: relative;
}
@media (min-width: 81.25em) {
  .help {
    padding-bottom: 7.3125rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (padding-bottom: clamp( 7.3125rem , 9.2193877551rem  +  -2.3469387755vw , 8.75rem )) {
    .help {
      padding-bottom: clamp( 7.3125rem , 9.2193877551rem  +  -2.3469387755vw , 8.75rem );
    }
  }
  @supports not (padding-bottom: clamp( 7.3125rem , 9.2193877551rem  +  -2.3469387755vw , 8.75rem )) {
    .help {
      padding-bottom: calc(
              8.75rem + -1.4375 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .help {
    padding-bottom: 8.75rem;
  }
}
.help::before {
  position: absolute;
  content: "";
  width: 37.375rem;
  height: 65.1875rem;
  background: url(../../images/about-us/help-fon.png) no-repeat center center/contain;
  top: -28.125rem;
  right: 0;
  z-index: -1;
}
@media (max-width: 520px) {
  .help::before {
    display: none;
  }
}
.help__title {
  margin-bottom: 1.125rem;
  max-width: 25rem;
  font-family: "Montserrat", sans-serif;
}
.help__text {
  max-width: 40rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
}
@media (min-width: 81.25em) {
  .help__text {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (margin-bottom: clamp( 1.75rem , 1.5051020408rem  +  1.2244897959vw , 2.5rem )) {
    .help__text {
      margin-bottom: clamp( 1.75rem , 1.5051020408rem  +  1.2244897959vw , 2.5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.75rem , 1.5051020408rem  +  1.2244897959vw , 2.5rem )) {
    .help__text {
      margin-bottom: calc(
              1.75rem + 0.75 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .help__text {
    margin-bottom: 1.75rem;
  }
}
@media (min-width: 81.25em) {
  .help__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 81.25em) {
  @supports (font-size: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .help__text {
      font-size: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 1.125rem , 1.0841836735rem  +  0.2040816327vw , 1.25rem )) {
    .help__text {
      font-size: calc(
              1.125rem + 0.125 * (100vw - 20rem) / 61.25
      );
    }
  }
}
@media (max-width: 20em) {
  .help__text {
    font-size: 1.125rem;
  }
}
.help__button.button {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
}
.help__button.button svg {
  width: 1.625rem;
}
@media (max-width: 420px) {
  .help__button.button {
    width: 100%;
    min-width: 100%;
  }
}