:root {
  --color-dark-100: #000000;
  --color-dark-80: #333;
  --color-gray-100: #b1bbc9;
  --color-gray-50: #dfe1e3;
  --color-gray-30: #e8ebef;
  --color-red-100: #f00;
  --color-red-80: #f33;
  --color-white-100: #ffffff;
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-yellow: #fdd715;
  --font-main: "Onest", sans-serif;
  --fs-h1: 60px;
  --fs-h2: 52px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-xs: 12px;
  --btn-radius: 40px;
  --btn-padding: 18px 32px;
  --container-width: 1216px;
  --container-padding: 0 24px;
  --radii-30: 30px;
  --radii-48: 48px;
  --transition: 0.2s ease;
}

* {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent;
  text-decoration: none;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input { /* 1 */
  overflow: visible;
}

button,
select { /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

[hidden] {
  display: none;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-dark-100);
  background-color: var(--color-white-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark-100);
}

h1 {
  font-size: clamp(2.25rem, 1.5833333333rem + 2.962962963vw, 4.25rem);
}

h2 {
  font-size: clamp(2rem, 1.5833333333rem + 1.8518518519vw, 3.25rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 3.5rem;
  padding: 1rem 2rem;
  border-radius: var(--btn-radius);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btn:focus-visible {
  outline: 2px solid var(--color-red-80);
  outline-offset: 3px;
}
.btn:disabled, .btn--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}
.btn--red {
  background-color: #f00;
  color: var(--color-white-100);
  border-color: #f00;
}
.btn--red:hover {
  background-color: #f33;
  border-color: #f33;
}
.btn--red:active {
  background-color: #f66;
  border-color: #f66;
  box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.08) inset;
}
.btn--dark {
  background-color: var(--color-dark-100);
  color: var(--color-white-100);
  border-color: var(--color-dark-100);
}
.btn--dark:hover {
  background-color: #333;
  border-color: #333;
}
.btn--dark:active {
  background-color: #666;
  border-color: #666;
  box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.08) inset;
}
.btn--white {
  background-color: var(--color-white-100);
  color: var(--color-dark-100);
  border-color: var(--color-white-100);
}
.btn--white:hover {
  background-color: var(--color-white-100);
  color: var(--color-dark-100);
  border-color: var(--color-white-100);
}
.btn--white:active {
  background-color: var(--color-white-100);
  color: var(--color-dark-100);
  border-color: var(--color-white-100);
  box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.08) inset;
}

.label {
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-dark-100);
  line-height: 1.75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
}
.label img {
  max-width: 100%;
  flex-shrink: 0;
}
@media (width <= 62.5rem) {
  .label {
    display: grid;
    place-items: center;
    text-align: center;
  }
}

.title-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.title-block h2 {
  font-weight: 300;
  font-size: clamp(2rem, 1.5833333333rem + 1.8518518519vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.52px;
  color: var(--color-dark-100);
}
@media (width <= 47.99875rem) {
  .title-block h2 {
    letter-spacing: -0.32px;
  }
  .title-block h2 br {
    display: none;
  }
}
.title-block p {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--color-dark-100);
}
.title-block--white h2,
.title-block--white p {
  color: var(--color-white-100);
}

.header {
  height: 6rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--color-white-100);
  transition: box-shadow var(--transition), height var(--transition);
  z-index: 1001;
}
.header.is-menu-open {
  box-shadow: none !important;
}
.header.is-scrolled {
  height: 5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.header__logo {
  flex-shrink: 0;
}
@media (width <= 53.125rem) {
  .header__nav {
    display: none;
  }
}
.header__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header__link {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  color: #b1bbc9;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.header__link::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: var(--color-red-80);
  -webkit-mask-image: url("../assets/icons/pin.svg");
          mask-image: url("../assets/icons/pin.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-right: 0.5rem;
  vertical-align: middle;
  opacity: 0;
  transition: opacity var(--transition);
}
.header__link.active {
  color: #666;
}
.header__link.active::before {
  opacity: 0.6;
}
.header__link:hover {
  opacity: 1;
  color: var(--color-dark-100);
}
.header__link:hover::before {
  opacity: 1;
}
.header__link:disabled {
  color: #e8ebef;
}
.header__link:disabled::before {
  opacity: 0;
}

.burger {
  display: none;
}
@media (width <= 53.125rem) {
  .burger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--color-dark-100);
    background-color: var(--color-white-100);
    z-index: 1000;
    cursor: pointer;
  }
  .burger:focus-visible {
    outline: 2px solid var(--color-red-80);
    outline-offset: 3px;
  }
}
.burger__line {
  display: block;
  width: 1.375rem;
  height: 0;
  background-color: transparent;
  position: relative;
}
.burger__line::before, .burger__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-dark-100);
  position: absolute;
  left: 0;
  transition: transform var(--transition);
}
.burger__line::before {
  top: -0.3125rem;
}
.burger__line::after {
  top: 0.3125rem;
}
.burger.is-open .burger__line::before {
  transform: translateY(0.3125rem) rotate(45deg);
}
.burger.is-open .burger__line::after {
  transform: translateY(-0.3125rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white-100);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding-top: 7.5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu__list {
  margin-top: 7.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 1.1666666667rem + 0.3703703704vw, 1.5rem);
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}
.mobile-menu__link {
  font-size: clamp(1rem, 0.625rem + 1.6666666667vw, 2.125rem);
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-gray-100);
  transition: color var(--transition);
}
.mobile-menu__link:hover {
  color: var(--color-dark-100);
}
.mobile-menu__link.active {
  color: var(--color-dark-100);
}
.mobile-menu__map {
  margin-top: auto;
  margin-left: -2.5rem;
  width: 80%;
  pointer-events: none;
}
.mobile-menu__map img {
  width: 100%;
  height: auto;
  opacity: 0.5;
}

