html {
  font-size: 10px;
}
body {
  background-color: #0e0e0e;
  color: #fff;
  height: 100%;
  font-size: 10px;
  line-height: 1.3;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
}

.frame {
  position: fixed;
  width: 150%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #030222;
  z-index: 100;
  transform: translateX(-100%);
  transform-origin: left;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: clip;
  padding-top: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.page-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10rem;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
.page-wrapper > main {
  flex-grow: 1;
}
[class*="__container"] {
  max-width: 123rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.section-title {
  font-size: 4.6rem;
  text-align: center;
}
.section-title--margin {
  margin-bottom: 3rem;
}
/*==========================================================================================*/
/* header */
.header {
  min-height: calc(100svh - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.header--seasons {
  /* padding-bottom: 0 !important; */
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3rem;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.header__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.header__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(14, 14, 14, 0.2);
  z-index: 2;
}
.header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.header__body {
  display: flex;
  column-gap: 6rem;
  flex-grow: 1;
  align-items: flex-start;
}
.menu {
  position: relative;
  z-index: 30;
}
.icon-menu {
}
.menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2.5rem;
  row-gap: 1rem;
  padding: 0 1.5rem;
}

/*=====================================*/
/* .menu__link */
.menu__link {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  transition: color 0.5s;
  padding: 0.5rem;
  position: relative;
  text-transform: capitalize;
}
.menu__link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 0.3rem;
  top: 100%;
  right: 0;
  background-color: #5499a8;
  border-radius: 0.3rem;
  transition: width 0.5s;
}
.menu__link.active {
  color: #85ccdc;
}
.menu__link.active::before {
  width: 100%;
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: #85ccdc;
  }
  .menu__link:hover::before {
    width: 100%;
    right: auto;
    left: 0;
  }
}
/* link */
/*=====================================*/
.logo {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header--seasons .logo {
  flex-grow: 0;
  max-width: 100%;
  padding: 1.5rem 0;
}
.logo img {
  position: absolute;
  max-width: 20rem;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header--seasons .logo img {
  width: 15rem !important;
  height: 10rem;
}
.logo h1 {
  position: relative;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: 2rem;
  padding-left: 2rem;
  background: #fff url("../images/h1-bg.webp") 0 0 / 1920px no-repeat;
  background-clip: text;
  color: transparent;
  animation: text-clip 60s infinite alternate;
  filter: brightness(1.3);
}
.header--seasons .logo h1 {
  letter-spacing: 1rem;
  padding-left: 1rem;
  font-size: 3rem;
  background-image: none;
  background-color: #5499a8;
}
@keyframes text-clip {
  0% {
    background-position: 30% 70%;
  }
  50% {
    background-position: 70% 100%;
  }
  100% {
    background-position: 30% 70%;
  }
}

.header__information {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  padding: 2rem 1.5rem;
  max-width: 138.3rem;
  column-gap: 5.1rem;
  background-color: #0e0e0e;
}
.header__label {
  font-size: 9.6rem;
  line-height: 1;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.header__label span:nth-child(1) {
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 700;
}
.header__label span:nth-child(2) {
  font-size: 3.6rem;
}
.header__text {
  font-size: 1.6rem;
}
.header__text p:not(:last-child) {
  margin-bottom: 2rem;
}
/* header */
/*==========================================================================================*/

/*==========================================================================================*/
/* section about */
.about {
  position: relative;
}
.about__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.about__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(14, 14, 14, 0.5);
  z-index: 2;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 0%;
}
.about__container {
  min-height: 100svh;
  padding: 5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}
.about-body {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  font-size: 1.8rem;
}
.about-body__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  column-gap: 2rem;
}
.about-body__item {
  display: flex;
  flex-direction: column;
}
.about-body__item span:nth-child(2) {
  color: rgb(255, 169, 78);
  font-size: 2.2rem;
}
.about-body__text {
  max-width: 77.5rem;
}
.about-body__text p:not(:last-child) {
  margin-bottom: 2rem;
}

/* section about */
/*==========================================================================================*/

/*==========================================================================================*/
/* section video */
.video {
  position: relative;
  padding: 3rem 0;
}

.video__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.video__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
}

.video__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100svh;
}

