@charset "UTF-8";
.t-heading, .faq__title, .way-item__title, .direction-info__title, .benefits-item__title, .article-detail__content h2, .article-detail__content h3, .footer__title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .t-heading, .faq__title, .way-item__title, .direction-info__title, .benefits-item__title, .article-detail__content h2, .article-detail__content h3, .footer__title {
    font-size: 20px;
  }
}

.t-body, .way-item__text, .speciality-detail__content p, .speciality-detail__content h3, .direction-info__text, .article-detail__content p, .article-detail__content ul, .footer__footnote, .footer__phone, .footer__address {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .t-body, .way-item__text, .speciality-detail__content p, .speciality-detail__content h3, .direction-info__text, .article-detail__content p, .article-detail__content ul, .footer__footnote, .footer__phone, .footer__address {
    font-size: 16px;
  }
}

@font-face {
  font-family: "Gilroy";
  src: url('../assets/Gilroy-Regular-Cj5lkFel.eot?#iefix') format('embedded-opentype'), url('../assets/Gilroy-Regular-eCFN1h-s.ttf') format('truetype'), url('../Gilroy-Regular--Z-4elQA.woff') format('woff');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url('../assets/Gilroy-Medium-B4Jgmzal.eot?#iefix') format('embedded-opentype'), url('../assets/Gilroy-Medium-D_ha_KMG.ttf') format('truetype'), url('../Gilroy-Medium-DzJeihj1.woff') format('woff');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url('../assets/Gilroy-SemiBold-CsoWdNPC.eot?#iefix') format('embedded-opentype'), url('../assets/Gilroy-SemiBold-BpRPs99R.ttf') format('truetype'), url('../Gilroy-SemiBold-Cf0_mJZe.woff') format('woff');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url('../assets/Gilroy-Bold-ktNFzgfp.eot?#iefix') format('embedded-opentype'), url('../assets/Gilroy-Bold-sm1PNH13.ttf') format('truetype'), url('../Gilroy-Bold-C8N-3pXi.woff') format('woff');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
:root {
  --glass:
  	inset 0px 0px 0px 1px rgba(255, 255, 255, 0.3),
  	inset 0px 0px 20px 0px rgba(255, 255, 255, 0.3);
}

*:not(:is(path, use)) {
  font-family: "Gilroy";
  color: #ffffff;
}

.global-wrapper {
  overflow-x: clip;
  max-width: 100vw;
}

body {
  background: #0b0b0b;
}

.container {
  max-width: 1448px;
  margin: 0 auto;
  width: 100%;
  padding: 0px 24px;
}
.container--row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0px 12px;
  }
}

.section__header {
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
}
.section__header + * {
  margin-top: 40px;
}
.section__title {
  max-width: 512px;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
}
.section__title + * {
  margin-top: 32px;
}
.section__title + .section__subtitle {
  margin-top: 16px;
}
.section__subtitle {
  max-width: 512px;
  font-size: 20px;
  font-weight: 500;
}
.section__subtitle + * {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .section__header + * {
    margin-top: 40px;
  }
  .section__title {
    font-size: 24px;
  }
}

/* Бургер */
.header__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.header__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
}

