:root {
  --page-spacer: 11.25rem;
  --page-spaces-small: 7.5rem;
  --fluid-spacer: 0.052vw;
  --header-height: 12rem;
  --base-size: calc(16 * var(--fluid-spacer));
  --container-padding: 4.375rem;
  --text-size-small: 1.125rem;
  --text-size-base: 1.5rem;
  --text-size-middle: 2.5rem;
  --text-size-tiny: 1rem;
  --title-size-base: 7.5rem;
  --title-size-middle: 4rem;
  --title-size-label: 12.5rem;
  --color-black: #141414;
  --color-white: #ebebeb;
  --animation-func: cubic-bezier(0.42, 0, 0.58, 1);
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 13.5rem;
    --header-active-height: 6.25rem;
    --fluid-spacer: 0.25vw;
    --page-spacer: 7.5rem;
    --page-spacer-small: var(--page-spacer);
    --container-padding: .625rem;
    --text-size-base: .875rem;
    --text-size-small: .875rem;
    --text-size-tiny: .875rem;
    --text-size-middle: .875rem;
    --title-size-base: 4.2rem;
    --title-size-label: 4.5rem;
    --title-size-middle: 2.1875rem;
  }
}

html {
  font-size: var(--base-size);
  scroll-padding-top: var(--header-height);
}

body.body--black {
  --color-white: #141414;
  --color-black: #ebebeb;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: var(--text-size-small);
  line-height: 1.33;
  color: var(--color-black);
  background-color: var(--color-white);
  --header-home-height:44rem;
}
@media screen and (max-width: 767px) {
  body.header-active {
    --header-height: var(--header-active-height);
  }
}

b {
  font-weight: 600;
}