.video__body {
  flex-basis: 58rem;
}

.video__title {
  color: #85ccdc;
  font-size: 6rem;
  font-style: italic;
  font-weight: 300;
  text-transform: capitalize;
  display: flex;
  flex-direction: column;
  max-width: 58rem;
  width: 100%;
}
.video__title:not(:last-child) {
  margin-bottom: 2rem;
}
@media (min-width: 500px) {
  .video__title {
    font-size: 7.2rem;
  }
}
.video__title span:nth-child(2) {
  text-align: right;
}

.video__button {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  transition: color 0.4s;
}
.video__button img {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
  border-radius: 50%;
  will-change: transform;
  transition: transform 0.4s;
  background-color: #0e0e0e;
}

@media (any-hover: hover) {
  .video__button:hover {
    color: #85ccdc;
  }
  .video__button:hover img {
    transform: scale(1.2);
  }
}

/* section video */
/*==========================================================================================*/

/*==========================================================================================*/
/* section gallery */
.gallery {
}
.gallery__container {
  padding: 5rem 1.5rem;
  min-height: 100svh;
}
.gallery__body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(29rem, 1fr));
  gap: 2rem;
  counter-reset: counter-item;
}
.gallery__item {
  position: relative;
  padding-top: 6.6rem;
  transition: opacity 0.4s;
}
.gallery__item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  counter-increment: counter-item;
  content: counter(counter-item, decimal-leading-zero);
  color: #600e09;
  font-size: 9.6rem;
  font-weight: 700;
  line-height: 1;
}
.gallery__image {
  position: relative;
  z-index: 2;
  aspect-ratio: 386/286;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.7rem;
}
.gallery__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.gallery__label {
  display: inline-block;
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  font-size: 3.6rem;
  padding: 1.2rem 2rem;
  background-color: #0e0e0e;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition:
    transform 0.4s,
    opacity 0.4s,
    visibility 0.4s;
  will-change: transform;
}
@media (any-hover: hover) {
  .gallery__body:hover .gallery__item:not(:hover) {
    opacity: 0.4;
  }
  .gallery__image:hover .gallery__label {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}
/* section gallery */
/*==========================================================================================*/

/*==========================================================================================*/
/* section characters */
.characters {
  position: relative;
}
.characters__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.characters__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 70%;
}
.characters__container {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
}
.characters__body {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.characters__images {
  position: relative;
  align-self: flex-start;
  max-width: 100%;
}
.characters__buttons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.characters__button {
  background-color: transparent;
  width: 5rem;
  height: 3.5rem;
}
.characters__button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
  will-change: transform;
}
.characters__button--prev {
  transform: rotate(180deg);
}
.characters__image {
  width: 100%;
  aspect-ratio: 775/449;
}
.characters__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.characters__name {
  font-size: 4.2rem;
  font-style: italic;
  font-weight: 300;
  color: #85ccdc;
}
.characters__text {
  font-size: 1.8rem;
}
.characters__text p {
  padding-left: 0.5rem;
}
.characters__text p:not(:last-child) {
  margin-bottom: 2rem;
}
@media (any-hover: hover) {
  .characters__button:hover img {
    transform: scale(1.5);
  }
}
/* section characters  */
/*==========================================================================================*/

/*==========================================================================================*/
/* footer  */
.footer {
}
.footer__container {
  padding: 1.5rem;
  font-size: 1.8rem;
}
.copywrite {
  text-align: center;
}
/* footer  */
/*==========================================================================================*/

