/* Regular */
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Regular.woff2") format("woff2"), url("../fonts/InterTight-Regular.woff") format("woff"), url("../fonts/InterTight-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Medium */
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Medium.woff2") format("woff2"), url("../fonts/InterTight-Medium.woff") format("woff"), url("../fonts/InterTight-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* SemiBold */
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-SemiBold.woff2") format("woff2"), url("../fonts/InterTight-SemiBold.woff") format("woff"), url("../fonts/InterTight-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Bold.woff2") format("woff2"), url("../fonts/InterTight-Bold.woff") format("woff"), url("../fonts/InterTight-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --default-ff: "InterTight", sans-serif;
  --default-fz: 18px;
  --default-fw: 500;
  --default-lh: 1.6;
  --default-color: #1D3D63;
  --page-bc: #F5FAFC;
  --grid-padding: 80px;
}
@media (max-width: 1024px) {
  :root {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  :root {
    --grid-padding: 15px;
  }
}
:root {
  --screen-width: 1920px;
  --header-height: 0;
  --primary-title-ff: "InterTight", sans-serif;
  --secondary-title-ff: "BDO Grotesk", sans-serif;
  --steel-blue: #4E6C8D;
  --navy-blue: #1D3D63;
  --white: #fff;
  --light: #f5fafc;
  --bg-color-intro: #d2e4f2;
  --bg-color-footer: #D2E4F2;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: var(--header-height);
  height: 100%;
}

body {
  font-family: var(--default-ff);
  font-size: var(--default-fz);
  font-weight: var(--default-fw);
  line-height: var(--default-lh);
  color: var(--default-color);
  background-color: var(--page-bc);
  position: relative;
  transition: opacity 0.5s ease;
  overflow-y: hidden;
  opacity: 0;
  height: 100%;
}
body.is-loaded {
  overflow-y: auto;
  opacity: 1;
}
body.is-locked {
  overflow: hidden;
}

li {
  list-style: none;
}

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

a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}

input,
textarea {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: var(--white);
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}
input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
}

address {
  font-style: normal;
}

a,
button {
  display: inline-flex;
  cursor: pointer;
  background-color: transparent;
}

button,
time {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}

select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
}

svg {
  cursor: pointer;
}
svg path {
  cursor: pointer;
}

main {
  flex: 1;
  margin-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-ff);
  font-weight: 500;
  margin: 0;
}

