@font-face {
  font-family: 'Object Sans';
  src: url('./assets/fonts/ObjectSans-Regular.woff') format('woff'), url('./assets/fonts/ObjectSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html,
body {
  margin: 0;
  padding: 0;
  line-height: 120%;
  background-color: #1a1a20;
  font-family: 'Object Sans';
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.about__play {
  position: absolute;
  width: 160px;
  height: 160px;
  right: 52px;
  bottom: 52px;
}

.about__play-icon {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.fancybox__content {
  padding: 0 !important;
}

.fancybox__container.limited-width .fancybox__content {
  max-height: 500px;
  max-width: 900px;
  border-radius: 16px;
}

.projects__container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 0 24px;
}

.projects picture {
  display: flex;
  justify-content: center;
}

.projects__img {
  border-radius: 64px;
  max-width: 1392px;
}

.projects__box {
  position: relative;
}

.projects__link {
  position: absolute;
  left: 7.4%;
  color: #C9FD7C;
  font-size: 16px;
  line-height: 24px;
}

.projects__link.shop {
  top: 33%;
}

.projects__link.catalog {
  top: 30%;
  left: 6.6%;
}

.projects__link.promo {
  top: 25%;
  left: 6.6%;
}

.projects__link.video {
  top: 46%;
  left: 6.6%;
}

.history__container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 0 24px;
}

.history__img {
  border-radius: 64px;
  max-width: 1392px;
}

.history__box {
  position: relative;
}

@media (min-width: 1024px) and (max-width: 1920px) {
  html {
    transform: scale(0.8);
    transform-origin: center top;
    margin: 0 auto;
    overflow-x: hidden;
    width: 125%;
    max-width: none;
  }

  body {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about__play {
    width: 128px;
    height: 128px;
    right: 24px;
    bottom: 24px;
  }

  .about__play-icon {
    object-fit: contain;
  }

  .projects__container {
    row-gap: 8px;
    padding: 0 6px;
  }

  .projects__link {
    font-size: 8px;
    left: 7.6%;
  }

  .projects__link.shop {
    top: 15%;
  }

  .projects__link.catalog {
    top: 17%;
  }

  .projects__link.promo {
    top: 12%;
  }

  .projects__link.video {
    top: 22%;
  }

  .projects__img {
    border-radius: 24px;
  }

  .history__container {
    row-gap: 8px;
    padding: 0 6px;
  }

  .history__img {
    border-radius: 24px;
  }
}