/*==========================================================================================*/
/* min media */
@media (min-width: 767.98px) {
  .logo h1 {
    font-size: 9rem;
    letter-spacing: 5rem;
    padding-left: 5rem;
  }
  .section-title--margin {
    margin-bottom: 5rem;
  }
  .header {
    padding: 2rem 1.5rem;
  }
  .header--seasons {
    padding-bottom: 0;
  }
  .icon-menu {
    display: none;
  }
  .header__information {
    padding: 4.4rem 3.5rem;
  }
  .icon-info {
    display: none;
  }
  .header__label span:nth-child(1) {
    font-size: 9.6rem;
  }
  .about__container {
    padding: 10rem 1.5rem;
  }
  .about-body__list {
    flex-direction: column;
    flex-basis: 27rem;
  }
  .about-body__text {
    flex-basis: 77.5rem;
  }
  .gallery__container {
    padding: 10rem 1.5rem;
  }
  .characters__container {
    padding: 10rem 1.5rem;
  }
  .characters__buttons {
    padding: 3.6rem;
  }
  .characters__name {
    font-size: 7.2rem;
  }
}
@media (min-width: 980px) {
  .header__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 1100px) {
  .menu__link {
    font-size: 3.6rem;
  }
}
@media (min-width: 1200px) {
  .logo h1 {
    font-size: 14rem;
    letter-spacing: 10rem;
    padding-left: 10rem;
  }
  .logo img {
    max-width: 28rem;
  }
}
@media (min-width: 1190px) {
  .characters__images {
    flex-basis: 77.5rem;
    max-width: 77.5rem;
  }
  .characters__informations {
    flex-basis: 34.9rem;
    max-width: 34.9rem;
  }
}
/* min media */
/*=============================================*/

/*=============================================*/
/* max media */
@media (max-width: 1200px) {
  .header--seasons {
    /* min-height: 150svh; */
  }
  .video__bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(14, 14, 14, 0.5);
  }
}
@media (max-width: 1190px) {
  .characters__body {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  /*=============================================*/
  /* burger */
  .icon-menu {
    display: block;
    width: 5rem;
    height: 4rem;
    position: relative;
    z-index: 4;
    background-color: transparent;
    margin-left: auto;
  }
  .icon-menu::before,
  .icon-menu::after,
  .icon-menu span {
    content: "";
    position: absolute;
    left: 0px;
    height: 0.4rem;
    width: 100%;
    background-color: #5499a8;
    transition: all 0.3s;
  }
  .icon-menu::before {
    bottom: -0.1rem;
  }
  .icon-menu::after {
    top: -0.1rem;
  }
  .icon-menu span {
    top: 50%;
    margin-top: -0.2rem;
  }
  .menu-open .icon-menu span {
    width: 0;
    left: 50%;
  }
  .menu-open .icon-menu::before {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .menu-open .icon-menu::after {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .menu {
    width: 100%;
    padding: 2.5rem 2rem;
  }
  .menu__body {
    position: fixed;
    width: 100%;
    height: 100svh;
    top: 0;
    left: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #0e0e0e;
    overflow-y: auto;
    transition:
      left 0.5s,
      opacity 0.2s,
      visibility 0.5s;
  }
  .menu__list {
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2.5rem;
    padding: 10rem 1.5rem;
  }
  .menu__link {
    font-size: 4rem;
  }
  .menu-open body {
    overflow: hidden;
    height: 100%;
  }
  .menu-open .menu__body {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .header__body {
    width: 100%;
  }
  /* burger */
  /*=============================================*/
  .header--seasons {
    align-items: flex-start;
  }
  .header__information {
    row-gap: 3rem;
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .icon-info {
    display: block;
    width: 5rem;
    height: 4rem;
    position: relative;
    z-index: 4;
    background-color: transparent;
  }
  .icon-info::before,
  .icon-info::after {
    content: "";
    position: absolute;

    height: 0.4rem;
    background-color: #5499a8;
    transition: all 0.3s;
  }
  .icon-info::before {
    left: 0px;
    bottom: calc(50% - 0.2rem);
    transform: rotate(45deg);
    width: 60%;
  }
  .icon-info::after {
    right: 0px;
    top: calc(50% - 0.2rem);
    width: 60%;
    transform: rotate(-45deg);
  }

  .info-open .icon-info::before {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
  .info-open .icon-info::after {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header__text {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: #0e0e0e;
    padding: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  .info-open .header__text {
    opacity: 1;
    visibility: visible;
  }
  .about-body {
    flex-direction: column;
  }
  .about-body__item {
    flex: 1 1 45%;
  }
}

/* max media */
/*=============================================*/
