* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.header {
  background: #fff;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  padding: 10px 0;
}

.header__action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header__action__logo {
  width: 15%;
}

.header__action__access {
  display: flex;
  width: 25%;
}

.header__branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.header__branding__img {
  position: relative;
}

.header__branding__img::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -9%;
  width: 1px;
  height: 50px;
  background: #14a0d5;
}

.header__branding__img:first-child:before {
  display: none;
}

.nav {
  background: #14a0d5;
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
}

.nav__item {
  width: 100%;
}

.nav__item__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  gap: 12px;
}

.nav__item:first-child .nav__item__link {
  color: #36e1f1;
}

.nav__item__link:hover {
  color: #36e1f1;
}

.main {}

.main__banner {
  display: flex;
  align-items: flex-end;
  background: url(./images/bg-banner.webp);
  background-size: 100% 100%;
  gap: 15px;
  position: relative;
}

.main__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(59, 181, 252, 0.753);
  z-index: 1;
}

.main__banner>* {
  position: relative;
  z-index: 2;
}

.main__banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.main__banner__content__title {
  width: 100%;
}

.main__banner__content a {
  margin-top: -20px;
}

.main__banner__girl {
  width: 27%;
  height: 100%;
}

.main__notice {
  display: flex;
  background: #0f7ba4;
}

.main__notice__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
}

.main__notice__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 15%;
  box-shadow: 15px 0px 18px rgba(0, 0, 0, 0.3);
}

.main__notice__title img {
  width: 12%;
}

.main__notice__title p {
  margin-left: 8px;
  color: #36e1f1;
}

.main__notice__content {
  display: flex;
  padding: 8px 0;
  color: #fff;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: url(./images/bg-footer.webp);
  background-size: 100% 100%;
  gap: 15px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.6) 5%,
      rgba(59, 181, 252, 0.9) 100%);
  z-index: 1;
}

.footer>* {
  z-index: 2;
}

.footer__container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 0;
}

.footer__content__left {
  display: flex;
  width: 40%;
}

.footer__content__right {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 10px;
}

.footer__content__right__player {
  width: 47%;
}

.footer__content__right__video {
  border-radius: 8px;
  flex: 1;
  display: flex;
  border: 3px #88dbff solid;
}

.footer__content__right__video video {
  width: 100%;
  display: flex;
  border-radius: 8px;
}

.footer__container__menu {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  padding: 10px 0 40px;
}

.main__banner__girl--mb {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__action__logo {
    width: 30%;
  }

  .header__action__access {
    width: 45%;
  }

  .header__container {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .header__action {
    width: 100%;
    gap: 10px;
  }

  .header__branding {
    gap: 10px;
  }

  .header__branding__img::before {
    height: 35px;
    left: -5%;
  }

  .nav__list {
    overflow-x: scroll;
  }

  .nav__item__link {
    width: 100%;
    margin: 0 20px;
    gap: 5px;
    display: flex;
  }

  .nav__item__link img {
    height: 18px;
    display: flex;
  }

  .nav__item__link__title {
    font-size: 10px;
  }

  .main__banner {
    flex-direction: column;
    background-size: cover;
    background-position: top center;
    gap: 0;
  }

  .main__banner__content {
    padding: 20px 15px 0px;
    margin-bottom: 0;
  }

  .main__banner__content a {
    margin-top: -8px;
  }

  .main__banner__girl {
    display: none;
  }

  .main__notice__content {
    padding: 6px 0;
  }

  .main__notice__title {
    width: 60%;
    padding: 0 10px;
  }

  .main__notice__title p,
  .main__notice__content p {
    font-size: 12px;
  }

  .main__banner__girl--mb {
    display: block;
  }

  .footer {
    padding: 10px 10px 20px;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(96, 192, 248, 0.9) 40%);
    z-index: 1;
  }

  .footer__container {
    flex-direction: column-reverse;
    padding: 10px 0;
    gap: 10px;
  }

  .footer__content__right__player {
    width: 100%;
  }

  .footer__content__right {
    flex-direction: column;
  }

  .footer__content__left {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .footer__container__menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}