.hero {
  position: relative;
  padding-bottom: 14.6875rem;
  width: 100%;
  min-height: 50rem;
  background-image: url("../assets/img/hero/hero_bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (width <= 1024px) {
  .hero {
    min-height: auto;
    background-position: bottom center;
    background-size: cover;
  }
}
.hero__inner {
  position: relative;
  padding: 1rem 0 2.5rem;
  width: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (width <= 1024px) {
  .hero__inner {
    width: 37.5rem;
  }
}
@media (width <= 767.98px) {
  .hero__inner {
    width: 100%;
    padding: 1.25rem;
  }
}
@media (width <= 480px) {
  .hero__inner {
    padding: 0rem;
  }
}
@media (width <= 30rem) {
  .hero__inner .label {
    padding-bottom: 2rem;
  }
}
.hero__content {
  position: relative;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  max-width: 37.5rem;
  padding: 2rem;
}
@media (width <= 767.98px) {
  .hero__content {
    padding: 1.25rem;
  }
}
@media (width <= 480px) {
  .hero__content {
    padding: 0rem;
  }
}
.hero__corner {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-color: var(--color-dark-100);
  border-style: solid;
}
.hero__corner--tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.hero__corner--tr {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}
.hero__corner--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}
.hero__corner--br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
@media (width <= 767.98px) {
  .hero__corner {
    display: none;
  }
}
.hero__title {
  margin: 0;
  width: 100%;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--color-dark-100);
}
.hero__subtitle {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #000;
}
.hero__bar {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 6.25rem;
  border: 1.5px solid var(--color-gray-30);
  background-color: var(--color-white-100);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
  margin-top: 4.6875rem;
  border: 1.5px solid #e8ebef;
  border-radius: 100px;
  z-index: 2;
}
@media (width <= 767.98px) {
  .hero__bar {
    display: flex;
    width: 20.5rem;
    padding: 1rem;
    border-radius: 3rem;
    flex-direction: row;
    gap: 0.75rem;
  }
}
.hero__bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (width <= 767.98px) {
  .hero__bar-inner {
    min-width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: space-evenly;
    gap: 1rem;
  }
}
.hero__info {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (width <= 767.98px) {
  .hero__info {
    gap: 1.25rem;
  }
}
.hero__info-link {
  transition: opacity var(--transition);
}
.hero__info-link:hover {
  opacity: 0.6;
}
.hero__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (width <= 767.98px) {
  .hero__info-label, .hero__info-item:not(:first-child) {
    display: none;
  }
}
.hero__info-label {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-gray-100);
  text-transform: capitalize;
  letter-spacing: 0.05em;
}
.hero__info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark-100);
}
.hero__cta {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  padding: 0;
  flex-shrink: 0;
}
.hero__tag {
  position: absolute;
  bottom: -12.125rem;
  left: -6.25rem;
  width: 7.625rem;
  z-index: 2;
  pointer-events: none;
}
.hero__tag img {
  width: 100%;
  height: auto;
}
@media (width <= 768px) {
  .hero__tag {
    left: -5rem;
    transform: rotate(-50deg);
  }
}
@media (width <= 34.375rem) {
  .hero__tag {
    left: -4.375rem;
    bottom: -20.875rem;
  }
}

