@font-face {
  font-family: "D-DIN Regular";
  font-style: normal;
  font-weight: normal;
  src: local("D-DIN Regular"), url("../assets/font/D-DIN.woff") format("woff");
}
@font-face {
  font-family: "D-DIN DIN-Bold";
  font-style: normal;
  font-weight: normal;
  src: local("D-DIN DIN-Bold"), url("../assets/font/D-DIN-Bold.woff") format("woff");
}
*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
  font-family: "D-DIN Regular", "D-DIN DIN-Bold";
}

body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  overflow-x: hidden;
}

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

header {
  position: fixed;
  top: 0;
  left: 15%;
  width: 85%;
  height: 8vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #fff;
  background-color: transparent;
  margin-top: 1rem;
  z-index: 1;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}
header .header__logo {
  width: 60px;
  height: 100%;
  filter: invert(100%);
  background-image: url("../img/spaceLogo.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
header nav {
  flex-basis: 35%;
  height: 100%;
}
header nav .nav__list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
}
header nav .nav__list__element {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header nav .nav__list__element a {
  position: relative;
  margin-top: 0.3rem;
  padding-bottom: 0.3rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
header nav .nav__list__element a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
header nav .nav__list__element a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header nav .nav__list__element a:focus:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .header__right-content {
  margin-left: auto;
  margin-right: 7rem;
}
header .header__right-content__shop {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
header .header__right-content a {
  position: relative;
  margin-top: 0.3rem;
  padding-bottom: 0.3rem;
  text-decoration: none;
  color: #fff;
}
header .header__right-content a:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.1rem;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
header .header__right-content a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .header__right-content a:focus:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.container__hamburger {
  position: fixed;
  top: 0;
  right: 0;
  height: 8vh;
  margin: 1rem 3rem 0 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: transparent;
  border: none;
  z-index: 3;
  font-size: 1.5rem;
}
.container__hamburger__button {
  height: 1.4rem;
  width: 1.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: 250ms ease-out;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.container__hamburger__button .line {
  height: 0.2rem;
  width: 100%;
  background: #fff;
  display: block;
  border-radius: 5px;
  transition: 250ms ease-out;
}
.container__hamburger__button.open .line.first {
  transform: rotate(45deg) translateX(0.14rem);
  transform-origin: left;
  background: #fff;
}
.container__hamburger__button.open .line.third {
  transform: rotate(-45deg) translateX(0.14rem);
  transform-origin: left;
  background: #fff;
}
.container__hamburger__button.open .line.second {
  opacity: 0;
  width: 0;
}

/* =============================
 * Header styles for shop page
 * ============================ */
.header-shop {
  top: 0;
  left: 0;
  height: 10vh;
  width: 100%;
  margin-top: 0;
  padding-left: 8rem;
  background-color: #000;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
  z-index: 3;
}
.header-shop .header-shop__logo {
  width: 60px;
  height: 100%;
  filter: invert(100%);
  background-image: url("../img/spaceLogo.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.header-shop .header-shop__right-content {
  display: flex;
  align-items: center;
  height: 100%;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  margin-left: auto;
  margin-right: 7rem;
}
.header-shop .header-shop__right-content a {
  text-decoration: none;
  color: #fff;
  transition: color 0.2s ease-in-out;
}
.header-shop .header-shop__right-content a:first-child, .header-shop .header-shop__right-content a:nth-child(2) {
  color: #888;
}
.header-shop .header-shop__right-content a:first-child:hover, .header-shop .header-shop__right-content a:nth-child(2):hover {
  color: #fff;
}
.header-shop nav .nav__list__element {
  position: relative;
}
.header-shop nav .nav__list__element a:hover:after {
  transform: scaleX(0);
}
.header-shop nav .nav__list__element ul {
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
  display: flex;
  list-style: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 2rem;
  width: 20rem;
  padding: 2rem;
  background-color: #000;
  border-left: 0.1rem solid rgba(255, 255, 255, 0.2);
  border-right: 0.1rem solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.header-shop nav .nav__list__element ul span {
  display: block;
  position: absolute;
  top: 0rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}
.header-shop nav .nav__list__element ul li {
  flex-basis: 30%;
  width: 100%;
  text-transform: none;
  font-size: 1.5rem;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.header-shop nav .nav__list__element ul li:hover {
  color: #a8a8a8;
}

/* =============================
 * Header styles for shop page mobile menu
 * ============================ */
.header-shop__right-content-mobile, .header-shop__humburger-left-mobile {
  display: none;
}

.container aside {
  width: 15%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.58, 0, 0.25, 1.06);
  z-index: 2;
}
.container aside ul {
  width: 80%;
  margin-top: 8vh;
  font-size: 1.6rem;
  list-style: none;
  text-transform: uppercase;
}
.container aside ul li {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.container aside ul li a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: color 0.3s ease-out;
}
.container aside ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.container aside.slide {
  transform: translateX(0);
}

.container aside.shop-aside-categories-mobile.slide {
  transform: translateX(0);
}

.section-main {
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}
.section-main > * {
  margin-left: 15%;
  text-transform: uppercase;
}
.section-main h2 {
  font-size: 5rem;
  font-weight: 700;
}
.section-main h3 {
  font-size: 2.2rem;
  font-weight: 400;
}
.section-main__button {
  position: relative;
  height: 6rem;
  width: 16rem;
  margin-top: 4rem;
  background-color: transparent;
  color: #fff;
  border: 0.2rem solid #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0;
}
.section-main__button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}
.section-main__button:hover::after {
  transform: scaleY(1);
  transform-origin: 50% 100%;
}
.section-main__button:hover {
  color: #000;
}

.container__section-one.section-main {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.15), rgba(4, 9, 30, 0.15)), url("../img/1920x1080/mainBg1.jpg");
}
.container__section-one.section-main h3 {
  animation: text-animation 1.25s ease;
}
.container__section-one.section-main h2 {
  animation: opacity-animation 1.25s ease;
}
.container__section-one.section-main button {
  animation: opacity-animation 1.25s ease;
}

.container__section-two.section-main {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.15), rgba(4, 9, 30, 0.15)), url("../img/1920x1080/mainBg2.jpg");
}
.container__section-two.section-main h3 {
  opacity: 0;
}
.container__section-two.section-main h2 {
  opacity: 0;
}
.container__section-two.section-main button {
  opacity: 0;
}

.container__section-three.section-main {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.15), rgba(4, 9, 30, 0.15)), url("../img/1920x1080/mainBg3.jpg");
}
.container__section-three.section-main h3 {
  opacity: 0;
}
.container__section-three.section-main h2 {
  opacity: 0;
}
.container__section-three.section-main button {
  opacity: 0;
}
.container__section-three.section-main > * {
  margin-left: 60%;
  text-transform: uppercase;
}
.container__section-three.section-main button {
  margin-bottom: 12%;
}

/* =============================
 * Mars page selectors (2nd page)
 * ============================ */
.mars__container__section-one {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.25), rgba(4, 9, 30, 0.25)), url("../img/1920x1080/marsBg1.jpg");
  align-items: center;
  row-gap: 2rem;
}
.mars__container__section-one h1 {
  font-size: 10rem;
  animation: text-animation 1.25s ease;
}
.mars__container__section-one h2 {
  font-size: 3.3rem;
  animation: opacity-animation 1.25s ease;
}
.mars__container__section-one h1, .mars__container__section-one h2 {
  margin: 0;
  text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
}

.mars__container__section-two {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.1), rgba(4, 9, 30, 0.1)), url("../img/1920x1080/marsBg2.jpg");
  position: relative;
  justify-content: flex-start;
}
.mars__container__section-two h2, .mars__container__section-two p, .mars__container__section-two div {
  margin: 0;
}
.mars__container__section-two__content-container {
  position: absolute;
  top: 15%;
  left: 57%;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 2rem;
}
.mars__container__section-two__content-container > p {
  font-size: 1.6rem;
  text-transform: none;
  line-height: 2.7rem;
  letter-spacing: 0.04rem;
  opacity: 0;
}
.mars__container__section-two__content-container h2 {
  opacity: 0;
}
.mars__container__section-two__content-container__parameters {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  opacity: 0;
}
.mars__container__section-two__content-container__parameters div {
  flex-basis: 20%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
}
.mars__container__section-two__content-container__parameters div p {
  font-size: 1.6rem;
  text-transform: none;
  line-height: 2.7rem;
  letter-spacing: 0.04rem;
}
.mars__container__section-two__content-container__parameters div span {
  color: #7e7e7e;
}

.mars__container__section-three {
  height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-color: #000;
}
.mars__container__section-three > * {
  margin: 0;
}
.mars__container__section-three h3 {
  font-size: 4rem;
}
.mars__container__section-three__date-container {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mars__container__section-three__date-container div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mars__container__section-three__date-container div span:first-child {
  font-size: 7rem;
}
.mars__container__section-three__date-container div span:last-child {
  font-size: 3.5rem;
}

.mars__container__section-four {
  position: relative;
  row-gap: 1.5rem;
}
.mars__container__section-four > video {
  margin: 0;
}
.mars__container__section-four video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  z-index: -1;
}
.mars__container__section-four p {
  width: 30%;
  font-size: 1.6rem;
  text-transform: none;
  line-height: 2.7rem;
  letter-spacing: 0.04rem;
}
.mars__container__section-four button {
  position: relative;
  height: 6rem;
  width: 30rem;
  margin-top: 4rem;
  background-color: transparent;
  color: #fff;
  border: 0.2rem solid #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0;
}
.mars__container__section-four button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}
.mars__container__section-four button:hover::after {
  transform: scaleY(1);
  transform-origin: 50% 100%;
}
.mars__container__section-four button:hover {
  color: #000;
}

/* =============================
 * News page selectors (3rd page)
 * ============================ */
.news__container__section-one {
  position: relative;
  height: 60vh;
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/1920x1080/newsBg1.jpg");
  background-position: top;
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.news__container__section-one::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #000;
  animation: background-blur 1s ease forwards;
}
.news__container__section-one > * {
  margin: 0;
}
.news__container__section-one h1 {
  font-size: 7rem;
  text-transform: uppercase;
  width: 60%;
  text-align: center;
  text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: text-animation 1.25s 0.7s ease forwards;
}

.news__container__section-two {
  height: auto;
  background-color: #000;
  justify-content: flex-start;
  align-items: center;
  row-gap: 5rem;
  padding-bottom: 4rem;
}
.news__container__section-two h2 {
  margin-top: 5rem;
  padding-top: 10rem;
  opacity: 0;
  animation: text-animation 1.25s 1.2s ease forwards;
}
.news__container__section-two > * {
  margin: 0;
}
.news__container__section-two__news-container {
  width: 65%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 3rem;
  opacity: 0;
  animation: opacity-animation 1.25s 1.2s ease forwards;
}
.news__container__section-two__news-container__news {
  position: relative;
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.15s cubic-bezier(0.58, 0, 0.25, 1.06);
}
.news__container__section-two__news-container__news:hover {
  border-bottom: 0.1rem solid transparent;
}
.news__container__section-two__news-container__news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.8rem;
  transform: translateY(100%);
  background-color: #eb2539;
  transition: all 0.15s cubic-bezier(0.58, 0, 0.25, 1.06);
}
.news__container__section-two__news-container__news:hover::after {
  transform: translateY(0);
}
.news__container__section-two__news-container__news__img {
  height: 23.5rem;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.news__container__section-two__news-container__news__img__date {
  width: 30%;
  height: 15%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #3d3d3d;
  background-color: #fff;
  margin: 1rem 0 0 1rem;
}
.news__container__section-two__news-container__news p:first-of-type {
  display: flex;
  align-items: center;
  width: 80%;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  color: #9c9c9c;
}
.news__container__section-two__news-container__news p:first-of-type span {
  display: block;
  width: 8%;
  height: 0.4rem;
  background-color: #eb2539;
  margin-right: 1.5rem;
}
.news__container__section-two__news-container__news h3 {
  font-size: 2.4rem;
  width: 80%;
  text-transform: none;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.news__container__section-two__news-container__news p:nth-of-type(2) {
  width: 80%;
  text-transform: none;
  font-size: 1.6rem;
  line-height: 2.7rem;
  letter-spacing: 0.04rem;
  margin-bottom: 3rem;
}
.news__container__section-two__news-container__archive-button {
  position: relative;
  margin: 4rem auto 1rem auto;
  height: 6rem;
  width: 20rem;
  background-color: transparent;
  color: #fff;
  border: 0.2rem solid #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0;
}
.news__container__section-two__news-container__archive-button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}
.news__container__section-two__news-container__archive-button:hover::after {
  transform: scaleY(1);
  transform-origin: 50% 100%;
}
.news__container__section-two__news-container__archive-button:hover {
  color: #000;
}

.news__container__section-three {
  height: 45vh;
  background-color: #000;
  align-items: center;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.15);
}
.news__container__section-three > * {
  margin: 0;
}
.news__container__section-three__subscribe-container {
  width: 25%;
  height: 80%;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-transform: none;
}
.news__container__section-three__subscribe-container > p {
  width: 100%;
  font-size: 2rem;
  line-height: 2.6rem;
  margin-bottom: 2rem;
  text-align: center;
}
.news__container__section-three__subscribe-container form {
  width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 2rem;
}
.news__container__section-three__subscribe-container form input:first-child {
  height: 4.5rem;
  width: 85%;
  background-color: transparent;
  border: none;
  border-bottom: 0.3rem solid #eb2539;
  color: #fff;
  outline: none;
  font-size: 1.6rem;
}
.news__container__section-three__subscribe-container form button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 3rem;
  height: 4.5rem;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
}
.news__container__section-three__subscribe-container form button::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.3rem;
  bottom: 0;
  left: 0;
  background-color: #eb2539;
}
.news__container__section-three__subscribe-container form button::before {
  position: absolute;
  content: "";
  width: 2.7rem;
  height: 2.7rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  border: 0.2rem solid #cccccc;
  opacity: 0;
  transition: all 0.3s ease;
}
.news__container__section-three__subscribe-container form button:hover::before {
  opacity: 1;
}
.news__container__section-three__subscribe-container form button i {
  color: #ccc;
  font-size: 1.6rem;
}
.news__container__section-three__subscribe-container form .subscribe-checkbox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 2rem;
  width: 2rem;
  background-color: transparent;
  border-radius: 0.2rem;
  border: 0.1rem solid #ccc;
  margin-right: 1rem;
  cursor: pointer;
}
.news__container__section-three__subscribe-container form .subscribe-checkbox span {
  height: 1rem;
  width: 1rem;
  border-radius: 0.1rem;
  background-color: #ccc;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.news__container__section-three__subscribe-container form p {
  font-size: 1.4rem;
  line-height: 2rem;
  margin-top: -0.4rem;
  width: 85%;
  font-style: italic;
}

