:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #ff0000;
}
html,
body {
  width: 100%;
  background-color: var(--color-black);
}
body {
  font-family: "Habanero";
  font-weight: normal;
  font-style: normal;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1;
  min-width: 360px;
  max-width: 2560px;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  outline: 0 !important;
}
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Habanero";
  margin: 0;
  padding: 0;
  -webkit-text-stroke-width: 6.16px;
  -webkit-text-stroke-color: #000;
  color: var(--color-white);
}
h1 {
  font-size: 88px;
  font-weight: 400;
  line-height: 86%;
  text-transform: uppercase;
}
h2,
.h2 {
  font-size: 96px;
  /* font-weight: 400; */
  line-height: 86%;
  letter-spacing: -4.8px;
  text-transform: uppercase;
}
h3 {
  font-weight: normal;
  font-size: 32px;
}
::-moz-selection {
  background: rgba(87, 87, 87, 0.67);
}
::selection {
  background: rgba(87, 87, 87, 0.67);
}
::-moz-selection {
  background: rgba(87, 87, 87, 0.67);
}
a {
  text-decoration: none;
  outline: none;
  color: var(--color-white);
  opacity: 1;
  will-change: transform;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
a.no-transition {
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
}
a:hover {
  /* color: var(--color-gold-dark);
        */
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
a.color-red {
  color: var(--color-red);
  border-bottom: 1px solid transparent;
}
a.color-red:hover {
  border-bottom: 1px solid;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  list-style-type: none;
}
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}
fieldset {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px transparent;
  -webkit-box-shadow: inset 0 0 6px transparent;
  background-color: #f1ede6;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: #f1ede6;
  -webkit-transition: cubic-bezier(0.09, 0.83, 0.31, 0.99) 1s;
  transition: cubic-bezier(0.09, 0.83, 0.31, 0.99) 1s;
}
body::-webkit-scrollbar-thumb {
  background: #d4c5b5;
}
input,
select,
textarea {
  width: 100%;
  background: transparent;
  border: 0;
  font-style: normal;
  border: 0;
}
[data-aos] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
[data-aos="fade-up"] {
  -webkit-transform: translate3d(0, 30px, 0);
  transform: translate3d(0, 30px, 0);
}
[data-aos="fade-down"] {
  -webkit-transform: translate3d(0, -30px, 0);
  transform: translate3d(0, -30px, 0);
}
[data-aos="fade-left"] {
  -webkit-transform: translate3d(30px, 0, 0);
  transform: translate3d(30px, 0, 0);
}
[data-aos="fade-right"] {
  -webkit-transform: translate3d(-30px, 0, 0);
  transform: translate3d(-30px, 0, 0);
}
/* */
.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--color-black);
  z-index: 1;
}
.bg-common {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/bg-common.jpg);
  background-size: 100%;
  background-repeat: repeat-y;
  z-index: -1;
  opacity: 0.4;
}
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: -35px;
  left: 27px;
  z-index: 10;
  width: 270px;
  height: 278px;
}
.logo a {
  opacity: 1;
  display: block;
}
.logo a:hover {
  opacity: 0.7;
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  position: relative;
  cursor: pointer;
  background: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  right: 22px;
  top: 20px;
  z-index: 11;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.burger-cont {
  position: absolute;
  width: 26px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  z-index: 2;
}
._active.burger:hover .burger-cont {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.burger-cont span {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: var(--color-black);
}
.burger-cont span:nth-child(1) {
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
}
.burger-cont span:nth-child(2) {
}
.burger-cont span:nth-child(3) {
  -webkit-transform: translateY(8px);
  -ms-transform: translateY(8px);
  transform: translateY(8px);
}
._active .burger-cont span {
  position: absolute;
  margin-bottom: 0;
  background: var(--color-black);
}
._active .burger-cont span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
._active .burger-cont span:nth-child(2) {
  opacity: 0;
}
._active .burger-cont span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger-svg {
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
._active .burger-svg {
  opacity: 1;
}
.burger-svg svg {
  width: 52px;
  height: auto;
}
.burger:hover .burger-svg {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
._active .burger-svg {
  opacity: 0;
}
.burger-svg svg path {
  fill: var(--color-white);
}
.pp {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pp._show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.pp__bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: transparent;
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
}
.pp__wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  padding: 65px 28px 0;
  background: var(--color-white);
  overflow: hidden;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.pp__wrap._right {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
._show .pp__wrap {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}
.pp-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 30px;
}
a.pp-menu__link {
  display: block;
  position: relative;
  line-height: 115%;
  font-size: 24px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--color-black);
}
.pp-break {
  text-align: center;
  margin-bottom: 30px;
}
.pp-break svg {
  width: 114px;
}
.pp-hello {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
  text-align: center;
}
.pp-hello .hello-container__title {
  font-size: 34.752px;
  letter-spacing: -1.738px;
  line-height: 100%;
  color: var(--color-red);
}
.pp-hello a.hello-container__link {
  font-size: 36px;
  letter-spacing: -1.8px;
  margin-top: 8px;
}
.pp-hello .hello-container__socslist {
  gap: 9px;
  margin-top: 26px;
}
.pp-hello a.hello-container__soc {
  width: 40px;
  height: 40px;
}
a.pp-menu__link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-black);
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a.pp-menu__link:hover:after {
  opacity: 1;
}
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 9;
  padding: 34px 42px 34px 220px;
}
.header__blur {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  z-index: -1;
  top: -100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header._overlay .header__blur {
  top: 0;
}
.header__blur-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.header__blur-layer._1 {
  z-index: 1;
  backdrop-filter: blur(0.140625px);
  -webkit-backdrop-filter: blur(0.140625px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0)),
    color-stop(12.5%, rgba(0, 0, 0, 1)),
    color-stop(25%, rgba(0, 0, 0, 1)),
    color-stop(37.5%, rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 0) 37.5%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0)),
    color-stop(12.5%, rgba(0, 0, 0, 1)),
    color-stop(25%, rgba(0, 0, 0, 1)),
    color-stop(37.5%, rgba(0, 0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 0) 37.5%
  );
}
.header__blur-layer._2 {
  z-index: 2;
  backdrop-filter: blur(0.28125px);
  -webkit-backdrop-filter: blur(0.28125px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(12.5%, rgba(0, 0, 0, 0)),
    color-stop(25%, rgba(0, 0, 0, 1)),
    color-stop(37.5%, rgba(0, 0, 0, 1)),
    color-stop(50%, rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 0) 50%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(12.5%, rgba(0, 0, 0, 0)),
    color-stop(25%, rgba(0, 0, 0, 1)),
    color-stop(37.5%, rgba(0, 0, 0, 1)),
    color-stop(50%, rgba(0, 0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 12.5%,
    rgba(0, 0, 0, 1) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 0) 50%
  );
}
.header__blur-layer._3 {
  z-index: 3;
  backdrop-filter: blur(0.5625px);
  -webkit-backdrop-filter: blur(0.5625px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(25%, rgba(0, 0, 0, 0)),
    color-stop(37.5%, rgba(0, 0, 0, 1)),
    color-stop(50%, rgba(0, 0, 0, 1)),
    color-stop(62.5%, rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 62.5%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(25%, rgba(0, 0, 0, 0)),
    color-stop(37.5%, rgba(0, 0, 0, 1)),
    color-stop(50%, rgba(0, 0, 0, 1)),
    color-stop(62.5%, rgba(0, 0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 25%,
    rgba(0, 0, 0, 1) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 62.5%
  );
}
.header__blur-layer._4 {
  z-index: 4;
  backdrop-filter: blur(1.125px);
  -webkit-backdrop-filter: blur(1.125px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(37.5%, rgba(0, 0, 0, 0)),
    color-stop(50%, rgba(0, 0, 0, 1)),
    color-stop(62.5%, rgba(0, 0, 0, 1)),
    color-stop(75%, rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 0) 75%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(37.5%, rgba(0, 0, 0, 0)),
    color-stop(50%, rgba(0, 0, 0, 1)),
    color-stop(62.5%, rgba(0, 0, 0, 1)),
    color-stop(75%, rgba(0, 0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 37.5%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 0) 75%
  );
}
.header__blur-layer._5 {
  z-index: 5;
  backdrop-filter: blur(2.25px);
  -webkit-backdrop-filter: blur(2.25px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(50%, rgba(0, 0, 0, 0)),
    color-stop(62.5%, rgba(0, 0, 0, 1)),
    color-stop(75%, rgba(0, 0, 0, 1)),
    color-stop(87.5%, rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0) 87.5%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(50%, rgba(0, 0, 0, 0)),
    color-stop(62.5%, rgba(0, 0, 0, 1)),
    color-stop(75%, rgba(0, 0, 0, 1)),
    color-stop(87.5%, rgba(0, 0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 0) 87.5%
  );
}
.header__blur-layer._6 {
  z-index: 6;
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(62.5%, rgba(0, 0, 0, 0)),
    color-stop(75%, rgba(0, 0, 0, 1)),
    color-stop(87.5%, rgba(0, 0, 0, 1)),
    to(rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(62.5%, rgba(0, 0, 0, 0)),
    color-stop(75%, rgba(0, 0, 0, 1)),
    color-stop(87.5%, rgba(0, 0, 0, 1)),
    to(rgba(0, 0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 62.5%,
    rgba(0, 0, 0, 1) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 0) 100%
  );
}
.header__blur-layer._7 {
  z-index: 7;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(75%, rgba(0, 0, 0, 0)),
    color-stop(87.5%, rgba(0, 0, 0, 1)),
    to(rgba(0, 0, 0, 1))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(75%, rgba(0, 0, 0, 0)),
    color-stop(87.5%, rgba(0, 0, 0, 1)),
    to(rgba(0, 0, 0, 1))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 75%,
    rgba(0, 0, 0, 1) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
}
.header__blur-layer._8 {
  z-index: 8;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(87.5%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 1))
  );
  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(87.5%, rgba(0, 0, 0, 0)),
    to(rgba(0, 0, 0, 1))
  );
  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 87.5%,
    rgba(0, 0, 0, 1) 100%
  );
}
.sections {
  position: relative;
  z-index: 1;
}
.fs {
  position: relative;
  height: 834px;
  margin-bottom: 226px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 1;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background: none;
  border: 0;
  padding: 0;
  z-index: 1;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

svg.button-bg {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
svg.button-ico {
  width: 56px;
  height: auto;
  margin-right: 14px;
}
span.button-text {
  display: block;
  font-size: 33.482px;
  line-height: 100%;
  letter-spacing: -1.674px;
  text-transform: uppercase;
  color: #000;
  z-index: 2;
}

.button:hover {
  -webkit-animation: shake 1s;
  animation: shake 1s;
  -webkit-animation-iteration-count: forwards;
  animation-iteration-count: forwards;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    -webkit-transform: translate(-3px, 0px) rotate(1deg);
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    -webkit-transform: translate(3px, 2px) rotate(0deg);
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    -webkit-transform: translate(1px, -1px) rotate(1deg);
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-3px, 1px) rotate(0deg);
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    -webkit-transform: translate(3px, 1px) rotate(-1deg);
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    -webkit-transform: translate(-1px, -1px) rotate(1deg);
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    -webkit-transform: translate(1px, 1px) rotate(0deg);
    transform: translate(1px, 1px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}

.button.button-join {
  margin-right: 29px;
}

.button-join svg.button-ico {
  width: 44px;
  margin: 0;
  margin-left: 6px;
}

.button-join span.button-text {
  font-size: 16px;
  letter-spacing: 0;
  color: var(--color-white);
}

.button-join svg.button-bg {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 27px;
}

.header__menu-link {
  line-height: 129%;
  font-size: 18px;
  letter-spacing: -0.72px;
  text-transform: uppercase;
  opacity: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__menu-link:hover {
  opacity: 0.7;
}

.header__menu-link span {
}

.header__socs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hello-container__socslist {
}

.header__socsmenu {
  margin-right: 56px;
}

.fs__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
  margin-left: 16px;
  z-index: 13;
}

.fs__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.gragientslist {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  z-index: -1;
}

.gragientslist._ontop {
  z-index: 2;
}

.gragient-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 154px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#000),
    color-stop(103.3%, rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0) 103.3%);
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 103.3%);
  z-index: -1;
}

.gragient-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 182px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#000),
    to(rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.fs__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
}

.fs__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fs__watch {
  /* margin-bottom: 17px; */
}

.button-transp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 22px;
}

.button-transp__ico {
  width: 35px;
  height: 35px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.button-transp__text {
  display: block;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.96px;
  text-transform: uppercase;
}

.fs__button {
  position: absolute;
  top: calc(100% + 59px);
}

.about {
  position: relative;
  z-index: 2;
}

.about-pic {
}

.about-pic img {
  width: 100%;
}

.about-container {
  position: absolute;
  top: 152px;
  left: 224px;
  width: 731px;
  z-index: 1;
  padding: 72px;
  text-align: center;
  z-index: 3;
}

.about-container__title {
  position: relative;
  margin-bottom: 36px;
  z-index: 2;
}

.about-container__text {
  font-size: 18.113px;
  font-style: normal;
  line-height: 180%; /* 32.603px */
  text-transform: uppercase;
  margin-bottom: 36px;
}

.about-container__img {
  margin: 0 auto;
  width: 232px;
}

.about-container__img img {
  width: 100%;
}

.about-container__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.about-container__bg._mob {
  display: none;
}

.about-container__bg svg {
  width: 100%;
  height: auto;
}

.title-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
}

.title-common._small {
  gap: 28px;
}

.title-common._big {
}

.title-common span {
  position: relative;
  display: block;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -1.28px;
  text-transform: uppercase;
  -webkit-text-stroke-width: 6.87px;
  -webkit-text-stroke-color: #000;
  z-index: 1;
}

.title-common span > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  -webkit-text-stroke-width: 20.76px;
  -webkit-text-stroke-color: #fff;
  z-index: -1;
}

