@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #000000;
  font-size: 16px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #F8FAFB;
}

svg {
  flex-shrink: 0;
  transition: 0.2s ease-in-out;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 80px 0;
}

.title {
  color: #393939;
  font-size: 35px;
  line-height: 120%;
}

.title span {
  color: #127D7C;
}

.subtitle {
  color: #393939;
  font-size: 30px;
  line-height: 120%;
}

.subtitle span {
  color: #127D7C;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 14px 48px;
  border-radius: 25px;
  background: #127D7C;
  color: #fff;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  background: #0c5755;
}

.section__tag {
  display: inline-flex;
  color: #1B857B;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 7px;
  border: 1px solid rgba(18, 125, 124, 0.19);
  background: rgba(18, 125, 124, 0.09);
  padding: 8px 12px;
  margin-bottom: 30px;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #1B857B;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #1B857B;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 99;
}

.header__container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid #DCDCDC;
  background: #FFF;
}

.header__logo {
  width: 112px;
  height: auto;
  flex-shrink: 0;
}

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

.header__nav {
  margin: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-link {
  color: #404040;
  font-size: 14px;
  transition: 0.2s ease-in-out;
}

.header__nav-link:hover {
  color: #1B857B;
}

.header__nav-link.active {
  color: #1B857B;
  opacity: 1;
  font-weight: 500;
}

.header__lang {
  position: relative;
}

.header__lang:hover svg {
  transform: rotate(180deg);
}

.header__lang:hover .header__lang-other {
  display: flex;
}

.header__lang-active {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 13.5px;
  background: #1B857B;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
}

.header__lang-other {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1B857B;
  padding: 10px 6px;
  border: 1px solid #ffffff;
  border-radius: 13.5px;
  display: none;
}

.header__lang-other a {
  font-size: 13px;
  text-align: center;
  color: #fff;
}

.header__lang-other a:hover {
  text-decoration: underline;
}

.header-space {
  padding-top: 120px;
}

.footer {
  margin-top: auto;
  background: url("../img/footer-bg.jpg") center/contain no-repeat, #137d7d;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px 0;
}

.footer__logo {
  width: 155px;
  flex-shrink: 0;
}

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

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 18px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 14px;
}

.footer__nav ul li {
  list-style-type: none;
}

.footer__nav ul li a,
.footer__nav ul li span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
}

.footer__nav ul li a svg,
.footer__nav ul li span svg {
  flex-shrink: 0;
}

.footer__nav ul li a.active,
.footer__nav ul li span.active {
  font-weight: 500;
}

.footer__nav ul li a:hover {
  text-decoration: underline;
}

.footer__nav-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__socials a {
  display: flex;
  transition: 0.2s ease-in-out;
}

.footer__socials a:hover {
  transform: scale(1.1);
}

