@import url("https://fonts.googleapis.com/css2?family=Alata&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=League+Spartan:wght@100..900&display=swap");
.disabled {
  display: none !important;
}

button {
  all: unset;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "League Spartan";
  font-size: 16px;
}

.activateImg {
  position: relative !important;
  opacity: 1 !important;
}

.rightActivateImg {
  animation: fadeInLeft 1s forwards !important;
  position: relative !important;
}

.rightAnimationOut {
  animation: fadeOutRight 1s;
}

.leftAnimationOut {
  animation: fadeOutLeft 1s;
}

.leftActivateImg {
  animation: fadeInRight 1s forwards !important;
  position: relative !important;
}

.activateNav {
  animation: fadeInDown 1s forwards;
  display: flex !important;
  z-index: 3 !important;
}

.disableNav {
  animation: fadeOutUp 1s;
  z-index: 3 !important;
}

.activateBlackFilter {
  display: block !important;
}

.activateText {
  display: block !important;
}

.animationText {
  animation: fadeText 1s;
}

@keyframes fadeText {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(0, -100%, 0);
  }
}
main {
  position: relative;
  overflow-x: hidden;
}
main .blackFilter {
  position: absolute;
  display: none;
  background-color: black;
  opacity: 50%;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
main .header {
  background-color: black;
  position: relative;
}
main .header__background-img-container {
  display: flex;
}
main .header__background-img-container img {
  width: 100%;
  opacity: 0;
  position: absolute;
}
main .header__logo {
  position: absolute;
  top: 11%;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: 17%;
}
main .header__logo img {
  width: 100%;
  height: 100%;
}
main .header__open-nav {
  position: absolute;
  z-index: 2;
  left: 5%;
  top: 13%;
  transform: translateY(-50%);
  width: 4%;
  cursor: pointer;
}
main .header__open-nav img {
  width: 100%;
}
main .header__nav {
  position: absolute;
  height: 26%;
  background-color: white;
  top: 0;
  width: 100%;
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  gap: 8cqw;
  padding: 0 5%;
  opacity: 0;
  display: flex;
}
main .header__nav__links {
  display: flex;
  gap: 9cqw;
}
main .header__nav img {
  width: 4cqw;
  height: 4cqw;
  margin-bottom: 1cqw;
  cursor: pointer;
}
main .header__nav a {
  font-weight: 650;
  font-size: 4.3cqw;
  cursor: pointer;
}
main .header__change-img-buttons {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: black;
  width: 27%;
  height: 14%;
  display: flex;
}
main .header__change-img-buttons button {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
main .header__change-img-buttons button img {
  width: 20%;
  height: 30%;
}
main p {
  font-size: 4.1cqw;
  line-height: 5.5cqw;
  color: hsl(0, 0%, 63%);
  font-weight: 500;
}
main .section1 {
  display: flex;
  flex-direction: column;
  padding: 14% 7%;
}
main .section1 .article1 {
  display: flex;
  flex-direction: column;
}
main .section1 .article1__title {
  font-size: 9cqw;
  font-weight: 700;
  margin-bottom: 5cqw;
  display: none;
}
main .section1 .article1__p {
  display: none;
}
main .section1 .article1__shop-link {
  margin-block: 12% 0;
  display: flex;
  gap: 6cqw;
  align-items: center;
}
main .section1 .article1__shop-link a {
  font-size: 3.6cqw;
  font-weight: 600;
  letter-spacing: 2.5cqw;
  cursor: pointer;
}
main .section1 .article1__shop-link img {
  padding-bottom: 1%;
  cursor: pointer;
}
main .section2 {
  display: flex;
  flex-direction: column;
}
main .section2 .article2 {
  display: flex;
  flex-direction: column;
  gap: 5cqw;
  padding: 8% 7%;
}
main .section2 h2 {
  font-size: 3.6cqw;
  font-weight: 700;
  letter-spacing: 1.6cqw;
}

@media screen and (min-width: 800px) and (max-height: 900px) {
  main {
    height: 100vh;
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-template-rows: 33.33% 33.33% 33.33%;
    overflow-x: hidden;
  }
  main p {
    font-size: 1.1cqw;
    line-height: 1.8cqw;
    color: hsl(0, 0%, 63%);
    font-weight: 500;
  }
  main .header {
    width: 100%;
    grid-row: 1/3;
    position: relative;
    overflow: hidden;
  }
  main .header__background-img-container {
    display: flex;
    height: 100%;
  }
  main .header__background-img-container img {
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
  }
  main .header__logo {
    position: absolute;
    left: 11%;
    width: 10%;
  }
  main .header__open-nav {
    display: none;
  }
  main .header__nav {
    position: absolute;
    height: 25%;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background-color: transparent;
    justify-content: space-between;
    align-items: center;
    gap: 8cqw;
    padding: 0 22%;
    opacity: 1;
  }
  main .header__nav__links {
    display: flex;
    gap: 3cqw;
  }
  main .header__nav img {
    display: none;
  }
  main .header__nav a {
    font-weight: 650;
    color: white;
    font-size: 1.1cqw;
  }
  main .header__change-img-buttons {
    overflow: visible;
    position: absolute;
    transform: translateX(100%);
    width: 17%;
    height: 14%;
    z-index: 3;
  }
  main .section1 {
    grid-row: 1/3;
    grid-column: 2/3;
    justify-content: center;
    padding: 0 12% 0 12%;
    position: relative;
  }
  main .section1 .article1 {
    margin-bottom: 3.3cqw;
  }
  main .section1 .article1__title {
    font-size: 3cqw;
    margin-bottom: 1.8cqw;
  }
  main .section1 .article1__shop-link {
    margin-block: 6% 0;
    display: flex;
    gap: 1.2cqw;
    align-items: center;
  }
  main .section1 .article1__shop-link a {
    font-size: 0.95cqw;
    font-weight: 600;
    letter-spacing: 0.9cqw;
    cursor: pointer;
  }
  main .section1 .article1__shop-link img {
    padding-bottom: 1%;
    width: 2.5cqw;
    cursor: pointer;
  }
  main .section1__change-img-buttons {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: black;
    width: 27%;
    height: 14%;
    display: flex;
  }
  main .section1__change-img-buttons button {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  main .section1__change-img-buttons button img {
    width: 20%;
    height: 30%;
  }
  main .section2 {
    grid-column: 1/3;
    grid-row: 3/4;
    flex-direction: row;
    justify-content: center;
  }
  main .section2 img {
    height: 100%;
    width: 30%;
  }
  main .section2 .article2 {
    justify-content: center;
    gap: 0.7cqw;
    padding: 0 3%;
  }
  main .section2 .article2 h2 {
    font-size: 1cqw;
    letter-spacing: 0.7cqw;
  }
}

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