.why {
  position: relative;
  z-index: 1;
  margin-top: -130px;
  padding-top: 290px;
  padding-bottom: 445px;
}

.common-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  opacity: 0.42;
  z-index: -1;
  pointer-events: none;
}

.common-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.common-wrap {
  position: relative;
  width: 1174px;
  margin: 0 auto;
  z-index: 1;
}

.common-container {
}

.common-container__title {
}

.common-container__content {
}

.why-itemslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 128px;
  width: 1232px;
  margin: 0 auto;
  margin-top: 80px;
}

.why-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.why-item__images {
  position: relative;
  width: 582px;
}

.why-item__bg {
}

.why-item__bg img {
  width: 100%;
}

.why-item__pic {
  position: absolute;
  left: 34px;
  bottom: 26px;
  width: 528px;
  height: 304px;
  z-index: 1;
}

img.why-item__pic-bg {
  width: 100%;
  position: relative;
  z-index: 1;
}

img.why-item__pic-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 97%;
  height: 97%;
  -o-object-fit: cover;
  object-fit: cover;
}

.why-item__whisker {
  position: absolute;
  left: -10px;
  bottom: -72px;
  z-index: 2;
}

.why-item__whisker img {
  width: 100%;
  height: auto;
}

.why-item__info {
  width: calc(100% - 582px);
  padding-left: 90px;
  padding-top: 113px;
}

