@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&display=swap");
:root {
  --bg-body: rgb(33, 34, 34);
  --bg-green: rgb(104, 255, 183);

  --bg-vector: rgb(255, 251, 158);
  --bg-decor: rgba(33, 34, 34, 0.75);
  --bg-decor-border: rgba(255, 255, 255, 0.5);

  --color-white: rgb(234, 234, 234);
  --color-full-white: rgb(255, 255, 255);

  /* custom text color */

  --color-grey: rgb(144, 144, 144);
  --color-green: rgb(104, 255, 183);
  --color-yellow: rgb(255, 251, 158);
  --color-blue: rgb(178, 158, 255);
  --color-lightly-red: rgb(255, 104, 104);
  --color-dark-red: rgb(255, 54, 54);

  /* ---------------- */

  /* gradient bolls color */

  --gradient-green: radial-gradient(
    50% 50% at 50% 50%,
    rgb(26, 73, 48),
    rgba(26, 73, 48, 0) 100%
  );
  --gradient-yellow: radial-gradient(
    50% 50% at 50% 50%,
    rgb(66, 67, 42),
    rgba(66, 67, 42, 0) 100%
  );
  --gradient-blue: radial-gradient(
    50% 50% at 50% 50%,
    rgb(57, 52, 80) 0%,
    rgba(57, 52, 80, 0.6) 60%,
    rgba(45, 41, 65, 0.3) 80%,
    rgba(57, 52, 80, 0) 100%
  );
  --gradient-red: radial-gradient(
    50% 50% at 50% 50%,
    rgb(73, 26, 26),
    rgba(73, 26, 26, 0) 100%
  );

  /* -------------------- */

  --font-play: "Play", sans-serif;

  --font-size-very-big: 48px;
  --font-size-big: 32px;
  --font-size-mid: 24px;
  --font-size-little: 14px;
  --font-size-text: 20px;
  --font-size-qr: 80%;

  --font-weight-light: 400;
  --font-weight-bold: 700;

  --radius: 20px;
  --box-radius: 55px;
  --rounded-radius: 50%;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: transparent;
  text-decoration: none;
}