.footer__bot {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bot span,
.footer__bot a {
  color: #fff;
  font-size: 14px;
  opacity: 0.8;
}

.footer__bot a:hover {
  text-decoration: underline;
}

.modal__quest {
  position: fixed;
  inset: 0;
  background: url("../img/modal-bg.jpg") center/cover no-repeat;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal__quest.active {
  display: flex;
}

.modal__quest .quest-error {
  color: #d33;
  margin-top: 15px;
  font-size: 12px;
}

.modal__quest-block {
  margin: 0 16px;
}

.modal__quest-form {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 50px 40px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__quest-header {
  color: #1B857B;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 7px;
  border: 1px solid rgba(18, 125, 124, 0.19);
  background: rgba(18, 125, 124, 0.09);
  margin-bottom: 30px;
}

.modal__quest-lines {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.modal__quest-lines div {
  height: 3px;
  width: 60px;
  background: #CECECF;
}

.modal__quest-lines div.active {
  background: #127D7C;
}

.modal__quest-steps {
  margin-bottom: 20px;
}

.modal__quest-step {
  display: none;
  flex-direction: column;
}

.modal__quest-step.active {
  display: flex;
}

.modal__quest-step_title {
  color: #393939;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 116%;
  margin-bottom: 30px;
}

.modal__quest-step_title span {
  display: block;
  color: #1B857B;
  width: 100%;
}

.modal__quest-step_fields {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
}

.modal__quest-step_label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  cursor: pointer;
}

.modal__quest-step_label span {
  font-size: 13px;
  line-height: 123%;
  opacity: 0.8;
}

.modal__quest-step_label input {
  display: none;
}

.modal__quest-step_label input:checked + svg circle:nth-child(2) {
  opacity: 1;
}

.modal__quest-step_label svg circle:nth-child(2) {
  opacity: 0;
}

.modal__quest-step_textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  resize: none;
  height: 80px;
  font-size: 13px;
}

.modal__quest-step_subtitle {
  margin-bottom: 30px;
  text-align: center;
  font-size: 14px;
  line-height: 128%;
  opacity: 0.67;
}

.modal__quest-step_input {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #D2D2D2;
  background: #FFF;
  font-size: 13px;
}

.modal__quest-step_submit {
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  border: none;
  outline: none;
  cursor: pointer;
}

.modal__quest-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.modal__quest-btn {
  border-radius: 10px;
  font-weight: 500;
}

.modal__quest-btn:nth-child(1) {
  border: 1px solid #127D7C;
  background: #FFF;
  color: #676767;
}

.modal__quest-btn:nth-child(1):hover {
  background: #127D7C;
  color: #ffffff;
}

.modal__danger {
  position: absolute;
  inset: 0;
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}

.modal__danger.active {
  display: flex;
}

.modal__danger-block {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin: 0 16px;
  padding: 70px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
}

.modal__danger-close,
.modal__quest-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.modal__danger-title {
  color: #127D7C;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 25px;
  max-width: 290px;
}

.modal__danger-text {
  text-align: center;
  font-size: 14px;
  line-height: 150%;
}

.modal__feedback {
  position: fixed;
  inset: 0;
  background: url("../img/modal-bg.jpg") center/cover no-repeat;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal__feedback.active {
  display: flex;
}

.modal__feedback-block {
  margin: 0 16px;
}

.modal__feedback-form {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 50px 40px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__feedback-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
  color: #979797;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  color: #979797;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #1B857B;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #1B857B;
}

.hero {
  margin-top: 30px;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 80px;
  border-radius: 30px;
  overflow: hidden;
}

.hero__title {
  max-width: 525px;
  margin-bottom: 20px;
}

.hero__desc {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 30px;
  max-width: 580px;
}

.chance {
  background: url("../img/chance.jpg") center/cover no-repeat;
}

.chance__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 180px 0;
  gap: 40px;
  text-align: center;
}

.chance__title {
  max-width: 710px;
}

.chance__desc {
  max-width: 620px;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.chance__btn {
  margin-top: 20px;
}

.about {
  background: #fff;
}

.about__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 500px;
  grid-template-columns: 1fr 500px;
  grid-gap: 140px;
}

.about__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about__title {
  margin-bottom: 20px;
}

.about__desc {
  margin-bottom: 80px;
  font-size: 14px;
  line-height: 160%;
}

.about__items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  width: 100%;
}

.about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  gap: 12px;
}

.about__item-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

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

.about__item-title {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
}

.about__img {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: auto;
}

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

.work {
  position: relative;
}

.work__left {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
}

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

.work__right {
  background: url("../img/work-bg.jpg") center/cover no-repeat, #F8FAFB;
}

.work__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 40%;
}

.work__title {
  margin-bottom: 30px;
}

.work__items {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  width: 100%;
  margin-bottom: 35px;
}

.work__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(17, 77, 73, 0.09);
  padding: 16px 30px;
}

.work__item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  border: 1px dashed #1B857B;
  left: 54px;
  top: 40px;
  z-index: 2;
}

.work__item-num {
  position: relative;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c8e0de;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 500;
  color: #1B857B;
  z-index: 2;
}

.work__item-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 5px;
}

.work__item-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 111%;
}

.work__item-desc {
  font-size: 14px;
  line-height: 128%;
  opacity: 0.8;
}

.us__title {
  text-align: center;
  margin-bottom: 50px;
}

.us__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.us__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  transition: 0.2s ease-in-out;
}

.us__item * {
  transition: 0.2s ease-in-out;
}

.us__item:hover {
  background: #127D7C;
  box-shadow: 0 0 10px 0 rgba(17, 77, 73, 0.09);
}

.us__item:hover .us__item-img {
  background: #fff;
}

.us__item:hover .us__item-title,
.us__item:hover .us__item-text {
  color: #fff;
}

.us__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 40px;
  background: rgba(26, 150, 142, 0.2);
}

