* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

@font-face {
  font-family: first_font;
  src: url(./assets/fonts/jost-variable.ttf);
}
@font-face {
  font-family: second_font;
  src: url(./assets/fonts/KFOlCnqEu92Fr1MmEU9fBBc4.ttf);
}
@font-face {
  font-family: third_font;
  src: url(./assets/fonts/KFOmCnqEu92Fr1Mu4mxK.ttf);
}

#main {
  position: relative; /*pages won't overlap*/
  overflow: hidden;
  background-color: rgb(20, 58, 209);
}

#page-1 {
  height: 100vh;
  width: 100vw;
  position: relative;
}

#page-1 > video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#page-1 > nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 30px;
  position: absolute;
  height: 10vh;
  width: 100vw;
}

#page-1 > nav > img {
  margin-top: -1.7vw;
  width: 10%;
}

#right-nav > button {
  margin: 0px 10px;
  padding: 10px 20px;
  border: 1px solid white;
  background-color: #0b48ed;
  border-radius: 50px;
  color: white;
  font-family: first_font;
  font-size: 15px;
}

.bottom-page-div {
  position: absolute;
  bottom: 5%;
  left: 10%;
  height: 40vh;
  width: 50vw;
}
.bottom-page-div > h1 {
  padding: 0px 30px;
  font-family: first_font;
  font-size: 5vw;
  font-weight: 100;
  line-height: 1;
  color: white;
}

.bottom-page-1-content-div {
  height: 35%;
  width: 100%;
  position: absolute;
  bottom: 0%;
  display: flex;
  align-items: center;
  font-family: first_font;
  justify-content: space-between;
  padding: 0px 30px;
}

.bottom-page-1-content-div > button {
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  color: #0b48ed;
  background-color: white;
  font-size: 18px;
}

.bottom-page-1-content-div > h4 {
  font-size: 1.3vw;
  font-weight: 100;
  color: white;
}

#page-2 {
  display: flex;
  align-items: start;
  font-family: first_font;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  position: relative;
  padding: 0vw 10vw;
  color: #fff;
  background-color: rgb(20, 58, 209);
}

#page-2 > h2 {
  margin-bottom: 3vw;
  font-weight: 100;
}

#page-2 > h1 {
  font-weight: 100;
  line-height: 1.3;
  width: 90%;
  font-size: 4vw;
  color: #dadada69;
}

#page-3 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: rgb(20, 58, 209);
}

#page-3 > canvas {
  max-width: 100vw;
  max-height: 100vh;
  position: relative;
}

#page-4 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #1137ca;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  font-family: first_font;
}

#page-4 > h3 {
  margin-left: 10vw;
  margin-bottom: 2vw;
  font-weight: 200;
  color: #fff;
}

#page-4 > h1 {
  margin-left: 10vw;
  width: 70%;
  font-size: 3vw;
  font-weight: 100;
  color: #ffffff81;
}

#page-5 > canvas {
  max-width: 100vw;
  max-height: 100vh;
  position: relative;
}

#page-6 {
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #0a3cce;
  flex-direction: column;
  font-family: first_font;
}
#page-6 > h3 {
  margin-left: 10vw;
  font-weight: 300;
  color: #fff;
  margin-bottom: 2vw;
}
#page-6 > h1 {
  margin-left: 10vw;
  font-size: 3.5vw;
  width: 70%;
  font-weight: 100;
  color: #ffffff53;
}

#page-7 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #0a3cce;
}

#page-7 > canvas {
  position: relative;
  max-width: 100vw;
  max-height: 100vh;
}

.page7-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  height: 30vw;
  width: 30vw;
  /* background-color: red; */
  border-radius: 50%;
  border: 1px solid #fff;
}

.page7-cir-inner {
  height: 70%;
  width: 70%;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
}

#page8 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #0a3cce;
}

#page8 > video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.page8-bottom {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.page8-bottom > h1 {
  color: white;
  font-family: first_font;
  margin-bottom: 2vw;
  font-size: 5vw;
  font-weight: 100;
}