.advantages {
  position: relative;
  padding: clamp(4rem, 3.3333333333rem + 2.962962963vw, 6rem) 0;
  overflow: hidden;
}
.advantages__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9375rem;
}
@media (width <= 56.25rem) {
  .advantages__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem;
  }
}
.advantages__left {
  position: relative;
  max-width: 34.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width <= 56.25rem) {
  .advantages__left {
    text-align: center;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.advantages .title-block {
  margin-bottom: 1.25rem;
  text-align: left;
}
@media (width <= 56.25rem) {
  .advantages .title-block {
    max-width: 100%;
    text-align: center;
  }
}
@media (width <= 31.25rem) {
  .advantages .title-block {
    margin-bottom: 0rem;
  }
}
.advantages .title-block h2 {
  color: var(--color-dark-100);
}
@media (width <= 56.25rem) {
  .advantages .title-block p {
    max-width: 100%;
    text-align: center;
  }
}
.advantages .label {
  padding: 0;
  margin-left: 0;
  margin-bottom: 0.5rem;
  text-align: left;
}
@media (width <= 62.5rem) {
  .advantages .label {
    text-align: center;
  }
}
@media (width <= 56.25rem) {
  .advantages .label {
    width: auto;
    margin-inline: auto;
  }
}
.advantages__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (width <= 56.25rem) {
  .advantages__right {
    justify-content: center;
  }
}
.advantages .tags {
  margin-top: 3.125rem;
  margin-bottom: clamp(0rem, -1.6666666667rem + 7.4074074074vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (width <= 56.25rem) {
  .advantages .tags {
    margin-block: 0.9375rem;
    max-width: 80%;
    justify-content: center;
  }
}
@media (width <= 40.625rem) {
  .advantages .tags {
    min-width: 100%;
  }
}
.advantages .tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 1.875rem;
  border: 1.5px solid var(--color-gray-30);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark-100);
  background-color: var(--color-white-100);
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition);
}
.advantages .tag--dark {
  background-color: var(--color-dark-100);
  color: var(--color-white-100);
  border-color: var(--color-dark-100);
}
.advantages .tag--yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark-100);
  border-color: var(--color-yellow);
}
.advantages__area {
  font-size: clamp(6.25rem, 6.1041666667rem + 0.6481481481vw, 6.6875rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-dark-100);
  margin-top: 0.5rem;
}
@media (width <= 56.25rem) {
  .advantages__area {
    margin-top: 0.3125rem;
  }
}
@media (width <= 34.375rem) {
  .advantages__area {
    display: none;
  }
}
.advantages__area sup {
  font-size: 0.4em;
  vertical-align: super;
}
.advantages__card {
  position: absolute;
  top: 15%;
  transform: translateY(-50%);
  right: 0;
  height: 600px;
  width: 650px;
  pointer-events: none;
  z-index: 100;
}
@media (width <= 56.25rem) {
  .advantages__card {
    display: none;
  }
}
.advantages__card img {
  width: 100%;
  height: auto;
}
@media (width <= 1024px) {
  .advantages__card {
    right: -150px;
  }
}
.advantages__cta {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}
@media (width <= 56.25rem) {
  .advantages__cta {
    align-items: center;
  }
}
.advantages__cta-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-dark-100);
  text-align: right;
  line-height: 1.4;
}
@media (width <= 56.25rem) {
  .advantages__cta-text {
    max-width: 100%;
    text-align: center;
  }
}
@media (width <= 36.25rem) {
  .advantages__btn {
    width: 100%;
  }
}

