/* 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%);
  width: 100%;
  max-width: max-content;
}
@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;
}

.service-intro {
  padding: 30px 0;
}
@media (max-width: 1024px) {
  .service-intro {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .service-intro {
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .service-intro {
    padding: 0;
  }
}
.service-intro .container {
  --grid-padding: 30px;
}
@media (max-width: 1024px) {
  .service-intro .container {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  .service-intro .container {
    --grid-padding: 15px;
  }
}
.service-intro__inner {
  padding: 80px 150px 80px 50px;
  border: 4px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  background: var(--bg-color-intro);
}
@media (max-width: 1024px) {
  .service-intro__inner {
    padding: 70px 40px;
  }
}
@media (max-width: 768px) {
  .service-intro__inner {
    padding: 50px 40px;
  }
}
@media (max-width: 480px) {
  .service-intro__inner {
    padding: 40px 16px 48px;
    border: none;
    border-radius: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}
.service-intro__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/service-intro/bg-service-intro.png");
}
@media (max-width: 900px) {
  .service-intro__wrapper {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .service-intro__wrapper {
    gap: 32px;
  }
}
.service-intro__content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  max-width: 618px;
  width: 100%;
}
@media (max-width: 900px) {
  .service-intro__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .service-intro__content {
    align-items: flex-start;
  }
}
.service-intro__badge {
  display: flex;
  align-items: center;
  justify-content: 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%);
  height: 52px;
  padding: 0 24px 0 10px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .service-intro__badge {
    gap: 10px;
    height: 44px;
    padding: 0 20px 0 8px;
  }
}
@media (max-width: 768px) {
  .service-intro__badge {
    gap: 8px;
    height: 40px;
    padding: 0 18px 0 6px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .service-intro__badge {
    gap: 6px;
    height: 36px;
    padding: 0 16px 0 6px;
    margin-bottom: 16px;
  }
}
.service-intro__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--light);
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .service-intro__badge-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .service-intro__badge-icon {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .service-intro__badge-icon {
    width: 24px;
    height: 24px;
  }
}
.service-intro__badge-icon img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .service-intro__badge-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .service-intro__badge-icon img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .service-intro__badge-icon img {
    width: 15px;
    height: 15px;
  }
}
.service-intro__badge-text {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .service-intro__badge-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .service-intro__badge-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .service-intro__badge-text {
    font-size: 14px;
  }
}
.service-intro__title {
  margin-bottom: 103px;
  word-break: break-word;
}
@media (max-width: 1024px) {
  .service-intro__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 900px) {
  .service-intro__title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .service-intro__title {
    margin-bottom: 30px;
    text-align: left;
  }
}
@media (max-widt: 480px) {
  .service-intro__title {
    margin-bottom: 16px;
  }
}
.service-intro__text {
  margin-top: auto;
  color: rgba(29, 61, 99, 0.7);
}
@media (max-width: 1024px) {
  .service-intro__text {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .service-intro__text {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .service-intro__text {
    text-align: left;
  }
}
.service-intro__overlay {
  position: relative;
}
.service-intro__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  padding: 80px 100px;
  border: 4px solid rgba(245, 250, 252, 0.6);
  border-radius: 124px 32px 124px 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(187.41, 217.97, 242.65, 0.96) 0%, rgba(239.18, 246.28, 255, 0.96) 100%);
}
@media (max-width: 1024px) {
  .service-intro__picture {
    padding: 60px 70px;
    border-radius: 112px 28px 112px 28px;
  }
}
@media (max-width: 768px) {
  .service-intro__picture {
    padding: 50px 60px;
    border-radius: 96px 24px 96px 24px;
  }
}
@media (max-width: 480px) {
  .service-intro__picture {
    padding: 40px 50px;
    border-radius: 64px 16px 64px 16px;
  }
}
.service-intro__picture img {
  max-width: 400px;
  width: 100%;
  height: 250px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .service-intro__picture img {
    max-width: 300px;
  }
}
@media (max-width: 768px) {
  .service-intro__picture img {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .service-intro__picture img {
    max-width: 207px;
  }
}
.service-intro__image {
  border: 4px solid #979b9f;
  border-radius: 124px 32px 124px 32px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  height: 480px;
}
@media (max-width: 1024px) {
  .service-intro__image {
    height: 450px;
    border-radius: 112px 28px 112px 28px;
  }
}
@media (max-width: 900px) {
  .service-intro__image {
    height: 400px;
    max-width: 500px;
    border-radius: 96px 24px 96px 24px;
  }
}
@media (max-width: 768px) {
  .service-intro__image {
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .service-intro__image {
    max-width: 450px;
    height: 350px;
  }
}
@media (max-width: 480px) {
  .service-intro__image {
    border-radius: 64px 16px 64px 16px;
    max-width: 310px;
    height: 250px;
  }
}
.service-intro__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-intro__info {
  display: flex;
  align-items: center;
  gap: 16px;
  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: 8px 17px;
}
.service-intro__info.content-info-1 {
  max-width: 265px;
  width: 100%;
  position: absolute;
  top: 10%;
  left: -20%;
}
@media (max-width: 768px) {
  .service-intro__info.content-info-1 {
    position: relative;
    top: initial;
    left: initial;
    max-width: 100%;
    margin-bottom: 12px;
  }
}
.service-intro__info.content-info-2 {
  max-width: 235px;
  width: 100%;
  position: absolute;
  bottom: 10%;
  right: -5%;
}
@media (max-width: 768px) {
  .service-intro__info.content-info-2 {
    position: relative;
    top: initial;
    right: initial;
    max-width: 100%;
  }
}
.service-intro__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #1D3D63;
  border-radius: 50%;
}
.service-intro__info-value {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}
.service-intro__info-text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(29, 61, 99, 0.7);
  text-transform: uppercase;
}

.services__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 10px;
  border-radius: 32px;
  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) {
  .services__badge {
    padding: 8px 20px 8px 8px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .services__badge {
    padding: 6px 16px 6px 6px;
    gap: 6px;
  }
}
.services__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) {
  .services__badge span:first-child {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 768px) {
  .services__badge span:first-child {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 480px) {
  .services__badge span:first-child {
    width: 24px;
    height: 24px;
  }
}
.services__badge span:first-child img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .services__badge span:first-child img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .services__badge span:first-child img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .services__badge span:first-child img {
    width: 15px;
    height: 15px;
  }
}
.services__badge span:last-child {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .services__badge span:last-child {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .services__badge span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .services__badge span:last-child {
    font-size: 14px;
  }
}
.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .services__list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .services__item {
    max-width: 800px;
  }
}
.services__box {
  position: relative;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  background: rgba(210, 228, 242, 0.6);
  overflow: hidden;
  padding: 28px;
}
@media (max-width: 1024px) {
  .services__box {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .services__box {
    padding: 22px;
  }
}
@media (max-width: 480px) {
  .services__box {
    padding: 20px;
  }
}
.services__picture {
  position: relative;
  max-width: 810px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .services__picture {
    border-radius: 24px;
  }
}
@media (max-width: 768px) {
  .services__picture {
    border-radius: 22px;
  }
}
@media (max-width: 480px) {
  .services__picture {
    border-radius: 20px;
    margin-bottom: 32px;
  }
}
.services__picture img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 480px;
  width: 100%;
}
@media (max-width: 1024px) {
  .services__picture img {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .services__picture img {
    height: 360px;
  }
}
@media (max-width: 480px) {
  .services__picture img {
    height: 303px;
  }
}
.services__time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  position: absolute;
  top: 20px;
  left: 30px;
  border-radius: 100px;
  background: rgb(245, 250, 252);
  height: 45px;
}
@media (max-width: 1024px) {
  .services__time {
    height: 40px;
    padding: 0 12px;
    top: 18px;
    left: 24px;
  }
}
@media (max-width: 768px) {
  .services__time {
    height: 34px;
    top: 18px;
    left: 24px;
  }
}
@media (max-width: 480px) {
  .services__time {
    height: 26px;
    top: 16px;
    left: 16px;
  }
}
.services__time span:nth-child(1) {
  display: flex;
  align-items: center;
  height: 24px;
  width: 24px;
}
@media (max-width: 480px) {
  .services__time span:nth-child(1) {
    width: 12px;
    height: 12px;
  }
}
.services__time span:nth-child(2) {
  color: rgb(78, 108, 141);
}
@media (max-width: 1024px) {
  .services__time span:nth-child(2) {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services__time span:nth-child(2) {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .services__time span:nth-child(2) {
    font-size: 12px;
  }
}
.services__time span:nth-child(3) {
  line-height: 1.3;
  font-weight: 600;
  color: rgb(78, 108, 141);
}
@media (max-width: 1024px) {
  .services__time span:nth-child(3) {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services__time span:nth-child(3) {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .services__time span:nth-child(3) {
    font-size: 12px;
  }
}
.services__title {
  font-size: 42px;
  line-height: 500;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .services__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .services__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .services__title {
    font-size: 24px;
  }
}
.services__text {
  font-size: 24px;
  font-weight: 500;
  color: rgba(29, 61, 99, 0.7);
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .services__text {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .services__text {
    font-size: 18px;
    margin-bottom: 36px;
  }
}
@media (max-width: 480px) {
  .services__text {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.services__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 77px;
}
@media (max-width: 1024px) {
  .services__badges {
    gap: 12px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .services__badges {
    gap: 10px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .services__badges {
    gap: 8px;
    margin-bottom: 32px;
  }
}
.services__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 1024px) {
  .services__wrapper {
    flex-direction: column;
    gap: 15px;
  }
}
.services__info-list {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media (max-width: 1024px) {
  .services__info-list {
    margin-right: auto;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .services__info-list {
    flex-direction: column;
    margin-right: initial;
    gap: 48px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .services__info-list {
    gap: 33px;
  }
}
.services__info-item {
  position: relative;
}
@media (max-width: 768px) {
  .services__info-item {
    width: 100%;
  }
}
.services__info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20%;
  height: 64px;
  width: 1px;
  background-color: #ACBDCB;
}
@media (max-width: 1024px) {
  .services__info-item:not(:last-child)::after {
    right: -15%;
  }
}
@media (max-width: 768px) {
  .services__info-item:not(:last-child)::after {
    width: 100%;
    height: 1px;
    right: initial;
    top: initial;
    bottom: -35%;
  }
}
.services__info-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 16px;
}
@media (max-width: 768px) {
  .services__info-box {
    padding: 8px 0;
  }
}
@media (max-width: 768px) {
  .services__info-box {
    flex-direction: row;
    align-items: center;
  }
}
.services__info-icon {
  width: 24px;
  height: 24px;
}
.services__info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.services__info-label {
  color: #4E6C8D;
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .services__info-label {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services__info-label {
    font-size: 14px;
  }
}
.services__info-value {
  font-weight: 600;
  line-height: 1.3;
  color: #4E6C8D;
}
@media (max-width: 1024px) {
  .services__info-value {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services__info-value {
    font-size: 14px;
  }
}
.services__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(245, 250, 252, 0.64);
  background: rgba(255, 156, 0, 0.64);
}
@media (max-width: 1024px) {
  .services__link {
    margin-left: auto;
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 768px) {
  .services__link {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .services__link {
    width: 42px;
    height: 42px;
  }
}
.services__link svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 1024px) {
  .services__link svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .services__link svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .services__link svg {
    width: 16px;
    height: 16px;
  }
}
.services__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.price {
  background-color: #D2E4F2;
  background-image: url("../images/price/bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.price__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .price__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
.price__content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .price__content {
    align-items: center;
  }
}
.price__badge {
  display: flex;
  align-items: center;
  justify-content: 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%);
  height: 52px;
  padding: 0 24px 0 10px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .price__badge {
    gap: 10px;
    height: 44px;
    padding: 0 20px 0 8px;
  }
}
@media (max-width: 768px) {
  .price__badge {
    gap: 8px;
    height: 40px;
    padding: 0 18px 0 6px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .price__badge {
    gap: 6px;
    height: 36px;
    padding: 0 16px 0 6px;
    margin-bottom: 16px;
  }
}
.price__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F5FAFC;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .price__badge-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .price__badge-icon {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .price__badge-icon {
    width: 24px;
    height: 24px;
  }
}
.price__badge-icon img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .price__badge-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .price__badge-icon img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .price__badge-icon img {
    width: 15px;
    height: 15px;
  }
}
.price__badge-text {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .price__badge-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .price__badge-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .price__badge-text {
    font-size: 14px;
  }
}
.price__title {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .price__title {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .price__title {
    text-align: center;
  }
}
.price__note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  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: 16px 24px;
}
.price__note-text {
  font-size: 20px;
  font-weight: 500;
  color: rgba(29, 61, 99, 0.7);
}
@media (max-width: 1024px) {
  .price__note-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .price__note-text {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .price__note.price-note-desktop {
    display: none;
  }
}
.price__note.price-note-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .price__note.price-note-mobile {
    display: flex;
  }
}
.price__list {
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 32px;
  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) {
  .price__list {
    padding: 24px;
  }
}
.price__item:not(:last-child) {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(29, 61, 99, 0.12);
}
.price__box {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 768px) {
  .price__box {
    flex-direction: column;
  }
}
.price__number {
  font-size: 32px;
  line-height: 1.3;
  color: rgba(29, 61, 99, 0.6);
}
.price__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.price__label {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}
.price__text {
  font-size: 16px;
  font-weight: 500;
  color: rgba(29, 61, 99, 0.7);
}
.price__value {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.price__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.price__value-text {
  font-size: 20px;
  font-weight: 700;
}

.steps__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 110px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .steps__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 160px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .steps__list {
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .steps__list {
    margin-bottom: 32px;
  }
}
.steps__item:not(:last-child) {
  position: relative;
}
.steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -29%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../icons/arrow-decor.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 13px;
  width: 110px;
}
@media (max-width: 1024px) {
  .steps__item:not(:last-child)::after {
    background-image: url("../icons/arrow-decor-mobile.svg");
    transform: translateY(0);
    height: 110px;
    width: 13px;
    right: 49%;
    top: initial;
    bottom: -135px;
  }
}
.steps__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  border: 1.13px solid rgba(245, 250, 252, 0.6);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(187.41, 217.97, 242.65, 0.96) 0%, rgba(239.18, 246.28, 255, 0.96) 100%);
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .steps__icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 768px) {
  .steps__icon {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .steps__icon {
    width: 80px;
    height: 80px;
  }
}
.steps__icon img {
  height: 82px;
}
@media (max-width: 1024px) {
  .steps__icon img {
    height: 64px;
  }
}
@media (max-width: 768px) {
  .steps__icon img {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .steps__icon img {
    height: 52px;
  }
}
.steps__label {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
@media (max-width: 1024px) {
  .steps__label {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .steps__label {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .steps__label {
    font-size: 20px;
  }
}
.steps__text {
  font-size: 20px;
  font-weight: 500;
  color: rgba(29, 61, 99, 0.7);
  text-align: center;
}
@media (max-width: 1024px) {
  .steps__text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .steps__text {
    font-size: 16px;
  }
}
.steps__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) {
  .steps__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .steps__link {
    height: 64px;
  }
}
@media (max-width: 480px) {
  .steps__link {
    height: 52px;
  }
}
.steps__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .steps__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .steps__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .steps__link span:first-child {
    font-size: 16px;
  }
}
@media (max-width: 384px) {
  .steps__link span:first-child {
    font-size: 14px;
  }
}
.steps__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) {
  .steps__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .steps__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .steps__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.steps__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .steps__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .steps__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .steps__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.faq {
  background-color: #D2E4F2;
  background-image: url("../images/price/bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.faq__inner {
  display: flex;
  gap: 64px;
}
@media (max-width: 1024px) {
  .faq__inner {
    flex-direction: column;
    gap: 56px;
  }
}
@media (max-width: 768px) {
  .faq__inner {
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .faq__inner {
    gap: 32px;
  }
}
.faq__content {
  max-width: 710px;
  width: 100%;
}
@media (max-width: 768px) {
  .faq__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.faq__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;
}
@media (max-width: 1024px) {
  .faq__badge {
    gap: 10px;
    height: 44px;
    padding: 0 20px 0 8px;
  }
}
@media (max-width: 768px) {
  .faq__badge {
    gap: 8px;
    height: 40px;
    padding: 0 18px 0 6px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .faq__badge {
    gap: 6px;
    height: 36px;
    padding: 0 16px 0 6px;
    margin-bottom: 16px;
  }
}
.faq__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F5FAFC;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .faq__badge-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .faq__badge-icon {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .faq__badge-icon {
    width: 24px;
    height: 24px;
  }
}
.faq__badge-icon img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .faq__badge-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .faq__badge-icon img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .faq__badge-icon img {
    width: 15px;
    height: 15px;
  }
}
.faq__badge-text {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .faq__badge-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .faq__badge-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .faq__badge-text {
    font-size: 14px;
  }
}
.faq__title {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .faq__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .faq__title {
    margin-bottom: 18px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .faq__title {
    margin-bottom: 16px;
  }
}
.faq__text {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #60656C;
}
@media (max-width: 1024px) {
  .faq__text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .faq__text {
    font-size: 18px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .faq__text {
    font-size: 16px;
  }
}
.faq__accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.faq__accordion {
  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) {
  .faq__accordion {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion {
    padding: 20px;
    border-radius: 22px;
  }
}
@media (max-width: 480px) {
  .faq__accordion {
    padding: 16px;
    border-radius: 20px;
  }
}
.faq__accordion.is-active .faq__accordion-icon span:last-child {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}
.faq__accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__accordion-head {
    gap: 50px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-head {
    gap: 40px;
  }
}
.faq__accordion-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq__accordion-number {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(29, 61, 99, 0.6);
}
@media (max-width: 1024px) {
  .faq__accordion-number {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-number {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-number {
    font-size: 20px;
  }
}
.faq__accordion-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .faq__accordion-text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-text {
    font-size: 20px;
  }
}
.faq__accordion-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E6B24D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .faq__accordion-icon {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-icon {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-icon {
    width: 32px;
    height: 32px;
  }
}
.faq__accordion-icon span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #1D3D63;
  border-radius: 10px;
  transition: 0.3s ease;
}
.faq__accordion-icon span:last-child {
  transform: rotate(90deg);
}
.faq__accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.faq__accordion-content {
  font-size: 22px;
  font-weight: 500;
  padding-top: 32px;
  color: #60656C;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .faq__accordion-content {
    font-size: 20px;
    padding-top: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-content {
    font-size: 18px;
    padding-top: 20px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-content {
    font-size: 16px;
    padding-top: 16px;
  }
}

.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);
  }
}