.why-item__info-title {
  position: relative;
  margin-bottom: 42px;
}

.why-item__info-title span {
  display: block;
  color: var(--color-red);
  font-size: 36px;
  line-height: 114%; /* 41.04px */
  letter-spacing: -1.8px;
  text-transform: uppercase;
}

.why-item__info-title svg {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 8px;
}

.why-item__info-text {
  font-size: 22px;
  line-height: 180%; /* 39.6px */
  text-transform: uppercase;
}

.videosect {
  position: relative;
  width: 2073px;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.videosect__bg {
  width: 100%;
}

.videosect__bg img {
  width: 100%;
}

.videosect__video {
  position: absolute;
  top: 273px;
  left: 0;
  right: 0;
  margin: auto;
  width: 948px;
  height: 531px;
  z-index: 2;
}

.videosect__video iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.videosect__button {
  position: absolute;
  bottom: 188px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.subscribe {
  position: relative;
  z-index: 1;
}

.subscribe-bg {
  position: relative;
  z-index: -1;
}

.subscribe-bg img {
  width: 100%;
}

.subscribe-pawslist {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  pointer-events: none;
}

img.subscribe-paw {
  position: absolute;
}

img.subscribe-paw._first {
  width: 406px;
  top: -89px;
  right: 96px;
}

img.subscribe-paw._second {
  width: 371px;
  top: -58px;
  right: -130px;
}

img.subscribe-paw._third {
  width: 658px;
  bottom: -141px;
  left: -245px;
}

img.subscribe-paw._fourth {
  width: 417px;
  bottom: -134px;
  left: 44px;
}

.subscribe-form-wrap {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 1000px;
  top: 82px;
  z-index: 3;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

section.subscribe {
  position: relative;
  text-align: center;
}

h2.subscribe-title {
  position: relative;
  font-size: 56px;
  letter-spacing: -1.12px;
  line-height: normal;
  margin-bottom: 8px;
  -webkit-text-stroke-width: 3.16px;
}

._thanks .subscribe-form-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.subscribe-form-thanks {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

._thanks .subscribe-form-thanks {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.subscribe-form-thanks__title {
  font-size: 112.251px;
  line-height: 86%;
  letter-spacing: -5.613px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.subscribe-form-thanks__text {
  width: 444px;
  margin: 0 auto;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -2.4px;
  text-transform: uppercase;
}

form.subscribe-form {
}

.subscribe-field {
  position: relative;
  width: 627px;
  margin: 0 auto;
  margin-bottom: 48px;
}

input.subscribe-field__input {
  text-align: center;
  height: 85px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  font-size: 36.313px;
  letter-spacing: -1.816px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  /* opacity: 0.21; */
}

input.subscribe-field__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.44);
}

input.subscribe-field__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.44);
}

input.subscribe-field__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.44);
}

