html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.text-other-bold {
  font-weight: 600;
  font-size: 20px;
}

.header {
  padding: 10px 0;
  background-color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header img {
  width: 200px;
  height: auto;
}

.off {
  text-decoration: none;
  color: inherit;
}

.non-auth {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  margin-bottom: 14%;
  text-align: center;
}

.auth-btn a {
  padding: 0;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}

.nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav-list li {
  position: relative;
  cursor: pointer;
  color: black;
  font-weight: 500;
  font-size: 16px;
}

.nav-list li:hover {
  color: #D40948;
}

.nav-list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #D40948;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-list li:hover::after {
  transform: scaleX(1);
}

.burger {
  display: none;
}
.burger span {
  background-color: black;
  cursor: pointer;
  width: 30px;
  height: 4px;
  margin: 3px;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.title__wrapper {
  position: absolute;
  top: 18%;
  left: 2%;
  width: 50%;
}
.title__text {
  padding: 2rem;
  backdrop-filter: blur(30px);
  box-shadow: 7px 7px 10px 0 rgba(49, 49, 49, 0.1490196078);
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.7);
}
.title__child {
  position: absolute;
  top: 55%;
  left: 31%;
  width: 14%;
  z-index: 1;
}
.title__cloud {
  position: absolute;
  top: 85%;
  left: 0;
  z-index: 2;
}
.title__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 0;
  margin-top: 1rem;
  position: relative;
  z-index: 5;
}
.title__products a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.videos {
  margin-bottom: 2%;
}
.videos__cloud {
  margin-top: -200px;
  position: relative;
  z-index: 2;
}

.game .mt {
  margin-top: -15%;
}

.podcast {
  background: url("assets/cloud-green.png") top/100% auto no-repeat;
  margin-bottom: 10%;
}
.podcast__video {
  width: 80%;
  aspect-ratio: 16/9;
}

.footer {
  background-color: #39A8E4;
  padding-bottom: 6% !important;
}
.footer__cloud {
  margin-top: -10%;
}
.footer__product {
  width: 80%;
  padding: 1rem;
  border-radius: 24px;
  background-color: #DFE4E8;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.1019607843));
}
.footer__img {
  position: relative;
  top: -35%;
  left: -10%;
}

@media (max-width: 1399px) {
  .title .h1 {
    font-size: 2.4rem !important;
  }
  .title .fz-md {
    font-size: 1rem !important;
  }
  .title .fz-xl {
    font-size: 1.4rem !important;
  }
}
@media (max-width: 1199px) {
  .title__wrapper {
    top: 10%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 50px;
    right: 40px;
    background-color: white;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 10;
  }
  .nav-list.active {
    display: block;
  }
  .burger {
    display: flex;
    flex-direction: column;
  }
  .title__wrapper {
    top: 2%;
    left: 3%;
  }
  .footer__img {
    top: -20%;
    left: -15%;
  }
}
@media (max-width: 767px) {
  .title__wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 2rem;
  }
  .title__products {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3rem;
  }
  .podcast__video {
    width: 100%;
  }
  .podcast .img--md {
    max-width: 180px !important;
  }
  .footer__img {
    top: 0;
    left: 0;
  }
  .footer .img--md {
    max-width: 180px !important;
  }
}
@media (max-width: 600px) {
  .podcast {
    margin-bottom: 19%;
  }
  .footer__cloud {
    margin-top: -19%;
  }
}

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