* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}
:root {
  --main-bg-color: #f9f9f9;
  --white-text: #f9f9f9;
  --text-color: #2f2f2f;
  --text-muted: #686868;
  --box-shadow: #eff2fa;
  --accent-color: #002865;
  --accent-light: #0060de;
}

@font-face {
  font-family: Jura;
  src: url(/assets/fonts/Jura/Jura-Regular.ttf);
}

@font-face {
  font-family: JuraBold;
  src: url(/assets/fonts/Jura/Jura-Bold.ttf);
}

@font-face {
  font-family: TTCommons;
  src: url(/assets/fonts/Commons/TT-Commons-Pro-Regular.ttf);
}

@font-face {
  font-family: TTCommonsBold;
  src: url(/assets/fonts/Commons/TT-Commons-Pro-Bold.ttf);
}

a {
  text-decoration: none;
  color: var(--text-color);
}

img {
  -webkit-user-drag: none;
}

h4 {
  text-transform: uppercase;
  color: var(--accent-color);
  font-size: 40px;
  font-weight: normal;
}

body {
  background-color: var(--main-bg-color);
  font-family: TTCommons, sans-serif;
  color: var(--text-color);
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

header {
  position: fixed;
  z-index: 2;
  top: 24px;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 14px 30px;
  border-radius: 54px;
  background-color: var(--main-bg-color);
  box-shadow: 0px 1px 5px 1px var(--box-shadow);
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  /* width: 17%; */
}

.logo img {
  /* width: 100%; */
}

.scroll-bg {
  opacity: 0;
  /* width: 20%; */
  transition: opacity 0.3s ease;
  z-index: -1;
}

.menu-icon {
  /* background-color: #fff; */
  border: none;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background: #fff url(/assets/img/menu.svg) no-repeat center / 50% 50%;
  /* background-size: 50%; */
  transition: background-image 0.3s ease;
}

.menu-icon.opened {
  background: #fff url(/assets/img/close-menu.svg) no-repeat center / 40% 40%;
}

.menu-icon.hide,
.menu-icon.hide img {
  width: 0;
  height: 0;
}

.menu-nav {
  background-color: #fff;
  border-radius: 54px;
  width: 290px;
  padding: 25px 20px;
  display: grid;
  gap: 20px;
  transition: all 0.5s;
  position: unset;
}

.menu-nav.closed {
  position: absolute;
  top: 0;
  right: -100%;
  transform: translateX(100%);
}

.menu-nav a {
  color: var(--accent-color);
  font-size: 24px;
  justify-self: flex-end;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.menu-nav a:hover,
.footer-link:hover {
  border-bottom: 2px solid var(--accent-color);
}

.btn-more {
  background-color: transparent;
  color: var(--accent-light);
  border: 2px solid var(--accent-light);
  border-radius: 48px;
  font-size: 24px;
  font-weight: bold;
  padding: 21px 106px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  font-family: JuraBold, sans-serif;
}

.btn-more.tech {
  justify-self: center;
}

.btn-more:hover {
  background-color: var(--accent-light);
  color: #fff;
}

#content {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto 90px;
  overflow: hidden;
}

.block-title {
  font-family: JuraBold, sans-serif;
  font-size: 48px;
  flex-shrink: 0;
}

.btn-white {
  background-color: #fff;
  border: 2px solid var(--accent-light);
  border-radius: 24px;
  color: var(--accent-light);
  transition: all 0.3s;
  cursor: pointer;
  font-size: 24px;
  font-family: JuraBold, sans-serif;
  display: inline-block;
}

.where-buy {
  padding: 21px 129px;
  border-radius: 48px;
  border: none;
}

.btn-white:hover {
  background-color: var(--accent-light);
  color: #fff;
}

#footer {
  background-color: #fff;
  border-top-left-radius: 58px;
  border-top-right-radius: 58px;
  padding: 40px;
}

.footer-logo {
  display: block;
  margin-bottom: 24px;
  /* width: 17%; */
}

.footer-logo img {
  /* width: 100%; */
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-menu-links {
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-link {
  font-size: 24px;
  color: var(--accent-color);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.age-access {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.age-access-txt {
  font-size: 12px;
  color: var(--accent-color);
}

.social-links {
  display: flex;
  justify-content: center;
}

.social-links a {
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

@media (max-width: 1900px) {
  .menu-icon {
    width: 56px;
    height: 56px;
  }

  .logo,
  .footer-logo {
    width: 17%;
  }

  .logo img,
  .footer-logo img {
    width: 100%;
  }
}

@media (min-width: 912px) and (max-width: 1300px) {
  .btn-more {
    font-size: 2vw;
    padding: 1vw 5.52vw;
  }

  .block-title {
    font-size: 32px;
  }

  .technology-box-item img {
    width: 45%;
  }

  .technology-box-item p {
    font-size: 18px;
  }
}

@media (max-width: 911px) {
  h4 {
    font-size: 6.6vw;
  }

  header {
    padding: 12px 14px 12px 18px;
    top: 10px;
    left: 5px;
    right: 5px;
    border-radius: 38px;
  }

  header.grid {
    display: flex;
    flex-direction: column;
  }

  .logo {
    width: auto;
  }

  .logo img {
    width: 73%;
  }

  .menu-icon {
    width: 56px;
    height: 56px;
  }

  .menu-icon img {
    width: 26px;
  }

  .menu-nav {
    width: 80%;
    margin: 11vw auto;

    border-radius: 13vw;
    padding: 14.7vw 4.8vw;
    gap: 6.1vw;
  }

  .menu-nav.closed {
    position: absolute;
    top: 0;
    right: -100%;
    transform: translateX(100%);
  }

  .menu-nav a {
    font-size: 6.1vw;
  }

  .btn-more {
    font-size: 6.1vw;
    padding: 5vw 8vw;
    border-radius: 12vw;
  }

  .where-buy {
    border-radius: 8.6vw;
  }

  .block-title {
    font-size: 8.14vw;
  }

  #footer {
    display: grid;
    justify-items: center;
    padding: 54px 10px 80px;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
    width: auto;
  }

  .footer-logo img {
    width: 73%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-menu-links {
    justify-content: center;
    margin-bottom: 40px;
  }

  .social-links a {
    max-width: 45%;
  }

  .social-links img {
    width: 100%;
  }

  .age-access {
    max-width: 90%;
    align-items: flex-start;
  }
}

@media (max-width: 910px) and (orientation: landscape) {
  .menu-nav {
    border-radius: 54px;
    width: 240px;
    padding: 25px 20px;
    gap: 4px;
    margin: 0 0 0 auto;
  }
  .menu-nav a {
    font-size: 20px;
  }
}

@media (hover: none) {
  .menu-nav a:hover,
  .footer-link:hover {
    border-bottom: 2px solid transparent;
  }

  .btn-white:hover {
    background-color: #fff;
    color: var(--accent-light);
  }

  .btn-more:hover {
    background-color: transparent;
    color: var(--accent-light);
  }
}