input.subscribe-field__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.44);
}

input.subscribe-field__input::placeholder {
  color: rgba(0, 0, 0, 0.44);
}

img.subscribe-field__line {
  width: 100%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  opacity: 0.21;
  margin-top: -20px;
  pointer-events: none;
}

.val input.subscribe-field__input,
.val .subscribe-field__line,
input.subscribe-field__input:hover ~ .subscribe-field__line {
  opacity: 1;
}

.subscribe-field label.error {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
}

.error > input.subscribe-field__input {
  color: var(--color-red) !important;
}

.subscribe-field__button {
  padding: 0;
  margin: 0;
  border: 0;
  background: initial;
  position: absolute;
  top: 9px;
  right: -18px;
  margin: auto;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.subscribe-field__button:hover {
  -webkit-transform: scale(1.12);
  -ms-transform: scale(1.12);
  transform: scale(1.12);
}

.subscribe-field__button > svg {
  width: 100%;
  height: auto;
}

.button-ico._discord-ico {
  margin-right: 0;
  width: 94px;
  margin-left: 8px;
}

.modal-wrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 470px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.modal__cross {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 41px;
  cursor: pointer;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.modal__cross:hover {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.modal__cross svg {
  width: 100%;
  height: auto;
}

.modal__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.modal__fill svg {
  width: 100%;
  height: auto;
}

.modal__container {
  padding: 45px 22px 50px;
  text-align: center;
}

.modal__pic {
  width: 297px;
  margin: 0 auto;
}

.modal__pic img {
  width: 100%;
}

.modal__title {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 151%;
  text-transform: uppercase;
  letter-spacing: -1.8px;
  margin-bottom: 32px;
}

.modal__title span {
  position: relative;
  color: var(--color-red);
}

.modal__text {
  font-size: 22px;
  /* 30.733px */
  line-height: 180%;
  text-transform: uppercase;
}

.modal__title span svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

.our-terms {
  width: 527px;
  margin: 0 auto;
  color: var(--color-black);
  font-size: 14px;
  line-height: 157%;
  text-transform: uppercase;
}

.our-add {
  margin-bottom: 68px;
}

.our-terms a {
  position: relative;
  color: var(--color-black);
}

.our-terms a:hover {
  opacity: 0.6;
}

.our-terms a svg {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: auto;
}

.common-section {
  position: relative;
  padding-top: 238px;
  padding-bottom: 214px;
  overflow: hidden;
}

.common-container__text {
  font-size: 22px;
  text-align: center;
  line-height: 180%;
  text-transform: uppercase;
  margin-top: 34px;
}

.gallery {
  padding-top: 87px;
}

.gallery__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 32px;
  grid-row-gap: 28px;
  margin-bottom: 103px;
}

.gallery__grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.gallery__grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

img.gallery-item__bg {
  position: relative;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  z-index: 1;
}

img.gallery-item__pic {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 98%;
  height: 98%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.gallery-item:hover img.gallery-item__pic {
  opacity: 0.7;
}

.gallery-item {
  position: relative;
}

.gallery__button {
  text-align: center;
}

.common-line {
  position: absolute;
  bottom: 0;
  width: 2298px;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.common-line img {
  width: 100%;
}

a.hello-container__link {
  display: block;
  margin-top: 10px;
  font-size: 54px;
  line-height: 100%;
  letter-spacing: -2.7px;
  color: var(--color-black);
}
a.hello-container__link span {
  display: inline-block;
  position: relative;
}
a.hello-container__link span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-black);
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a.hello-container__link:hover span:after {
  opacity: 1;
}
.hello-container__socslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 24px;
  margin: 0 auto;
  margin-top: 63px;
}
a.hello-container__soc {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 120px;
  height: 120px;
}
img.hello-container__soc-ico {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 77%;
  height: 77%;
  -o-object-fit: contain;
  object-fit: contain;
}
img.hello-container__soc-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.hello-container__soc:hover img.hello-container__soc-bg {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}

.hello-container__socslist._header {
  margin: 0;
  gap: 8px;
}

._header a.hello-container__soc {
  width: 50px;
  height: 50px;
}

.tip {
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--color-black);
  position: absolute;
  width: 160px;
  display: block;
  left: -56px;
  right: -56px;
  z-index: 2;
  top: -48px;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  padding: 6px;
  background: var(--color-white);
  border-radius: 4px;
  margin: auto;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.copy-button:hover .tip {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.tip::after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -28px;
  border: 20px solid transparent;
  border-top: 20px solid var(--color-white);
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
}

svg.button-dwnld {
  width: 42px;
  margin-left: 20px;
}

.f-panzoom__wrapper {
  max-height: calc(100% - 200px) !important;
}

button.f-button[data-panzoom-action="toggleFull"] {
  display: none;
}

button.f-button[data-autoplay-action="toggle"] {
  display: none;
}

button.f-button[data-fullscreen-action="toggle"] {
  display: none;
}

button.f-button[data-thumbs-action="toggle"] {
  display: none;
}

.title-common._big span {
  font-size: 80px;
  letter-spacing: -1.6px;
}

.footer {
  position: absolute;
  margin-bottom: 130px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.footer-terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 26px;
  font-family: MV-WEEKEND;
  font-size: 22px;
  color: #454545;
}

.footer-terms__title {
}

.footer-terms__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 22px;
}

.footer-terms__links a {
  color: #454545;
}

.footer-flat12 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: MV-WEEKEND;
  font-size: 22px;
  line-height: 110%;
  letter-spacing: -0.45px;
  text-align: center;
  margin-top: 36px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 19px;
  opacity: 0.25;
}