.us__item-img img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.us__item-title {
  color: #127D7C;
  font-size: 18px;
  font-weight: 700;
  line-height: 122%;
  margin-bottom: 20px;
}

.us__item-text {
  font-size: 14px;
  line-height: 128%;
}

.feedback {
  position: relative;
  background: url("../img/feedback-bg.jpg") center/cover no-repeat;
}

.feedback__image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.feedback__container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.feedback__form {
  display: flex;
  flex-direction: column;
  max-width: 550px;
  padding: 100px 50px;
  background: #fff;
}

.feedback__title {
  text-align: center;
  margin-bottom: 20px;
}

.feedback__subtitle {
  text-align: center;
  color: #000;
  font-size: 14px;
  line-height: 128%;
  margin-bottom: 35px;
}

.feedback__fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}

.feedback__fields input,
.feedback__fields textarea {
  width: 100%;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #D2D2D2;
  background: #FFF;
}

.feedback__fields input::-moz-placeholder, .feedback__fields textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.feedback__fields input:-ms-input-placeholder, .feedback__fields textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.feedback__fields input::placeholder,
.feedback__fields textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.feedback__fields textarea {
  height: 80px;
  resize: none;
}

.feedback__fields.col-2 {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.feedback__fields.col-2 textarea,
.feedback__fields.col-2 label,
.feedback__fields.col-2 button,
.feedback__fields.col-2 .feedback__captcha {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.feedback__submit {
  border-radius: 10px;
  border: none;
  outline: none;
  text-align: center;
  justify-content: center;
}

.feedback__file {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px;
  border-radius: 6px;
  border: 1px dashed #127D7C;
  background: #FFF;
  cursor: pointer;
}

.feedback__file-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 114%;
  color: #127D7C;
}

.feedback__file div {
  text-align: center;
  font-size: 10px;
  opacity: 0.5;
  max-width: 295px;
  line-height: 140%;
}

.feedback__file input {
  display: none;
}

.insta__title {
  text-align: center;
  margin-bottom: 60px;
}

.insta__item {
  width: 326px;
}

.insta__item iframe {
  width: 100%;
}

.help {
  background: url("../img/section-bg.jpg") center/cover no-repeat;
}

.help__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 100px;
  padding: 50px 0;
}

.help__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.help__text {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 137%;
  opacity: 0.67;
}

.help__image {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  height: auto;
}

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

.profile {
  background: #F5FAF9;
}

.profile__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px;
}

.profile__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile__title {
  margin-bottom: 20px;
}

.profile__text {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 137%;
  opacity: 0.67;
  margin-bottom: 50px;
}

.profile__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.profile__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  height: 220px;
  padding: 30px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  border: 1px solid #fff;
  transition: 0.2s ease-in-out;
}

.profile__card:hover {
  border-color: #1B857B;
}

.profile__card-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  margin-top: auto;
}

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

.profile__card-title {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #127D7C;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
}

.profile__image {
  border-radius: 30px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

.international {
  background: #FFF;
}

.international__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 660px 1fr;
  grid-template-columns: 660px 1fr;
  align-items: start;
  grid-gap: 50px;
}

.international__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.international__title {
  margin-bottom: 20px;
  max-width: 400px;
}

.international__text {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 137%;
  opacity: 0.67;
  margin-bottom: 50px;
  max-width: 540px;
}

.international__image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
}

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

.start {
  background: #fff;
  padding: 60px 0 120px 0;
}

.start__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  border-radius: 30px;
  overflow: hidden;
  background: url("../img/start-bg.jpg") center/cover no-repeat;
}

.start__image {
  width: 100%;
  height: 100%;
}

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

.start__right {
  display: flex;
  flex-direction: column;
  padding: 90px 80px;
}

.start__title {
  margin-bottom: 30px;
}

.start__text {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 137%;
  opacity: 0.67;
  margin-bottom: 50px;
  max-width: 540px;
}

.start__link {
  justify-content: center;
}

.help-inner-us {
  background: #fff;
}

.help-inner-us .us__item:hover .us__item-img {
  background: transparent;
}

.help-inner-us .us__item:hover .us__item-img img {
  filter: brightness(0) invert(1);
}

.help-inner-us .us__item-img {
  background: transparent;
  border-radius: 0;
}

.help-inner-us .us__item-img img {
  width: 100%;
  height: 100%;
}