small {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

.container {
  padding-left: var(--grid-padding);
  padding-right: var(--grid-padding);
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.gradient-button {
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 83.823%), rgba(245, 250, 252, 0.04);
  transition: 0.5s;
}

.secondary-title {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .secondary-title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .secondary-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .secondary-title {
    font-size: 28px;
    word-break: break-word;
  }
}

.badge-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 10px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .badge-label {
    margin-bottom: 20px;
    padding: 8px 20px 8px 8px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .badge-label {
    margin-bottom: 16px;
    padding: 6px 16px 6px 6px;
    gap: 6px;
  }
}
.badge-label span:first-child {
  height: 32px;
  width: 32px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .badge-label span:first-child {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 768px) {
  .badge-label span:first-child {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 480px) {
  .badge-label span:first-child {
    width: 24px;
    height: 24px;
  }
}
.badge-label span:first-child img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .badge-label span:first-child img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .badge-label span:first-child img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .badge-label span:first-child img {
    width: 15px;
    height: 15px;
  }
}
.badge-label span:last-child {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .badge-label span:last-child {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .badge-label span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .badge-label span:last-child {
    font-size: 14px;
  }
}

.padding-lg {
  padding: 160px 0;
}
@media (max-width: 1024px) {
  .padding-lg {
    padding: 120px 0;
  }
}
@media (max-width: 768px) {
  .padding-lg {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .padding-lg {
    padding: 80px 0;
  }
}

.margin-lg {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 1024px) {
  .margin-lg {
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .margin-lg {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .margin-lg {
    margin-bottom: 32px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--light);
}
@media (max-width: 480px) {
  .header {
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .header.header-has-bg {
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .header.header-has-bg {
    padding-top: 20px;
  }
}
.header.header-has-bg .container {
  --grid-padding: 30px;
}
@media (max-width: 1024px) {
  .header.header-has-bg .container {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  .header.header-has-bg .container {
    --grid-padding: 15px;
  }
}
.header.header-has-bg .header__inner {
  padding: 32px 80px;
  margin-top: 30px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  background: var(--bg-color-intro);
}
@media (max-width: 1024px) {
  .header.header-has-bg .header__inner {
    padding: 12px 11px 32px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    margin-top: 0;
  }
}
.header.is-scrolled .header__inner {
  background: none;
}
.header.header-has-bg.is-scrolled .header__inner {
  background: none;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  transition: 0.5s;
}
@media (max-width: 480px) {
  .header__inner.is-not-transparent {
    padding: 12px 11px 32px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: var(--bg-color-intro);
  }
}
@media (max-width: 384px) {
  .header__inner {
    padding: 12px 8px 24px;
  }
}
.header__logo {
  max-width: 210px;
}
@media (max-width: 1024px) {
  .header__logo {
    max-width: 180px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    max-width: 135px;
    margin-right: 12px;
  }
}
@media (max-width: 384px) {
  .header__logo {
    margin-right: 15px;
  }
}
.header__nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  max-width: max-content;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav-link {
  font-size: 20px;
  font-weight: 400;
}
.header__nav-link.active {
  font-weight: 600;
}
.header__langs {
  margin-left: auto;
  margin-right: 24px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header__langs {
    margin-right: 12px;
  }
}
@media (max-width: 768px) {
  .header__langs {
    margin-right: 0;
  }
}
.header__langs-current {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  border-radius: 100px;
  border: 1px solid rgba(29, 61, 99, 0.12);
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .header__langs-current {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
    gap: 5px;
  }
}
@media (max-width: 480px) {
  .header__langs-current {
    height: 36px;
    gap: 8px;
    padding: 0 12px;
  }
}
@media (max-width: 384px) {
  .header__langs-current {
    font-size: 12px;
    gap: 5px;
    height: 32px;
  }
}
.header__langs-current span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.header__button {
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 34px;
  color: var(--white);
  height: 48px;
}
@media (max-width: 1024px) {
  .header__button {
    font-size: 14px;
    height: 40px;
    padding-inline: 15px;
  }
}
@media (max-width: 768px) {
  .header__button {
    display: none;
  }
}
.header__burger {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--navy-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: 12px;
  z-index: 101;
}
.header__burger span {
  display: block;
  width: 12.5px;
  height: 1px;
  background: var(--white);
  border-radius: 10px;
}
.header__burger.is-open {
  gap: 0;
}
.header__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(0.5px);
}
.header__burger.is-open span:nth-child(2) {
  transform: rotate(-45deg) translateY(-0.5px);
}
.header__burger.is-open span:nth-child(3) {
  display: none;
}
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}
@media (max-width: 384px) {
  .header__burger {
    height: 32px;
    width: 32px;
    margin-left: 8px;
  }
}
.header__langs {
	position: relative;
}

.header__langs-arrow svg {
	transition: transform .3s ease;
}

.header__langs.is-open .header__langs-arrow svg {
	transform: rotate(180deg);
}

.header__langs-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;

	min-width: 140px;

	padding: 8px;

	border-radius: 20px;

	background: rgba(255,255,255,.92);
	backdrop-filter: blur(20px);

	border: 1px solid rgba(29,61,99,.08);

	box-shadow:
		0 10px 30px rgba(29,61,99,.08),
		0 2px 10px rgba(29,61,99,.05);

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);

	transition:
		opacity .25s ease,
		transform .25s ease,
		visibility .25s ease;

	z-index: 200;
}

.header__langs.is-open .header__langs-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header__langs-dropdown-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.header__langs-dropdown-link {
	display: flex;
	align-items: center;
	gap: 10px;

	padding: 12px 14px;

	border-radius: 14px;

	font-size: 15px;
	font-weight: 600;

	transition:
		background .25s ease,
		transform .25s ease;
}

.header__langs-dropdown-link:hover {
	background: rgba(29,61,99,.06);
	transform: translateX(2px);
}

.header__langs-dropdown-link.is-active {
	background: rgba(29,61,99,.08);
}

@media (max-width: 480px) {
	.header__langs-dropdown {
		right: -10px;
	}
}

.footer {
  background-color: var(--bg-color-footer);
}
.footer__wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/footer/bg.webp");
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-block: 80px;
  border-bottom: 1px solid rgba(29, 61, 99, 0.2);
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    padding: 60px 0 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .footer__top {
    padding: 40px 0 32px;
    margin-bottom: 32px;
  }
}
.footer__content {
  max-width: 460px;
}
@media (max-width: 1024px) {
  .footer__content {
    max-width: 100%;
  }
}
.footer__logo {
  margin-bottom: 32px;
}
.footer__description {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .footer__description {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .footer__description {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .footer__description {
    font-size: 24px;
  }
}
.footer__cerificates {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__certificate-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 96px;
  border-radius: 7px;
  background: var(--navy-blue);
}
.footer__certificate-picture img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__navs {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__navs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .footer__navs {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__nav {
  max-width: 312px;
  width: 100%;
}
@media (max-wdith: 480px) {
  .footer__nav {
    max-width: 100%;
  }
}
.footer__nav.footer-nav-first {
  margin-left: auto;
}
@media (max-width: 480px) {
  .footer__nav.footer-nav-first {
    margin-left: 0;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav-label {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 32px;
}
.footer__nav-link {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.footer__overlay {
  max-width: 312px;
  width: 100%;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: rgba(29, 61, 99, 0.24);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.is-open .mobile-menu__overlay {
  right: 0%;
}
.mobile-menu__overlay {
  position: absolute;
  top: 0;
  right: -100%;
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  background-color: var(--white);
  height: 100%;
  transition: 0.5s;
}
.mobile-menu__body {
  display: flex;
  flex-direction: column;
  padding: var(--header-height) 20px 20px;
  height: 100dvh;
}
.mobile-menu__nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .mobile-menu__nav-link {
    font-size: 16px;
  }
}
.mobile-menu__button {
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  height: 40px;
  padding-inline: 15px;
  margin-top: auto;
}

.about-intro .container {
  --grid-padding: 30px;
}
@media (max-width: 1024px) {
  .about-intro .container {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  .about-intro .container {
    --grid-padding: 15px;
  }
}
.about-intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 80px 48px;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  background: var(--bg-color-intro);
}
@media (max-width: 1024px) {
  .about-intro__inner {
    padding: 40px 40px 48px;
  }
}
@media (max-width: 768px) {
  .about-intro__inner {
    padding: 40px 24px 48px;
  }
}
@media (max-width: 480px) {
  .about-intro__inner {
    align-items: flex-start;
    padding: 40px 16px 48px;
  }
}
.about-intro__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 40px;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 24px;
  border: 1px solid rgb(245, 250, 252);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.96) 0%, rgba(245, 250, 252, 0.96) 100%);
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .about-intro__badge {
    height: 36px;
    padding: 0 20px;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .about-intro__badge {
    height: 34px;
    padding: 0 16px;
    gap: 6px;
  }
}
.about-intro__star {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .about-intro__star {
    width: 12px;
    height: 12px;
  }
}
.about-intro__label {
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .about-intro__label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .about-intro__label {
    font-size: 14px;
  }
}
@media (max-width: 384px) {
  .about-intro__label {
    font-size: 12px;
  }
}
.about-intro__line {
  height: 23px;
  width: 2px;
  background: rgba(29, 61, 99, 0.4);
}
@media (max-width: 480px) {
  .about-intro__line {
    height: 18px;
    width: 1px;
  }
}
@media (max-width: 384px) {
  .about-intro__line {
    height: 14px;
  }
}
.about-intro__title {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 600;
  max-width: 1005px;
  width: 100%;
  margin-bottom: 16px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .about-intro__title {
    font-size: 48px;
    word-break: break-word;
  }
}
@media (max-width: 768px) {
  .about-intro__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .about-intro__title {
    font-size: 36px;
    text-align: left;
  }
}
@media (max-width: 384px) {
  .about-intro__title {
    font-size: 32px;
  }
}
.about-intro__description {
  color: rgba(29, 61, 99, 0.7);
  max-width: 805px;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .about-intro__description {
    margin-bottom: 54px;
  }
}
@media (max-width: 768px) {
  .about-intro__description {
    font-size: 16px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .about-intro__description {
    margin-bottom: 32px;
    text-align: left;
  }
}
.about-intro__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  .about-intro__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .about-intro__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-intro__item {
  width: 100%;
}
.about-intro__item:first-child, .about-intro__item:last-child {
  max-width: 420px;
}
@media (max-width: 1024px) {
  .about-intro__item:first-child, .about-intro__item:last-child {
    max-width: 100%;
  }
}
.about-intro__item:first-child .about-intro__overlay, .about-intro__item:last-child .about-intro__overlay {
  height: 480px;
}
@media (max-width: 768px) {
  .about-intro__item:first-child .about-intro__overlay, .about-intro__item:last-child .about-intro__overlay {
    height: 350px;
  }
}
.about-intro__item:nth-child(2) {
  max-width: 630px;
}
@media (max-width: 1024px) {
  .about-intro__item:nth-child(2) {
    max-width: 100%;
    grid-column: 1/3;
    order: 3;
  }
}
@media (max-width: 768px) {
  .about-intro__item:nth-child(2) {
    grid-column: 1/2;
  }
}
.about-intro__item:nth-child(2) .about-intro__overlay {
  height: 345px;
}
@media (max-width: 768px) {
  .about-intro__item:nth-child(2) .about-intro__overlay {
    height: 310px;
  }
}
.about-intro__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-intro__overlay {
  display: flex;
  flex-direction: column;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 16px;
}
.about-intro__text {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 24px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.8) 0%, rgba(245, 250, 252, 0.8) 100%);
  padding: 24px 32px;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .about-intro__text {
    padding: 16px 24px;
  }
}
@media (max-width: 480px) {
  .about-intro__text {
    padding: 16px;
  }
}
.about-intro__text-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #23B801;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .about-intro__text-content {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about-intro__text-content {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .about-intro__text-content {
    font-size: 14px;
  }
}
.about-intro__text-content span:first-child {
  font-weight: 600;
}
.about-intro__patients {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 24px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.48) 0%, rgba(245, 250, 252, 0.48) 100%);
  padding: 32px;
}
@media (max-width: 1024px) {
  .about-intro__patients {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .about-intro__patients {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .about-intro__patients {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 1024px) {
  .about-intro__patients-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .about-intro__patients-text {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .about-intro__patients-text {
    font-size: 14px;
  }
}
.about-intro__patients-text span:first-child {
  font-weight: 600;
}
.about-intro__link {
  color: var(--white);
  display: none;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .about-intro__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .about-intro__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .about-intro__link {
    display: flex;
    justify-content: space-between;
    height: 52px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 32px;
  }
}
.about-intro__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .about-intro__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .about-intro__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about-intro__link span:first-child {
    font-size: 16px;
  }
}
.about-intro__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .about-intro__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .about-intro__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .about-intro__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.about-intro__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .about-intro__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .about-intro__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .about-intro__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.statistics__inner {
  padding-block: 80px;
}
.statistics__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .statistics__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .statistics__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.statistics__box {
  display: flex;
  flex-direction: column;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 24px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.48) 0%, rgba(245, 250, 252, 0.48) 100%);
  padding: 32px;
  height: 100%;
}
@media (max-width: 1024px) {
  .statistics__box {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .statistics__box {
    padding: 20px;
  }
}
.statistics__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgb(255, 199, 99);
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .statistics__icon {
    height: 52px;
    width: 52px;
  }
}
@media (max-width: 768px) {
  .statistics__icon {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .statistics__icon {
    height: 42px;
    width: 42px;
  }
}
.statistics__icon img {
  width: 32px;
  height: 32px;
}
@media (max-width: 1024px) {
  .statistics__icon img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .statistics__icon img {
    width: 21px;
    height: 21px;
  }
}
.statistics__value {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 600;
  margin-top: auto;
}
@media (max-width: 1024px) {
  .statistics__value {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .statistics__value {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .statistics__value {
    font-size: 28px;
  }
}
.statistics__text {
  text-transform: capitalize;
  font-weight: 400;
  color: #4E6C8D;
}
@media (max-width: 480px) {
  .statistics__text {
    font-size: 16px;
  }
}

.place__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .place__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.place__info {
  position: relative;
  max-width: 885px;
  width: 100%;
}
@media (max-width: 1024px) {
  .place__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .place__info {
    order: 2;
  }
}
.place__picture {
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .place__picture img {
    max-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.place__wrapper {
  position: absolute;
  top: 32px;
  left: 32px;
  padding: 24px;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 24px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.8) 0%, rgba(245, 250, 252, 0.8) 100%);
  max-width: 360px;
  width: 100%;
}
@media (max-width: 1024px) {
  .place__wrapper {
    position: relative;
    top: 0;
    left: 0;
    background: rgb(210, 228, 242);
    max-width: 100%;
  }
}
.place__wrapper-logo {
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .place__wrapper-logo {
    width: 24px;
    height: 24px;
  }
}
.place__wrapper-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__wrapper-head {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .place__wrapper-head {
    margin-bottom: 24px;
  }
}
.place__wrapper-label {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}
.place__wrapper-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  background: rgba(245, 250, 252, 0.64);
  padding: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__wrapper-list {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .place__wrapper-list {
    margin-bottom: 24px;
    gap: 8px;
  }
}
.place__wrapper-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.place__wrapper-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 199, 99, 0.24);
  border-radius: 75px;
  background: rgb(255, 199, 99);
  flex-shrink: 0;
}
.place__wrapper-text {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .place__wrapper-text {
    font-size: 14px;
  }
}
.place__wrapper-link {
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .place__wrapper-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .place__wrapper-link {
    font-size: 14px;
  }
}
.place__content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .place__content {
    max-width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.place__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 10px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .place__badge {
    padding: 8px 20px 8px 8px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .place__badge {
    padding: 6px 16px 6px 6px;
    gap: 6px;
  }
}
.place__badge.margened {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .place__badge.margened {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .place__badge.margened {
    margin-bottom: 16px;
  }
}
.place__badge span:first-child {
  height: 32px;
  width: 32px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .place__badge span:first-child {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 768px) {
  .place__badge span:first-child {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 480px) {
  .place__badge span:first-child {
    width: 24px;
    height: 24px;
  }
}
.place__badge span:first-child img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .place__badge span:first-child img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .place__badge span:first-child img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .place__badge span:first-child img {
    width: 15px;
    height: 15px;
  }
}
.place__badge span:last-child {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .place__badge span:last-child {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .place__badge span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .place__badge span:last-child {
    font-size: 14px;
  }
}
.place__title {
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .place__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .place__title {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .place__title {
    margin-bottom: 16px;
  }
}
.place__title strong {
  font-weight: 600;
  padding: 4px 12px;
  background-color: #FFC763;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .place__title strong {
    padding: 2px 8px;
    border-radius: 8px;
  }
}
.place__text {
  color: rgb(109, 128, 147);
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__text {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .place__text {
    margin-bottom: 36px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .place__text {
    margin-bottom: 32px;
  }
}
.place__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__badges {
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .place__badges {
    margin-bottom: 40px;
    gap: 8px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .place__badges {
    margin-bottom: 32px;
  }
}
.place__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .place__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .place__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .place__link {
    height: 52px;
  }
}
.place__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .place__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .place__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .place__link span:first-child {
    font-size: 16px;
  }
}
.place__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .place__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .place__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .place__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.place__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .place__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .place__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .place__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.experience__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.experience__title {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 480px) {
  .experience__title {
    margin-bottom: 32px;
  }
}
.experience__elems {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1024px) {
  .experience__elems {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .experience__elems {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .experience__elems {
    gap: 16px;
    margin-bottom: 32px;
  }
}
.experience__elem:nth-child(even) .experience__overlay {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .experience__elem:nth-child(even) .experience__overlay {
    flex-direction: column;
  }
}
.experience__overlay {
  display: flex;
  align-items: center;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  background: rgba(210, 228, 242, 0.6);
  padding: 24px;
}
@media (max-width: 1024px) {
  .experience__overlay {
    flex-direction: column;
    gap: 32px;
    padding: 20px;
  }
}
.experience__picture {
  max-width: 634px;
  width: 100%;
  height: 634px;
  border: 4px solid rgba(245, 250, 252, 0.6);
  border-radius: 28px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .experience__picture {
    border-radius: 20px;
    height: 500px;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .experience__picture {
    height: 400px;
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .experience__picture {
    max-width: 303px;
    height: 303px;
  }
}
.experience__picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.experience__content {
  max-width: 975px;
  width: 100%;
  padding: 24px 48px;
}
@media (max-width: 1024px) {
  .experience__content {
    padding: 0;
  }
}
.experience__decor {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  background-color: #FFC763;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .experience__decor {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .experience__decor {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .experience__decor {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }
}
.experience__decor svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 1024px) {
  .experience__decor svg {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .experience__decor svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .experience__decor svg {
    width: 20px;
    height: 20px;
  }
}
.experience__label {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .experience__label {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .experience__label {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .experience__label {
    font-size: 24px;
  }
}
.experience__body {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 55px;
  color: rgba(29, 61, 99, 0.7);
}
@media (max-width: 1024px) {
  .experience__body {
    font-size: 20px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .experience__body {
    font-size: 18px;
    margin-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .experience__body {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.experience__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .experience__list {
    gap: 12px;
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .experience__list {
    gap: 10px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .experience__list {
    gap: 8px;
    margin-bottom: 0;
  }
}
.experience__box {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  padding: 10px 24px 10px 10px;
}
@media (max-width: 1024px) {
  .experience__box {
    padding: 8px 20px 8px 8px;
  }
}
@media (max-width: 768px) {
  .experience__box {
    padding: 6px 16px 6px 6px;
  }
}
.experience__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: rgb(245, 250, 252);
  flex-shrink: 0;
}
.experience__badge-label {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .experience__badge-label {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .experience__badge-label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .experience__badge-label {
    font-size: 14px;
  }
}
.experience__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .experience__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .experience__link {
    height: 64px;
  }
}
@media (max-width: 480px) {
  .experience__link {
    height: 52px;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
    padding: 0 7px 0 24px;
  }
}
@media (max-width: 480px) {
  .experience__link.is-mobile-hidden {
    display: none !important;
  }
}
@media (min-width: 481px) {
  .experience__link.is-desktop-hidden {
    display: none !important;
  }
}
.experience__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .experience__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .experience__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .experience__link span:first-child {
    font-size: 16px;
  }
}
.experience__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .experience__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .experience__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .experience__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.experience__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .experience__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .experience__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .experience__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.documents__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.documents__title {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .documents__title {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .documents__title {
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .documents__title {
    margin-bottom: 32px;
  }
}
.documents__tabs {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 1000px;
  background: rgb(210, 228, 242);
  margin-bottom: 54px;
}
@media (max-width: 1024px) {
  .documents__tabs {
    margin-bottom: 48px;
    padding: 5px;
  }
}
@media (max-width: 768px) {
  .documents__tabs {
    margin-bottom: 40px;
    padding: 4px;
  }
}
@media (max-width: 480px) {
  .documents__tabs {
    margin-bottom: 32px;
    padding: 3px;
  }
}
.documents__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0 36px;
  border-radius: 60px;
  height: 48px;
  line-height: 1.3;
  color: rgb(109, 128, 147);
}
@media (max-width: 1024px) {
  .documents__tab {
    font-size: 16px;
    padding: 0 32px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .documents__tab {
    font-size: 14px;
    padding: 0 28px;
    height: 36px;
  }
}
@media (max-width: 480px) {
  .documents__tab {
    font-size: 12px;
    padding: 0 26px;
    height: 32px;
  }
}
@media (max-width: 384px) {
  .documents__tab {
    font-size: 10px;
    padding: 0 15px;
  }
}
.documents__tab.is-active {
  background-color: rgb(255, 199, 99);
  color: rgb(29, 61, 99);
}
.documents__contents {
  max-width: 1760px;
  width: 100%;
}
.documents__content {
  display: none;
}
.documents__content.is-active {
  display: block;
}
.documents__swiper {
  max-width: 1760px;
  margin-bottom: 48px;
}
.documents__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.documents__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: 54px;
  border-radius: 50%;
  background: rgba(255, 156, 0, 0.64);
  border: 1px solid rgba(245, 250, 252, 0.64);
}
.documents__slide {
  height: auto;
}
.documents__slide-box {
  display: flex;
  flex-direction: column;
  border: 4px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  background: rgb(210, 228, 242);
  padding: 24px;
  height: 100%;
}
@media (max-width: 1024px) {
  .documents__slide-box {
    padding: 16px;
  }
}
.documents__slide-picture {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .documents__slide-picture {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .documents__slide-picture {
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .documents__slide-picture {
    padding: 8px;
  }
}
.documents__slide-picture img {
  max-width: 450px;
  width: 100%;
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .documents__slide-picture img {
    max-width: 360px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .documents__slide-picture img {
    max-width: 300px;
    height: 210px;
  }
}
@media (max-width: 480px) {
  .documents__slide-picture img {
    max-width: 235px;
    height: 165px;
  }
}
@media (hover: hover) {
  .documents__slide-picture:hover .documents__download {
    opacity: 1;
    visibility: visible;
  }
}
.documents__slide-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.documents__slide-label {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .documents__slide-label {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .documents__slide-label {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .documents__slide-label {
    font-size: 24px;
  }
}
.documents__slide-education {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 32px;
  color: rgb(109, 128, 147);
}
@media (max-width: 1024px) {
  .documents__slide-education {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .documents__slide-education {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .documents__slide-education {
    font-size: 16px;
  }
}
.documents__slide-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 5px 17px;
  background-color: #fff;
  border-radius: 12px;
  margin-top: auto;
}
.documents__slide-link span:first-child {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .documents__slide-link span:first-child {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .documents__slide-link span:first-child {
    font-size: 12px;
  }
}
.documents__slide-link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 31px;
  border-radius: 7px;
  background-color: #FFC763;
}
.documents__download {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
@media (hover: none) {
  .documents__download {
    opacity: 1;
    visibility: visible;
  }
}
.documents__download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 55px;
  border-radius: 82px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.48) 0%, rgba(245, 250, 252, 0.48) 100%);
  border: 4px solid rgba(245, 250, 252, 0.32);
}
@media (max-width: 480px) {
  .documents__download-link {
    width: 48px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .documents__download-link svg {
    width: 20px;
  }
}

.consultation {
  background-position: center;
  background-size: cover;
  background-position: no-repeat;
}
.consultation__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 120px;
}
@media (max-width: 1024px) {
  .consultation__inner {
    padding-block: 100px;
  }
}
@media (max-width: 768px) {
  .consultation__inner {
    padding-block: 80px;
  }
}
.consultation__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  width: 100%;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 32px;
  box-shadow: 0px 0px 32px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.8) 0%, rgba(245, 250, 252, 0.8) 100%);
  padding: 48px 32px;
}
@media (max-width: 1024px) {
  .consultation__form {
    padding: 40px 24px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .consultation__form {
    padding: 32px 20px;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .consultation__form {
    padding: 32px 16px;
    gap: 16px;
  }
}
.consultation__title {
  text-align: center;
}
.consultation__label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (max-width: 1024px) {
  .consultation__label {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .consultation__label {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .consultation__label {
    gap: 8px;
  }
}
.consultation__field {
  font-weight: 400;
  height: 80px;
  padding: 0 25px;
  border-radius: 14px;
  background: var(--light);
  border: none;
}
@media (max-width: 1024px) {
  .consultation__field {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .consultation__field {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .consultation__field {
    font-size: 16px;
    height: 54px;
  }
}
.consultation__field::-moz-placeholder {
  color: #60656C;
}
.consultation__field::placeholder {
  color: #60656C;
}
.consultation__textarea {
  font-weight: 400;
  height: 175px;
  padding: 19px 25px;
  border-radius: 14px;
  background: var(--light);
  border: none;
}
@media (max-width: 1024px) {
  .consultation__textarea {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .consultation__textarea {
    height: 125px;
  }
}
@media (max-width: 480px) {
  .consultation__textarea {
    font-size: 16px;
    padding: 16px;
  }
}
.consultation__textarea::-moz-placeholder {
  color: #60656C;
}
.consultation__textarea::placeholder {
  color: #60656C;
}
.consultation__submit {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  height: 80px;
  border-radius: 2000px;
  background-color: var(--navy-blue);
  color: var(--white);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 32px;
  transition: 0.5s;
}
@media (max-width: 1024px) {
  .consultation__submit {
    font-size: 20px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .consultation__submit {
    font-size: 18px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .consultation__submit {
    font-size: 16px;
    height: 54px;
  }
}
@media (hover: hover) {
  .consultation__submit:hover {
    background-color: var(--light);
    color: var(--navy-blue);
  }
}
.timeline {
  background: #D2E4F2;
  border-radius: 32px;
  padding: 56px 0 64px;
  margin: 40px 40px;
  overflow: hidden;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 440px; height: 360px;
  background: #8FBCE3;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.timeline .container { position: relative; z-index: 1; }

.timeline__head {
  text-align: center;
  margin-bottom: 48px;
}

/* Badge — единый стиль как у reviews/svc */
.timeline__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgb(245, 250, 252);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  height: 52px;
  padding: 0 24px 0 10px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 24px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .timeline__badge {
    gap: 10px;
    height: 44px;
    padding: 0 20px 0 8px;
  }
}
@media (max-width: 768px) {
  .timeline__badge {
    gap: 8px;
    height: 40px;
    padding: 0 18px 0 6px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .timeline__badge {
    gap: 6px;
    height: 36px;
    padding: 0 16px 0 6px;
    margin-bottom: 16px;
  }
}
.timeline__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F5FAFC;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .timeline__badge-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .timeline__badge-icon {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .timeline__badge-icon {
    width: 24px;
    height: 24px;
  }
}
.timeline__badge-icon img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .timeline__badge-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .timeline__badge-icon img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .timeline__badge-icon img {
    width: 15px;
    height: 15px;
  }
}
.timeline__badge-text {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .timeline__badge-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .timeline__badge-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .timeline__badge-text {
    font-size: 14px;
  }
}

/* Swiper */
.timeline__swiper-wrap {
  overflow: hidden;
  margin: 0 -40px;
  padding: 0 40px;
}

.timeline__swiper {
  overflow: visible !important;
  /* вертикальный padding — тени не обрезаются swiper-wrap'ом */
  padding: 28px 0 !important;
  margin: -28px 0 !important;
}

.timeline__swiper .swiper-slide {
  width: 300px;
  flex-shrink: 0;
  /* высота = карточка (~320px) + видимая часть года (~80px) */
  height: 400px;
  position: relative;
  /* без overflow:hidden — тени не режутся */
}

/* Год */
.tl-item__year {
  position: absolute;
  left: 0; right: 0;
  font-family: 'BDO Grotesk', 'Inter', sans-serif;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  color: rgba(29,61,99,0.12);
  pointer-events: none;
  user-select: none;
  text-align: center;
}

/* Карточка */
.tl-item__card {
  position: absolute;
  left: 0; right: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(245,250,252,0.48) 0%, rgba(245,250,252,0.48) 100%);
  border: 4px solid rgba(245,250,252,0.32);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0px 4px 24px 0px rgba(29,61,99,0.12);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Нечётные: карточка вверху, год снизу — чуть выезжает за край */
.timeline__swiper .swiper-slide:nth-child(odd) .tl-item__card { top: 0; }
.timeline__swiper .swiper-slide:nth-child(odd) .tl-item__year  { bottom: -16px; }

/* Чётные: карточка внизу, год сверху — чуть выезжает за край */
.timeline__swiper .swiper-slide:nth-child(even) .tl-item__card { bottom: 0; }
.timeline__swiper .swiper-slide:nth-child(even) .tl-item__year  { top: -16px; }

.tl-item__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #FFC763;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.tl-item__icon img {
  width: 22px; height: 22px;
}

.tl-item__name {
  font-size: 18px; font-weight: 600;
  line-height: 1.2;
}

.tl-item__desc {
  font-size: 14px; font-weight: 400;
  line-height: 1.6; opacity: 0.7;
}

/* Nav */
.timeline__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.timeline__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #FF9C00A3;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.timeline__btn:hover { background: #e09010; transform: scale(1.08); }
.timeline__btn.swiper-button-disabled { opacity: 0.4; cursor: default; transform: none; }

.timeline__btn svg {
  width: 20px; height: 20px; fill: none;
  stroke: #1D3D63; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .timeline { margin: 32px; padding: 48px 0 56px; }
  .timeline__swiper-wrap { margin: 0 -32px; padding: 0 32px; }
  .timeline__swiper .swiper-slide { width: 260px; height: 360px; }
  .tl-item__year { font-size: 96px; }
  .tl-item__card { padding: 24px; gap: 16px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .timeline { margin: 24px; padding: 40px 0 48px; border-radius: 24px; }
  .timeline__swiper-wrap { margin: 0 -24px; padding: 0 24px; }
  .timeline__swiper .swiper-slide { width: 230px; height: 340px; }
  .tl-item__year { font-size: 84px; }
  .tl-item__card { padding: 20px; gap: 14px; border-radius: 24px; }
  .tl-item__name { font-size: 16px; }
  .tl-item__icon { width: 42px; height: 42px; }
}

/* ── 480px — без эффекта выше/ниже, все карточки на одном уровне ── */
@media (max-width: 480px) {
  .timeline { margin: 16px; padding: 28px 0 40px; border-radius: 20px; }
  .timeline__swiper-wrap { margin: 0 -16px; padding: 0 16px; }

  /* Слайд шире, год снизу у всех */
  .timeline__swiper .swiper-slide { width: calc(100vw - 80px); height: auto; }

  /* Сбрасываем чередование — все карточки статичные, без absolute */
  .timeline__swiper .swiper-slide:nth-child(odd) .tl-item__card,
  .timeline__swiper .swiper-slide:nth-child(even) .tl-item__card {
    position: static;
    top: auto; bottom: auto;
  }

  .tl-item__card {
    padding: 20px;
    gap: 12px;
    border-radius: 20px;
  }

  /* Год всегда снизу, не absolute */
  .timeline__swiper .swiper-slide:nth-child(odd) .tl-item__year,
  .timeline__swiper .swiper-slide:nth-child(even) .tl-item__year {
    position: static;
    top: auto; bottom: auto;
    display: block;
    text-align: center;
    margin-top: 4px;
  }

  .tl-item__year { font-size: 72px; }
  .tl-item__name { font-size: 16px; }
  .tl-item__desc { font-size: 13px; }
  .tl-item__icon { width: 40px; height: 40px; }
  .tl-item__icon img { width: 18px; height: 18px; }
  .timeline__title { font-size: clamp(20px, 6vw, 28px); }
  .timeline__badge-text { font-size: 14px; }
  .timeline__nav { margin-top: 16px; }
}

.instagram__slider{position:relative}
@media(max-width: 1024px){.instagram__swiper{margin-bottom:30px}}
@media(max-width: 480px){.instagram__swiper{margin-bottom:15px}}
.instagram__slide{width:195px;height:195px}
@media(max-width: 1024px){.instagram__slide{width:150px;height:150px}}
@media(max-width: 768px){.instagram__slide{width:100px;height:100px}}
.instagram__slide-box{border:5px solid var(--navy-blue);padding:5px;height:100%;width:100%;border-radius:50%;overflow:hidden}
@media(max-width: 1024px){.instagram__slide-box{border:4px solid var(--navy-blue)}}
@media(max-width: 768px){.instagram__slide-box{border:3px solid var(--navy-blue);padding:3px}}
@media(max-width: 480px){.instagram__slide-box{border:2px solid var(--navy-blue);padding:2px}}
.instagram__slide-link{height:100%;width:100%;cursor:pointer;border-radius:50%;overflow:hidden}
.instagram__slide-link img{-o-object-fit:cover;object-fit:cover;width:100%;height:100%}
@media(max-width: 1024px){.instagram__actions{display:flex;align-items:center;justify-content:center;gap:20px}}
.instagram__button-prev,.instagram__button-next{position:absolute;top:50%;transform:translateY(-50%);z-index:88;cursor:pointer}
.instagram__button-prev.swiper-button-disabled,.instagram__button-next.swiper-button-disabled{opacity:.7}@media(max-width: 1024px){.instagram__button-prev,.instagram__button-next{position:relative;top:initial;transform:initial;width:45px;height:45px}}
@media(max-width: 480px){.instagram__button-prev,.instagram__button-next{width:30px;height:30px}}
.instagram__button-prev{left:-22px}
@media(max-width: 1024px){.instagram__button-prev{left:initial}}
.instagram__button-next{right:-22px}
@media(max-width: 1024px){.instagram__button-next{right:initial}}
.fancybox__slide{display:none;max-width:-moz-max-content !important;max-width:max-content !important;margin:0 auto !important}
.fancybox__slide.is-selected{display:flex;justify-content:center;align-items:center;}
.is-arrow{display:none !important}.f-html5video{width:initial !important}