/* size */
.max-1200 {
  max-width: 1200px;
  width: 96%;
}
.max-750 {
  max-width: 750px;
  width: 96%;
}
.w100 {
  width: 100%;
}
/* flex */
.center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.center-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.beetween-start {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.evenly-center {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.beetween-left-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.row-beetween {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
/* size */
.mt75 {
  margin-top: 80px;
}
.mb175 {
  margin-bottom: 175px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb25 {
  margin-bottom: 25px;
}
.gap15 {
  gap: 15px;
}

html {
  overflow-x: hidden;
}
body {
  background-color: var(--bg-body);
  overflow-y: hidden;
  overflow-x: hidden;
}

.lock-scroll {
  overflow: hidden;
}

section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* header */

header {
  height: 78px;
  gap: 20px;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 62px;
}
.logo img {
  height: 100%;
}
.logoTitle {
  color: var(--color-white);
  font-family: var(--font-play);
  font-size: var(--font-size-big);
  line-height: 35px;
  letter-spacing: -0.49px;
  font-weight: 400;
}
.logoTel {
  display: block;
}
.nav-menu-mobile {
  display: contents;
}
.cont-filter-black {
  display: none;
}
/* nav */
nav {
  width: 100%;
  max-width: 468px;
}
nav .link {
  color: var(--color-white);
  font-family: var(--font-play);
  font-size: var(--font-size-mid);
  font-weight: 400;
  letter-spacing: -0.49px;
  transform: all 0.3s;
}
.link-c {
  position: relative;
}

.active-decor {
  transition: all 0.3s;
  position: absolute;
  top: 10%;
  height: 100%;
  width: 160%;
  left: -30%;
  z-index: 2;
  filter: blur(10px);
}
.link-c:hover .active-decor {
  background-color: rgba(26, 73, 48, 1);
  width: 140%;
  left: -20%;
}

nav .link-active .active-decor {
  background-color: rgba(26, 73, 48, 0.8);
}

.link-c:hover .link {
  position: relative;
  text-decoration: underline;
  color: var(--bg-green);
  background-color: transparent;
  z-index: 3;
}

nav .link.active {
  position: relative;
  text-decoration: underline;
  color: var(--bg-green);
  background-color: transparent;
  z-index: 3;
}

/* download */

.a-download-c {
  position: relative;
  height: 56px;
  transform: translateY(14px);
}

.a-download-c:hover .a-download-dec {
  width: 160%;
  height: 430%;
  transform: translate(-19%, -47%);
}
.a-download-dec {
  position: absolute;

  width: 130%;
  height: 300%;

  transform: translate(-10%, -35%);
  transition: all 0.3s;
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgb(26, 73, 48),
    rgba(26, 73, 48, 0) 100%
  );
  border-radius: 30px;
}

.a-download {
  position: relative;
  z-index: 2;
  padding: 14px 52px;
  color: var(--bg-body);
  font-family: var(--font-play);
  font-size: var(--font-size-mid);
  font-weight: 400;
  border-radius: 30px;
  background: var(--bg-green);
}

/* footer */
footer {
  padding-bottom: 50px;
}

.footer-left-cont {
  margin: 25px 0 50px 0;
}
.right-footer {
  width: auto;
  gap: 14px;
}

/* text */

.title {
  color: var(--color-full-white);
  font-family: var(--font-play);
  font-size: var(--font-size-very-big);
  font-weight: var(--font-weight-light);
  position: relative;
  z-index: 99;
}

.text {
  position: relative;
  z-index: 99;
  color: var(--color-full-white);
  font-family: var(--font-play);
  font-size: var(--font-size-text);
  font-weight: var(--font-weight-light);
}

/* header burger menu */
.icon {
  display: none;
  width: 45px;
  height: 35px;
  position: relative;
  cursor: pointer;
  min-width: 45px;
  z-index: 999;
}

.icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 9px;
  left: 0;

  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.icon span:nth-child(1) {
  top: 0px;
}
.icon span:nth-child(2),
.icon span:nth-child(3) {
  top: 13px;
}
.icon span:nth-child(4) {
  top: 26px;
}

.menu-open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.menu-open span:nth-child(2) {
  transform: rotate(45deg);
}
.menu-open span:nth-child(3) {
  transform: rotate(-45deg);
}
.menu-open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* Скрываю бургер меню */
.hamburger-menu {
  display: none;
}

@media screen and (max-width: 1000px) {
  :root {
    --font-size-very-big: 40px;
    --font-size-mid: 20px;
    --font-size-text: 16px;
    --font-size-qr: 65%;
  }
  /* header .link-c {
    font-size: var(--font-size-mid);
  }  */
}

/* ----------- */

@media screen and (max-width: 800px) {
  :root {
    --font-size-very-big: 48px;
    --font-size-big: 32px;
    --font-size-mid: 24px;
    --font-size-little: 14px;
    --font-size-text: 20px;
    --font-size-qr: 85%;
  }
  .max-1200 {
    width: 92%;
  }
  .icon {
    display: block;
  }
  body {
    margin-top: 70px;
  }
  header {
    position: fixed;
    top: 0;
    width: 92%;
    left: 0;
    padding: 0 4%;
    z-index: 100;
    background: var(--bg-body);
  }
  header .logo img {
    height: 40px;
  }
  header .logoTitle {
    font-size: 19px;
    line-height: normal;
  }

  /* .nav-menu-mobile */

  .cont-filter-black {
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    width: 30vw;
    right: -30vw;
    background-color: rgba(33, 34, 34, 0.5);
  }
  .nav-menu-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: -200vw;
    top: 0;
    bottom: 0;
    padding: 25px 0;
    border-right: 1px solid var(--bg-green);
    width: calc(70vw - 1px);
    background-color: rgb(33, 34, 34);
    z-index: 100;
    transition: all 0.45s;
    min-width: 220px;
  }
  .nav-menu-mobile.menu-open {
    left: 0;
  }
  .nav-menu-mobile nav {
    flex-direction: column;
    gap: 25px;
  }

  /* footer */
  footer {
    position: relative;
    padding-bottom: 200px;
  }
  footer.beetween-start {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  footer .left-column {
    align-items: center;
    gap: 15px;
  }

  footer .logo {
    justify-content: center;
  }

  footer .logoTitle {
    font-size: 32px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .footer-left-cont {
    max-width: 90vw;
  }
  .footer-left-cont a,
  .footer-left-cont h1 {
    text-align: center;
    font-size: var(--font-size-mid);
  }

  .left-footer .a-download-c {
    position: absolute;
    bottom: 80px;
  }

  footer .link-c {
    font-size: var(--font-size-big);
  }

  footer .a-download {
    font-size: var(--font-size-big);
  }
}

@media screen and (max-width: 540px) {
  :root {
    --font-size-qr: 2.4vw;
  }
}