.innovation {
  background: url("../img/section-bg.jpg") center/cover no-repeat;
}

.innovation__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innovation__title {
  margin-bottom: 60px;
}

.innovation__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  width: 100%;
}

.innovation__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  border-radius: 20px;
  background: #FFF;
  overflow: hidden;
}

.innovation__item-img {
  width: 100%;
  height: 100%;
}

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

.innovation__item-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  width: 100%;
}

.innovation__item-title {
  color: #393939;
  font-size: 18px;
  font-weight: 700;
  line-height: 122%;
  margin-bottom: 20px;
}

.innovation__item-text {
  color: #000;
  font-size: 14px;
  line-height: 128%;
  opacity: 0.8;
}

.innovation__item-link {
  margin-top: auto;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #127D7C;
  background: #FFF;
  color: #127D7C;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.innovation__item-link:hover {
  background: #127D7C;
  color: #fff;
}

.cancer {
  background: #fff;
}

.cancer__title {
  margin-bottom: 60px;
  text-align: center;
}

.cancer__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 30px;
}

.cancer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  padding: 20px 30px 30px 30px;
  border: 1px solid rgba(18, 125, 124, 0.21);
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
}

.cancer__item-img {
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

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

.cancer__item-title {
  color: #393939;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
}

.partner {
  background: url("../img/section-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.partner__title {
  text-align: center;
  margin-bottom: 20px;
}

.partner__subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 137%;
  opacity: 0.67;
}

.partner__wrapper {
  position: relative;
}

.partner__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  width: 90px;
  height: 90px;
}

.partner__arrow.prev {
  left: -45px;
}

.partner__arrow.next {
  right: -45px;
}

.partner__arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.partner__slide {
  display: flex;
  flex-direction: column;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(18, 125, 124, 0.21);
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  overflow: hidden;
}

.partner__slide-img {
  position: relative;
}

.partner__slide-img::before {
  display: block;
  content: "";
}

.partner__slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.partner__slide-img::before {
  padding-top: 60%;
}

.partner__slide-block {
  display: flex;
  flex-direction: column;
  padding: 30px;
  row-gap: 20px;
}

.partner__slide-title {
  color: #393939;
  font-size: 18px;
  font-weight: 700;
  line-height: 122%;
}

.partner__slide-text {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  color: #000;
  font-size: 14px;
  line-height: 142%;
}

.step__title {
  text-align: center;
  margin-bottom: 60px;
}

.step__items {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 50px;
}

.step__items::before {
  position: absolute;
  content: "";
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #1B857B;
}

.step__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #127D7C;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
}

.step__item-title {
  margin-bottom: 15px;
  color: #127D7C;
  font-size: 18px;
  font-weight: 700;
  line-height: 122%;
}

.step__item-text {
  font-size: 13px;
  line-height: 123%;
  opacity: 0.8;
}

.price {
  padding-bottom: 100px;
}

.price__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(18, 125, 124, 0.21);
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
}

.price__title {
  text-align: center;
  margin-bottom: 20px;
}

.price__subtitle {
  max-width: 940px;
  text-align: center;
  margin-bottom: 50px;
  font-size: 14px;
  opacity: 0.8;
  line-height: 142%;
}

.price__items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}

.price__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.price__item:not(:last-child)::before {
  position: absolute;
  content: "+";
  top: 20px;
  right: -15%;
  font-size: 25px;
  color: #127D7C;
  font-weight: 500;
}

.price__item-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

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

.price__item-title {
  color: #393939;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
}

.price__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  justify-content: space-between;
}

.price__blockquote {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 36px;
  background: rgba(18, 125, 124, 0.06);
  padding: 10px 20px;
  font-size: 12px;
  color: #1B857B;
  line-height: 130%;
}

.price__blockquote img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.price__link {
  flex-shrink: 0;
}

.preview {
  background: url("../img/section-bg.jpg") center/cover no-repeat;
}

.preview__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 680px;
  grid-template-columns: 1fr 680px;
  align-items: start;
  grid-gap: 50px;
  padding: 50px 0;
}

.preview__image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
}

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

.preview__right {
  display: flex;
  flex-direction: column;
}

.preview__title {
  margin-bottom: 30px;
}

.preview__text {
  color: #000;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 60px;
  opacity: 0.8;
}