/* Показываем бургер на мобилке */
@media (max-width: 992px) {
    .header__menu,
    .header__socials,
    .header__phone {
        display: none;
    }
    .header__burger {
        display: flex;
    }
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.mobile-menu__content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 280px;
    background: url(../assets/images/hero-bg.png);
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active .mobile-menu__content {
    right: 0;
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: 30px;
    align-self: flex-end;
    cursor: pointer;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu__list li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.mobile-menu__socials {
    display: flex;
    gap: 10px;
}

.mobile-menu__phone {
    margin-top: auto;
    text-decoration: none;
    font-weight: bold;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.header {
  box-shadow: var(--glass);
  backdrop-filter: blur(16px);
  padding: 8px 0px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.header__container {
  gap: 12px 24px;
  align-items: center;
  flex-wrap: wrap;
}
.header__phone {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}
@media screen and (pointer: fine) {
  .header__phone:hover {
    border-bottom: 2px solid #fff;
  }
}
.header__socials {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .header__container {
    justify-content: space-between;
    gap: 12px;
  }
  .header__socials {
    margin-left: 0;
  }
  .header__button {
    margin-left: auto;
  }
}
.corner-link {
  position: fixed;
  max-width: 100%;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  border-radius: 128px;
  background: #fff;
  box-shadow: 0px 0px 0px 5px hsl(217, 100%, 92%);
  max-height: 64px;
  animation: corner-link-pulse 1s infinite alternate;
  text-decoration: none;
  color: inherit;
}
.corner-link__text-wrapper {
  display: grid;
  grid-template-columns: 0fr;
  overflow: hidden;
  max-height: 100%;
  transition: grid-template-columns 1s ease;
}
.corner-link__inner {
  max-height: 64px;
  width: 100%;
  overflow: hidden;
}
.corner-link__text {
  white-space: nowrap;
  display: block;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
  padding: 0px 10px 0px 30px;
  color: #000;
}
.corner-link__icon {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: block;
}
.corner-link_open {
  animation: none;
}
.corner-link_open .corner-link__text {
  white-space: normal;
}
.corner-link_open .corner-link__text-wrapper {
  grid-template-columns: 1fr;
}

@keyframes corner-link-pulse {
  0% {
    box-shadow: 0px 0px 0px 5px hsl(217, 100%, 92%);
  }
  100% {
    box-shadow: 0px 0px 0px 24px hsl(217, 100%, 92%);
  }
}
@media screen and (max-width: 768px) {
  .corner-link {
    max-height: 48px;
    max-width: calc(100% - 32px);
    bottom: 16px;
    right: 16px;
  }
  .corner-link__inner {
    max-height: 48px;
  }
  .corner-link__text {
    font-size: 16px;
  }
  .corner-link__icon {
    width: 48px;
    height: 48px;
  }
  @keyframes corner-link-pulse {
    0% {
      box-shadow: 0px 0px 0px 5px hsl(217, 100%, 92%);
    }
    100% {
      box-shadow: 0px 0px 0px 15px hsl(217, 100%, 92%);
    }
  }
}
.footer {
  padding: 32px 0px;
  position: relative;
  max-width: 100vw;
}
.footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 105%;
  height: 105%;
  background: url("../assets/images/way-bg.png") center center/cover no-repeat;
  filter: blur(20px);
  z-index: 0;
}
.footer > * {
  position: relative;
  z-index: 1;
}
.footer__footnote {
  font-weight: 500;
  text-align: center;
  margin-top: 32px;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.footer__card {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 32px;
  box-shadow: var(--glass);
}
.footer__phone {
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}
@media screen and (pointer: fine) {
  .footer__phone:hover {
    border-bottom: 2px solid #fff;
  }
}
.footer__address {
  font-weight: 500;
}
.footer__button {
  margin-top: auto;
  max-width: 330px;
  width: 100%;
}
.footer__title {
  font-weight: 600;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .footer__card {
    gap: 16px;
    padding: 24px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: 500;
  text-transform: lowercase;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
}
.breadcrumbs + * {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    font-size: 13px;
  }
}

.article-detail {
  position: relative;
  overflow: hidden;
  padding: 116px 0px 96px;
}
.article-detail::before {
  content: "";
  position: absolute;
  inset: -400px -80px auto;
  height: 760px;
  background: url("../assets/images/direction-bg.png") center top/cover no-repeat;
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
}
.article-detail::after {
  content: "";
  position: absolute;
  inset: 760px 0 -300px;
  background: url("../assets/images/smoke.png") center center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.article-detail > * {
  position: relative;
  z-index: 1;
}
.article-detail__container {
  display: flex;
  flex-direction: column;
}
.article-detail__title {
  max-width: 855px;
  font-size: 37px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}
.article-detail__cover {
  margin-top: 20px;
  width: min(100%, 855px);
  aspect-ratio: 855/501;
  background: #0b0b0b;
  box-shadow: var(--glass);
  overflow: hidden;
}
.article-detail__cover-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  filter: brightness(0.78);
}
.article-detail__content {
  margin-top: 32px;
  padding: 32px;
  box-shadow: var(--glass);
  background: rgba(11, 11, 11, 0.28);
  backdrop-filter: blur(4px);
}
.article-detail__content p {
  line-height: 1.5;
  font-weight: 400;
}
.article-detail__content > * + * {
  margin-top: 24px;
}
.article-detail__content ul {
  line-height: 1.5;
  font-weight: 400;
  list-style: disc;
  list-style-position: inside;
}
.article-detail__content h2 {
  font-weight: 600;
  line-height: 1.5;
}
.article-detail__content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .article-detail {
    padding-bottom: 72px;
  }
  .article-detail::before {
    inset: -80px 0 auto;
    height: 620px;
  }
  .article-detail::after {
    inset: 620px 0 -300px;
  }
  .article-detail__title {
    font-size: 30px;
  }
  .article-detail__content {
    padding: 24px;
  }
}
@media screen and (max-width: 930px) {
  .article-detail {
    padding-top: 186px;
  }
}
@media screen and (max-width: 768px) {
  .article-detail {
    padding-bottom: 48px;
    padding-top: 86px;
  }
  .article-detail__title {
    margin-top: 12px;
    font-size: 24px;
    max-width: 100%;
  }
  .article-detail__cover {
    margin-top: 16px;
    width: 100%;
    aspect-ratio: 16/10;
  }
  .article-detail__content {
    margin-top: 20px;
    padding: 16px;
  }
  .article-detail__content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 691px) {
  .article-detail {
    padding-top: 146px;
  }
}
@media screen and (max-width: 392px) {
  .article-detail {
    padding-top: 196px;
  }
}

.awards {
  padding: 100px 0px;
  margin-block: -20px;
  position: relative;
}
.awards::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 105%;
  height: 105%;
  background: url("../assets/images/awards-bg.png") center center/cover no-repeat;
  filter: blur(20px);
  z-index: 0;
}
.awards > * {
  position: relative;
  z-index: 1;
}

.awards-category {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.awards-category + .awards-category {
  margin-top: 32px;
}
.awards-category__title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.awards-category__row {
  container: grid/inline-size;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}

.award-card {
  position: relative;
  box-shadow: var(--glass);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.award-card__title {
  font-size: 24px;
  font-weight: 600;
}
.award-card__text {
  font-size: 20px;
  line-height: 30px;
}
.award-card__icon {
  width: 32px;
  height: 32px;
  top: 16px;
  right: 16px;
  position: absolute;
}
.award-card--large {
  grid-column: span 2;
}
@container grid (max-width: 469px) {
  .award-card--large {
    grid-column: span 1;
  }
}

.benefits {
  background: url("../assets/images/sparks.png") center center/cover no-repeat, url("../assets/images/smoke.png") center center/cover no-repeat;
  padding: 60px 0px 40px;
}
.benefits__container {
  position: relative;
  padding-bottom: 24px;
}
.benefits__decor {
  position: absolute;
  bottom: -24px;
  right: 0;
  max-width: 48%;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  margin-right: 340px;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .benefits__list {
    margin-right: 0;
  }
  .benefits__container {
    display: flex;
    flex-direction: column;
  }
  .benefits__decor {
    position: static;
    max-width: max(300px, 50%);
    margin: 24px auto -24px;
  }
}

.menu--header {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu--header li a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
}

.menu--header li a:hover {
    color: var(--color-accent);
}

.benefits-item {
  padding: 32px 260px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.2) 100%), rgba(255, 255, 255, 0.1);
  box-shadow: var(--glass);
  backdrop-filter: blur(10px);
}
.benefits-item:nth-child(2) {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(11, 6, 142, 0.2) 100%), rgba(255, 255, 255, 0.1);
}
.benefits-item:nth-child(3) {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 15, 16, 0.1) 100%);
}
@media screen and (max-width: 1024px) {
  .benefits-item {
    padding: 24px;
  }
}

.directions {
  padding: 100px 0px;
  margin-block: -20px;
  position: relative;
}
.directions::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 105%;
  height: 105%;
  background: url("../assets/images/direction-bg.png") center center/cover no-repeat;
  filter: blur(20px);
  z-index: 0;
}
.directions > * {
  position: relative;
  z-index: 1;
}
.directions__grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media screen and (max-width: 768px) {
  .directions {
    padding: 20px 0px;
  }
  .directions::before {
    height: 102%;
  }
}

.direction-item {
  position: relative;
  overflow: hidden;
  display: flex;
  max-width: 100%;
}
.direction-item__image {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}
.direction-item__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}
.direction-item__info {
  position: absolute;
  max-width: 100%;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
  width: 100%;
  backdrop-filter: blur(5px);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.direction-item__button {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  transform: translateY(100%);
  transition: 0.3s ease;
  opacity: 0;
}
@media screen and (pointer: fine) {
  .direction-item:hover .direction-item__info {
    transform: translateY(-56px);
  }
  .direction-item:hover .direction-item__button {
    transform: translateY(0);
    opacity: 1;
  }
}

.direction-column {
  grid-column: span 3;
  display: flex;
  gap: 2px;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .direction-column {
    grid-column: 1/-1;
  }
}

.direction-info {
  box-shadow: var(--glass);
  flex: 1 1 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px;
  align-items: center;
  justify-content: center;
}
.direction-info__button {
  max-width: 330px;
  flex: 1 1 min(200px, 100%);
}
.direction-info__column {
  flex: 1 1 min(300px, 100%);
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.direction-info__text {
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .direction-info {
    padding: 24px;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 24px;
  }
  .direction-info__button {
    max-width: 330px;
    width: 100%;
    flex: 1 1 0;
  }
}

.faqs {
  padding: 120px 0px;
  background: url("../assets/images/smoke.png") center center/cover no-repeat;
}
.faqs__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .faqs {
    padding: 40px 0px 100px;
  }
}

.guarantees {
  padding: 120px 0px;
  background: url("../assets/images/smoke.png") center center/cover no-repeat;
}
.guarantees__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero {
  min-height: 950px;
  background: url("../assets/images/hero-bg.png");
  background-size: cover;
  padding: 180px 0px 0px;
  display: flex;
  flex-direction: column;
  background-position: center center;
}
.hero__title {
  font-size: 38px;
  font-weight: 600;
}
.hero__column {
  display: flex;
  flex-direction: column;
  max-width: 850px;
  gap: 24px;
  margin-left: auto;
}
.hero__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.hero__container {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}
.hero__decor {
  position: absolute;
  bottom: 0;
  max-width: 60%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 0;
    padding-top: 86px;
  }
  .hero__decor {
    order: 1;
    position: static;
    margin: 0 auto;
    max-width: max(50%, 300px);
  }
  .hero__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 691px) {
  .hero {
    padding-top: 146px;
  }
}
@media screen and (max-width: 392px) {
  .hero {
    padding-top: 196px;
  }
}

.hero-card {
  background: url("../assets/images/glass-bg.png");
  background-size: cover;
  background-position: center center;
  padding: 18px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--glass);
}
.hero-card__value {
  font-size: 28px;
  text-align: center;
  font-weight: 700;
}
.hero-card__value span {
  color: red;
  font-weight: 900;
}
.hero-card__title {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .hero-card__value {
    font-size: 20px;
  }
  .hero-card__title {
    font-size: 16px;
  }
}

.needs {
  background: url("../assets/images/smoke.png") center center/cover no-repeat;
  padding: 140px 0px;
}
.needs__row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.needs__button {
  margin-top: 32px;
  width: 100%;
}

.needs-item {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  flex: 1 1 min(300px, 100%);
  box-shadow: var(--glass);
}
.needs-item__title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.needs-item__icon {
  position: absolute;
  width: 197px;
  aspect-ratio: 1/1;
  top: -44px;
  right: -44px;
}
.needs-item__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.needs-item__list-item {
  font-size: 20px;
  font-weight: 500;
  list-style-position: inside;
  display: flex;
}
.needs-item__list-item::before {
  content: "•";
  margin-right: 8px;
  margin-left: 8px;
}

.reviews {
  padding: 140px 0px 80px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 540px;
  gap: 32px;
}

.review-card {
  background: #272727;
}
.review-card__img {
  display: flex;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.speciality-detail {
  padding: 116px 0 96px;
  position: relative;
}
.speciality-detail::before {
  content: "";
  position: absolute;
  inset: -100px -80px auto;
  height: 1000px;
  background: url("../assets/images/direction-bg.png") center top/cover no-repeat;
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
}
.speciality-detail::after {
  content: "";
  position: absolute;
  inset: 760px 0 -300px;
  background: url("../assets/images/smoke.png") center center/cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
}
.speciality-detail > * {
  position: relative;
  z-index: 1;
}
.speciality-detail__container {
  display: flex;
  flex-direction: column;
}
.speciality-detail__title {
  max-width: 855px;
  font-size: 37px;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}
.speciality-detail__layout {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(320px, 472px) minmax(0, 873px);
  gap: 70px;
  align-items: start;
}
.speciality-detail__content p {
  line-height: 1.5;
  font-weight: 400;
}
.speciality-detail__content p + p {
  margin-top: 24px;
}
.speciality-detail__content p + h3 {
  margin-top: 32px;
}
.speciality-detail__content h3 {
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
}
.speciality-detail__content h3 + p {
  margin-top: 12px;
}
@media screen and (max-width: 1400px) {
  .speciality-detail__layout {
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .speciality-detail {
    padding-bottom: 72px;
  }
  .speciality-detail__title {
    font-size: 30px;
  }
  .speciality-detail__layout {
    margin-top: 24px;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 32px;
  }
  .speciality-detail__content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 930px) {
  .speciality-detail {
    padding-top: 186px;
  }
}
@media screen and (max-width: 768px) {
  .speciality-detail {
    padding-top: 86px;
    padding-bottom: 48px;
  }
  .speciality-detail__title {
    font-size: 24px;
  }
  .speciality-detail__layout {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .speciality-detail__content p {
    font-size: 16px;
    line-height: 1.55;
  }
}
@media screen and (max-width: 691px) {
  .speciality-detail {
    padding-top: 146px;
  }
}
@media screen and (max-width: 392px) {
  .speciality-detail {
    padding-top: 196px;
  }
}

.speciality-card {
  position: sticky;
  top: 24px;
  max-width: 472px;
  width: 100%;
  aspect-ratio: 472/632;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: var(--glass);
}
.speciality-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.speciality-card__button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .speciality-card {
    max-width: 100%;
    position: relative;
  }
  .speciality-card__button.button {
    padding: 16px 24px;
    font-size: 16px;
  }
}

.way {
  padding: 0px 0px;
  margin-block: -20px;
  position: relative;
}
.way::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 105%;
  height: 105%;
  background: url("../assets/images/way-bg.png") center center/cover no-repeat;
  filter: blur(20px);
  z-index: 0;
}
.way > * {
  position: relative;
  z-index: 1;
}
.way__container {
  padding-block: 100px;
  position: relative;
}
.way__column {
  max-width: 680px;
  border-left: 1px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-right: 440px;
}
.way__decor {
  position: absolute;
  bottom: -80px;
  right: 0;
  max-width: 48%;
}
@media screen and (max-width: 1024px) {
  .way__container {
    padding-block: 20px;
    display: flex;
    flex-direction: column;
  }
  .way__column {
    margin-right: 0;
    gap: 24px;
  }
  .way__decor {
    position: static;
    margin: 24px auto -100px;
    max-width: max(50%, 300px);
  }
}

.way-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0px 20px 60px;
  position: relative;
}
.way-item__text {
  display: flex;
}
.way-item:first-child:before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  height: 100%;
  width: 20px;
  border: 10px solid #900607;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
@media screen and (max-width: 768px) {
  .way-item {
    padding: 0px 0px 0px 32px;
  }
}

.whom {
  background: #0f1316;
}
.whom__container {
  display: flex;
  flex-wrap: wrap;
}

.whom-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  gap: 16px;
  padding: 32px 16px;
  text-align: center;
  position: relative;
  background: url("../assets/images/button-bg-02.png") center center/cover no-repeat;
}
.whom-item__title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}
.whom-item:first-child:before {
  content: "";
  position: absolute;
  left: 0px;
  top: -1px;
  height: 20px;
  width: 100%;
  border: 10px solid #900607;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.articles {
  position: relative;
  padding-top: 120px;
}
.articles__row {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.article-card {
  flex: 1 1 min(300px, 100%);
  display: flex;
  flex-direction: column;
  gap: 84px;
  position: relative;
}
.article-card__img {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__row {
  display: flex;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.0117647059);
  backdrop-filter: blur(10px);
}
.article-card__button {
  flex: 1 1 0;
}
.article-card__title {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
  height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  padding: 20px 20px 10px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.0117647059);
  backdrop-filter: blur(10px);
}
.article-card__date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  max-width: 130px;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
}

