/* 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-hero .container {
  --grid-padding: 30px;
}
@media (max-width: 1024px) {
  .service-hero .container {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  .service-hero .container {
    --grid-padding: 15px;
  }
}
.service-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border: 4px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  background: var(--bg-color-intro);
  padding: 80px 20px 120px;
}
@media (max-width: 1024px) {
  .service-hero__inner {
    padding: 60px 20px 96px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .service-hero__inner {
    padding: 48px 20px 80px;
  }
}
@media (max-width: 480px) {
  .service-hero__inner {
    padding: 40px 20px 48px;
    border: none;
    border-radius: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}
.service-hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 43px;
  border-radius: 100px;
  padding: 0 16px;
  background-color: var(--light);
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .service-hero__badge {
    margin-bottom: 20px;
    height: 38px;
  }
}
@media (max-width: 768px) {
  .service-hero__badge {
    margin-bottom: 16px;
    height: 34px;
  }
}
@media (max-width: 480px) {
  .service-hero__badge {
    height: 26px;
  }
}
.service-hero__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
@media (max-width: 1024px) {
  .service-hero__badge-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .service-hero__badge-icon {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .service-hero__badge-icon {
    width: 12px;
    height: 12px;
  }
}
.service-hero__badge-text {
  color: #4E6C8D;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .service-hero__badge-text {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .service-hero__badge-text {
    font-size: 12px;
  }
}
.service-hero__badge-time {
  line-height: 1.3;
  font-weight: 600;
  color: #4E6C8D;
}
@media (max-width: 1024px) {
  .service-hero__badge-time {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .service-hero__badge-time {
    font-size: 12px;
  }
}
.service-hero__title {
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .service-hero__title {
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .service-hero__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .service-hero__title {
    margin-bottom: 16px;
  }
}
.service-hero__text {
  display: none;
  font-size: 16px;
  margin-bottom: 32px;
  color: rgba(29, 61, 99, 0.7);
}
@media (max-width: 480px) {
  .service-hero__text {
    display: block;
  }
}
.service-hero__picture {
  max-width: 1650px;
  height: 750px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .service-hero__picture {
    margin-bottom: 48px;
    height: 700px;
  }
}
@media (max-width: 768px) {
  .service-hero__picture {
    margin-bottom: 32px;
    height: 600px;
  }
}
@media (max-width: 480px) {
  .service-hero__picture {
    height: 305px;
  }
}
.service-hero__picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.service-hero__list {
  position: absolute;
  bottom: -2%;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  z-index: 10;
}
@media (max-width: 1024px) {
  .service-hero__list {
    position: relative;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .service-hero__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.service-hero__box {
  border: 4px solid rgba(245, 250, 252, 0.64);
  border-radius: 32px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(48px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.48) 0%, rgba(245, 250, 252, 0.48) 100%);
  padding: 24px;
}
@media (max-width: 768px) {
  .service-hero__box {
    border-radius: 24px;
  }
}
.service-hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  margin-bottom: 32px;
  background-color: #FFC763;
}
.service-hero__icon img {
  width: 24px;
  height: 24px;
}
.service-hero__label {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .service-hero__label {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .service-hero__label {
    font-size: 24px;
  }
}

.information__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 332px 0 160px;
}
@media (max-width: 1024px) {
  .information__inner {
    flex-direction: column;
    padding: 180px 0 150px;
  }
}
@media (max-width: 768px) {
  .information__inner {
    padding: 150px 0 100px;
  }
}
@media (max-width: 480px) {
  .information__inner {
    padding: 80px 0;
  }
}
.information__overlay {
  position: sticky;
  top: calc(var(--header-height) + 15px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  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;
  max-width: 550px;
}
@media (max-width: 1024px) {
  .information__overlay {
    order: 2;
    max-width: 100%;
    position: relative;
    top: 0;
  }
}
.information__photo {
  border-radius: 50%;
  margin-bottom: 48px;
  width: 96px;
  height: 96px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .information__photo {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .information__photo {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .information__photo {
    width: 64px;
    height: 64px;
    margin-inline: auto;
    margin-bottom: 24px;
  }
}
.information__label {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .information__label {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .information__label {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .information__label {
    font-size: 24px;
  }
}
.information__text {
  font-size: 22px;
  font-weight: 500;
  color: rgba(29, 61, 99, 0.7);
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .information__text {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .information__text {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .information__text {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.information__button {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  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);
  padding: 7px 7px 7px 32px;
}
@media (max-width: 1024px) {
  .information__button {
    height: 64px;
  }
}
@media (max-width: 768px) {
  .information__button {
    height: 56px;
    padding: 5px 5px 5px 24px;
  }
}
@media (max-width: 480px) {
  .information__button {
    height: 52px;
    max-width: 100%;
    width: 100%;
    justify-content: space-between;
  }
}
.information__button span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .information__button span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .information__button span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .information__button span:first-child {
    font-size: 16px;
  }
}
.information__button span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--light);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .information__button span:last-child {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 768px) {
  .information__button span:last-child {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .information__button span:last-child {
    width: 42px;
    height: 42px;
  }
}
.information__button span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .information__button span:last-child svg {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 768px) {
  .information__button span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .information__button span:last-child svg {
    width: 18px;
    height: 18px;
  }
}
.information__content {
  width: 100%;
}
@media (max-width: 1024px) {
  .information__content {
    order: 1;
  }
}
.information__boxes {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .information__boxes {
    gap: 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 768px) {
  .information__boxes {
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .information__boxes {
    gap: 32px;
    margin-bottom: 32px;
  }
}
.information__title {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .information__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .information__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .information__title {
    font-size: 24px;
  }
}
.information__body {
  font-size: 24px !important;
  font-weight: 500;
  color: rgba(29, 61, 99, 0.7) !important;
}
.information__body li {
  list-style: disc;
  list-style-position: inside;
}
@media (max-width: 1024px) {
  .information__body {
    font-size: 22px !important;
  }
}
@media (max-width: 768px) {
  .information__body {
    font-size: 20px !important;
  }
}
@media (max-width: 480px) {
  .information__body {
    font-size: 18px !important;
  }
}
.information__wrapper {
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  background: rgba(210, 228, 242, 0.6);
  padding: 28px;
}
@media (max-width: 1024px) {
  .information__wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.information__wrapper .information__label {
  text-transform: capitalize;
}
.information__item:not(:last-child) {
  border-bottom: 1px solid rgba(29, 61, 99, 0.12);
}
.information__item-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
}
@media (max-width: 1024px) {
  .information__item-box {
    padding: 24px 0;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .information__item-box {
    padding: 20px 0;
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .information__item-box {
    padding: 16px 0;
    gap: 16px;
  }
}
.information__wrap {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 1024px) {
  .information__wrap {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .information__wrap {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .information__wrap {
    gap: 16px;
    flex-direction: column;
  }
}
.information__number {
  font-size: 32px;
  color: rgba(29, 61, 99, 0.6);
}
@media (max-width: 1024px) {
  .information__number {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .information__number {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .information__number {
    font-size: 24px;
  }
}
.information__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.information__info-label {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .information__info-label {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .information__info-label {
    font-size: 20px;
  }
}
.information__info-text {
  font-size: 16px;
  color: rgba(29, 61, 99, 0.7);
}
.information__info-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.information__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.information__info-icon svg {
  width: 24px;
  height: 24px;
}
.information__info-value {
  font-size: 20px;
  font-weight: 600;
}

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