.footer-flat12 span {
}

.footer-flat12 svg {
}

.common-section._socs {
  padding-top: 127px;
  padding-bottom: 370px;
}

.tygydyk {
  pointer-events: none;
}

img.tygydyk-pic {
  position: absolute;
  width: 613px;
  height: 793px;
  bottom: 0;
}

img.tygydyk-pic._left {
  left: 0;
}

img.tygydyk-pic._right {
  right: 0;
}

img.tygydyk-pic._center {
  display: none;
}

h2.subscribe-title span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  -webkit-text-stroke-width: 15.76px;
  -webkit-text-stroke-color: #fff;
  z-index: -1;
}

section.common-section._step {
  padding-top: 192px;
}

.why-item:nth-child(even) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.why-item:nth-child(even) .why-item__info {
  padding-left: 56px;
  padding-right: 44px;
}

.title-common._small span {
  font-size: 43.47px;
  letter-spacing: -0.869px;
  -webkit-text-stroke-width: 3.87px;
}

.title-common._small span > span {
  -webkit-text-stroke-width: 12.87px;
}

.button-transp:hover .button-transp__ico {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.why-item:nth-child(even) .why-item__whisker {
  left: auto;
  right: -36px;
  bottom: -58px;
}

.common-bg-mob {
  display: none;
}

.ghosts-pic {
  position: absolute;
  bottom: -205px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -2;
  pointer-events: none;
}

.ghosts-pic img {
  width: 1606px;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.title-common svg {
  width: 62px;
}

.title-common._small svg {
  width: 42px;
}

@media only screen and (max-width: 1700px) {
  .fs__logo {
    width: 126px;
    height: 126px;
    margin-left: 7px;
    margin-top: -14px;
  }

  .header {
    padding: 18px 28px 18px 157px;
  }

  .header__menu-link {
    font-size: 16px;
    letter-spacing: -0.64px;
  }

  .header__socsmenu {
    margin-right: 48px;
  }

  .fs__video {
  }

  .fs {
    height: 615px;
    margin-bottom: 97px;
  }

  .button-transp__text {
    font-size: 18px;
    letter-spacing: -0.72px;
  }

  span.button-text {
    font-size: 24px;
    letter-spacing: -1.2px;
  }

  svg.button-ico {
    width: 44px;
  }

  svg.button-bg {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    -ms-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }

  .fs__watch {
    margin-bottom: 35px;
  }

  .fs__button {
    top: calc(100%);
  }

  .about-container {
    top: 122px;
    left: 104px;
    width: 644px;
    padding: 62px;
  }

  .title-common._small span {
    font-size: 36px;
    letter-spacing: -0.72px;
  }

  .title-common._small {
    gap: 22px;
  }

  .title-common._small svg {
    width: 35px;
  }

  .why {
    margin-top: 33px;
    padding-top: 82px;
  }

  .title-common span {
    font-size: 56px;
    letter-spacing: -1.12px;
  }

  .why-itemslist {
    margin-top: 74px;
    gap: 107px;
    width: 1084px;
  }

  .why-item__images {
    width: 507px;
  }

  .why-item__whisker {
    width: 232px;
    bottom: -54px;
  }

  .why-item__info {
    width: calc(100% - 507px);
    padding-left: 75px;
    padding-top: 98px;
  }

  .why-item__pic {
    left: 28px;
    bottom: 25px;
    width: 466px;
    height: 264px;
  }

  .why-item:nth-child(3) .why-item__whisker {
    width: 152px;
  }

  .why-item__info-title span {
    font-size: 32px;
    letter-spacing: -1.6px;
  }

  .why-item__info-text {
    font-size: 20px;
  }

  .videosect__button {
    bottom: 242px;
  }

  h2.subscribe-title {
  }

  .subscribe-bg img {
    width: 2007px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  img.subscribe-paw._first {
    width: 277px;
    top: -70px;
    right: 14px;
  }

  img.subscribe-paw._second {
    width: 278px;
    top: 90px;
    right: -120px;
  }

  img.subscribe-paw._third {
    width: 547px;
    bottom: -102px;
    left: -219px;
  }

  img.subscribe-paw._fourth {
    width: 322px;
    bottom: -103px;
    left: 2px;
  }

  section.common-section._step {
    padding-top: 122px;
    padding-bottom: 184px;
  }

  .gallery {
    padding-top: 48px;
  }

  .gallery__grid {
    margin-bottom: 80px;
  }

  .common-section._socs {
    padding-top: 80px;
    padding-bottom: 282px;
  }

  .title-common._big span {
    font-size: 64px;
    letter-spacing: -1.28px;
  }

  .common-container__text {
    margin-top: 24px;
  }

  .hello-container__socslist {
    margin-top: 32px;
  }

  a.hello-container__soc {
    width: 102px;
    height: 102px;
  }

  img.tygydyk-pic._left {
    /* width: 378px; */
    /* height: 489px; */
    width: 394px;
    height: 487px;
  }

  img.tygydyk-pic._right {
    width: 378px;
    height: 489px;
  }

  .about-container__img {
  }

  .about-container__text {
    margin-bottom: 49px;
  }
}

@media only screen and (max-width: 1024px) {
  .fs__video {
    width: 2102px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .fs {
    height: 834px;
    margin-bottom: 180px;
  }

  .header__menu {
    display: none;
  }

  .header__socs {
    display: none;
  }

  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .button-transp__text {
    font-size: 24px;
    letter-spacing: -0.96px;
  }

  .fs__watch {
    margin-bottom: 12px;
  }

  .fs__button {
    top: calc(100% + 34px);
  }

  .about-pic img {
    width: 1711px;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .about-container {
    left: 0;
    right: 0;
    margin: auto;
  }

  .title-common span {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .common-wrap {
    width: 640px;
  }

  .why-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .why-itemslist {
    margin-top: 74px;
    gap: 32px;
    width: 580px;
  }

  .why-item__info {
    width: 100%;
    padding: 0 !important;
  }

  .why-item__images {
    margin-bottom: 95px;
    width: 582px;
  }

  .why-item__pic {
    left: 33px;
    bottom: 30px;
    width: 534px;
    height: 301px;
  }

  .why-item__whisker {
    width: 267px;
    bottom: 0px;
  }

  .why-item__info-title span {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .why-item__info-text {
    font-size: 22px;
  }

  .videosect__bg img {
  }

  .videosect {
    width: 1128px;
    padding-bottom: 30px;
  }

  .videosect__video {
    width: 523px;
    height: 293px;
    top: 147px;
  }

  .videosect__bg {
    margin-left: -10px;
  }

  .videosect__button {
    bottom: 122px;
  }

  h2.subscribe-title {
    font-size: 40px;
    letter-spacing: -0.8px;
  }

  .subscribe-pawslist {
    display: none;
  }

  .subscribe-form-wrap {
    width: 540px;
    top: 65px;
  }

  .subscribe-field {
    width: 100%;
  }

  .subscribe-bg img {
    width: 1700px;
  }

  .title-common {
    gap: 15px;
  }

  section.common-section._step {
    padding-top: 80px;
    padding-bottom: 184px;
  }

  .common-container__text {
    font-size: 18px;
  }

  .gallery__grid {
    margin-bottom: 66px;
    grid-column-gap: 17px;
    grid-row-gap: 15px;
  }

  .title-common._big span {
    font-size: 48px;
    letter-spacing: -0.96px;
  }

  a.hello-container__soc {
    width: 84px;
    height: 84px;
  }

  .hello-container__socslist {
    margin-top: 24px;
    gap: 16px;
  }

  .common-section._socs {
    padding-top: 56px;
    padding-bottom: 524px;
  }

  .footer {
    margin-bottom: 406px;
  }

  img.tygydyk-pic._center {
    display: block;
    width: 100%;
    height: auto;
  }

  img.tygydyk-pic {
    display: none;
  }

  .footer-flat12 {
    margin-top: 24px;
  }

  a.button.button-join svg.button-bg {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .pp-hello-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

  img.pp-hello-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 186px);
    bottom: auto;
    margin: auto;
    width: 100%;
  }

  img.pp-hello-cats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 284px;
  }
}

@media only screen and (max-width: 767px) {
  .fs__video {
    width: 1100px;
    height: auto;
  }

  .fs {
    height: 462px;
    margin-bottom: 105px;
  }

  .button-transp__text {
    font-size: 15px;
    letter-spacing: -0.6px;
  }

  .button-transp {
    gap: 12px;
  }

  .fs__watch {
    margin-bottom: 8px;
  }

  .fs__button {
    top: calc(100% + 22px);
  }

  span.button-text {
    font-size: 18px;
    letter-spacing: -0.9px;
  }

  svg.button-ico {
    margin-right: 10px;
    width: 32px;
  }

  svg.button-bg {
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    -ms-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
  }

  .about-container {
    width: 325px;
    padding: 22px 28px;
    top: 107px;
  }

  .title-common._small span {
    font-size: 19px;
    letter-spacing: -0.38px;
  }

  .title-common._small svg {
    width: 28px;
  }

  .about-container__text {
    font-size: 12px;
  }

  .about-container__title {
    margin-bottom: 18px;
  }

  .title-common._small {
    gap: 15px;
  }

  .about-container__text {
    margin-bottom: 14px;
  }

  .about-container__img {
    width: 148px;
    margin: 0 auto;
  }

  .about-pic img {
    width: 1060px;
  }

  .title-common span {
    font-size: 22px;
    letter-spacing: -0.44px;
  }

  .common-wrap {
    width: 91%;
  }

  .why-itemslist {
    width: 90%;
    margin-top: 24px;
  }

  .why-item__images {
    margin-bottom: 55px;
    width: 342px;
  }

  .why-item__pic {
    width: 310px;
    height: 175px;
    left: 20px;
    bottom: 17px;
  }

  .why-item__whisker {
    width: 148px;
    bottom: -32px;
  }

  .why-item__info-title span {
    font-size: 20px;
    letter-spacing: -1px;
  }

  .why-item__info-title svg {
    height: 5px;
    bottom: -15px;
  }

  .why-item__info-text {
    font-size: 13px;
  }

  .why-item__info-title {
    margin-bottom: 26px;
  }

  .why-item:nth-child(even) .why-item__whisker {
    right: 1px;
    bottom: -28px;
  }

  .why-item:nth-child(3) .why-item__whisker {
    width: 102px;
  }

  .why {
    padding-bottom: 149px;
  }

  .videosect {
    width: 610px;
  }

  .videosect__video {
    width: 275px;
    height: 154px;
    top: 81px;
  }

  .videosect__button {
    bottom: 60px;
  }

  .subscribe-form-wrap {
    width: 91%;
    top: 58px;
  }

  h2.subscribe-title {
    font-size: 28px;
    letter-spacing: -0.56px;
    line-height: 180%;
  }

  .subscribe-field {
    width: 78%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 25px;
  }

  .our-terms {
    width: 100%;
    font-size: 10px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .our-terms br {
    display: none;
  }

  input.subscribe-field__input {
    font-size: 20px;
    height: 52px;
  }

  .subscribe-form fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .our-add {
    margin-bottom: 0;
    margin-top: 48px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .subscribe-bg img {
    width: 1400px;
  }

  .common-container__title {
  }

  .title-common {
    width: 116%;
    margin-left: -8%;
  }

  .title-common svg {
    width: 26px;
  }

  section.common-section._step {
    padding-top: 40px;
    padding-bottom: 130px;
  }

  .common-container__text {
    font-size: 12px;
  }

  .common-container__text br {
    display: none;
  }

  .gallery__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }

  svg.button-dwnld {
    width: 22px;
    margin-left: 10px;
  }

  .title-common._big span {
    font-size: 22px;
  }

  .common-section._socs {
    padding-top: 28px;
    padding-bottom: 333px;
  }

  a.hello-container__soc {
    width: 60px;
    height: 60px;
  }

  .hello-container__socslist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 11px;
  }

  .footer-terms {
    display: block;
    font-size: 18px;
  }

  .footer-terms__title {
    text-align: center;
    margin-bottom: 8px;
  }

  .footer-terms__links {
    gap: 16px;
  }

  .footer {
    margin-bottom: 206px;
  }

  .about-container__bg._mob {
    display: block;
  }

  .why .common-bg img {
    display: none;
  }

  .common-bg img.common-bg-mob {
    display: block;
  }

  a.button.button-join svg.button-bg {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .button.button-join {
    margin-right: 0;
  }

}

