@font-face {
  font-family: "Barlow-Medium";
  src: url(./assets/fonts/Barlow_Semi_Condensed/BarlowSemiCondensed-Medium.ttf);
}

@font-face {
  font-family: "Barlow-Bold";
  src: url(./assets/fonts/Barlow_Semi_Condensed/BarlowSemiCondensed-SemiBold.ttf);
}

@font-face {
  font-family: "Barlow-Light";
  src: url(./assets/fonts/Barlow_Semi_Condensed/BarlowSemiCondensed-ExtraLight.ttf);
}

body {
  font-family: "Barlow-Bold";
  margin: 0px;
  user-select: none;
}
img {
  pointer-events: none;
}
.page {
  display: grid;
  border: none;
  outline: none;
  grid-template-columns: 50% 50%;
  grid-auto-flow: column;
  width: 100%;
  /* height: 100dvh; */
  min-width: 300px;
  overflow: hidden;
  /* transition: grid-template-columns 1s ease-in-out; */
}
.page2 {
  display: grid;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100dvh;
  grid-template-columns: 50% 50%;
  z-index: -5;
  overflow: hidden;
}
.pageAnim {
  transition: grid-template-columns 1s ease-in-out, transform 1s ease-in-out, width 1s ease-in-out;
}

.column,
.column2 {
  display: grid;
  border: none;
  outline: none;
  grid-auto-flow: column;
  width: 100%;
  height: 100%;
}

.column {
  grid-template-columns: calc(100% - 76px) 76px;
}
.column2 {
  grid-template-columns: 76px calc(100% - 76px);
}
/* .showArrowPage {
  grid-template-columns: 76px auto;
} */
#menu {
  background-color: #f6f6f6;
  color: #2a2b2d;
  flex-direction: column-reverse;
  justify-content: end;
}
#menu2 {
  background-color: #1c1c1c;
  color: #f6f6f6;
  flex-direction: column;
}

#menu,
#menu2 {
  padding: 4dvh 0vw;
  box-sizing: border-box;
  display: flex;
  position: relative;
  height: 100dvh;
}

.missionRow {
  display: flex;
  /* row-gap: 30px; */
  z-index: 10;
}
#menu .missionRow {
  flex-direction: column-reverse;
  align-items: end;
  text-align: end;
}
#menu2 .missionRow {
  flex-direction: column;
  align-items: start;
}
#menu2 .missionRow .missionDiv {
  margin-top: 2dvh;
}
.arrowPage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8dvh 0px;
  align-items: center;
  width: 76px;
  cursor: pointer;
  box-sizing: border-box;
  height: 100dvh;
}
.arrow {
  width: 2.5vw;
  height: 2.5vw;
  min-width: 48px;
  min-height: 48px;
  opacity: 0;
  pointer-events: none;
}
.logo img {
  display: flex;
  width: 100%;
}
.logo {
  width: clamp(300px, 25vw, 1000px);
}
.logo2 {
  width: clamp(120px, 10vw, 400px);
}

.column .arrowPage .block {
  background: #f6f6f6;
}
.column2 .arrowPage .block {
  background: #1c1c1c;
}
/* .block {
  width: 10dvh;
  height: 100%;
  display: flex;
} */
.arrowPage .smallText {
  font-size: clamp(32px, 1.5vw, 76px);
  letter-spacing: 0.1em;
  transform: rotateZ(90deg);
  display: flex;
  flex-direction: row;
  column-gap: 3px;
}
.column .arrowPage {
  background-color: #f6f6f6;
  color: #2a2b2d;
}

.column2 .arrowPage {
  background-color: #1c1c1c;
  color: #f6f6f6;
}

.page,
.page2 {
  overflow: hidden;
}

::-webkit-scrollbar {
  display: none;
}
/* :where(#menu, #menu2) {
  transition: ease-in-out 1s;
} */
.hidden {
  opacity: 0;
  pointer-events: none;
}
.hiddenAnim {
  transition: opacity 300ms ease-in 0.2s;
}