.preview__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.preview__item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  padding: 30px;
}

.preview__item-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

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

.preview__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  opacity: 0.8;
}

.preview__item-title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 112%;
}

.preview__item-text {
  color: #000;
  font-size: 14px;
  line-height: 128%;
}

.team {
  padding-bottom: 100px;
  overflow: hidden;
}

.team__container {
  position: relative;
}

.team__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  z-index: 2;
}

.team__arrow.prev {
  left: -45px;
}

.team__arrow.next {
  right: -45px;
}

.team__slide {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  overflow: hidden;
}

.team__slide::before {
  display: block;
  content: "";
}

.team__slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team__slide::before {
  padding-top: 140%;
}

.team__slide::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.team__slide-position {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  color: #ffffff;
  z-index: 2;
}

.team__slide-position div {
  font-size: 20px;
  font-weight: 500;
}

.team__slide-position span {
  font-size: 16px;
}

.china {
  background: url("../img/section-bg.jpg") center/cover no-repeat;
}

.china__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 700px 1fr;
  grid-template-columns: 700px 1fr;
  align-items: start;
  grid-gap: 50px;
  padding: 50px 0;
}

.china__left {
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}

.china__title {
  margin-bottom: 20px;
}

.china__text {
  color: #000;
  font-size: 14px;
  line-height: 157%;
  margin-bottom: 100px;
  opacity: 0.8;
}

.china__items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.china__item {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 30%;
}

.china__item-img {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

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

.china__item-title {
  color: #000;
  font-size: 14px;
  line-height: 128%;
}

.china__image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
}

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

.methods__title {
  text-align: center;
  margin-bottom: 50px;
}

.methods__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.methods__item {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  overflow: hidden;
}

.methods__item-img {
  position: relative;
}

.methods__item-img::before {
  display: block;
  content: "";
}

.methods__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.methods__item-img::before {
  padding-top: 67%;
}

.methods__item-block {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.methods__item-title {
  color: #127D7C;
  font-size: 18px;
  font-weight: 700;
  line-height: 122%;
  margin-bottom: 15px;
}

.methods__item-text {
  margin-top: auto;
  color: #000;
  font-size: 14px;
  line-height: 128%;
  opacity: 0.8;
}

.methods__item-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #127D7C;
  background: #FFF;
  font-size: 14px;
  color: #1B857B;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.methods__item-link:hover {
  transform: scale(1.04);
}

.methods__item-link svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.method__container {
  padding-bottom: 100px;
}

.method__image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.method__title {
  margin-bottom: 30px;
}

.method__text {
  color: #000;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 100px;
}

.method__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.method__images-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.method__images-item::before {
  display: block;
  content: "";
}

.method__images-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.method__images-item::before {
  padding-top: 62%;
}

.case__title {
  text-align: center;
  margin-bottom: 50px;
}

.case__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.case__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  padding: 40px;
}

.case__item-tag {
  border-radius: 7px;
  border: 1px solid rgba(18, 125, 124, 0.19);
  background: rgba(18, 125, 124, 0.09);
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1B857B;
  margin-bottom: 20px;
}

.case__item-title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #393939;
  line-height: 110%;
}

.case__item-text {
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.8;
  line-height: 142%;
}

.case__item-blockquote {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px;
  border-radius: 10px;
  background: #F3F7F7;
  margin-bottom: 30px;
}

.case__item-blockquote_title {
  font-size: 16px;
  font-weight: 700;
  color: #1B857B;
}

.case__item-blockquote_text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 115%;
}

.case__item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1B857B;
}

.case__item-link:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 32px;
  border: 1px solid #F1F1F1;
  background: #FFF;
  font-size: 13px;
  color: #333;
  transition: 0.2s ease-in-out;
}

.pagination li a:hover {
  background: #1B857B;
  color: #ffffff;
}

.pagination li.active a {
  background: #1B857B;
  color: #ffffff;
}

.case__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.case__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
  padding: 40px;
  border-radius: 20px;
  background: #F3F7F7;
}

.case__card-title {
  font-size: 22px;
  color: #1B857B;
  font-weight: 700;
}

.case__card-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  opacity: 0.8;
  line-height: 142%;
}

.case-inner-us {
  background: unset;
}

.case-inner-us .subtitle {
  text-align: left;
}

.case-inner-us .us__item {
  align-items: flex-start;
  text-align: left;
}

.case-inner-us .content {
  padding-top: 0;
}

.case-inner-us .method__images {
  padding-top: 100px;
}

.contacts__container {
  padding-bottom: 50px;
}

.contacts__title {
  text-align: center;
  margin-bottom: 50px;
}

.contacts__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.contacts__item {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 4px 20px 0 rgba(17, 77, 73, 0.08);
  padding: 30px;
}

.contacts__info {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 128%;
}

.contacts__info span,
.contacts__info a {
  opacity: 0.8;
}

.contacts__info a {
  transition: 0.2s ease-in-out;
}

.contacts__info a:hover {
  color: #1B857B;
}

.contacts__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
}

.contacts__socials a {
  display: flex;
  transition: 0.2s ease-in-out;
}

.contacts__socials a:hover {
  transform: scale(1.04);
}

.contacts__schedule {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.contacts__schedule-col {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.contacts__schedule-title {
  font-size: 16px;
  opacity: 0.8;
  font-weight: 500;
}

.contacts__schedule-time {
  display: flex;
  flex-direction: column;
  opacity: 0.8;
  font-size: 14px;
  line-height: 158%;
}

.feedback {
  position: relative;
}

.feedback > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.politics__container {
  padding-bottom: 100px;
}

.politics__title {
  text-align: center;
  margin-bottom: 50px;
}

.politics__text {
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 165%;
}

.empty__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 100px;
}

.empty__container img {
  width: auto;
  height: auto;
}

.empty__title {
  margin-bottom: 30px;
  font-size: 30px;
  color: #1B857B;
  font-weight: 700;
}

.empty__text {
  text-align: center;
  max-width: 450px;
  color: #666;
  font-size: 14px;
  line-height: 142%;
  margin-bottom: 30px;
}

@media (max-width: 1800px) {
  .work__container {
    padding-left: 42%;
  }
}

@media (max-width: 1400px) {
  .work__container {
    padding-left: 45%;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 60px 0;
  }

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 24px;
  }

  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 20px;
    margin-right: 0;
  }

  .header {
    top: 16px;
  }

  .header__logo {
    margin-right: auto;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #DCDCDC;
    padding: 16px;
    display: none;
  }

  .header__nav.active {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .header-space {
    padding-top: 87px;
  }

  .modal__quest-form {
    padding: 25px;
  }

  .modal__quest-header {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .modal__quest-lines {
    margin-bottom: 15px;
  }

  .modal__quest-lines div {
    width: 30px;
  }

  .modal__quest-step_title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .modal__danger-block {
    padding: 25px;
  }

  .modal__danger-close,
  .modal__quest-close {
    right: 15px;
    top: 15px;
  }

  .modal__danger-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .modal__feedback-form {
    padding: 25px;
  }

  .modal__feedback-close {
    right: 15px;
    top: 15px;
  }

  .chance__container {
    padding: 100px 0;
    gap: 30px;
  }

  .about__container {
    -ms-grid-columns: 1fr 350px;
    grid-template-columns: 1fr 350px;
    grid-gap: 50px;
  }

  .about__desc {
    margin-bottom: 50px;
  }

  .about__items {
    margin-bottom: 40px;
  }

  .work__left {
    display: none;
  }

  .work__item-title {
    font-size: 16px;
  }

  .work__link {
    -ms-grid-row-align: center;
        align-self: center;
  }

  .us__title {
    margin-bottom: 30px;
  }

  .us__item-img {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }

  .us__item-img img {
    width: 40px;
    height: 40px;
  }

  .us__item-title {
    font-size: 16px;
  }

  .feedback__form {
    padding: 60px;
  }

  .insta__title {
    margin-bottom: 30px;
  }

  .innovation__title {
    margin-bottom: 30px;
  }

  .innovation__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .cancer__title {
    margin-bottom: 30px;
  }

  .cancer__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
  }

  .partner__slide-block {
    padding: 15px;
  }

  .partner__slide-title {
    font-size: 16px;
  }

  .partner__slide-text {
    font-size: 12px;
  }

  .step__title {
    margin-bottom: 30px;
  }

  .step__item-num {
    margin-bottom: 20px;
  }

  .step__item-title {
    font-size: 16px;
  }

  .preview__container {
    -ms-grid-columns: 1fr 550px;
    grid-template-columns: 1fr 550px;
  }

  .team__slide-position div {
    font-size: 18px;
  }

  .team__slide-position span {
    font-size: 14px;
  }

  .china__container {
    -ms-grid-columns: 550px 1fr;
    grid-template-columns: 550px 1fr;
  }

  .china__left {
    padding-top: 0;
  }

  .china__text {
    margin-bottom: 30px;
  }

  .china__items {
    flex-direction: column;
    gap: 15px;
  }

  .china__item {
    width: 100%;
  }

  .methods__title {
    margin-bottom: 30px;
  }

  .methods__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .method__image {
    margin-bottom: 30px;
  }

  .method__title {
    margin-bottom: 15px;
  }

  .method__text {
    margin-bottom: 50px;
  }

  .case__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }

  .case__card {
    padding: 20px;
  }

  .case__card-title {
    font-size: 18px;
  }

  .case-inner-us .method__images {
    padding-top: 50px;
  }

  .contacts__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }

  .contacts__item {
    padding: 15px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 16px;
  }

  .title {
    font-size: 24px;
  }

  .subtitle {
    font-size: 20px;
  }

  .btn {
    padding: 12px 35px;
    font-size: 14px;
  }

  .footer__top {
    flex-direction: column;
    padding: 30px 0;
    gap: 30px;
  }

  .footer__bot {
    flex-direction: column;
    gap: 10px;
  }

  .breadcrumbs__container {
    padding: 30px 0;
  }

  .hero {
    background-position: right;
  }

  .hero__container {
    position: relative;
    padding: 50px 20px;
    background-position: right !important;
  }

  .hero__container::before {
    position: absolute;
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
  }

  .hero__container * {
    position: relative;
  }

  .hero__desc {
    font-size: 14px;
  }

  .chance__container {
    padding: 60px 0;
  }

  .about__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .us__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .feedback {
    background-position: left;
  }

  .feedback__form {
    max-width: unset;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 60px 16px;
  }

  .profile__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }

  .profile__text {
    margin-bottom: 30px;
  }

  .profile__cards {
    gap: 15px;
  }

  .profile__card {
    width: 150px;
    height: 200px;
    padding: 15px;
  }

  .profile__card-image {
    width: 80px;
    height: 80px;
  }

  .international__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .international__left .profile__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .international__left .profile__card {
    width: 100%;
  }

  .international__text {
    margin-bottom: 30px;
  }

  .start__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .start__right {
    padding: 25px;
  }

  .start__title {
    margin-bottom: 15px;
  }

  .start__text {
    margin-bottom: 30px;
  }

  .partner__arrow.prev {
    left: 0;
  }

  .partner__arrow.next {
    right: 0;
  }

  .step__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .step__items::before {
    display: none;
  }

  .price__container {
    padding: 35px 16px;
  }

  .price__items {
    flex-direction: column;
    align-items: center;
  }

  .price__item:not(:last-child)::before {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
  }

  .price__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .preview__title {
    margin-bottom: 15px;
  }

  .preview__text {
    margin-bottom: 30px;
  }

  .team__arrow.prev {
    left: 0;
  }

  .team__arrow.next {
    right: 0;
  }

  .china__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }

  .case__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .case__item {
    padding: 20px;
  }

  .case__item-tag {
    margin-bottom: 10px;
  }

  .case__item-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .case__item-text {
    margin-bottom: 15px;
  }

  .case__item-blockquote {
    padding: 10px;
    margin-bottom: 20px;
  }

  .case__item-blockquote_title {
    font-size: 14px;
  }

  .case__item-blockquote_text {
    font-size: 12px;
  }

  .case__item-link {
    font-size: 12px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .help__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .help__left {
    gap: 15px;
  }

  .partner__subtitle {
    margin-bottom: 30px;
  }

  .partner__arrow {
    width: 60px;
    height: 60px;
  }

  .method__images {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}

@media (max-width: 576px) {
  .us__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .feedback__fields.col-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .feedback__fields.col-2 textarea,
  .feedback__fields.col-2 label,
  .feedback__fields.col-2 button,
  .feedback__fields.col-2 .feedback__captcha {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .innovation__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .innovation__item-text {
    margin-bottom: 20px;
  }

  .cancer__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .preview__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .case__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contacts__schedule {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .methods__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}.g-recaptcha { display: flex; justify-content: center; }