.news1img {
  background-image: url("../img/news1.jpg");
}

.news2img {
  background-image: url("../img/news2.jpg");
}

.news3img {
  background-image: url("../img/news3.jpg");
}

.news4img {
  background-image: url("../img/news4.jpg");
}

.news5img {
  background-image: url("../img/news5.jpg");
}

.news6img {
  background-image: url("../img/news6.jpg");
}

/* =============================
 * Careers page selectors (4th page)
 * ============================ */
.careers__container__section-one {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.45), rgba(4, 9, 30, 0.45)), url("../img/1920x1080/careersBg1.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 4rem;
}
.careers__container__section-one > * {
  margin: 0;
}
.careers__container__section-one h1 {
  font-size: 5.5rem;
  width: 50%;
  text-align: center;
  text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: text-animation 1.25s ease forwards;
}
.careers__container__section-one p {
  font-size: 2rem;
  line-height: 3.4rem;
  width: 50%;
  text-transform: none;
  text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.3);
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
  opacity: 0;
  animation: opacity-animation 1.25s ease forwards;
}
.careers__container__section-one__buttons-container {
  width: 25%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  opacity: 0;
  animation: opacity-animation 1.25s ease forwards;
}
.careers__container__section-one__buttons-container__button {
  position: relative;
  height: 6rem;
  width: 45%;
  background-color: transparent;
  color: #fff;
  border: 0.2rem solid #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0;
}
.careers__container__section-one__buttons-container__button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}
.careers__container__section-one__buttons-container__button:hover::after {
  transform: scaleY(1);
  transform-origin: 50% 100%;
}
.careers__container__section-one__buttons-container__button:hover {
  color: #000;
}

.careers__container__section-two {
  height: 50vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
}
.careers__container__section-two > * {
  margin: 0;
}
.careers__container__section-two h2 {
  font-size: 4.5rem;
  width: 50%;
  -moz-text-align-last: center;
       text-align-last: center;
}
.careers__container__section-two p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  width: 50%;
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
  text-transform: none;
}

.careers__container__section-three {
  background-color: #000;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.15);
  padding-top: 5rem;
  row-gap: 2rem;
}
.careers__container__section-three > * {
  margin: 0;
}
.careers__container__section-three > p {
  font-size: 1.8rem;
}
.careers__container__section-three > h3 {
  font-size: 4rem;
  font-weight: bold;
  text-transform: none;
  margin-bottom: 3rem;
}
.careers__container__section-three__facilities-container {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 3rem;
  margin-bottom: 6rem;
}
.careers__container__section-three__facilities-container__facility {
  flex-basis: 49%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 2.5rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
  padding-bottom: 3rem;
}
.careers__container__section-three__facilities-container__facility__img {
  width: 100%;
  height: 35rem;
  background-size: cover;
  background-position: center;
  background-repear: no-repeat;
}
.careers__container__section-three__facilities-container__facility h3 {
  font-size: 4rem;
  font-weight: bold;
  padding: 0 3rem;
  text-transform: none;
}
.careers__container__section-three__facilities-container__facility h3 span {
  text-transform: uppercase;
}
.careers__container__section-three__facilities-container__facility p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-transform: none;
  text-align: justify;
  padding: 0 3rem;
  margin-top: -0.5rem;
}

.careers-img1 {
  background-image: url(../img/careersLocation1.jpg);
}

.careers-img2 {
  background-image: url(../img/careersLocation2.jpg);
}

.careers-img3 {
  background-image: url(../img/careersLocation3.jpg);
}

.careers-img4 {
  background-image: url(../img/careersLocation4.jpg);
}

.careers-img5 {
  background-image: url(../img/careersLocation5.jpg);
}

.careers-img6 {
  background-image: url(../img/careersLocation6.jpg);
}

.careers__container__section-four {
  height: 75vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #000;
}
.careers__container__section-four > * {
  margin: 0;
}
.careers__container__section-four__img {
  height: 100%;
  flex-basis: 43%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.careers__container__section-four__container {
  flex-basis: 57%;
  height: 60%;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: center;
  justify-content: space-between;
}
.careers__container__section-four__container h3 {
  width: 50%;
  text-transform: none;
  font-size: 3.5rem;
  line-height: 5rem;
  font-weight: bold;
}
.careers__container__section-four__container p {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  width: 50%;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.careers__container__section-four__container p span:first-child {
  display: block;
  width: 4%;
  height: 0.5rem;
  background-color: #eb2539;
}
.careers__container__section-four__container__button-container {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.careers__container__section-four__container__button-container button {
  padding: 1.5rem;
  background-color: transparent;
  border-radius: 50%;
  border: 0.2rem solid #eb2539;
  cursor: pointer;
}
.careers__container__section-four__container__button-container button i {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 1.6rem;
}

.careers__container__section-five {
  height: 60vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2.5rem;
  padding: 5rem 0;
}
.careers__container__section-five > * {
  margin: 0;
}
.careers__container__section-five p:first-of-type {
  font-size: 2rem;
}
.careers__container__section-five h3 {
  font-size: 4.5rem;
  text-transform: none;
  font-weight: bold;
}
.careers__container__section-five p:nth-of-type(2) {
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-transform: none;
  width: 60%;
  text-align: justify;
}
.careers__container__section-five button {
  position: relative;
  height: 6rem;
  width: 15%;
  margin-top: 2rem;
  background-color: transparent;
  color: #fff;
  border: 0.2rem solid #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0;
}
.careers__container__section-five button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}
.careers__container__section-five button:hover::after {
  transform: scaleY(1);
  transform-origin: 50% 100%;
}
.careers__container__section-five button:hover {
  color: #000;
}

/* =============================
 * About us page selectors (5th page)
 * ============================ */
.about-us__container__section-one {
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 3rem;
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url("../img/1920x1080/aboutUsBg1.jpg");
}
.about-us__container__section-one > * {
  margin: 0;
  margin-left: 15%;
}
.about-us__container__section-one h1 {
  font-size: 7rem;
  width: 50%;
  opacity: 0;
  animation: text-animation 1.25s ease forwards;
}
.about-us__container__section-one > p {
  font-size: 2.5rem;
  line-height: 3.5rem;
  text-transform: none;
  width: 40%;
  opacity: 0;
  animation: opacity-animation 1.25s ease forwards;
}
.about-us__container__section-one__play-container {
  display: flex;
  align-items: center;
  width: 17%;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  cursor: pointer;
  opacity: 0;
  animation: opacity-animation 1.25s ease forwards;
}
.about-us__container__section-one__play-container:hover button::before {
  transform: translate(-50%, -50%) scale(1.1);
}
.about-us__container__section-one__play-container:hover button i {
  color: #eb2539;
}
.about-us__container__section-one__play-container p {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 1.8rem;
}
.about-us__container__section-one__play-container button {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.about-us__container__section-one__play-container button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.15s ease;
}
.about-us__container__section-one__play-container button i {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #000;
  margin: 0.15rem 0 0 0.15rem;
  transition: all 0.15s ease;
  z-index: 1;
}

.about-us__container__section-two {
  height: auto;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-us__container__section-two > * {
  margin: 0;
}
.about-us__container__section-two__article {
  width: 100%;
  height: 75vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  background-color: #111;
  overflow: hidden;
}
.about-us__container__section-two__article__img {
  width: 50%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.about-us__container__section-two__article__text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  row-gap: 4rem;
  width: 50%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease-in-out;
}
.about-us__container__section-two__article__text-container p:first-of-type {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5rem;
  margin-top: 5rem;
  color: #ccc;
}
.about-us__container__section-two__article__text-container p:first-of-type span {
  display: block;
  height: 0.4rem;
  width: 2rem;
  margin-right: 0.8rem;
  background-color: #eb2539;
}
.about-us__container__section-two__article__text-container h2 {
  font-size: 4rem;
  width: 80%;
  text-align: center;
  color: #eb2539;
}
.about-us__container__section-two__article__text-container p:nth-of-type(2) {
  font-size: 2rem;
  line-height: 2.8rem;
  text-transform: none;
  width: 65%;
  text-align: justify;
  margin-bottom: 5rem;
}
.about-us__container__section-two article:nth-child(odd) .about-us__container__section-two__article__text-container {
  transform: translateX(-100%);
}
.about-us__container__section-two article:nth-child(even) .about-us__container__section-two__article__text-container {
  transform: translateX(100%);
}

.about-us1img {
  background-image: url("../img/aboutusimg1.jpg");
}

.about-us2img {
  background-image: url("../img/aboutusimg2.jpg");
}

.about-us3img {
  background-image: url("../img/aboutusimg3.jpg");
}

.about-us4img {
  background-image: url("../img/aboutusimg4.jpg");
}

.about-us__container__section-three {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  background-color: #000;
  height: 100vh;
  width: 100%;
}
.about-us__container__section-three__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url("../img/1920x1080/aboutUsBg4Static.jpg");
  animation: background-change 15s linear infinite;
}
.about-us__container__section-three > * {
  margin: 0;
}
.about-us__container__section-three h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  cursor: pointer;
  text-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
  transition: all 1s ease-out;
  z-index: 1;
}
.about-us__container__section-three h3 span {
  display: block;
  height: 1rem;
  width: 100%;
  background-color: #eb2539;
}

.play-toggle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0);
  -webkit-backdrop-filter: blur(0.15rem);
          backdrop-filter: blur(0.15rem);
  z-index: 3;
  visibility: visible;
  opacity: 1;
  transition: opacity 1s ease, visibility 1s ease;
}
.play-toggle button {
  position: absolute;
  top: 5%;
  right: 3%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 4.5rem;
  width: 4.5rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.play-toggle button:hover i {
  color: #eb2539;
}
.play-toggle button:hover::before {
  transform: translate(-50%, -50%) scale(1.1);
}
.play-toggle button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  height: 100%;
  width: 100%;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.15s ease;
}
.play-toggle button i {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #000;
  margin: 0.15rem 0 0 0.15rem;
  transition: all 0.15s ease;
  z-index: 1;
  font-size: 1.8rem;
}