.selectLeft {
  grid-template-columns: calc(100% - 76px) 76px;
}
.selectRight {
  grid-template-columns: 76px calc(100% - 76px);
}
.selectRight #menu .missionRow .bannerContainer,
.selectRight #menu2 .missionRow .bannerContainer {
  width: 70%;
}
.selectLeft #menu .missionRow .bannerContainer,
.selectLeft #menu2 .missionRow .bannerContainer {
  width: 70%;
}
/* #menu2 .missionRow.hidden {
  transform: translateY(-5dvh);
} */
.hoverText {
  /* color: #fa0237; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.nav-link:hover .hoverText {
  opacity: 1;
}
.hoverBg {
  width: 0%;
  height: 100%;
  /* background: #fff; */
  position: absolute;
  top: 0;
  left: -1%;
  /*transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);*/
  border-radius: 0px;
  pointer-events: none;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-link:hover .hoverBg {
  width: 102%;
}

.showText {
  transform: translateY(15dvh) !important;
  transition: transform 500ms ease-in-out 1s;
}
.showArrow {
  opacity: 1 !important;
  transition: opacity 500ms ease-in-out 1.5s;
}

.missionContent {
  max-width: 800px;
  text-transform: uppercase;
}

.heading-01 {
  font-size: clamp(36px, 2.5vw + 1.5rem, 300px);
  font-family: "Barlow-Bold";
  letter-spacing: 0.045em;
  line-height: 1.2em;
}

.heading-03 {
  font-size: clamp(32px, 2.5vw + 1.5rem, 280px);
  line-height: 1.26em;
  letter-spacing: 0.045em;
}

.font-light {
  font-family: "Barlow-Light";
  letter-spacing: 1px;
}

.anchor {
  padding: 12px 35px;
  /* margin-top: 30px; */
  border-radius: 50px;
  white-space: nowrap;
  color: #f6f6f6;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-family: "Barlow-Medium";
  /* font-size: 30px; */
  font-size: clamp(24px, 1.4vw, 84px);
  letter-spacing: 0.1em;
  text-align: center;
}
.nav-link {
  display: block;
  max-width: max-content;
}
.red {
  background: #fa0237;
  color: white;
}
.blue {
  background: #00e5e8;
  color: black;
}

.subTitleDiv {
  display: flex;
  flex-direction: column;
  row-gap: min(3vh, 20px);
  min-width: 50vw;
}

#menu .missionRow .subTitleDiv {
  align-items: end;
}

.bannerContainer {
  display: flex;
  position: absolute;
  width: 60%;
  height: calc(100dvh - 8dvh);
  pointer-events: none;
  min-height: 60dvh;
}
.bannerDiv {
  display: flex;
  justify-content: center;
  z-index: -1;
  align-items: center;
  position: relative;
  /* top: 5dvh;
  bottom: 5dvh; */
  /* transition: 300ms ease-in; */
}
#menu .missionRow .bannerContainer {
  justify-content: start;
}
#menu2 .missionRow .bannerContainer {
  justify-content: end;
}

.moveLeft {
  transform: translateX(-50vw);
}
.moveRight {
  transform: translateX(50vw);
}
.move {
  transition: 1s ease-in-out;
}
#menu:hover {
  z-index: 30;
}

.bannerDiv img,
.bannerDiv video {
  pointer-events: none;
  position: absolute;
}
.watch {
  width: clamp(400px, 26vw, 1200px);
  height: clamp(400px, 26vw, 1200px);
}
.case {
  z-index: 10;
}
.mobile_anim,
.case {
  height: clamp(500px, 32vw, 1500px);
  width: auto;
  /* min-width: 500px; */
  transform: translateY(12dvh);
}