.container {
  max-width: 100%;
  width: 100%;
  padding: 0 var(--container-padding);
}
.container--small {
  padding: 0.625rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
  transition: 1s opacity;
}
@media screen and (min-width: 768px) {
  .logo__img--mobile {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .logo__img {
    opacity: 0;
  }
  .logo__img--mobile {
    opacity: 1;
  }
}

.title--base {
  font-size: var(--title-size-base);
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
}
.title--middle {
  font-size: var(--title-size-middle);
  line-height: 1.27;
}
.title--label {
  font-size: var(--title-size-label);
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .title--label {
    line-height: 1;
  }
}
.title--center {
  text-align: center;
}
.title--white {
  color: var(--color-white);
}

.text--base {
  font-size: var(--text-size-base);
  line-height: 1.33;
}
.text--middle {
  font-size: var(--text-size-middle);
  line-height: 1.2;
}
.text--small {
  font-size: var(--text-size-small);
  line-height: 1.33;
}
.text--tiny {
  font-size: var(--text-size-tiny);
  line-height: 1.12;
}
.text--semibold {
  font-weight: 600;
}
.text--bold {
  font-weight: 700;
}
.text--italic {
  font-style: italic;
}
.text--white {
  color: var(--color-white);
}
.text--grey {
  opacity: 0.5;
}
.text--center {
  text-align: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  text-align: center;
}
.button:hover{
  cursor: pointer;
}
.button--base {
  width: 16.875rem;
  height: 3.125rem;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: 3.125rem;
  border: 1px solid transparent;
}
.button--base--small {
  width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .button--base {
    width: 11.25rem;
    height: 2.5rem;
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }
}
.button--small {
  width: 11.25rem;
  height: 2.5rem;
  font-size: 0.875rem;
  border-radius: 3.125rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .button--small {
    font-size: 0.75rem;
  }
}
.button--small--big {
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .button--small--big {
    font-size: 0.5rem;
    height: 1.875rem;
    width: 11.25rem;
    padding: 0.5rem;
  }
}
.button--bordered {
  color: var(--color-black);
  border-color: var(--color-black);
  transition: 0.3s color, 0.3s background-color;
}
.button--bordered:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.button--bordered--grey {
  opacity: 0.5;
}
.button--bordered--white {
  color: var(--color-white);
  border-color: var(--color-white);
}
.button--bordered--white:hover {
  background-color: var(--color-white);
  color: var(--color-black);
}
.button--white {
  background-color: #EBEBEB;
  color: #141414;
  transition: 0.3s color, 0.3s background-color;
}
.button--white:hover {
  background-color: var(--color-black);
  color: #EBEBEB;
}
.button--black {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
  transition: 0.3s color, 0.3s background-color;
}
.button--black:hover {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.body--black .header--active {
  --color-black: #141414;
  --header-color: #141414;
}

.header {
  position: sticky;
  top: -1px;
  z-index: 12;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: difference;
  --color-black: #ebebeb;
  --color-white: #141414;
  transition: 0.3s color;
}
@media screen and (min-width: 768px) {
  .header--home {
    padding-top: 30rem;
    transition: 1s padding-top;
  }
  .header--home.sticky {
    padding-top: 0;
  }
  .header--home.sticky .header__logo {
    width: 16.5rem;
    top: 50%;
    height: 3.125rem;
    transform: translate(-50%, -20%) scale(1.4);
  }
  .header--home .header__logo {
    height: 26rem;
    width: 100%;
    top: -30rem;
    transform: translate(-50%, 0);
    transition: 1s top, 1s transform, 1s width, 1s height, 1s opacity;
    will-change: transform;
  }
  .header--home .header__logo path {
    transition: 1s opacity, 1s transform;
    will-change: transform;
  }
  .header--home .header__logo .logo__letter {
    transition: 0.5s opacity, 0.5s transform;
  }
  .header--home .logo__img--fixed {
    opacity: 0;
  }
  .header--home.sticky .logo__img path {
    opacity: 0;
    will-change: transform;
  }
  .header--home.sticky .logo__img .logo__letter {
    opacity: 1;
    transition: 0.5s opacity, 1s 0.5s transform;
  }
  .header--home.sticky .logo__img .logo__letter:nth-child(1) {
    transform: translateX(15%);
  }
  .header--home.sticky .logo__img .logo__letter:nth-child(2) {
    transform: translateX(9%);
  }
  .header--home.sticky .logo__img .logo__letter:nth-child(3) {
    transform: translateX(-9%);
  }
  .header--home.sticky .logo__img .logo__letter:nth-child(4) {
    transform: translateX(-3%);
  }
  .header--home.sticky .logo__img .logo__letter:nth-child(5) {
    transform: translateX(3%);
  }
  .header--home.sticky .logo__img--fixed {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header.sticky .header__wrapper {
    padding: 2rem 0;
  }
  .header.sticky .header__row {
    gap: 2rem;
  }
  .header.sticky .header__logo {
    height: 0;
  }
  .header.sticky .header__row {
    gap: 0;
  }
  .header--active .header__phone {
    display: block;
    order: 4;
  }
  .header--active .header__social {
    display: block;
    order: 3;
  }
}
.header--active {
  mix-blend-mode: unset;
  --color-black: #141414;
  --color-white: #ebebeb;
}
.header__wrapper {
  padding: 4.375rem 0;
  transition: 1s padding;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    padding: 3.75rem 0;
  }
}
.header__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__box {
    flex-wrap: wrap;
  }
}
.header__row {
  display: flex;
  flex-direction: column;
  gap: 3.12rem;
  pointer-events: auto;
  position: relative;
  transition: 1s gap;
}
.header__logo {
  width: 14.5rem;
  height: 3.125rem;
  color: var(--color-black);
  transition: 1s all;

  z-index: 3;
}
@media screen and (min-width: 768px) {
  .header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-45%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 100%;
    height: 5rem;
  }
}
.header__phone {
  width: 13.75rem;
}
@media screen and (min-width: 768px) {
  .header__phone {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__phone {
    width: 11.25rem;
  }
}
.header__block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__social, .header__phone {
    display: none;
  }
}

.menu {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0FA9E4;
  color: #141414;
  --color-black: #141414;
  --color-white: #ebebeb;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility, 0.5s opacity;
}
.menu--active {
  opacity: 1;
  visibility: visible;
}
.menu__wrapper {
  padding: calc(var(--container-padding) * 2 + 2.5rem) var(--container-padding) var(--container-padding) var(--container-padding);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.menu__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu__wrapper {
    padding: 13rem var(--container-padding) 2rem var(--container-padding);
  }
}
.menu__footer {
  margin-top: auto;
}
.menu__content {
  margin-top: auto;
}
.menu-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.menu-list__item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 7.5rem;
  font-weight: 500;
  opacity: 0.2;
  transition: 0.3s opacity;
}
@media screen and (max-width: 767px) {
  .menu-list__item {
    font-size: 3.375rem;
  }
}
.menu-list__item:hover {
  opacity: 0.5;
}
.menu-list__item:not(:last-child)::after {
  content: "/";
  flex-shrink: 0;
  margin: 0 1.875rem;
  font-weight: 300;
}
.menu-list__item--home {
  opacity: 1;
}