.page8-bottom > button {
  padding: 20px 30px;
  border-radius: 50px;
  border: none;
  background-color: #fff;
  color: #0a3cce;
}

#page9 {
  display: flex;
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #0a3cce;
}

.left9 {
  height: 100%;
  width: 40%;
  position: relative;
  font-family: first_font;
}

.left9 > h1 {
  position: absolute;
  top: 40%;
  right: 5%;
  transform: translateY(-50%);
  color: white;
  font-size: 5vw;
  font-weight: 100;
  line-height: 1;
}

.right9 {
  height: 100%;
  width: 60%;
  position: relative;
}

.right9-center {
  height: 60%;
  width: 85%;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(https://thisismagma.com/wp-content/uploads/2023/04/magma.wp2.cubdev.com-home-1.jpeg);
  background-size: cover;
  left: 5%;
}

#page10 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #0a3cce;
}
.right10 {
  height: 100vh;
  width: 60%;
  position: relative;
  left: 40%;
}
.right10-inner {
  display: flex;
  align-items: start;
  flex-direction: column;
  height: 33.3%;
  width: 100%;
  font-family: first_font;
  color: #fff;
}
.right10-inner > h1 {
  font-size: 2vw;
}
.right10-inner > p {
  margin-top: 2vw;
  font-size: 1.3vw;
  width: 80%;
}

#page11 {
  position: relative;
  height: 120vh;
  width: 100vw;
  background-color: white;
  font-family: first_font;
}

#page11 > h1 {
  position: absolute;
  top: 5%;
  left: 10%;
  font-size: 4vw;
  color: black;
  font-weight: normal;
}

.page11-inner {
  top: 18%;
  position: relative;
  margin-bottom: 2vw;
  height: 22%;
  width: 100%;
  display: flex;
}

.left11 {
  position: relative;
  height: 100%;
  width: 40%;

  left: 5%;
  border-radius: 10px;
  overflow: hidden;
}
.right11 {
  padding: 5vw;
  display: flex;
  align-items: start;
  justify-content: start;
  color: black;
  flex-direction: column;
  position: absolute;
  left: 50%;
  height: 100%;
  width: 50%;
}

.left11 > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.right11 > h4 {
  font-weight: 100;
}
.right11 > h1 {
  font-size: 2vw;
}

#page12 {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #02268e;
}

.page12-inner {
  position: absolute;
  top: 40%;
  right: 10%;
  color: white;
  font-family: first_font;
}

.page12-inner > h1 {
  font-size: 5vw;
  font-weight: 100;
}

.page11-inner > p {
  font-size: 1.3vw;
}

#page13 {
  position: relative;
  height: 50vh;
  width: 100vw;
  background-color: black;
  color: white;
  font-family: first_font;
  padding: 7vw 10vw;
}

#page13 > h1 {
  font-size: 5vw;
  line-height: 1;
  font-weight: 100;
}

#page13 > button {
  padding: 18px 30px;
  background-color: #0a3cce;
  border: none;
  color: white;
  border-radius: 50px;
  margin-top: 2vw;
}

#page14 {
  position: relative;
  height: 60vh;
  width: 100vw;
  background-color: black;
}

.page14-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0vw 5vw;
  font-family: first_font;
  height: 33.3%;
  width: 100%;
  /* background-color: green; */
  color: white;
  border-bottom: 0.2px solid rgba(255, 255, 255, 0.459);
  border-top: 0.2px solid rgba(255, 255, 255, 0.459);
}

.page14-inner > i {
  font-size: 2.4vw;
  font-weight: 100;
  position: relative;
  z-index: 99999;
}

.page14-inner > h1 {
  font-size: 3vw;
  font-weight: 100;
  position: relative;
  z-index: 99999;
}

.center14 {
  height: 0%;
  width: 100%;
  position: absolute;
  background-color: #0a3cce;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all ease .5s;
}

.page14-inner:hover .center14
{
  height: 100%;
}