.button {
  background: url("../assets/images/button-bg.png");
  background-size: cover;
  background-position: center center;
  box-shadow: 0 0 50px 0 rgba(180, 8, 9, 0.5);
  transition: 0.3s ease;
  display: block;
  cursor: pointer;
  text-align: center;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (pointer: fine) {
  .button:hover {
    box-shadow: 0 0 0 0 rgba(180, 8, 9, 0.5);
  }
}
@media screen and (max-width: 768px) {
  .button {
    padding: 16px 24px;
    font-size: 14px;
  }
}

.logo {
  display: flex;
  max-width: 165px;
  width: 100%;
  height: auto;
}
.logo__img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .logo {
    max-width: 110px;
  }
}

.faq {
  padding: 32px;
  width: 100%;
  border-bottom: 1px solid #808283;
}
.faq__header {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
}
.faq__title {
  text-transform: none;
}
.faq__icon {
  max-width: 16px;
  height: 16px;
  transition: 0.3s ease;
}
.faq__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease;
}
.faq__inner {
  overflow: hidden;
  height: 100%;
  transition: 0.3s ease;
}
.faq.active .faq__icon {
  transform: rotate(180deg);
}
.faq.active .faq__wrapper {
  grid-template-rows: 1fr;
}
.faq.active .faq__inner {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 16px;
  }
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list__item {
  font-size: 20px;
  font-weight: 500;
  list-style-position: inside;
  display: flex;
}
.list__item::before {
  content: "•";
  margin-right: 8px;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .list__item {
    font-size: 16px;
  }
}

.socials {
  display: flex;
  gap: 8px;
}

.social {
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glass);
}

.review-card__text {
    padding: 19px;
}

.social__icon {
  max-width: 49px;
  width: 49px;
  height: 49px;
}
@media screen and (max-width: 768px) {
  .social__icon {
    max-width: 32px;
    width: 32px;
    height: 32px;
  }
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  min-height: 100dvh;
  min-width: 100dvw;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
  padding: 16px;
  overflow: auto;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}
.modal-wrapper.active {
  pointer-events: all;
  opacity: 1;
}

.modal {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px;
  background: #fff;
  max-width: 600px;
  width: 100%;
  margin: auto;
  opacity: 0;
  transform: translate(0px, 20px);
  pointer-events: none;
  transition: 0.3s ease;
}
.modal__title {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 16px;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
}
.modal__close::before, .modal__close::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal.active {
  pointer-events: all;
  opacity: 1;
  transform: translate(0px);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__button {
  margin-top: 8px;
}

.input {
  font-family: Gilroy;
  font-size: 20px;
  font-weight: 400;
  outline: none;
  padding: 16px 24px;
  background: #f4f4f4;
  color: #000;
  flex: 1 1 min(300px, 100%);
}
.input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
}
.checkbox__input {
  position: absolute;
  top: 44px;
  left: 16px;
  width: 1px;
  height: 1px;
}
.checkbox__icon {
  width: 30px;
  transition: 0.3s ease;
  height: 30px;
  opacity: 0;
}
.checkbox__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  transition: 0.3s ease;
  border-radius: 2px;
  box-shadow: inset 0px 0px 0px 2px rgba(180, 8, 9, 0.5);
}
.checkbox__text {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.checkbox__text a {
  text-decoration: underline;
  text-underline-position: under;
}
.checkbox__input:checked + .checkbox__box {
  background: rgb(180, 8, 9);
  box-shadow: none;
}
.checkbox__input:checked + .checkbox__box .checkbox__icon {
  opacity: 1;
}
@media screen and (pointer: fine) {
  .checkbox:hover .checkbox__box {
    box-shadow: inset 0px 0px 0px 2px rgb(180, 8, 9);
  }
}