.gradient {
  width: clamp(600px, 45vw, 2000px);
  height: clamp(600px, 45vw, 2000px);
}
.red_banner .gradient {
  transform: translateY(5vw);
}
.blue_banner .gradient {
  transform: translateY(-5vw);
}
.blue_banner {
  transform: translateY(-20dvh);
}
.red_banner {
  transform: translateY(20dvh);
}

@media (max-width: 1240px) {
}

@media (min-width: 2160px) {
  .selectLeft {
    grid-template-columns: calc(100% - 76px - 2vw) calc(76px + 2vw);
  }
  .selectRight {
    grid-template-columns: calc(76px + 2vw) calc(100% - 76px - 2vw);
  }

  .column {
    grid-template-columns: calc(100% - 76px - 2vw) calc(76px + 2vw);
  }
  .column2 {
    grid-template-columns: calc(76px + 2vw) calc(100% - 76px - 2vw);
  }

  .anchor {
    padding: 0.6vw 1.5vw;
    border-radius: 50vw;
    /* 
    font-size: 60px; */
  }
  .arrowPage {
    width: calc(76px + 2vw);
  }
  .block {
    max-height: calc(76px + 2vw);
  }
  .mobile_anim,
  .case {
    transform: translateX(5dvh) translateY(5dvh);
    /* height: calc(16vw * 9vh); */
  }
  /* .watch {
    width: 30vw;
    height: 30vw;
  }
  .gradient{
    width: 50vw;
  } */

  .bannerContainer {
    width: 70%;
    /* height: calc(90dvh); */
  }
  /* .red_banner .gradient {
    transform: translateY(5vw);
  }
  .blue_banner .gradient {
    transform: translateY(-5vw);
  } */
  .blue_banner {
    transform: translateY(-15dvh);
  }
  .red_banner {
    transform: translateY(15dvh);
  }

  /* .heading-01 {
    font-size: 182px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 182px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 128px;
    letter-spacing: 0.045em;
  } */
}
@media only screen and (min-width: 2160px) and (max-width: 3999px) {
  /* .heading-01 {
    font-size: 124px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 124px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 108px;
    letter-spacing: 0.045em;
  } */
}
/*
@media only screen and (min-width: 769px) and (max-width: 2159px) {
  .mobile {
    transform: translateX(5dvh) translateY(10dvh);
    height: 45vw;
  }
  .watch {
    width: 40vw;
    height: 40vw;
  }
  .gradient{
    width: 50vw;
  }
}
@media only screen and (min-width: 2160px) and (max-width: 3999px){
  .mobile {
    height: 45vw;
  }
  .watch {
    width: 40vw;
    height: 40vw;
  }
  .gradient{
    width: 50vw;
  }

}
@media only screen and (min-width: 769px) and (max-width: 2159px) {

  .mobile {
    max-height: 900px;
    min-height: 500px;
    transform: translateX(5dvh) translateY(5dvh);
  }
  .watch {
    max-height: 700px;
    max-width: 700px;
    min-height: 400px;
    min-width: 400px;
    transform: translateY(5dvh);
  }
  .gradient{
    max-width: 1100px;
    max-height: 1100px; 
    min-height: 500px;
    min-width: 500px;
  }

}
*/
/* @media only screen and (max-height: 768px) and (min-width: 768px) {
  .page,
  .page2,
  .column,
  .column2,
  .bannerContainer,
  #menu,
  #menu2 {
    height: 769px;
  }
} */
.columnAnim {
  transition: 0.7s ease-in-out;
}
@media (max-width: 768px) {
  body {
    background-color: #000;
  }
  .page,
  .page2 {
    width: calc(100vw * 2 - 50px);
    grid-template-columns: calc(100vw - 50px) 50px;
    /* transition: grid-template-columns 1s ease-in-out, transform 1s ease-in-out; */
  }
  .leftPage {
    grid-template-columns: calc(100vw - 50px) 100vw !important;
  }
  .page.selectLeft,
  .page2.selectLeft {
    width: calc(100vw);
  }
  .page.selectRight {
    grid-template-columns: 100vw calc(100vw - 50px) !important;
  }
  .page2.selectRight {
    grid-template-columns: 100vw 100vw !important;
  }
  /* .page2 {
    display: none;
  } */

  .moveLeft {
    transform: none;
  }
  .moveRight {
    transform: none;
  }
  .selectLeft {
    transform: translateX(0vw);
    /* grid-template-columns: calc(100% - 12vw) 12vw; */
  }
  .selectRight {
    transform: translateX(calc(-100vw + 50px));
    /* grid-template-columns: 12vw calc(100% - 12vw); */
  }
  .selectLeft .column,
  .column {
    grid-template-columns: calc(100vw - 50px) 0px;
  }
  .column2 {
    grid-template-columns: 50px calc(100vw - 50px);
  }
  .column,
  .column2 {
    transition: grid-template-columns 0.5s ease-in-out;
  }
  .selectRight .column2 {
    grid-template-columns: 0px calc(100vw - 50px);
  }

  .expand {
    display: none;
  }

  .arrowPage {
    cursor: pointer;
    pointer-events: auto !important;
    padding: 7dvh 0px;
  }
  .arrowPage .smallText {
    font-size: 30px;
    text-align: center;
    max-height: 50px;
  }
  .block {
    max-height: 50px;
  }
  .arrow {
    min-height: 36px;
    min-width: 36px;
  }

  #menu {
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 0vw 24px 5vw;
  }
  #menu2 {
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 5vw 24px 0vw;
  }

  #menu2 {
    z-index: 25;
    align-items: end;
  }
  .missionDiv {
    position: unset;
    margin: 0px;
  }

  #menu .missionRow {
    flex-direction: column-reverse;
    align-items: start;
    text-align: start;
    row-gap: 0px;
  }
  #menu2 .missionRow {
    transform: translateX(80vw);
    align-items: start;
  }
  #menu2 .missionRow .missionDiv {
    margin-top: 0px;
    transform: translateX(-80vw);
    text-align: end;
  }
  #menu2 .missionRow.hidden {
    transform: none;
  }
  .logo {
    display: none;
  }
  #menu .hidden {
    opacity: 1;
    /* transition: opacity 1s 0.5s; */
  }
  .anchor {
    font-size: 16px;
    padding: 16px 25px;
    margin-top: 0px;
  }
  .mobile_anim,
  .case {
    height: 40dvh;
    min-height: 400px;
    transform: translateX(calc(20%));
  }
  .watch {
    height: 60vw;
    width: 60vw;
    min-width: 200px;
    min-height: 200px;
    max-width: 300px;
    max-height: 300px;
  }
  .gradient {
    width: 30dvh !important;
    height: 30dvh !important;
    min-width: 400px;
    min-height: 400px;
  }

  .blue_banner {
    transform: translateX(20vw) translateY(-10vw);
    /* transition: 0.7s ease-in-out; */
  }
  /* .blue_banner .gradient {
    transform: translateY(-8vw);
  } */

  .red_banner {
    transform: translateX(-80vw) translateY(-20.5vw);
    /* transition: 0.7s ease-in-out; */
  }
  .red_banner .gradient {
    transform: none;
  }
  .bannerContainer {
    top: 0;
  }

  #menu .missionRow .subTitleDiv {
    align-items: start;
  }
  #menu2 .missionRow .subTitleDiv {
    align-items: end;
  }

  .column .arrowPage {
    width: 50px;
  }
  .column2 .arrowPage {
    width: 50px !important;
    z-index: 25;
  }
  .block {
    max-height: 50px;
  }

  .arrowPageWidth {
    width: 50px !important;
  }

  .heading-01 {
    font-size: 48px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 48px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }

  .heading-04 {
    font-size: 14px;
  }

  .heading-05 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }
  .page {
    min-width: 768px;
  }
}
@media (max-width: 414px) {
  .anchor {
    pointer-events: auto;
  }
  .mobile_anim,
  .case {
    height: 30dvh;
    min-height: 300px;
    transform: translateX(calc(20%));
  }
  .watch {
    height: 60vw;
    width: 60vw;
    min-width: 200px;
    min-height: 200px;
    max-width: 300px;
    max-height: 300px;
  }
  .gradient {
    width: 30dvh !important;
    height: 30dvh !important;
    min-width: 350px;
    min-height: 350px;
  }

  .blue_banner {
    transform: translateX(20vw) translateY(-10vw);
    /* transition: 0.7s ease-in-out; */
  }
  .blue_banner .gradient {
  }

  .red_banner {
    transform: translateX(-80vw) translateY(-21vw);
    /* transition: 0.7s ease-in-out; */
  }
  .red_banner .gradient {
    transform: none;
  }
  .smallText {
    font-size: 30px !important;
    max-height: 30px !important;
    margin-left: 10px;
  }
  .subTitleDiv {
    row-gap: 15px;
  }

  .heading-01 {
    font-size: 36px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 36px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 28px;
    letter-spacing: 0.045em;
  }

  .heading-04 {
    font-size: 14px;
  }

  .heading-05 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }

  .letterSpacing-01 {
    font-size: 16px;
  }

  body {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 375px) {
  .page,
  .page2 {
    width: 375px;
  }
  .mobile_anim,
  .case {
    height: 30dvh;
    min-height: 300px;
    transform: translateX(calc(20%));
  }
  .watch {
    height: 60vw;
    width: 60vw;
    min-width: 200px;
    min-height: 200px;
    max-width: 300px;
    max-height: 300px;
  }
  .gradient {
    width: 25dvh !important;
    height: 25dvh !important;
    min-width: 300px;
    min-height: 300px;
  }

  .blue_banner {
    transform: translateX(20vw) translateY(-10vw);
    /* transition: 0.7s ease-in-out; */
  }
  /* .blue_banner .gradient {
    transform: translateY(-8vw);
  } */

  .red_banner {
    transform: translateX(-80vw) translateY(-21vw);
    /* transition: 0.7s ease-in-out; */
  }
  .red_banner .gradient {
    transform: none;
  }
  .arrowPage {
    padding: 15vw 0px !important;
  }
  .smallText {
    font-size: 25px !important;
    max-height: 25px !important;
    /* line-height: 50px; */
    margin-left: 10px;
  }
  .subTitleDiv {
    row-gap: 15px;
  }

  .heading-01 {
    font-size: 32px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 32px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 28px;
    letter-spacing: 0.045em;
  }

  .heading-04 {
    font-size: 14px;
  }

  .heading-05 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }

  .letterSpacing-01 {
    font-size: 16px;
  }

  body {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
/*
@media (max-height: 768px) {
  .heading-01 {
    font-size: 32px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 48px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 24px;
    letter-spacing: 0.045em;
  }

  .heading-04 {
    font-size: 14px;
  }

  .heading-05 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }

}

@media (min-height: 1080px) {

  .heading-01 {
    font-size: 32px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 48px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 24px;
    letter-spacing: 0.045em;
  }

  .heading-04 {
    font-size: 14px;
  }

  .heading-05 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }

}
@media (min-height: 1440px) {
  .heading-01 {
    font-size: 32px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 48px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 24px;
    letter-spacing: 0.045em;
  }

  .heading-04 {
    font-size: 14px;
  }

  .heading-05 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }

}
@media (min-height: 2160px) { 

  .heading-01 {
    font-size: 182px;
    letter-spacing: 0.03em;
  }

  .heading-02 {
    font-size: 182px;
    letter-spacing: 0.03em;
  }

  .heading-03 {
    font-size: 96px;
    letter-spacing: 0.045em;
  }

  .heading-04 {
    font-size: 14px;
  }

  .heading-05 {
    font-size: 32px;
    letter-spacing: 0.045em;
  }

}

*/