.about-us-video {
  width: max(66.6666vw, 1280px);
  height: max(66.6666vh, 720px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =============================
 * Contact page selectors (6th page)
 * ============================ */
.contact__container__section-one {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.6), rgba(4, 9, 30, 0.6)), url("../img/contact1.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 120vh;
  row-gap: 3rem;
}
.contact__container__section-one > * {
  margin: 0;
  text-transform: none;
}
.contact__container__section-one h1 {
  font-size: 4.8rem;
  line-height: 7rem;
  width: 60%;
  text-align: center;
}
.contact__container__section-one > p {
  position: relative;
  font-size: 3.5rem;
}
.contact__container__section-one > p span:first-child {
  position: relative;
  font-weight: bold;
  cursor: pointer;
}
.contact__container__section-one > p span:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0.5rem;
  width: 100%;
  background-color: #eb2539;
  margin-bottom: -0.7rem;
}
.contact__container__section-one > p span.copy {
  position: absolute;
  top: 60%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 2rem;
  font-size: 1.8rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  background-color: #fff;
  color: #000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.contact__container__section-one form {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  background-color: #ffffff;
  box-shadow: 0.2rem 0.2rem 0.5rem 0.1rem rgba(0, 0, 0, 0.5);
  padding: 3rem 0;
  border-radius: 0.4rem;
  margin-top: 2rem;
  row-gap: 1rem;
}
.contact__container__section-one form label {
  width: 80%;
  font-size: 1.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  color: rgba(0, 0, 0, 0.7);
}
.contact__container__section-one form label i {
  font-size: 0.5rem;
  color: #eb2539;
}
.contact__container__section-one form input {
  width: 80%;
  font-size: 1.8rem;
  padding: 1rem;
  background-color: transparent;
  border: 0.1rem solid rgba(0, 0, 0, 0.25);
  color: #000;
}
.contact__container__section-one form textarea {
  width: 80%;
  resize: vertical;
  font-size: 1.8rem;
  padding: 1rem;
  min-height: 4rem;
  height: 10vh;
  max-height: 30vh;
  border: 0.1rem solid rgba(0, 0, 0, 0.25);
  font-family: "D-DIN Regular";
}
.contact__container__section-one form button {
  width: 80%;
  background-color: #eb2539;
  padding: 1rem 0;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  font-size: 1.8rem;
  margin-top: 2rem;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0.1rem 0.1rem 0.5rem 0.1rem rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.contact__container__section-one form button:hover {
  background-color: rgba(235, 37, 57, 0.8745098039);
}

.contact__container__section-one form input.wrong, .contact__container__section-one form textarea.wrong {
  border: 0.1rem solid red;
}

/* =============================
 * Shop page selectors (6th page)
 * ============================ */
.shop-aside-categories-mobile {
  display: none;
}

.search-box {
  position: absolute;
  top: 0;
  left: 0;
  height: 8vh;
  width: 100%;
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  background-color: #fff;
  transition: top 0.3s ease;
  z-index: 2;
}
.search-box i:first-of-type {
  font-size: 2.2rem;
  margin-left: 5rem;
}
.search-box input {
  height: 50%;
  width: 70%;
  border: none;
  font-size: 2rem;
  text-transform: uppercase;
}
.search-box button.search-box__close {
  margin: 0 4rem 0 auto;
  height: 50%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.search-box button.search-box__close i {
  font-size: 2.4rem;
}

.shop__container__section-one {
  height: 75vh;
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.25), rgba(4, 9, 30, 0.25)), url("../img/shopbg.jpg");
  align-items: center;
}
.shop__container__section-one > * {
  margin: 0;
}
.shop__container__section-one h2 {
  font-size: 5rem;
}

.shop__container__section-two {
  height: auto;
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  row-gap: 7rem;
}
.shop__container__section-two > * {
  margin: 0;
}
.shop__container__section-two h3 {
  color: #000;
  font-size: 3rem;
  font-weight: bold;
  margin-top: 8rem;
}
.shop__container__section-two__products-container1 {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop__container__section-two__products-container1__product, .shop__container__section-two__products-container1__product2 {
  flex-basis: 49%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.shop__container__section-two__products-container1__product__img, .shop__container__section-two__products-container1__product2__img {
  height: 92%;
  width: 100%;
  background-image: url("../img/shopJacketFront.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
  cursor: pointer;
}
.shop__container__section-two__products-container1__product__img:hover, .shop__container__section-two__products-container1__product2__img:hover {
  background-image: url("../img/shopJacketBack.png");
}
.shop__container__section-two__products-container1__product p, .shop__container__section-two__products-container1__product2 p {
  font-size: 1.6rem;
  color: #000;
}
.shop__container__section-two__products-container1__product2__img {
  background-image: url("../img/shopHoodieFront.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.shop__container__section-two__products-container1__product2__img:hover {
  background-image: url("../img/shopHoodieBack.png");
}
.shop__container__section-two button.midsection-button {
  position: relative;
  padding: 1.6rem 3.2rem;
  background-color: #000;
  color: #fff;
  border: 0.1rem solid #000;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0;
}
.shop__container__section-two button.midsection-button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 100% 0%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}
.shop__container__section-two button.midsection-button:hover::after {
  transform: scaleX(1);
  transform-origin: 0% 0%;
}
.shop__container__section-two button.midsection-button:hover {
  color: #000;
}
.shop__container__section-two__products-container2 {
  width: 100%;
  display: flex;
  align-items: center;
}
.shop__container__section-two__products-container2__product {
  position: relative;
  flex-grow: 1;
  height: 65vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.shop__container__section-two__products-container2__product:hover .shop__container__section-two__products-container2__product__img {
  transform: scale(1.1);
}
.shop__container__section-two__products-container2__product__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1.01);
  transition: transform 5s ease;
}
.shop__container__section-two__products-container2__product h3, .shop__container__section-two__products-container2__product button {
  position: absolute;
}
.shop__container__section-two__products-container2__product h3 {
  bottom: 25%;
  left: 12%;
  color: #fff;
  font-size: 5rem;
  letter-spacing: 0.5rem;
}
.shop__container__section-two__products-container2__product button {
  bottom: 10%;
  left: 12%;
  padding: 1.6rem 4rem;
  background-color: #fff;
  color: #000;
  border: 0.1rem solid #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  mix-blend-mode: lighten;
  transition: color 0.25s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: 0;
}
.shop__container__section-two__products-container2__product button::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 100% 0%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.25, 1);
  z-index: -1;
}
.shop__container__section-two__products-container2__product button:hover::after {
  transform: scaleX(1);
  transform-origin: 0% 0%;
}
.shop__container__section-two__products-container2__product button:hover {
  color: #fff;
}
.shop__container__section-two__products-container2__product .img-bottom-1 {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url("../img/shopTshirt.png");
}
.shop__container__section-two__products-container2__product .img-bottom-2 {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url("../img/shopTshirt2.png");
}
.shop__container__section-two__products-container2__product .img-bottom-3 {
  background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url("../img/shopBag.png");
}

@keyframes text-animation {
  0% {
    padding-top: 10rem;
    opacity: 0;
  }
  100% {
    padding-top: 0;
    opacity: 1;
  }
}
@keyframes text-animation2 {
  0% {
    padding-top: 20rem;
    opacity: 0;
  }
  100% {
    padding-top: 0;
    opacity: 1;
  }
}
@keyframes opacity-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes background-blur {
  0% {
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    background-color: #5a5a5a;
  }
  15% {
    -webkit-backdrop-filter: blur(30px);
            backdrop-filter: blur(30px);
    background-color: #5a5a5a;
  }
  100% {
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    background-color: transparent;
  }
}
@keyframes background-change {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  28% {
    opacity: 1;
  }
  33.333% {
    opacity: 0;
  }
  38% {
    opacity: 1;
  }
  61% {
    opacity: 1;
  }
  66.666% {
    opacity: 0;
  }
  71% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.animation1 {
  animation: text-animation 1.25s ease forwards;
}

.animation2 {
  animation: opacity-animation 1.25s ease forwards;
}

.animation-background {
  animation: animation-background 1.25s ease forwards;
}

footer {
  width: 100%;
  height: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  justify-content: center;
  align-items: center;
  width: 100%;
}
footer div ul {
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer div ul li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer div ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.25s ease;
}
footer div ul li a:hover {
  color: rgba(255, 255, 255, 0.6);
}
footer div p {
  color: #fff;
  font-size: 1.2rem;
}

.modal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(0.15rem);
          backdrop-filter: blur(0.15rem);
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.58, 0, 0.25, 1.06);
}