.location {
  position: relative;
  background-color: var(--color-dark-100);
  overflow: hidden;
  padding: clamp(4rem, 3.3333333333rem + 2.962962963vw, 6rem) 0;
}
.location__header {
  margin-bottom: 0.3125rem;
}
.location__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 17.5rem;
  padding-bottom: 2.5rem;
}
@media (width <= 64rem) {
  .location__main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (width <= 768px) {
  .location__main {
    padding: 0.3125rem 0;
  }
}
.location__corner {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-color: rgba(255, 255, 255, 0.8);
  opacity: 0.5;
  border-style: solid;
}
@media (width <= 56.25rem) {
  .location__corner {
    display: none;
  }
}
.location__corner--tl {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.location__corner--tr {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}
.location__corner--bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}
.location__corner--br {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
@media (width <= 768px) {
  .location__corner {
    display: none;
  }
}
.location__metro {
  justify-self: start;
  z-index: 2;
}
@media (width <= 64rem) {
  .location__metro {
    order: 2;
    justify-self: center;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
.location__metro-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white-100);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.location__metro-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.location__metro-list li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-white-80);
  line-height: 1.5;
}
.location__kharkiv-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.location__kharkiv-text {
  padding-block: 4.75rem;
  padding-inline: 2.25rem;
  font-size: clamp(4.5rem, 2.0416666667rem + 10.9259259259vw, 11.875rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  background-image: url("../assets/img/kharkiv/text_bg.png");
  background-size: 120%;
  background-position: center 50%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  will-change: background-position;
  display: block;
  filter: brightness(200%) drop-shadow(0 15px 8px rgba(172, 165, 165, 0.3)) drop-shadow(0 16px 40px rgba(255, 255, 255, 0.4)) drop-shadow(0 30px 80px rgba(255, 255, 255, 0.15));
}
@media (width <= 64rem) {
  .location__kharkiv-text {
    width: 100%;
    height: auto;
    padding-block: 2.5rem;
    order: 1;
    padding-inline: 1rem;
    font-size: clamp(6.25rem, 4.375rem + 8.3333333333vw, 11.875rem);
  }
}
@media (width <= 28.125rem) {
  .location__kharkiv-text {
    padding-block: 0rem;
    font-size: 5.4375rem;
  }
}
.location__park {
  align-self: flex-start;
  justify-self: end;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 11.125rem;
  z-index: 2;
}
@media (width <= 64rem) {
  .location__park {
    order: 3;
    max-width: 100%;
    width: 100%;
    justify-self: center;
    align-self: stretch;
    text-align: center;
  }
}
.location__park-mobile {
  display: none;
}
@media (width <= 64rem) {
  .location__park-mobile {
    display: block;
    margin-inline: auto;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    margin-inline: auto;
  }
}
.location__park-img {
  width: 11.125rem;
  height: 6.625rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
@media (width <= 64rem) {
  .location__park-img {
    display: none;
  }
}
.location__park-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white-100);
}
.location__park-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.location__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 2.5rem;
}
@media (width <= 64rem) {
  .location__footer {
    display: none;
  }
}
.location__footer-text {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-white-100);
  line-height: 1.75rem;
}
.location__footer-text--right {
  text-align: right;
}
@media (width <= 768px) {
  .location__footer-text--right {
    text-align: center;
  }
}
.location__plus {
  position: relative;
  display: block;
  width: 3.375rem;
  height: 3.375rem;
  flex-shrink: 0;
}
.location__plus::before, .location__plus::after {
  content: "";
  position: absolute;
  background-color: #fff;
}
.location__plus::before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.location__plus::after {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.location__plus--abs {
  position: absolute;
}
.location__plus--tl {
  width: 2.25rem;
  height: 2.25rem;
  top: 22%;
  left: 15%;
}
@media (width <= 64rem) {
  .location__plus--tl {
    top: 85%;
    left: 0.9375rem;
  }
}
.location__plus--tr {
  top: 17%;
  right: 16%;
  width: 1.875rem;
  height: 1.875rem;
  color: #fff;
  opacity: 0.5;
}
@media (width <= 64rem) {
  .location__plus--tr {
    top: 90%;
    right: 1.5625rem;
  }
}
.location .title-block {
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 300;
}
@media (width <= 30rem) {
  .location .title-block > p br {
    display: none;
  }
}
.location .title-block h2 {
  margin-bottom: 1.5rem;
  color: var(--color-white-100);
  letter-spacing: -0.52px;
}
@media (width <= 768px) {
  .location .title-block h2 {
    margin-bottom: 1.5rem;
  }
}

.info {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 3.3333333333rem + 2.962962963vw, 6rem) 0;
}
@media (width <= 1024px) {
  .info .container {
    max-width: 900px;
  }
}
@media (width <= 768px) {
  .info {
    padding-bottom: 0;
  }
}
.info__inner {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 1.25rem;
  align-items: center;
}
@media (width <= 1280px) {
  .info__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 56.25rem) {
  .info__inner {
    grid-template-columns: 40% 1fr;
  }
}
@media (width <= 768px) {
  .info__inner {
    display: flex;
    flex-direction: column;
  }
}
.info__visual {
  position: absolute;
  top: 10%;
  left: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
}
@media (width <= 64rem) {
  .info__visual {
    top: 20%;
  }
}
@media (width <= 768px) {
  .info__visual {
    margin-top: -100px;
    position: relative;
    order: 2;
    width: 120%;
  }
}
.info__visual .info__image {
  max-width: 90%;
}
.info__visual .info__badge {
  position: absolute;
  top: 2%;
  left: 7%;
  width: auto;
  height: auto;
  max-width: 100%;
}
@media (width <= 1280px) {
  .info__visual .info__badge {
    width: 10.625rem;
  }
}
@media (width <= 56.25rem) {
  .info__visual .info__badge {
    width: 7.5rem;
  }
}
@media (width <= 768px) {
  .info__visual .info__badge {
    top: 18%;
    left: 17%;
  }
}
@media (width <= 580px) {
  .info__visual .info__badge {
    width: 5.625rem;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.info__content {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width <= 768px) {
  .info__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.info__content .label {
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 0;
}
.info .title-block {
  margin-top: 0.5rem;
  text-align: left;
}
@media (width <= 768px) {
  .info .title-block {
    margin-bottom: 1.875rem;
    text-align: center;
  }
}
@media (width <= 480px) {
  .info .title-block {
    margin-bottom: 0;
  }
}
.info .title-block h2 {
  font-weight: 300;
  font-size: clamp(2rem, 1.5833333333rem + 1.8518518519vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--color-dark-100);
}
.info .title-block p {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}
@media (width <= 56.25rem) {
  .info .title-block p:last-child {
    display: none;
  }
}
.info__price {
  margin-top: clamp(0.3125rem, -1.0416666667rem + 6.0185185185vw, 4.375rem);
  text-align: right;
  font-size: clamp(3rem, 2.3333333333rem + 2.962962963vw, 5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-dark-100);
}
@media (width <= 56.25rem) {
  .info__price {
    margin-top: 0rem;
    font-size: 3rem;
  }
}
@media (width <= 768px) {
  .info__price {
    font-size: 4.375rem;
  }
}
@media (width <= 480px) {
  .info__price {
    font-size: 4.0625rem;
  }
}
.info__price sup {
  font-weight: 300;
  color: var(--color-dark-100);
  font-size: 0.6em;
  vertical-align: super;
}

footer {
  position: relative;
  background-color: var(--color-dark-100);
  overflow: hidden;
  padding-top: clamp(4rem, 3.3333333333rem + 2.962962963vw, 6rem);
  padding-bottom: 5.9375rem;
  border-radius: 40px 40px 0 0;
}
@media (width <= 768px) {
  footer {
    padding-top: 4rem;
    padding-bottom: 23.4375rem;
  }
  footer::after {
    content: "";
    position: absolute;
    width: 590px;
    height: 390px;
    left: -240px;
    bottom: -5%;
    background-image: url("../assets/img/footer/map.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
  }
}
footer .container {
  position: relative;
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .cta__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.cta__content {
  margin-bottom: 6.875rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width <= 768px) {
  .cta__content {
    margin-bottom: 1.25rem;
    justify-content: center;
    align-items: center;
  }
}
.cta__content .title-block {
  text-align: left;
}
@media (width <= 768px) {
  .cta__content .title-block {
    text-align: center;
  }
}
.cta__content .title-block--white h2 {
  margin-bottom: 1rem;
  font-weight: 300;
}
.cta__content .title-block--white p {
  color: var(--color-white-100);
  font-weight: 300;
  font-size: 1.25rem;
}
.cta__content .btn--white {
  max-width: 15.25rem;
}
@media (width <= 31.25rem) {
  .cta__content .btn--white {
    min-width: 100%;
  }
}
.cta__map {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 768px) {
  .cta__map {
    display: none;
  }
}
.cta__map img {
  width: 100%;
  height: auto;
  max-width: 37.5rem;
}
@media (width <= 768px) {
  .cta__map img {
    min-width: 36.875rem;
  }
}
.cta__plus {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  z-index: 1;
}
.cta__plus::before, .cta__plus::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.774);
}
.cta__plus::before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.cta__plus::after {
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cta__plus--tl {
  width: 1.875rem;
  height: 1.875rem;
  top: 7.5rem;
  right: 5rem;
  left: auto;
  color: var(--color-white-100);
}
@media (width <= 768px) {
  .cta__plus--tl {
    display: none;
  }
}
.cta__plus--tr {
  width: 3.25rem;
  height: 3.25rem;
  bottom: 8.75rem;
  top: auto;
  right: 8.75rem;
}
@media (width <= 64rem) {
  .cta__plus--tr {
    right: 1.875rem;
    bottom: 2.5rem;
  }
}
@media (width <= 768px) {
  .cta__plus--tr {
    width: 3.875rem;
    height: 3.875rem;
  }
}
.cta__plus--bl {
  width: 4.75rem;
  height: 4.75rem;
  top: 55%;
  transform: translateY(-50%);
  left: 50%;
  bottom: auto;
}
@media (width <= 768px) {
  .cta__plus--bl {
    top: 60%;
    width: 2rem;
    height: 2rem;
  }
}
@media (width <= 768px) {
  .cta__decor {
    display: none;
  }
}