.burger:hover {
  cursor: pointer;
}
.burger--active .burger-lines__item:nth-child(1) {
  transform: rotate(45deg);
  top: calc(50% - 0.5px);
}
.burger--active .burger-lines__item:nth-child(2) {
  transform: rotate(-45deg);
  top: calc(50% - 0.5px);
}
.burger__wrapper {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .burger__wrapper {
    gap: 1.25rem;
  }
}
.burger__text {
  font-size: 1rem;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .burger__text {
    font-size: 0.75rem;
  }
}
.burger-lines {
  --burger-color: var(--header-color);
  flex-shrink: 0;
  width: 6.25rem;
  height: 0.75rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .burger-lines {
    width: 5.25rem;
  }
}
.burger-lines__item {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  display: block;
  transition: 0.3s top, 0.3s transform;
}
.burger-lines__item:nth-child(2) {
  top: calc(100% - 1px);
}

.social-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .social-list {
    gap: 1rem;
  }
}
.social-list__item {
  flex-shrink: 0;
}
.social-link {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .social-link {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.social-link__icon {
  width: 100%;
  height: 100%;
}

.content {
  flex-grow: 1;
  position: relative;
  --content-gap: 0;
}
.content--hero {
  --content-gap: var(--page-spaces-small);
}
.content-decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.content-decor__item {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-decor__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  gap: var(--content-gap);
}

.about__header {
  padding: 15rem 0;
}
@media screen and (max-width: 767px) {
  .about__header {
    padding: 11.25rem 0;
  }
}
.about__box {
  display: flex;
  flex-direction: column;
  gap: var(--page-spaces-small);
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .about__content {
    gap: 2.5rem;
  }
}
.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 53.125rem;
}
@media screen and (max-width: 767px) {
  .about-img {
    height: 38.75rem;
  }
}
.about-img__item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-list__item {
  padding: 7rem var(--container-padding);
  border-top: 1px solid #141414;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7rem;
}
.about-list__item:last-child {
  border-bottom: 1px solid #141414;
}
@media screen and (max-width: 767px) {
  .about-list__item {
    gap: 2.25rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.25rem var(--container-padding);
  }
}
.about-list__title {
  flex-shrink: 0;
}
.about-list__text {
  max-width: 40rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about-list__text {
    order: 2;
  }
}

.contact-links__row {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  flex-wrap: wrap;
}
.contact-links__row--full {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contact-links__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.contact-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.625rem;
  overflow: hidden;
  height: 36.25rem;
}
@media screen and (max-width: 767px) {
  .contact-map {
    height: 30rem;
  }
}
.contact-map__item {
  width: 100%;
  height: 100%;
}
.contact-footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contact-footer__row {
    gap: 1.875rem 1rem;
  }
  .contact-footer__row .text {
    font-size: 0.5rem;
    order: 2;
  }
}
.contact-footer__buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contact-footer__buttons {
    order: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact__column {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .contact__column {
    gap: 3.75rem;
  }
}

.map-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.map-link__icon {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  color: var(--color-black);
}
.map-link__icon--small {
  width: 3.75rem;
  height: 3.75rem;
}
@media screen and (max-width: 767px) {
  .map-link__icon {
    width: 3.75rem;
    height: 3.75rem;
  }
}

.section {
  background-color: var(--color-white);
}
.section--black {
  background-color: #141414;
  mix-blend-mode: difference;
}
.section__title {
  max-width: 85rem;
  width: 100%;
}
.section__title--center {
  margin: 0 auto;
}
.section__wrapper {
  padding: 11.25rem 0;
}
@media screen and (max-width: 767px) {
  .section__wrapper {
    padding: 3.75rem 0;
  }
}
.section__wrapper--big {
  padding: 20rem 0;
}
@media screen and (max-width: 767px) {
  .section__wrapper--big {
    padding: 11.25rem 0;
  }
}
.section__wrapper--footer {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .section__wrapper--footer {
    padding-bottom: 1.5rem;
  }
}
.section__column {
  display: flex;
  flex-direction: column;
  gap: 11.25rem;
}
@media screen and (max-width: 767px) {
  .section__column {
    gap: 3.75rem;
  }
}
.section__column--gap--small {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .section__column--gap--small {
    gap: 1.75rem;
  }
}
.section-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-header__row {
    flex-direction: column;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .section-header__button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.section-footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .section-footer__wrapper {
    gap: 1.875rem;
  }
}
.section-footer__text {
  max-width: 28.75rem;
  width: 100%;
}

.price-item__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 1.25rem;
  height: 5rem;
  padding: 1rem var(--container-padding);
  border-top: 1px solid var(--color-black);
  transition: 0.3s background-color, 0.3s color;
}
.price-item__row:last-child {
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .price-item__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
    padding: 1.25rem var(--container-padding);
    height: auto;
  }
}
.price-item__row:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.price-item__arrow {
  opacity: 0.5;
  width: 5rem;
  height: 1.875rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .price-item__arrow {
    width: 2.5rem;
    height: 0.875rem;
    flex: 1;
  }
  .price-item__arrow + .text {
    text-align: right;
  }
}
.price-item__block {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .price-item__block:not(:first-child):not(:last-child) {
    justify-content: center;
  }
  .price-item__block:last-child {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .price-item__block {
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 2.5rem 1fr;
  }
  .price-item__block:first-child {
    grid-template-columns: minmax(0, 1fr);
  }
}

.catalog-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .catalog-gallery__wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.75rem;
  }
}
.catalog-gallery__sticky {
  position: sticky;
  right: 0;
  top: var(--header-height);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.75rem;
  height: 20.3125rem;
}
@media screen and (max-width: 767px) {
  .catalog-gallery__sticky {
    margin-left: unset;
    width: 8.75rem;
    height: 12.5rem;
  }
}
.catalog-gallery__sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .catalog-gallery__block {
    padding-left: 5rem;
  }
}
.catalog-gallery__block--end {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .catalog-gallery__block--sticky {
    grid-row-start: 3;
    padding-left: 0;
  }
}
.catalog-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 140%;
}
@media screen and (max-width: 767px) {
  .catalog-gallery__main {
    max-width: 13.75rem;
    width: 100%;
    padding-bottom: 110%;
  }
}
.catalog-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.catalog-header__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
}
.catalog-header__text {
  max-width: 53.75rem;
  width: 100%;
  margin: 0 auto;
}
.catalog-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .catalog-grid__wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.625rem;
  }
}

.card__header {
  max-width: 18.75rem;
  width: 100%;
}
.card__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.625rem;
  border-radius: 0.625rem;
  background-color: #E3E3E3;
}
.card-img {
  padding: 0 3.75rem;
  margin-top: auto;
  margin-bottom: 2.75rem;
}
@media screen and (max-width: 767px) {
  .card-img {
    padding: 0 3.125rem;
    margin-bottom: 1.75rem;
  }
}
.card-img__wrapper {
  padding-bottom: 125%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-img__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-footer__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card-footer__block:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-footer__block:last-child {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}

.team-grid__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 1.25rem;
  flex-wrap: wrap;
}
.team-grid__item {
  max-width: 28.75rem;
  width: 100%;
  flex-shrink: 0;
}
.team-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.team-card__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 125%;
}
.team-card__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: .625rem;
}
.team-card__content {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
}

.work__wrapper {
  padding: 2rem 0 13.125rem 0;
}
@media screen and (max-width: 767px) {
  .work__wrapper {
    padding: 2rem 0 3.75rem 0;
  }
}
.work-header {
  position: sticky;
  top: var(--header-height);
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .work-header {
    top: calc(var(--header-active-height));
  }
}
.work-header__title {
  width: 100%;
  height: auto;
}
.work__box {
  display: flex;
  flex-direction: column;
  gap: 5.625rem;
}
@media screen and (max-width: 767px) {
  .work__box {
    gap: 4.375rem;
  }
}
.work__content {
  position: relative;
  z-index: 4;

  transform: translateZ(0);
}
@media screen and (max-width: 767px) {
  .work__content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}
.work__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .work__row {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.work__column {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}
@media screen and (max-width: 767px) {
  .work__column {
    gap: 2.5rem;
    width: 100%;
  }
}
.work__item--bottom {
  margin-top: auto;
  padding-bottom: 16.25rem;
}
@media screen and (max-width: 767px) {
  .work__item--bottom {
    padding-bottom: 0;
  }
}
.work-item {
  width: 29rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .work-item {
    width: 15rem;
  }
}
.work-item--middle {
  width: 48rem;
}
@media screen and (max-width: 767px) {
  .work-item--middle {
    width: 100%;
  }
}
.work-item--big {
  width: 61.25rem;
}
@media screen and (max-width: 767px) {
  .work-item--big {
    width: 100%;
  }
}
.work-item--small {
  width: 36.25rem;
}
@media screen and (max-width: 767px) {
  .work-item--small {
    width: 18.75rem;
    margin-left: auto;
  }
}
.work-item__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .work-item__wrapper {
    gap: 1.25rem;
  }
}
.work-item__img {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 150%;
  background: var(--color-white);
}
.work-item__img--middle {
  padding-bottom: 60%;
}
.work-item__img--big {
  padding-bottom: 110%;
}
.work-item__img--small {
  padding-bottom: 80%;
}
.work-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.work-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
.work-item__text {
  font-size: 1.125rem;
  color: var(--color-black);
}
@media screen and (max-width: 767px) {
  .work-item__text {
    font-size: 0.875rem;
  }
}
.work-item__date {
  font-weight: 300;
  text-align: right;
  font-style: italic;
}

.tags-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .tags-list {
    gap: 1.25rem 0.625rem;
  }
}
.tags-list__item {
  flex: 1 0 auto;
  max-width: 16.875rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .tags-list__item {
    max-width: calc(50% - 1.25rem);
  }
}
.tags-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.125rem;
  position: relative;
  --color: var(--color-black);
  --color-hover: var(--color-white);
}
@media screen and (max-width: 767px) {
  .tags-item {
    height: 2.5rem;
  }
}
.tags-item:hover {
  cursor: pointer;
}
.tags-item:hover .tags-item__label {
  background: var(--color);
  color: var(--color-hover);
  opacity: 0.6;
}
.tags-item__label {
  border-radius: 3.125rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: var(--text-size-tiny);
  border: 1px solid var(--color);
  color: var(--color);
  transition: 0.3s background-color, 0.3s color, 0.3s opacity;
}
@media screen and (max-width: 767px) {
  .tags-item__label {
    font-size: 0.75rem;
  }
}
.tags-item__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.tags-item__input:checked ~ .tags-item__label {
  background: var(--color);
  color: var(--color-hover);
}

.product-grid__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .product-grid__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}
.product-img__item {
  position: sticky;
  top: var(--header-height);
  padding-bottom: 100%;
  background: #E3E3E3;
  --img-padding: 2rem;
}
@media screen and (max-width: 767px) {
  .product-img__item {
    border-radius: 0.625rem;
    padding-bottom: 125%;
    --img-padding: 3.125rem;
  }
}
.product-img__item img {
  width: calc(100% - var(--img-padding) * 2);
  height: calc(100% - var(--img-padding) * 2);
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-info__desc {
  font-size: var(--text-size-base);
}
.product-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .product-info__wrapper {
    gap: 3.75rem;
  }
}
.product-info__footer {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .product-info__footer {
    gap: 1.875rem;
  }
}
.product-info__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.product-info__row p:last-child {
  text-align: right;
}
.product-info__header {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .product-info__header {
    gap: 1.875rem;
  }
}
.product-info__title {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .product-info__title {
    font-size: 1.375rem;
  }
}
.product-info__title span {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .person__box {
    padding-top: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .person__wrapper {
    padding-top: 15.625rem;
  }
}
.person__content {
  position: relative;
  z-index: 2;
}
.person-header {
  position: sticky;
  z-index: 1;
  top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  pointer-events: none;
  will-change: transform;
}
@media screen and (max-width: 767px) {
  .person-header {
    top: var(--header-active-height);
  }
}
.person-header__title {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .person-header__title {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.person-list__wrapper {
  display: flex;
  flex-direction: column;
  gap: 18.75rem;
}
@media screen and (max-width: 767px) {
  .person-list__wrapper {
    gap: 7.5rem;
  }
}
.person-list__item--right {
  padding-left: 31.875rem;
}
@media screen and (max-width: 767px) {
  .person-list__item--right {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .person-list__item--right--mobile {
    padding-left: 5rem;
  }
}
.person-card__wrapper {
  display: flex;
  align-items: stretch;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .person-card__wrapper {
    gap: 1.25rem;
    flex-direction: column;
  }
}
.person-card__wrapper--column {
  flex-direction: column;
}
.person-card__content {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .person-card__content {
    order: 2;
    gap: 3.75rem;
  }
}
.person-card__header {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .person-card__header {
    gap: 1.25rem;
  }
}
.person-card__img {
  width: 55rem;
  height: 61.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .person-card__img {
    width: 100%;
    height: 30rem;
    border-radius: 0.625rem;
    overflow: hidden;
  }
}
.person-card__img--middle {
  width: 46.25rem;
  height: 61.875rem;
}
@media screen and (max-width: 767px) {
  .person-card__img--middle {
    width: 100%;
    height: 30rem;
  }
}
.person-card__img--small {
  width: 28.75rem;
  height: 43.75rem;
}
@media screen and (max-width: 767px) {
  .person-card__img--small {
    width: 15rem;
    height: 22.5rem;
  }
}
.person-card__img--tiny {
  width: 48.75rem;
  height: 28.75rem;
}
@media screen and (max-width: 767px) {
  .person-card__img--tiny {
    height: 15rem;
    width: 100%;
  }
}
.person-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.animation-wrapper {
  overflow: hidden;
}

.animation-item {
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
}
.animation-item.animated {
  animation: textAnimation 1s var(--animation-delay) var(--animation-func) forwards;
}
.animation-item--left {
  transform: translateX(-100%);
}
.animation-item--left.animated {
  animation: textAnimationLeft 1s var(--animation-delay) var(--animation-func) forwards;
}

@keyframes textAnimation {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes textAnimationLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s visibility, 0.5s opacity;
}
.popup--active {
  opacity: 1;
  visibility: visible;
}
.popup-close {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;

  transition: .3s opacity;
}
.popup-close:hover{
  cursor: pointer;

  opacity: .5;
}
@media screen and (max-width: 767px) {
  .popup-close {
    width: 1.25rem;
    height: 1.25rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}
.popup-close::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: var(--color-black);
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  transition: 0.3s background-color;
  transform: rotate(45deg);
}
.popup-close::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: var(--color-black);
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  transition: 0.3s background-color;
  transform: rotate(-45deg);
}
.popup__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: auto;
  scrollbar-width: none;
}
.popup__wrapper::-webkit-scrollbar {
  display: none;
}
.popup__container {
  max-width: 41.25rem;
  width: calc(100% - 60px);
  max-height: 90%;
  height: -moz-max-content;
  height: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-popup {
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 0.625rem;
  padding: 2.5rem 5rem;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}
@media screen and (max-width: 767px) {
  .form-popup {
    padding: 1rem 2rem;
    border-radius: 1rem;
  }
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  position: relative;
  --checkmark-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .form-checkbox {
    gap: 1rem;
    --checkmark-size: 1.25rem;
  }
}
.form-checkbox:hover {
  cursor: pointer;
}
.form-checkbox__checkmark {
  width: var(--checkmark-size);
  height: var(--checkmark-size);
  border-radius: 50%;
  border: 1px solid var(--color-black);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: 0.3s color;
}
.form-checkbox__checkmark .icon {
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 767px) {
  .form-checkbox__checkmark .icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}
.form-checkbox__text {
  font-size: 0.875rem;
  max-width: 18rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form-checkbox__text {
    font-size: 0.5rem;
  }
}
.form-checkbox__text a {
  text-decoration: underline;
  text-underline-position: under;
}
.form-checkbox__input {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--checkmark-size);
  height: var(--checkmark-size);
  opacity: 0;
}
.form-checkbox__input:checked ~ .form-checkbox__checkmark {
  color: var(--color-black);
}
.form-input {
  display: flex;
  align-items: center;
  width: 100%;
}
.form-input__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  border-radius: 3.125rem;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  background: transparent;
  font-size: 1.125rem;
  text-align: center;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .form-input__item {
    height: 2.5rem;
    font-size: 0.875rem;
  }
}
.form-input__item::placeholder {
  opacity: 0.3;
}
.form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__wrapper {
    gap: 2rem;
  }
}
.form__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__content {
    gap: 1rem;
  }
}
.form__title {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .form__title {
    font-size: 2rem;
  }
}
.form__footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .form__footer {
    gap: 1rem;
  }
}
.form__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  border-radius: 3.125rem;
  color: var(--color-white);
  border:1px solid var(--color-black);
  background: var(--color-black);
  font-size: 1.125rem;

  transition: .3s opacity;
}
.form__button:hover{
  cursor: pointer;

  opacity: .6;
}
@media screen and (max-width: 767px) {
  .form__button {
    height: 2.5rem;
    font-size: 0.875rem;
  }
}
.form__text {
  font-size: 0.875rem;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .form__text {
    font-size: 0.5rem;
  }
}

.map-pin {
  width: 200px;
  height: 200px;
  background: url("../../images/icons/map-pin.svg") center bottom/contain no-repeat;
  transform: translate(-50%, -100%);
}

/*# sourceMappingURL=index.css.map */