.modal-shop {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.hide {
  visibility: hidden;
  opacity: 0;
}

.container aside.shop-aside-categories-mobile ul li.open-list {
  flex-basis: 32%;
}

.container aside.shop-aside-categories-mobile ul li ul.show-items {
  visibility: visible;
  opacity: 1;
}

.rotate-first-line {
  transform: rotate(450deg);
}

.rotate-second-line {
  transform: rotate(360deg);
}

@media all and (max-width: 480px) {
  header {
    left: 0;
    width: 100%;
    height: 8vh;
  }
  header .header__logo {
    flex-basis: 20%;
    height: 70%;
  }
  header .header__right-content {
    display: none;
  }
  header nav {
    display: none;
  }
  .section-main {
    justify-content: flex-end;
    row-gap: 1rem;
  }
  .section-main > * {
    margin-left: auto;
    margin-right: auto;
  }
  .section-main h2 {
    font-size: 3.5rem;
  }
  .section-main h3 {
    font-size: 1.6rem;
  }
  .section-main__button {
    height: 5rem;
    width: 16rem;
    margin: 1rem auto 5rem auto;
    font-size: 1.5rem;
  }
  .container__section-two.section-main {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.35), rgba(4, 9, 30, 0.35)), url("../img/480w/mainBg2w400h1000.jpg");
  }
  .container__section-three.section-main > * {
    margin-left: auto;
  }
  .container__section-three.section-main h2 {
    font-size: 2.8rem;
  }
  .container__section-three.section-main h3 {
    font-size: 1.6rem;
  }
  .container__section-three.section-main button {
    margin-bottom: 5rem;
    height: 5rem;
    width: 16rem;
  }
  .container__section-two.section-main h2 {
    font-size: 2.8rem;
  }
  footer {
    height: 15vh;
    padding: 5rem 0;
  }
  footer div ul {
    width: 100%;
    height: 80%;
    display: flex;
    gap: 1rem 0;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
  }
  footer div ul li:first-child {
    flex-basis: 100%;
  }
  footer div ul li {
    flex-basis: 25%;
  }
  footer div ul li a {
    font-size: 1.1rem;
    text-align: center;
  }
  footer div p {
    padding: 0rem 1rem;
    text-align: center;
  }
  .container aside:first-of-type {
    display: none;
  }
  .container .mobile-menu {
    width: 80%;
    transform: translateX(100%);
  }
  .mars__container__section-one {
    justify-content: center;
    row-gap: 1rem;
  }
  .mars__container__section-one h1 {
    font-size: 4.5rem;
  }
  .mars__container__section-one h2 {
    font-size: 2.2rem;
    width: 80%;
    text-align: center;
  }
  .mars__container__section-two {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.35), rgba(4, 9, 30, 0.35)), url("../img/1920x1080/marsBg2.jpg");
    align-items: center;
    justify-content: flex-start;
  }
  .mars__container__section-two__content-container {
    position: static;
    width: 95%;
    align-items: center;
    row-gap: 1rem;
  }
  .mars__container__section-two__content-container > p {
    font-size: 1.4rem;
  }
  .mars__container__section-two__content-container h2 {
    font-size: 2.6rem;
    margin-top: 2rem;
    width: 100%;
    text-align: center;
  }
  .mars__container__section-two__content-container__parameters div p {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
  .mars__container__section-three {
    height: 50vh;
    justify-content: flex-start;
    overflow: hidden;
  }
  .mars__container__section-three h3 {
    font-size: 2.5rem;
    text-align: center;
  }
  .mars__container__section-three__date-container {
    width: 90%;
    flex-wrap: wrap;
  }
  .mars__container__section-three__date-container div {
    flex-basis: 33%;
  }
  .mars__container__section-three__date-container div span:first-child {
    font-size: 3rem;
  }
  .mars__container__section-three__date-container div span:last-child {
    font-size: 1.5rem;
  }
  .mars__container__section-four {
    row-gap: 1.5rem;
    justify-content: flex-start;
  }
  .mars__container__section-four h2 {
    font-size: 3rem;
  }
  .mars__container__section-four h3 {
    font-size: 1.8rem;
  }
  .mars__container__section-four video {
    left: -220%;
    filter: brightness(50%);
  }
  .mars__container__section-four p {
    width: 90%;
    font-size: 1.4rem;
  }
  .news__container__section-one {
    align-items: center;
  }
  .news__container__section-one h1 {
    font-size: 3rem;
    width: 90%;
    margin: 0 auto;
  }
  .news__container__section-two {
    row-gap: 4rem;
    padding-bottom: 4rem;
  }
  .news__container__section-two h2 {
    margin-top: 4rem;
  }
  .news__container__section-two__news-container {
    width: 90%;
  }
  .news__container__section-two__news-container__news {
    flex-basis: 100%;
  }
  .news__container__section-three {
    height: 60vh;
  }
  .news__container__section-three__subscribe-container {
    width: 90%;
    height: 100%;
  }
  .news__container__section-three__subscribe-container > p {
    font-size: 1.6rem;
  }
  .news__container__section-three__subscribe-container form {
    width: 90%;
  }
  .careers__container__section-one {
    row-gap: 2rem;
    justify-content: center;
  }
  .careers__container__section-one h1 {
    font-size: 3rem;
    width: 90%;
    line-height: 4rem;
    margin-top: 5rem;
  }
  .careers__container__section-one p {
    font-size: 1.6rem;
    line-height: 2.6rem;
    width: 90%;
  }
  .careers__container__section-one__buttons-container {
    width: 90%;
  }
  .careers__container__section-one__buttons-container__button {
    height: 5rem;
    font-size: 1.2rem;
  }
  .careers__container__section-two {
    height: auto;
    row-gap: 2rem;
    justify-content: flex-start;
    padding: 3rem 0;
  }
  .careers__container__section-two h2 {
    font-size: 2.5rem;
    text-align: center;
    width: 90%;
  }
  .careers__container__section-two p {
    font-size: 1.6rem;
    line-height: 2.6rem;
    width: 90%;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
    text-transform: none;
  }
  .careers__container__section-three {
    padding-top: 4rem;
    row-gap: 2rem;
  }
  .careers__container__section-three > p {
    font-size: 1.8rem;
  }
  .careers__container__section-three > h3 {
    font-size: 2.8rem;
    width: 90%;
    text-align: center;
    margin-bottom: 3rem;
  }
  .careers__container__section-three__facilities-container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
    margin-bottom: 6rem;
  }
  .careers__container__section-three__facilities-container__facility {
    width: 100%;
  }
  .careers__container__section-three__facilities-container__facility__img {
    height: 30rem;
  }
  .careers__container__section-four {
    height: auto;
    flex-direction: column;
  }
  .careers__container__section-four__img {
    flex-basis: 90vw;
    width: 90vw;
  }
  .careers__container__section-four__container {
    min-height: 70vw;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 2rem;
    align-items: center;
    flex-basis: 50%;
    width: 90%;
  }
  .careers__container__section-four__container__button-container {
    margin-top: auto;
  }
  .careers__container__section-four__container h3 {
    width: 100%;
    font-size: 2rem;
    line-height: 3rem;
    text-align: center;
  }
  .careers__container__section-four__container p {
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
  .careers__container__section-four__container p span:first-child {
    width: 100%;
    height: 0.1rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    margin-top: -1rem;
  }
  .careers__container__section-four__container p span:nth-of-type(3), .careers__container__section-four__container p span:nth-of-type(5) {
    display: none;
  }
  .careers__container__section-five {
    height: auto;
    row-gap: 2.5rem;
    padding: 5rem 0;
    justify-content: flex-start;
  }
  .careers__container__section-five p:first-of-type {
    font-size: 1.6rem;
  }
  .careers__container__section-five h3 {
    font-size: 2.8rem;
    width: 90%;
    text-align: center;
  }
  .careers__container__section-five p:nth-of-type(2) {
    font-size: 1.6rem;
    line-height: 2.6rem;
    width: 90%;
  }
  .careers__container__section-five > button {
    width: 60%;
  }
  .about-us__container__section-one {
    justify-content: center;
    row-gap: 3rem;
  }
  .about-us__container__section-one h1 {
    font-size: 5rem;
    width: 90%;
    text-align: center;
  }
  .about-us__container__section-one > p {
    font-size: 2.2rem;
    line-height: 3.2rem;
    text-align: center;
    width: 90%;
  }
  .about-us__container__section-one__play-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.5rem;
    width: 90%;
  }
  .about-us__container__section-two {
    row-gap: 0;
  }
  .about-us__container__section-two__article {
    position: relative;
    flex-direction: column;
    height: 100vh;
    background-color: #111;
  }
  .about-us__container__section-two__article__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .about-us__container__section-two__article__text-container {
    align-items: center;
    row-gap: 2rem;
    width: 90%;
    z-index: 1;
  }
  .about-us__container__section-two__article__text-container p:first-of-type {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #ccc;
  }
  .about-us__container__section-two__article__text-container h2 {
    font-size: 3.5rem;
    width: 100%;
    text-align: center;
  }
  .about-us__container__section-two__article__text-container p:nth-of-type(2) {
    width: 90%;
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin-bottom: 0;
  }
  .about-us1img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/aboutusimg1.jpg");
  }
  .about-us2img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/aboutusimg2.jpg");
  }
  .about-us3img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)), url("../img/aboutusimg3.jpg");
  }
  .about-us4img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/aboutusimg4.jpg");
  }
  .about-us__container__section-three {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5rem;
  }
  .about-us__container__section-three h3 {
    font-size: 5rem;
  }
  .about-us__container__section-three h3 span {
    height: 0.5rem;
  }
  .about-us-video {
    width: 100vw;
    height: 56.25vw;
  }
  .contact__container__section-one {
    height: 150vh;
    row-gap: 3rem;
  }
  .contact__container__section-one h1 {
    font-size: 3rem;
    line-height: 4.5rem;
    width: 90%;
  }
  .contact__container__section-one > p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1rem;
    text-align: center;
    font-size: 3rem;
  }
  .contact__container__section-one > p span.copy {
    top: 25%;
    left: 75%;
    margin-left: 2rem;
  }
  .contact__container__section-one form {
    width: 90%;
    margin: 1rem 0 4rem 0;
  }
  .contact__container__section-one form label {
    font-size: 1.4rem;
  }
  .contact__container__section-one form label i {
    font-size: 0.4rem;
  }
  .contact__container__section-one form input, .contact__container__section-one form textarea {
    font-size: 1.6rem;
  }
  .header-shop {
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: flex-start;
  }
  .header-shop .header-shop__logo {
    width: 14%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header-shop .header-shop__right-content, .header-shop nav {
    display: none;
  }
  .header-shop .header-shop__right-content-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    margin-left: auto;
    margin-right: 1rem;
  }
  .header-shop .header-shop__right-content-mobile a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  .header-shop .header-shop__right-content-mobile a i {
    font-size: 1.7rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 0.7rem;
  }
  .header-shop .header-shop__humburger-left-mobile {
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    -webkit-tap-highlight-color: transparent;
  }
  .shop__container__section-one {
    justify-content: center;
    height: 50vh;
  }
  .shop__container__section-one h2 {
    margin-top: 3rem;
    font-size: 2.8rem;
    text-align: center;
  }
  .shop__container__section-two {
    justify-content: flex-start;
    align-items: center;
    row-gap: 3rem;
  }
  .shop__container__section-two h3 {
    font-size: 2.2rem;
    margin-top: 3.5rem;
  }
  .shop__container__section-two__products-container1__product, .shop__container__section-two__products-container1__product2 {
    height: 40vh;
    row-gap: 1rem;
    justify-content: flex-start;
  }
  .shop__container__section-two__products-container1__product__img, .shop__container__section-two__products-container1__product2__img {
    height: 75%;
  }
  .shop__container__section-two__products-container1__product p, .shop__container__section-two__products-container1__product2 p {
    font-size: 1.6rem;
    text-align: center;
  }
  .shop__container__section-two__products-container2 {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .shop__container__section-two__products-container2__product {
    flex-grow: 1;
    width: 100%;
  }
  .shop__container__section-two__products-container2 div:last-child {
    margin-bottom: 2rem;
  }
  .container aside.shop-aside-categories-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-102%);
    height: 100vh;
    width: 80%;
    background-color: #fff;
    z-index: 3;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button {
    position: absolute;
    top: 3%;
    left: 5%;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button i {
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.4);
  }
  .container aside.shop-aside-categories-mobile ul {
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin-top: 8rem;
  }
  .container aside.shop-aside-categories-mobile ul li {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    flex-basis: 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 0.15rem;
    font-weight: bold;
    transition: all 0.2s ease;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .first-line, .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    position: absolute;
    top: 0;
    right: 2%;
    height: 1.2rem;
    width: 0.2rem;
    transform-origin: 50% 50%;
    background-color: #222;
    transition: transform 0.3s ease;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    transform: rotate(90deg);
  }
  .container aside.shop-aside-categories-mobile ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-basis: 80%;
    margin-top: 0;
    margin-left: 2rem;
    transition: all 0.2s ease;
  }
  .container aside.shop-aside-categories-mobile ul li ul li {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.4);
    border-bottom: none;
    padding: 1rem 0;
    margin: 0.5rem 0;
  }
  .container aside.shop-aside-categories-mobile ul li:last-child {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: normal;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
  }
  .search-box {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .search-box i:first-of-type {
    font-size: 2.2rem;
    margin-left: 2rem;
  }
  .search-box input {
    width: 90%;
    font-size: 2rem;
  }
  .search-box button.search-box__close {
    margin: 0 2rem 0 auto;
  }
  .search-box button.search-box__close i {
    font-size: 2rem;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  header {
    left: 0;
    width: 100%;
  }
  header .header__logo {
    flex-basis: 20%;
    height: 70%;
  }
  header .header__right-content {
    display: none;
  }
  header nav {
    display: none;
  }
  .container__hamburger__button {
    height: 2rem;
    width: 2rem;
  }
  .container__hamburger__button.open .line.first {
    transform: rotate(45deg) translateX(0.26rem);
  }
  .container__hamburger__button.open .line.third {
    transform: rotate(-45deg) translateX(0.26rem);
  }
  .section-main {
    justify-content: flex-end;
    row-gap: 1rem;
  }
  .section-main > * {
    margin-left: auto;
    margin-right: auto;
  }
  .section-main h2 {
    font-size: 3.8rem;
    text-align: center;
  }
  .section-main h3 {
    font-size: 2.6rem;
  }
  .section-main__button {
    height: 6.5rem;
    width: 22rem;
    margin: 1rem auto 5rem auto;
    font-size: 1.9rem;
  }
  .container__section-three.section-main {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/1920x1080/mainBg3.jpg");
  }
  .container__section-three.section-main > * {
    margin-left: auto;
  }
  .container__section-two.section-main {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.4), rgba(4, 9, 30, 0.4)), url("../img/480w/mainBg2w400h1000.jpg");
  }
  footer {
    height: 12vh;
  }
  footer ul {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
  }
  footer ul li:first-child {
    flex-basis: 100%;
  }
  footer ul li {
    flex-basis: 20%;
  }
  footer ul li a {
    font-size: 1.4rem;
  }
  .container aside:first-of-type {
    display: none;
  }
  .container .mobile-menu {
    width: 50%;
    transform: translateX(100%);
  }
  .container .mobile-menu ul {
    font-size: 2rem;
  }
  .container .mobile-menu ul li a {
    padding: 1.75rem 0;
  }
  .mars__container__section-one {
    justify-content: center;
    row-gap: 1rem;
  }
  .mars__container__section-one h1 {
    font-size: 6rem;
  }
  .mars__container__section-one h2 {
    font-size: 3.5rem;
    line-height: 4.5rem;
    width: 80%;
  }
  .mars__container__section-two {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/1920x1080/marsBg2.jpg");
    align-items: center;
    justify-content: flex-start;
    height: 150vh;
  }
  .mars__container__section-two__content-container {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    align-items: center;
    row-gap: 2rem;
  }
  .mars__container__section-two__content-container > p {
    font-size: 2.2rem;
    line-height: 3.4rem;
    text-align: justify;
  }
  .mars__container__section-two__content-container h2 {
    font-size: 4rem;
    margin-top: 0;
    width: 100%;
    text-align: center;
  }
  .mars__container__section-two__content-container__parameters div p {
    font-size: 2.2rem;
    line-height: 3.4rem;
  }
  .mars__container__section-three {
    height: 50vh;
    justify-content: flex-start;
    overflow: hidden;
  }
  .mars__container__section-three h3 {
    font-size: 4rem;
    text-align: center;
  }
  .mars__container__section-three__date-container {
    width: 90%;
    flex-wrap: wrap;
  }
  .mars__container__section-three__date-container div {
    flex-basis: 33%;
  }
  .mars__container__section-three__date-container div span:first-child {
    font-size: 6rem;
  }
  .mars__container__section-three__date-container div span:last-child {
    font-size: 3rem;
  }
  .mars__container__section-four {
    row-gap: 2.7rem;
    justify-content: flex-start;
  }
  .mars__container__section-four h2 {
    font-size: 5rem;
  }
  .mars__container__section-four h3 {
    font-size: 2.8rem;
  }
  .mars__container__section-four video {
    left: -80%;
    filter: brightness(50%);
  }
  .mars__container__section-four p {
    width: 90%;
    font-size: 2.2rem;
    line-height: 3.8rem;
  }
  .mars__container__section-four button {
    height: 8rem;
    width: 35rem;
    font-size: 1.8rem;
  }
  .news__container__section-one {
    align-items: center;
  }
  .news__container__section-one h1 {
    font-size: 5.5rem;
    line-height: 7rem;
    width: 90%;
  }
  .news__container__section-two {
    row-gap: 4rem;
    padding-bottom: 4rem;
  }
  .news__container__section-two h2 {
    margin-top: 4rem;
  }
  .news__container__section-two__news-container {
    width: 90%;
  }
  .news__container__section-two__news-container__news {
    flex-basis: 100%;
  }
  .news__container__section-two__news-container__news__img {
    height: 40rem;
    width: 100%;
  }
  .news__container__section-two__news-container__news p:first-of-type {
    width: 90%;
  }
  .news__container__section-two__news-container__news p:first-of-type span {
    width: 5%;
  }
  .news__container__section-two__news-container__news h3 {
    font-size: 3rem;
    width: 90%;
  }
  .news__container__section-two__news-container__news p:nth-of-type(2) {
    width: 90%;
    font-size: 2.1rem;
    line-height: 3.4rem;
    letter-spacing: 0.04rem;
    margin-bottom: 3rem;
  }
  .news__container__section-two__news-container__archive-button {
    height: 7.5rem;
    width: 25rem;
    font-size: 1.8rem;
  }
  .news__container__section-three {
    height: 45vh;
  }
  .news__container__section-three__subscribe-container {
    width: 60%;
    height: 100%;
  }
  .news__container__section-three__subscribe-container > p {
    font-size: 2.2rem;
  }
  .news__container__section-three__subscribe-container form {
    width: 90%;
  }
  .news__container__section-three__subscribe-container form input:first-child {
    height: 4.5rem;
    width: 90%;
    font-size: 2rem;
  }
  .news__container__section-three__subscribe-container form p {
    font-size: 1.8rem;
    line-height: 2.5rem;
    margin-top: -0.4rem;
    width: 85%;
    font-style: italic;
  }
  .careers__container__section-one {
    row-gap: 2rem;
    justify-content: center;
  }
  .careers__container__section-one h1 {
    width: 90%;
    font-size: 4.5rem;
    line-height: 6rem;
    margin-top: 0;
  }
  .careers__container__section-one p {
    font-size: 2rem;
    line-height: 3.4rem;
    width: 90%;
  }
  .careers__container__section-one__buttons-container {
    width: 90%;
  }
  .careers__container__section-one__buttons-container__button {
    height: 7rem;
    font-size: 1.8rem;
  }
  .careers__container__section-two {
    height: auto;
    row-gap: 2rem;
    justify-content: flex-start;
    padding: 3rem 0;
  }
  .careers__container__section-two h2 {
    font-size: 4rem;
    text-align: center;
    width: 90%;
  }
  .careers__container__section-two p {
    font-size: 2.1rem;
    line-height: 3.4rem;
    width: 90%;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
    text-transform: none;
  }
  .careers__container__section-three {
    padding-top: 4rem;
    row-gap: 2rem;
  }
  .careers__container__section-three > p {
    font-size: 2rem;
  }
  .careers__container__section-three > h3 {
    font-size: 3.5rem;
    width: 90%;
    text-align: center;
    margin-bottom: 3rem;
  }
  .careers__container__section-three__facilities-container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
    margin-bottom: 6rem;
  }
  .careers__container__section-three__facilities-container__facility {
    width: 100%;
  }
  .careers__container__section-three__facilities-container__facility__img {
    height: 39rem;
  }
  .careers__container__section-three__facilities-container__facility h3 {
    font-size: 3.5rem;
  }
  .careers__container__section-three__facilities-container__facility p {
    font-size: 2rem;
    line-height: 3rem;
    text-align: justify;
  }
  .careers__container__section-four {
    height: auto;
    flex-direction: column;
  }
  .careers__container__section-four__img {
    flex-basis: 90vw;
    width: 90vw;
  }
  .careers__container__section-four__container {
    min-height: 46vw;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 2rem;
    align-items: center;
    flex-basis: 50%;
    width: 90%;
  }
  .careers__container__section-four__container__button-container {
    margin-top: auto;
  }
  .careers__container__section-four__container__button-container button {
    padding: 2rem;
  }
  .careers__container__section-four__container__button-container button i {
    font-size: 1.8rem;
  }
  .careers__container__section-four__container h3 {
    width: 100%;
    font-size: 3rem;
    line-height: 4.2rem;
    text-align: center;
  }
  .careers__container__section-four__container p {
    width: 100%;
    font-size: 2rem;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .careers__container__section-four__container p span:first-child {
    width: 100%;
    height: 0.2rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    margin-top: -1rem;
  }
  .careers__container__section-four__container p span:nth-of-type(3), .careers__container__section-four__container p span:nth-of-type(5) {
    display: none;
  }
  .careers__container__section-five {
    height: auto;
    row-gap: 2.5rem;
    padding: 5rem 0;
    justify-content: flex-start;
    margin-top: -0.1rem;
  }
  .careers__container__section-five p:first-of-type {
    font-size: 1.8rem;
  }
  .careers__container__section-five h3 {
    font-size: 3.5rem;
    width: 90%;
    text-align: center;
  }
  .careers__container__section-five p:nth-of-type(2) {
    font-size: 2rem;
    line-height: 3.2rem;
    width: 90%;
  }
  .careers__container__section-five > button {
    width: 60%;
    font-size: 1.6rem;
  }
  .about-us__container__section-one {
    justify-content: center;
    row-gap: 3rem;
  }
  .about-us__container__section-one h1 {
    font-size: 5.5rem;
    width: 90%;
    text-align: center;
  }
  .about-us__container__section-one > p {
    font-size: 2.4rem;
    line-height: 3.6rem;
    text-align: center;
    width: 90%;
  }
  .about-us__container__section-one__play-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.5rem;
    width: 90%;
  }
  .about-us__container__section-one__play-container p {
    font-size: 2rem;
  }
  .about-us-video {
    width: 100vw;
    height: 56.25vw;
  }
  .about-us__container__section-two {
    row-gap: 0;
  }
  .about-us__container__section-two__article {
    position: relative;
    flex-direction: column;
    height: 70vh;
    background-color: #111;
  }
  .about-us__container__section-two__article__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  .about-us__container__section-two__article__text-container {
    align-items: center;
    row-gap: 2rem;
    width: 90%;
    z-index: 1;
  }
  .about-us__container__section-two__article__text-container p:first-of-type {
    font-size: 1.8rem;
    margin-top: 5rem;
    color: #ccc;
  }
  .about-us__container__section-two__article__text-container h2 {
    font-size: 4rem;
    width: 100%;
    text-align: center;
  }
  .about-us__container__section-two__article__text-container p:nth-of-type(2) {
    width: 90%;
    font-size: 2.2rem;
    line-height: 3.5rem;
    margin-bottom: 0;
  }
  .about-us1img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/aboutusimg1.jpg");
  }
  .about-us2img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/aboutusimg2.jpg");
  }
  .about-us3img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/aboutusimg3.jpg");
  }
  .about-us4img {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url("../img/aboutusimg4.jpg");
  }
  .about-us__container__section-three {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5rem;
  }
  .about-us__container__section-three h3 {
    font-size: 5rem;
  }
  .about-us__container__section-three h3 span {
    height: 0.5rem;
  }
  .contact__container__section-one {
    height: 105vh;
    row-gap: 3rem;
  }
  .contact__container__section-one h1 {
    font-size: 4rem;
    line-height: 5.8rem;
    width: 90%;
  }
  .contact__container__section-one > p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1rem;
    text-align: center;
    font-size: 3.5rem;
  }
  .contact__container__section-one > p span.copy {
    top: 25%;
    left: 75%;
    margin-left: 2rem;
  }
  .contact__container__section-one form {
    width: 60%;
    margin: 1rem 0 4rem 0;
  }
  .contact__container__section-one form label {
    font-size: 2rem;
  }
  .contact__container__section-one form label i {
    font-size: 0.6rem;
  }
  .contact__container__section-one form input, .contact__container__section-one form textarea {
    font-size: 2rem;
  }
  .header-shop {
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: flex-start;
  }
  .header-shop .header-shop__logo {
    width: 9%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header-shop .header-shop__right-content, .header-shop nav {
    display: none;
  }
  .header-shop .header-shop__right-content-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    margin-left: auto;
    margin-right: 1rem;
  }
  .header-shop .header-shop__right-content-mobile a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  .header-shop .header-shop__right-content-mobile a i {
    font-size: 2.4rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 0.7rem;
  }
  .header-shop .header-shop__humburger-left-mobile {
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    -webkit-tap-highlight-color: transparent;
  }
  .shop__container__section-one {
    justify-content: center;
    height: 50vh;
  }
  .shop__container__section-one h2 {
    margin-top: 3rem;
    font-size: 3.5rem;
    text-align: center;
  }
  .shop__container__section-two {
    justify-content: flex-start;
    align-items: center;
    row-gap: 3rem;
  }
  .shop__container__section-two h3 {
    font-size: 2.6rem;
    margin-top: 4rem;
  }
  .shop__container__section-two__products-container1__product, .shop__container__section-two__products-container1__product2 {
    height: 40vh;
    row-gap: 1rem;
    justify-content: flex-start;
  }
  .shop__container__section-two__products-container1__product__img, .shop__container__section-two__products-container1__product2__img {
    height: 75%;
  }
  .shop__container__section-two__products-container1__product p, .shop__container__section-two__products-container1__product2 p {
    font-size: 2rem;
    text-align: center;
  }
  .shop__container__section-two__products-container2 {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .shop__container__section-two__products-container2__product {
    flex-grow: 1;
    width: 100%;
  }
  .shop__container__section-two__products-container2 div:last-child {
    margin-bottom: 2rem;
  }
  .container aside.shop-aside-categories-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-102%);
    height: 100vh;
    width: 80%;
    background-color: #fff;
    z-index: 3;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button {
    position: absolute;
    top: 3%;
    left: 5%;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button i {
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.4);
  }
  .container aside.shop-aside-categories-mobile ul {
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin-top: 8rem;
  }
  .container aside.shop-aside-categories-mobile ul li {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    flex-basis: 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 0.15rem;
    font-weight: bold;
    transition: all 0.2s ease;
    font-size: 2rem;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .first-line, .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    position: absolute;
    top: 0;
    right: 2%;
    height: 1.2rem;
    width: 0.2rem;
    transform-origin: 50% 50%;
    background-color: #222;
    transition: transform 0.3s ease;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    transform: rotate(90deg);
  }
  .container aside.shop-aside-categories-mobile ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-basis: 80%;
    margin-top: 0;
    margin-left: 2rem;
    transition: all 0.2s ease;
  }
  .container aside.shop-aside-categories-mobile ul li ul li {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.4);
    border-bottom: none;
    padding: 1rem 0;
    margin: 0.5rem 0;
  }
  .container aside.shop-aside-categories-mobile ul li:last-child {
    border-bottom: none;
    font-size: 1.8rem;
    font-weight: normal;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
  }
  .search-box {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .search-box i:first-of-type {
    font-size: 2rem;
    margin-left: 2rem;
  }
  .search-box input {
    width: 90%;
    font-size: 1.7rem;
  }
  .search-box button.search-box__close {
    margin: 0 2rem 0 auto;
  }
  .search-box button.search-box__close i {
    font-size: 2rem;
  }
}
@media all and (min-width: 769px) and (max-width: 992px) {
  header {
    left: 0;
    width: 100%;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    font-size: 1.6rem;
  }
  header .header__logo {
    flex-basis: 8%;
    margin-left: 5rem;
  }
  header nav {
    flex-basis: 70%;
  }
  .section-main {
    row-gap: 2rem;
  }
  .section-main h2 {
    font-size: 5rem;
    text-align: center;
  }
  .section-main h3 {
    font-size: 3rem;
  }
  .section-main__button {
    height: 6.5rem;
    width: 22rem;
    font-size: 1.9rem;
    margin: 1rem 0 0 15%;
  }
  .container__section-three.section-main > * {
    margin-left: 65%;
    text-transform: uppercase;
  }
  .container__section-three.section-main h2 {
    text-align: left;
  }
  .container__section-three.section-main button {
    margin-bottom: 12%;
  }
  footer {
    height: 10vh;
  }
  footer div {
    width: 100%;
  }
  footer div ul {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
    gap: 1rem 0;
    padding: 0 2rem;
    flex-wrap: wrap;
  }
  footer div ul li:first-child {
    flex-basis: 100%;
  }
  footer div ul li {
    flex-basis: 20%;
  }
  footer div ul li a {
    font-size: 1.3rem;
  }
  .container aside:first-of-type {
    display: flex;
    width: 35%;
  }
  .container aside:first-of-type ul {
    font-size: 2rem;
  }
  .container aside:first-of-type ul a {
    padding: 2rem 0;
  }
  .container .mobile-menu {
    display: none;
  }
  .mars__container__section-one {
    justify-content: center;
    row-gap: 1rem;
  }
  .mars__container__section-one h1 {
    font-size: 6rem;
  }
  .mars__container__section-one h2 {
    font-size: 3rem;
    line-height: 5rem;
    width: 80%;
  }
  .mars__container__section-two {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.45), rgba(4, 9, 30, 0.45)), url("../img/1920x1080/marsBg2.jpg");
    align-items: center;
    justify-content: flex-start;
    height: 120vh;
  }
  .mars__container__section-two__content-container {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    align-items: center;
    row-gap: 2rem;
  }
  .mars__container__section-two__content-container > p {
    font-size: 1.8rem;
    line-height: 3.2rem;
    text-align: justify;
  }
  .mars__container__section-two__content-container h2 {
    font-size: 4rem;
    margin-top: 0;
    width: 100%;
    text-align: center;
  }
  .mars__container__section-two__content-container__parameters div p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .mars__container__section-three {
    height: auto;
    row-gap: 3rem;
    justify-content: flex-start;
    overflow: hidden;
  }
  .mars__container__section-three h3 {
    font-size: 3.5rem;
    text-align: center;
  }
  .mars__container__section-three__date-container {
    row-gap: 5rem;
    width: 90%;
    flex-wrap: wrap;
  }
  .mars__container__section-three__date-container div {
    flex-basis: 33%;
  }
  .mars__container__section-three__date-container div span:first-child {
    font-size: 5rem;
  }
  .mars__container__section-three__date-container div span:last-child {
    font-size: 2.5rem;
  }
  .mars__container__section-four {
    row-gap: 2.7rem;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10rem;
  }
  .mars__container__section-four > * {
    margin: 0;
  }
  .mars__container__section-four h2 {
    font-size: 4rem;
  }
  .mars__container__section-four h3 {
    font-size: 2rem;
  }
  .mars__container__section-four video {
    left: -117%;
    filter: brightness(50%);
  }
  .mars__container__section-four p {
    width: 90%;
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .mars__container__section-four button {
    height: 8rem;
    width: 35rem;
    font-size: 1.8rem;
  }
  .news__container__section-one {
    align-items: center;
  }
  .news__container__section-one h1 {
    font-size: 4.5rem;
    line-height: 6rem;
    width: 90%;
  }
  .news__container__section-two {
    row-gap: 4rem;
    padding-bottom: 4rem;
  }
  .news__container__section-two h2 {
    margin-top: 4rem;
    font-size: 3rem;
  }
  .news__container__section-two__news-container {
    width: 90%;
  }
  .news__container__section-two__news-container__news {
    flex-basis: 49%;
  }
  .news__container__section-two__news-container__news__img {
    height: 24rem;
    width: 100%;
  }
  .news__container__section-two__news-container__news p:first-of-type {
    width: 90%;
  }
  .news__container__section-two__news-container__news p:first-of-type span {
    width: 5%;
  }
  .news__container__section-two__news-container__news h3 {
    font-size: 2.5rem;
    width: 90%;
  }
  .news__container__section-two__news-container__news p:nth-of-type(2) {
    width: 90%;
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: 0.04rem;
    margin-bottom: 3rem;
  }
  .news__container__section-two__news-container__archive-button {
    height: 6rem;
    width: 20rem;
    font-size: 1.4rem;
  }
  .news__container__section-three {
    height: 50vh;
  }
  .news__container__section-three__subscribe-container {
    width: 60%;
    height: 100%;
  }
  .news__container__section-three__subscribe-container > p {
    font-size: 2rem;
  }
  .news__container__section-three__subscribe-container form {
    width: 90%;
  }
  .news__container__section-three__subscribe-container form input:first-child {
    height: 4.5rem;
    width: 90%;
    font-size: 1.8rem;
  }
  .news__container__section-three__subscribe-container form p {
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-top: -0.4rem;
    width: 85%;
    font-style: italic;
  }
  .careers__container__section-one {
    row-gap: 2rem;
    justify-content: center;
  }
  .careers__container__section-one h1 {
    width: 90%;
    font-size: 3.5rem;
    line-height: 5.5rem;
    margin-top: 0;
  }
  .careers__container__section-one p {
    font-size: 1.7rem;
    line-height: 3.1rem;
    width: 90%;
  }
  .careers__container__section-one__buttons-container {
    width: 90%;
    justify-content: space-around;
  }
  .careers__container__section-one__buttons-container__button {
    height: 6rem;
    width: 30%;
    font-size: 1.5rem;
  }
  .careers__container__section-two {
    height: auto;
    row-gap: 2rem;
    justify-content: flex-start;
    padding: 3rem 0;
  }
  .careers__container__section-two h2 {
    font-size: 3.5rem;
    text-align: center;
    width: 90%;
  }
  .careers__container__section-two p {
    font-size: 1.8rem;
    line-height: 3rem;
    width: 90%;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
    text-transform: none;
  }
  .careers__container__section-three {
    padding-top: 4rem;
    row-gap: 2rem;
  }
  .careers__container__section-three > p {
    font-size: 2rem;
  }
  .careers__container__section-three > h3 {
    font-size: 3.5rem;
    width: 90%;
    text-align: center;
    margin-bottom: 3rem;
  }
  .careers__container__section-three__facilities-container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
    margin-bottom: 6rem;
  }
  .careers__container__section-three__facilities-container__facility {
    width: 100%;
  }
  .careers__container__section-three__facilities-container__facility__img {
    height: 39rem;
  }
  .careers__container__section-three__facilities-container__facility h3 {
    font-size: 3rem;
  }
  .careers__container__section-three__facilities-container__facility p {
    font-size: 1.8rem;
    line-height: 3rem;
    text-align: justify;
  }
  .careers__container__section-four {
    height: 75vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .careers__container__section-four__img {
    height: 80%;
    flex-basis: 50%;
  }
  .careers__container__section-four__container {
    flex-basis: 50%;
    height: 60%;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .careers__container__section-four__container h3 {
    width: 90%;
    font-size: 2.5rem;
    line-height: 3.8rem;
  }
  .careers__container__section-four__container p {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    width: 95%;
    font-size: 1.4rem;
  }
  .careers__container__section-four__container p span:first-child {
    width: 4%;
    height: 0.5rem;
  }
  .careers__container__section-five p:first-of-type {
    font-size: 1.8rem;
  }
  .careers__container__section-five h3 {
    font-size: 3rem;
  }
  .careers__container__section-five p:nth-of-type(2) {
    font-size: 2rem;
    line-height: 3.2rem;
    width: 90%;
  }
  .careers__container__section-five > button {
    width: 30%;
    font-size: 1.5rem;
  }
  .about-us__container__section-one {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 3rem;
  }
  .about-us__container__section-one > * {
    margin: 0;
    margin-left: 15%;
  }
  .about-us__container__section-one h1 {
    font-size: 5rem;
    width: 90%;
  }
  .about-us__container__section-one > p {
    font-size: 2rem;
    line-height: 3.2rem;
    width: 80%;
  }
  .about-us__container__section-one__play-container {
    width: 50%;
  }
  .about-us-video {
    width: 100vw;
    height: 56.25vw;
  }
  .about-us__container__section-two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0;
  }
  .about-us__container__section-two > * {
    margin: 0;
  }
  .about-us__container__section-two__article {
    height: 65vh;
  }
  .about-us__container__section-two__article__text-container {
    row-gap: 2rem;
  }
  .about-us__container__section-two__article__text-container p:first-of-type {
    font-size: 1.5rem;
    margin-top: 3rem;
  }
  .about-us__container__section-two__article__text-container h2 {
    font-size: 3rem;
    width: 90%;
    text-align: center;
  }
  .about-us__container__section-two__article__text-container p:nth-of-type(2) {
    font-size: 1.8rem;
    line-height: 2.8rem;
    width: 85%;
    margin-bottom: 0;
  }
  .about-us__container__section-three {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5rem;
  }
  .about-us__container__section-three h3 {
    font-size: 5rem;
  }
  .about-us__container__section-three h3 span {
    height: 0.5rem;
  }
  .contact__container__section-one {
    height: 140vh;
    row-gap: 3rem;
  }
  .contact__container__section-one h1 {
    font-size: 4rem;
    line-height: 5.8rem;
    width: 90%;
  }
  .contact__container__section-one > p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1rem;
    text-align: center;
    font-size: 3.5rem;
  }
  .contact__container__section-one > p span.copy {
    top: 25%;
    left: 75%;
    margin-left: 2rem;
  }
  .contact__container__section-one form {
    width: 50%;
    margin: 1rem 0 4rem 0;
  }
  .contact__container__section-one form label {
    font-size: 1.6rem;
  }
  .contact__container__section-one form label i {
    font-size: 0.5rem;
  }
  .contact__container__section-one form input, .contact__container__section-one form textarea {
    font-size: 1.8rem;
  }
  .header-shop {
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: flex-start;
  }
  .header-shop .header-shop__logo {
    width: 6%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header-shop .header-shop__right-content, .header-shop nav {
    display: none;
  }
  .header-shop .header-shop__right-content-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    margin-left: auto;
    margin-right: 1rem;
  }
  .header-shop .header-shop__right-content-mobile a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  .header-shop .header-shop__right-content-mobile a i {
    font-size: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 1.2rem;
  }
  .header-shop .header-shop__humburger-left-mobile {
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    -webkit-tap-highlight-color: transparent;
  }
  .shop__container__section-one {
    justify-content: center;
    height: 50vh;
  }
  .shop__container__section-one h2 {
    margin-top: 3rem;
    font-size: 4.5rem;
    text-align: center;
  }
  .shop__container__section-two {
    justify-content: flex-start;
    align-items: center;
    row-gap: 3rem;
  }
  .shop__container__section-two h3 {
    font-size: 2.6rem;
    margin-top: 4rem;
  }
  .shop__container__section-two__products-container1__product, .shop__container__section-two__products-container1__product2 {
    height: 55vh;
    row-gap: 1rem;
    justify-content: flex-start;
  }
  .shop__container__section-two__products-container1__product__img, .shop__container__section-two__products-container1__product2__img {
    height: 90%;
  }
  .shop__container__section-two__products-container1__product p, .shop__container__section-two__products-container1__product2 p {
    font-size: 2rem;
    text-align: center;
  }
  .shop__container__section-two__products-container2 {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .shop__container__section-two__products-container2__product {
    min-height: 90vh;
    flex-grow: 1;
    width: 100%;
  }
  .shop__container__section-two__products-container2 div:last-child {
    margin-bottom: 2rem;
  }
  .container aside.shop-aside-categories-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-102%);
    height: 100vh;
    width: 40%;
    background-color: #fff;
    z-index: 3;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button {
    position: absolute;
    top: 3%;
    left: 5%;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button i {
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.4);
  }
  .container aside.shop-aside-categories-mobile ul {
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin-top: 8rem;
  }
  .container aside.shop-aside-categories-mobile ul li {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    flex-basis: 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 0.15rem;
    font-weight: bold;
    transition: all 0.2s ease;
    font-size: 2rem;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .first-line, .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    position: absolute;
    top: 0;
    right: 2%;
    height: 1.2rem;
    width: 0.2rem;
    transform-origin: 50% 50%;
    background-color: #222;
    transition: transform 0.3s ease;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    transform: rotate(90deg);
  }
  .container aside.shop-aside-categories-mobile ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-basis: 80%;
    margin-top: 0;
    margin-left: 2rem;
    transition: all 0.2s ease;
  }
  .container aside.shop-aside-categories-mobile ul li ul li {
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.4);
    border-bottom: none;
    padding: 1rem 0;
    margin: 0.5rem 0;
  }
  .container aside.shop-aside-categories-mobile ul li:last-child {
    border-bottom: none;
    font-size: 1.8rem;
    font-weight: normal;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
  }
  .search-box {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .search-box i:first-of-type {
    font-size: 2rem;
    margin-left: 2rem;
  }
  .search-box input {
    width: 90%;
    font-size: 1.7rem;
  }
  .search-box button.search-box__close {
    margin: 0 2rem 0 auto;
  }
  .search-box button.search-box__close i {
    font-size: 2rem;
  }
}
@media all and (min-width: 993px) and (max-width: 1200px) {
  header {
    left: 0;
    width: 100%;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    font-size: 1.8rem;
  }
  header .header__logo {
    flex-basis: 8%;
    margin-left: 5rem;
  }
  header nav {
    flex-basis: 70%;
  }
  .section-main {
    row-gap: 2rem;
  }
  .section-main h2 {
    font-size: 6.5rem;
    text-align: center;
  }
  .section-main h3 {
    font-size: 3.5rem;
  }
  .section-main__button {
    height: 8rem;
    width: 28rem;
    font-size: 2.2rem;
    margin: 1rem 0 0 15%;
  }
  .container__section-three.section-main > * {
    margin-left: 65%;
    text-transform: uppercase;
  }
  .container__section-three.section-main h2 {
    text-align: left;
  }
  .container__section-three.section-main button {
    margin-bottom: 12%;
  }
  footer {
    height: 10vh;
  }
  footer ul {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
  }
  footer ul li:first-child {
    flex-basis: 100%;
  }
  footer ul li {
    flex-basis: 20%;
  }
  footer ul li a {
    font-size: 1.8rem;
  }
  .container aside:first-of-type {
    display: flex;
    width: 35%;
  }
  .container aside:first-of-type ul {
    font-size: 2.6rem;
  }
  .container aside:first-of-type ul a {
    padding: 2rem 0;
  }
  .container .mobile-menu {
    display: none;
  }
  .mars__container__section-one {
    justify-content: center;
    row-gap: 1rem;
  }
  .mars__container__section-one h1 {
    font-size: 8rem;
  }
  .mars__container__section-one h2 {
    font-size: 5rem;
    line-height: 6.5rem;
    width: 90%;
  }
  .mars__container__section-two {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.45), rgba(4, 9, 30, 0.45)), url("../img/1920x1080/marsBg2.jpg");
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
  }
  .mars__container__section-two__content-container {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    align-items: center;
    row-gap: 2rem;
  }
  .mars__container__section-two__content-container > p {
    font-size: 3rem;
    line-height: 4.8rem;
    text-align: justify;
  }
  .mars__container__section-two__content-container h2 {
    font-size: 6rem;
    margin-top: 0;
    width: 100%;
    text-align: center;
  }
  .mars__container__section-two__content-container__parameters div p {
    font-size: 3rem;
    line-height: 4.8rem;
  }
  .mars__container__section-three {
    height: auto;
    row-gap: 3rem;
    justify-content: flex-start;
    overflow: hidden;
  }
  .mars__container__section-three h3 {
    font-size: 5rem;
    text-align: center;
  }
  .mars__container__section-three__date-container {
    row-gap: 5rem;
    width: 90%;
    flex-wrap: wrap;
  }
  .mars__container__section-three__date-container div {
    flex-basis: 33%;
  }
  .mars__container__section-three__date-container div span:first-child {
    font-size: 6rem;
  }
  .mars__container__section-three__date-container div span:last-child {
    font-size: 3.5rem;
  }
  .mars__container__section-four {
    row-gap: 2.7rem;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10rem;
  }
  .mars__container__section-four > * {
    margin: 0;
  }
  .mars__container__section-four h2 {
    font-size: 6rem;
  }
  .mars__container__section-four h3 {
    font-size: 3.5rem;
  }
  .mars__container__section-four video {
    left: -85%;
    filter: brightness(50%);
  }
  .mars__container__section-four p {
    width: 90%;
    font-size: 3rem;
    line-height: 4.8rem;
  }
  .mars__container__section-four button {
    height: 9rem;
    width: 50rem;
    font-size: 2.6rem;
  }
  .news__container__section-one {
    align-items: center;
  }
  .news__container__section-one h1 {
    font-size: 7rem;
    line-height: 9rem;
    width: 90%;
  }
  .news__container__section-two {
    row-gap: 4rem;
    padding-bottom: 4rem;
  }
  .news__container__section-two h2 {
    margin-top: 4rem;
    font-size: 4.5rem;
  }
  .news__container__section-two__news-container {
    width: 95%;
  }
  .news__container__section-two__news-container__news {
    flex-basis: 49%;
  }
  .news__container__section-two__news-container__news__img {
    height: 30rem;
    width: 100%;
  }
  .news__container__section-two__news-container__news p:first-of-type {
    width: 90%;
  }
  .news__container__section-two__news-container__news p:first-of-type span {
    width: 5%;
  }
  .news__container__section-two__news-container__news h3 {
    font-size: 4rem;
    width: 90%;
  }
  .news__container__section-two__news-container__news p:nth-of-type(2) {
    width: 90%;
    font-size: 2.5rem;
    line-height: 4rem;
    letter-spacing: 0.04rem;
    margin-bottom: 3rem;
  }
  .news__container__section-two__news-container__archive-button {
    height: 6rem;
    width: 20rem;
    font-size: 1.4rem;
  }
  .news__container__section-three {
    height: 40vh;
  }
  .news__container__section-three__subscribe-container {
    width: 60%;
    height: 100%;
  }
  .news__container__section-three__subscribe-container > p {
    font-size: 3rem;
    line-height: 4rem;
  }
  .news__container__section-three__subscribe-container form {
    width: 90%;
  }
  .news__container__section-three__subscribe-container form input:first-child {
    height: 4.5rem;
    width: 90%;
    font-size: 2.6rem;
  }
  .news__container__section-three__subscribe-container form p {
    font-size: 2.2rem;
    line-height: 3.2rem;
    margin-top: -0.4rem;
    width: 85%;
    font-style: italic;
  }
  .careers__container__section-one {
    row-gap: 2rem;
    justify-content: center;
  }
  .careers__container__section-one h1 {
    width: 90%;
    font-size: 5rem;
    line-height: 6.5rem;
    margin-top: 0;
  }
  .careers__container__section-one p {
    font-size: 2.6rem;
    line-height: 4rem;
    width: 90%;
  }
  .careers__container__section-one__buttons-container {
    width: 90%;
    justify-content: space-around;
  }
  .careers__container__section-one__buttons-container__button {
    height: 8rem;
    width: 40%;
    font-size: 2.2rem;
  }
  .careers__container__section-two {
    height: auto;
    row-gap: 2rem;
    justify-content: flex-start;
    padding: 3rem 0;
  }
  .careers__container__section-two h2 {
    font-size: 4rem;
    text-align: center;
    width: 90%;
  }
  .careers__container__section-two p {
    font-size: 2.6rem;
    line-height: 4rem;
    width: 90%;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
    text-transform: none;
  }
  .careers__container__section-three {
    padding-top: 4rem;
    row-gap: 2rem;
  }
  .careers__container__section-three > p {
    font-size: 2.4rem;
  }
  .careers__container__section-three > h3 {
    font-size: 4rem;
    width: 90%;
    text-align: center;
    margin-bottom: 3rem;
  }
  .careers__container__section-three__facilities-container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
    margin-bottom: 6rem;
  }
  .careers__container__section-three__facilities-container__facility {
    width: 100%;
  }
  .careers__container__section-three__facilities-container__facility__img {
    height: 60rem;
  }
  .careers__container__section-three__facilities-container__facility h3 {
    font-size: 4rem;
  }
  .careers__container__section-three__facilities-container__facility p {
    font-size: 2.8rem;
    line-height: 4.2rem;
    text-align: justify;
  }
  .careers__container__section-four {
    height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .careers__container__section-four__img {
    height: 80%;
    flex-basis: 50%;
  }
  .careers__container__section-four__container {
    flex-basis: 50%;
    height: 60%;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .careers__container__section-four__container h3 {
    width: 90%;
    font-size: 3.6rem;
    line-height: 5rem;
  }
  .careers__container__section-four__container p {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    width: 95%;
    font-size: 1.9rem;
  }
  .careers__container__section-four__container p span:first-child {
    width: 4%;
    height: 0.5rem;
  }
  .careers__container__section-four__container__button-container {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .careers__container__section-four__container button {
    padding: 2.2rem;
  }
  .careers__container__section-four__container button i {
    font-size: 2rem;
  }
  .careers__container__section-five {
    row-gap: 3.5rem;
  }
  .careers__container__section-five p:first-of-type {
    font-size: 2.4rem;
  }
  .careers__container__section-five h3 {
    font-size: 5rem;
  }
  .careers__container__section-five p:nth-of-type(2) {
    font-size: 2.6rem;
    line-height: 4rem;
    width: 90%;
  }
  .careers__container__section-five > button {
    width: 35%;
    height: 7.5rem;
    font-size: 2rem;
  }
  .about-us__container__section-one {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 3rem;
  }
  .about-us__container__section-one > * {
    margin: 0;
    margin-left: 10%;
  }
  .about-us__container__section-one h1 {
    font-size: 7rem;
    width: 90%;
  }
  .about-us__container__section-one > p {
    font-size: 3.2rem;
    line-height: 4.5rem;
    width: 80%;
  }
  .about-us__container__section-one__play-container {
    width: 50%;
  }
  .about-us__container__section-one__play-container p {
    font-size: 2.4rem;
  }
  .about-us__container__section-one__play-container button {
    height: 6rem;
    width: 6rem;
  }
  .about-us__container__section-one__play-container button::before {
    height: 6rem;
    width: 6rem;
  }
  .about-us__container__section-one__play-container button i {
    font-size: 1.6rem;
  }
  .about-us-video {
    width: 100vw;
    height: 56.25vw;
  }
  .about-us__container__section-two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0;
  }
  .about-us__container__section-two > * {
    margin: 0;
  }
  .about-us__container__section-two__article {
    height: 55vh;
  }
  .about-us__container__section-two__article__text-container {
    row-gap: 2rem;
  }
  .about-us__container__section-two__article__text-container p:first-of-type {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .about-us__container__section-two__article__text-container h2 {
    font-size: 4rem;
    width: 90%;
    text-align: center;
  }
  .about-us__container__section-two__article__text-container p:nth-of-type(2) {
    font-size: 2.4rem;
    line-height: 3.2rem;
    width: 85%;
    margin-bottom: 0;
  }
  .about-us__container__section-three {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5rem;
  }
  .about-us__container__section-three h3 {
    font-size: 8rem;
  }
  .about-us__container__section-three h3 span {
    height: 0.7rem;
  }
  .contact__container__section-one {
    height: 115vh;
    row-gap: 3rem;
  }
  .contact__container__section-one h1 {
    font-size: 6rem;
    line-height: 7.5rem;
    width: 90%;
  }
  .contact__container__section-one > p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1rem;
    text-align: center;
    font-size: 5.5rem;
  }
  .contact__container__section-one > p span.copy {
    top: 25%;
    left: 75%;
    margin-left: 2rem;
  }
  .contact__container__section-one form {
    width: 50%;
    margin: 1rem 0 4rem 0;
  }
  .contact__container__section-one form label {
    font-size: 2.2rem;
  }
  .contact__container__section-one form label i {
    font-size: 0.8rem;
  }
  .contact__container__section-one form input, .contact__container__section-one form textarea {
    font-size: 2.6rem;
  }
  .header-shop {
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: flex-start;
  }
  .header-shop .header-shop__logo {
    width: 8%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header-shop .header-shop__right-content, .header-shop nav {
    display: none;
  }
  .header-shop .header-shop__right-content-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    margin-left: auto;
    margin-right: 1rem;
  }
  .header-shop .header-shop__right-content-mobile a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  .header-shop .header-shop__right-content-mobile a i {
    font-size: 3rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 1.2rem;
  }
  .header-shop .header-shop__humburger-left-mobile {
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    -webkit-tap-highlight-color: transparent;
  }
  .container__hamburger__button {
    height: 2rem;
    width: 2rem;
  }
  .shop__container__section-one {
    justify-content: center;
    height: 50vh;
  }
  .shop__container__section-one h2 {
    margin-top: 3rem;
    font-size: 6rem;
    text-align: center;
  }
  .shop__container__section-two {
    justify-content: flex-start;
    align-items: center;
    row-gap: 3rem;
  }
  .shop__container__section-two h3 {
    font-size: 3rem;
    margin-top: 4rem;
  }
  .shop__container__section-two__products-container1__product, .shop__container__section-two__products-container1__product2 {
    height: 55vh;
    row-gap: 1rem;
    justify-content: flex-start;
  }
  .shop__container__section-two__products-container1__product__img, .shop__container__section-two__products-container1__product2__img {
    height: 90%;
  }
  .shop__container__section-two__products-container1__product p, .shop__container__section-two__products-container1__product2 p {
    font-size: 2rem;
    text-align: center;
  }
  .shop__container__section-two button.midsection-button {
    padding: 2.2rem 6rem;
    font-size: 1.8rem;
  }
  .shop__container__section-two__products-container2 {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .shop__container__section-two__products-container2__product {
    min-height: 90vh;
    flex-grow: 1;
    width: 100%;
  }
  .shop__container__section-two__products-container2__product h3 {
    font-size: 6rem;
  }
  .shop__container__section-two__products-container2__product button {
    padding: 2.5rem 6rem;
    font-size: 2.2rem;
    bottom: 15%;
  }
  .shop__container__section-two__products-container2 div:last-child {
    margin-bottom: 2rem;
  }
  .container aside.shop-aside-categories-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-102%);
    height: 100vh;
    width: 40%;
    background-color: #fff;
    z-index: 3;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button {
    position: absolute;
    top: 3%;
    left: 5%;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button i {
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.4);
  }
  .container aside.shop-aside-categories-mobile ul {
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin-top: 12rem;
  }
  .container aside.shop-aside-categories-mobile ul li {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    flex-basis: 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 0.15rem;
    font-weight: bold;
    transition: all 0.2s ease;
    font-size: 3rem;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .first-line, .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    position: absolute;
    top: 0;
    right: 2%;
    height: 1.6rem;
    width: 0.2rem;
    transform-origin: 50% 50%;
    background-color: #222;
    transition: transform 0.3s ease;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    transform: rotate(90deg);
  }
  .container aside.shop-aside-categories-mobile ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-basis: 80%;
    margin-top: 2.5rem;
    margin-left: 2rem;
    transition: all 0.2s ease;
  }
  .container aside.shop-aside-categories-mobile ul li ul li {
    font-size: 2.4rem;
    color: rgba(0, 0, 0, 0.4);
    border-bottom: none;
    padding: 1rem 0;
    margin: 0.5rem 0;
  }
  .container aside.shop-aside-categories-mobile ul li:last-child {
    border-bottom: none;
    font-size: 2.4rem;
    font-weight: normal;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
  }
  .search-box {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .search-box i:first-of-type {
    font-size: 2rem;
    margin-left: 2rem;
  }
  .search-box input {
    width: 90%;
    font-size: 1.7rem;
  }
  .search-box button.search-box__close {
    margin: 0 2rem 0 auto;
  }
  .search-box button.search-box__close i {
    font-size: 2rem;
  }
}
@media all and (min-width: 1201px) and (max-width: 1600px) {
  header {
    left: 0;
    width: 100%;
    font-size: 1.8rem;
  }
  header .header__logo {
    margin-left: 5rem;
  }
  header nav {
    flex-basis: 70%;
  }
  .section-main {
    row-gap: 2rem;
  }
  .section-main h2 {
    font-size: 6rem;
    text-align: center;
  }
  .section-main h3 {
    font-size: 3.2rem;
  }
  .section-main__button {
    height: 8rem;
    width: 28rem;
    font-size: 2.2rem;
    margin: 1rem 0 0 15%;
  }
  .container__section-three.section-main > * {
    margin-left: 65%;
    text-transform: uppercase;
  }
  .container__section-three.section-main h2 {
    text-align: left;
  }
  .container__section-three.section-main button {
    margin-bottom: 12%;
  }
  footer {
    height: 10vh;
  }
  footer ul {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    justify-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
  }
  footer ul li:first-child {
    flex-basis: 100%;
  }
  footer ul li {
    flex-basis: 20%;
  }
  footer ul li a {
    font-size: 1.8rem;
  }
  .container aside:first-of-type {
    display: flex;
    width: 35%;
  }
  .container aside:first-of-type ul {
    font-size: 2.6rem;
  }
  .container aside:first-of-type ul a {
    padding: 2rem 0;
  }
  .container .mobile-menu {
    display: none;
  }
  .mars__container__section-one {
    justify-content: center;
    row-gap: 1rem;
  }
  .mars__container__section-one h1 {
    font-size: 8rem;
  }
  .mars__container__section-one h2 {
    font-size: 5rem;
    line-height: 6.5rem;
    width: 90%;
  }
  .mars__container__section-two {
    background-image: linear-gradient(to bottom, rgba(4, 9, 30, 0.45), rgba(4, 9, 30, 0.45)), url("../img/1920x1080/marsBg2.jpg");
    align-items: center;
    justify-content: flex-start;
    height: 130vh;
  }
  .mars__container__section-two__content-container {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    align-items: center;
    row-gap: 2rem;
  }
  .mars__container__section-two__content-container > p {
    font-size: 3rem;
    line-height: 4.8rem;
    text-align: justify;
  }
  .mars__container__section-two__content-container h2 {
    font-size: 6rem;
    margin-top: 0;
    width: 100%;
    text-align: center;
  }
  .mars__container__section-two__content-container__parameters div p {
    font-size: 3rem;
    line-height: 4.8rem;
  }
  .mars__container__section-three {
    height: auto;
    row-gap: 3rem;
    justify-content: flex-start;
    overflow: hidden;
  }
  .mars__container__section-three h3 {
    font-size: 5rem;
    text-align: center;
  }
  .mars__container__section-three__date-container {
    row-gap: 5rem;
    width: 90%;
    flex-wrap: wrap;
  }
  .mars__container__section-three__date-container div {
    flex-basis: 33%;
  }
  .mars__container__section-three__date-container div span:first-child {
    font-size: 6rem;
  }
  .mars__container__section-three__date-container div span:last-child {
    font-size: 3.5rem;
  }
  .mars__container__section-four {
    row-gap: 3rem;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20rem;
  }
  .mars__container__section-four > * {
    margin: 0;
  }
  .mars__container__section-four h2 {
    font-size: 6rem;
  }
  .mars__container__section-four h3 {
    font-size: 3.5rem;
  }
  .mars__container__section-four video {
    left: 0;
    filter: brightness(50%);
  }
  .mars__container__section-four p {
    width: 90%;
    font-size: 3rem;
    line-height: 4.8rem;
  }
  .mars__container__section-four button {
    height: 9rem;
    width: 50rem;
    font-size: 2.6rem;
  }
  .news__container__section-one {
    align-items: center;
  }
  .news__container__section-one h1 {
    font-size: 6rem;
    line-height: 9rem;
    width: 90%;
  }
  .news__container__section-two {
    row-gap: 4rem;
    padding-bottom: 4rem;
  }
  .news__container__section-two h2 {
    margin-top: 4rem;
    font-size: 4.5rem;
  }
  .news__container__section-two__news-container {
    width: 95%;
  }
  .news__container__section-two__news-container__news {
    flex-basis: 49%;
  }
  .news__container__section-two__news-container__news__img {
    height: 30rem;
    width: 100%;
  }
  .news__container__section-two__news-container__news p:first-of-type {
    width: 90%;
  }
  .news__container__section-two__news-container__news p:first-of-type span {
    width: 5%;
  }
  .news__container__section-two__news-container__news h3 {
    font-size: 4rem;
    width: 90%;
  }
  .news__container__section-two__news-container__news p:nth-of-type(2) {
    width: 90%;
    font-size: 2.5rem;
    line-height: 4rem;
    letter-spacing: 0.04rem;
    margin-bottom: 3rem;
  }
  .news__container__section-two__news-container__archive-button {
    height: 8rem;
    width: 26rem;
    font-size: 2rem;
  }
  .news__container__section-three {
    height: 50vh;
  }
  .news__container__section-three__subscribe-container {
    width: 60%;
    height: 100%;
  }
  .news__container__section-three__subscribe-container > p {
    font-size: 3rem;
    line-height: 4rem;
  }
  .news__container__section-three__subscribe-container form {
    width: 90%;
  }
  .news__container__section-three__subscribe-container form input:first-child {
    height: 4.5rem;
    width: 90%;
    font-size: 2.6rem;
  }
  .news__container__section-three__subscribe-container form p {
    font-size: 2.2rem;
    line-height: 3.2rem;
    margin-top: -0.4rem;
    width: 85%;
    font-style: italic;
  }
  .careers__container__section-one {
    row-gap: 2rem;
    justify-content: center;
  }
  .careers__container__section-one h1 {
    width: 90%;
    font-size: 5rem;
    line-height: 6.5rem;
    margin-top: 0;
  }
  .careers__container__section-one p {
    font-size: 2.6rem;
    line-height: 4rem;
    width: 90%;
  }
  .careers__container__section-one__buttons-container {
    width: 90%;
    justify-content: space-around;
  }
  .careers__container__section-one__buttons-container__button {
    height: 8rem;
    width: 40%;
    font-size: 2.2rem;
  }
  .careers__container__section-two {
    height: auto;
    row-gap: 2rem;
    justify-content: flex-start;
    padding: 3rem 0;
  }
  .careers__container__section-two h2 {
    font-size: 4rem;
    text-align: center;
    width: 90%;
  }
  .careers__container__section-two p {
    font-size: 2.6rem;
    line-height: 4rem;
    width: 90%;
    text-align: justify;
    -moz-text-align-last: center;
         text-align-last: center;
    text-transform: none;
  }
  .careers__container__section-three {
    padding-top: 4rem;
    row-gap: 2rem;
  }
  .careers__container__section-three > p {
    font-size: 2.4rem;
  }
  .careers__container__section-three > h3 {
    font-size: 4rem;
    width: 90%;
    text-align: center;
    margin-bottom: 3rem;
  }
  .careers__container__section-three__facilities-container {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
    margin-bottom: 6rem;
  }
  .careers__container__section-three__facilities-container__facility {
    width: 100%;
  }
  .careers__container__section-three__facilities-container__facility__img {
    height: 60rem;
  }
  .careers__container__section-three__facilities-container__facility h3 {
    font-size: 4rem;
  }
  .careers__container__section-three__facilities-container__facility p {
    font-size: 2.8rem;
    line-height: 4.2rem;
    text-align: justify;
  }
  .careers__container__section-four {
    height: 70vh;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .careers__container__section-four__img {
    height: 80%;
    flex-basis: 50%;
  }
  .careers__container__section-four__container {
    flex-basis: 50%;
    height: 60%;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .careers__container__section-four__container h3 {
    width: 90%;
    font-size: 3.6rem;
    line-height: 5rem;
  }
  .careers__container__section-four__container p {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    width: 95%;
    font-size: 1.9rem;
  }
  .careers__container__section-four__container p span:first-child {
    width: 4%;
    height: 0.5rem;
  }
  .careers__container__section-four__container__button-container {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
  .careers__container__section-four__container button {
    padding: 2.2rem;
  }
  .careers__container__section-four__container button i {
    font-size: 2rem;
  }
  .careers__container__section-five {
    row-gap: 3.5rem;
  }
  .careers__container__section-five p:first-of-type {
    font-size: 2.4rem;
  }
  .careers__container__section-five h3 {
    font-size: 5rem;
  }
  .careers__container__section-five p:nth-of-type(2) {
    font-size: 2.6rem;
    line-height: 4rem;
    width: 90%;
  }
  .careers__container__section-five > button {
    width: 35%;
    height: 7.5rem;
    font-size: 2rem;
  }
  .about-us__container__section-one {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 3rem;
  }
  .about-us__container__section-one > * {
    margin: 0;
    margin-left: 10%;
  }
  .about-us__container__section-one h1 {
    font-size: 7rem;
    width: 90%;
  }
  .about-us__container__section-one > p {
    font-size: 3.2rem;
    line-height: 4.5rem;
    width: 80%;
  }
  .about-us__container__section-one__play-container {
    width: 50%;
  }
  .about-us__container__section-one__play-container p {
    font-size: 2.4rem;
  }
  .about-us__container__section-one__play-container button {
    height: 6rem;
    width: 6rem;
  }
  .about-us__container__section-one__play-container button::before {
    height: 6rem;
    width: 6rem;
  }
  .about-us__container__section-one__play-container button i {
    font-size: 1.6rem;
  }
  .about-us-video {
    width: 100vw;
    height: 56.25vw;
  }
  .about-us__container__section-two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0;
  }
  .about-us__container__section-two > * {
    margin: 0;
  }
  .about-us__container__section-two__article {
    height: 70vh;
  }
  .about-us__container__section-two__article__text-container {
    row-gap: 2rem;
  }
  .about-us__container__section-two__article__text-container p:first-of-type {
    font-size: 2rem;
    margin-top: 3rem;
  }
  .about-us__container__section-two__article__text-container h2 {
    font-size: 4rem;
    width: 90%;
    text-align: center;
  }
  .about-us__container__section-two__article__text-container p:nth-of-type(2) {
    font-size: 2.4rem;
    line-height: 3.2rem;
    width: 85%;
    margin-bottom: 0;
  }
  .about-us__container__section-three {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 5rem;
  }
  .about-us__container__section-three h3 {
    font-size: 8rem;
  }
  .about-us__container__section-three h3 span {
    height: 0.7rem;
  }
  .contact__container__section-one {
    height: 150vh;
    row-gap: 3rem;
  }
  .contact__container__section-one h1 {
    font-size: 6rem;
    line-height: 7.5rem;
    width: 90%;
  }
  .contact__container__section-one > p {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1rem;
    text-align: center;
    font-size: 5.5rem;
  }
  .contact__container__section-one > p span.copy {
    top: 25%;
    left: 75%;
    margin-left: 2rem;
  }
  .contact__container__section-one form {
    width: 50%;
    margin: 1rem 0 4rem 0;
  }
  .contact__container__section-one form label {
    font-size: 2.2rem;
  }
  .contact__container__section-one form label i {
    font-size: 0.8rem;
  }
  .contact__container__section-one form input, .contact__container__section-one form textarea {
    font-size: 2.6rem;
  }
  .header-shop {
    padding-left: 0;
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: flex-start;
  }
  .header-shop .header-shop__logo {
    width: 5%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .header-shop .header-shop__right-content, .header-shop nav {
    display: none;
  }
  .header-shop .header-shop__right-content-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    margin-left: auto;
    margin-right: 1rem;
  }
  .header-shop .header-shop__right-content-mobile a {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
  }
  .header-shop .header-shop__right-content-mobile a i {
    font-size: 2.2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 1.2rem;
  }
  .header-shop .header-shop__humburger-left-mobile {
    margin-right: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-basis: 15%;
    -webkit-tap-highlight-color: transparent;
  }
  .container__hamburger__button {
    height: 2rem;
    width: 2rem;
  }
  .shop__container__section-one {
    justify-content: center;
    height: 50vh;
  }
  .shop__container__section-one h2 {
    margin-top: 3rem;
    font-size: 6rem;
    text-align: center;
  }
  .shop__container__section-two {
    justify-content: flex-start;
    align-items: center;
    row-gap: 3rem;
  }
  .shop__container__section-two h3 {
    font-size: 3rem;
    margin-top: 4rem;
  }
  .shop__container__section-two__products-container1__product, .shop__container__section-two__products-container1__product2 {
    height: 55vh;
    row-gap: 1rem;
    justify-content: flex-start;
  }
  .shop__container__section-two__products-container1__product__img, .shop__container__section-two__products-container1__product2__img {
    height: 90%;
  }
  .shop__container__section-two__products-container1__product p, .shop__container__section-two__products-container1__product2 p {
    font-size: 2rem;
    text-align: center;
  }
  .shop__container__section-two button.midsection-button {
    padding: 2.2rem 6rem;
    font-size: 1.8rem;
  }
  .shop__container__section-two__products-container2 {
    width: 90%;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .shop__container__section-two__products-container2__product {
    min-height: 90vh;
    flex-grow: 1;
    width: 100%;
  }
  .shop__container__section-two__products-container2__product h3 {
    font-size: 6rem;
  }
  .shop__container__section-two__products-container2__product button {
    padding: 2.5rem 6rem;
    font-size: 2.2rem;
    bottom: 15%;
  }
  .shop__container__section-two__products-container2 div:last-child {
    margin-bottom: 2rem;
  }
  .container aside.shop-aside-categories-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-102%);
    height: 100vh;
    width: 40%;
    background-color: #fff;
    z-index: 3;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button {
    position: absolute;
    top: 3%;
    left: 5%;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .container aside.shop-aside-categories-mobile button.shop-aside-categories-mobile__close-button i {
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.4);
  }
  .container aside.shop-aside-categories-mobile ul {
    flex-basis: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    margin-top: 12rem;
  }
  .container aside.shop-aside-categories-mobile ul li {
    position: relative;
    width: 100%;
    margin: 1rem 0;
    flex-basis: 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 0.1rem solid rgba(0, 0, 0, 0.15);
    color: rgba(0, 0, 0, 0.75);
    letter-spacing: 0.15rem;
    font-weight: bold;
    transition: all 0.2s ease;
    font-size: 3rem;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .first-line, .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    position: absolute;
    top: 0;
    right: 2%;
    height: 1.6rem;
    width: 0.2rem;
    transform-origin: 50% 50%;
    background-color: #222;
    transition: transform 0.3s ease;
  }
  .container aside.shop-aside-categories-mobile ul li .close-container .second-line {
    transform: rotate(90deg);
  }
  .container aside.shop-aside-categories-mobile ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 2.5rem;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-basis: 80%;
    margin-top: 2.5rem;
    margin-left: 2rem;
    transition: all 0.2s ease;
  }
  .container aside.shop-aside-categories-mobile ul li ul li {
    font-size: 2.4rem;
    color: rgba(0, 0, 0, 0.4);
    border-bottom: none;
    padding: 1rem 0;
    margin: 0.5rem 0;
  }
  .container aside.shop-aside-categories-mobile ul li:last-child {
    border-bottom: none;
    font-size: 2.4rem;
    font-weight: normal;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
  }
  .search-box {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .search-box i:first-of-type {
    font-size: 2rem;
    margin-left: 2rem;
  }
  .search-box input {
    width: 90%;
    font-size: 1.7rem;
  }
  .search-box button.search-box__close {
    margin: 0 2rem 0 auto;
  }
  .search-box button.search-box__close i {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */