@import url("css_37.css");
* {
  margin: 0;
  padding: 0;
}

#homepage_header {
  background: radial-gradient(circle, #131111 0%, black 17%, black 27%);
  height: 100vh;
  overflow: hidden;
  cursor: none;
}

.header-logo a {
  cursor: none;
}

.cursor {
  width: 40px;
  height: 40px;
  border: 3px solid white;
  border-radius: 50%;
  position: absolute;
  box-shadow: 2px -3px 41px -1px rgba(250, 250, 250, 0.64);
  pointer-events: none;
}

.cursor_hover {
  transform: scale(1.4);
  mix-blend-mode: difference;
  background: white;
}

.right_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
}
.right_nav .side-menu_2 {
  flex-grow: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.right_nav .side-menu_2 .middle_spliter {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: column;
}
.right_nav .side-menu_2 .middle_spliter hr {
  flex-grow: 2;
  width: 1px;
  background: #ccc;
  opacity: 0.8;
  margin: 0;
}
.right_nav .side-menu_2 .middle_spliter #menuBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99;
  height: auto;
  position: relative;
}
.right_nav .side-menu_2 .middle_spliter #menuBtn input {
  display: block;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 9;
  top: 10px;
}
.right_nav .side-menu_2 .middle_spliter #menuBtn span {
  position: relative;
  display: block;
  margin: 4px 0 0 0;
  border-radius: 2px;
  transition: all 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.right_nav .side-menu_2 .middle_spliter #menuBtn span:nth-child(2) {
  transform-style: preserve-3d;
  width: 35px;
  height: 35px;
  border: 1px solid white;
  border-radius: 100%;
}
.right_nav .side-menu_2 .middle_spliter #menuBtn span .middle_dot {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  box-shadow: 0px 0px 5px 1px white;
}
.right_nav .side-menu_2 ul {
  margin: 0;
  list-style: none;
  text-align: left;
  width: 100%;
  margin-top: 160px;
}
.right_nav .side-menu_2 ul li {
  position: relative;
  text-align: right;
  padding: 5px 10px;
}
.right_nav .side-menu_2 ul li a {
  text-decoration: none;
  color: white;
  cursor: none;
  outline: none;
}
.right_nav .side-menu_2 ul li a:hover {
  color: #27aae1;
  cursor: none;
}
.right_nav .side-menu_2 ul li a:active {
  border: none;
}
.right_nav .side-menu_2 ul .active span {
  display: block;
  margin: 0;
  position: absolute;
  height: 80%;
  width: 20%;
  max-height: 9px;
  max-width: 9px;
  top: 12px;
  right: -22px;
  border-radius: 50%;
  background: white;
  z-index: 2;
  box-shadow: 0px 0px 5px 1px white;
}
.right_nav .side-menu_2 ul .active a {
  color: #27aae1;
}
.right_nav .side-menu_2 .sub_nav {
  margin-top: 200px;
}
.right_nav .side-menu_2 .sub_nav li {
  text-align: left;
  padding-left: 0;
}

.side-menu {
  width: 200px;
  height: 100vh;
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.side-menu #menuBtn {
  position: absolute;
  top: 25px;
  right: 25px;
  cursor: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 99;
  height: auto;
}
.side-menu #menuBtn input {
  display: block;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 9;
  top: 10px;
}
.side-menu #menuBtn input:checked ~ span:nth-child(2) {
  transform-style: preserve-3d;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateZ(180deg);
  }
}
.side-menu #menuBtn input:checked ~ span:nth-child(3) {
  width: 21px;
  height: 1px;
  transform: rotate(90deg);
}
.side-menu .menu {
  text-align: right;
  display: none;
}
.side-menu .menu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 25px 0;
  font-size: 23px;
}
.side-menu .straight-line {
  margin: 35px 0;
  height: 2px;
  border: 0;
  background: linear-gradient(to right, #000000 0%, #dffff4 40%, #c1ffea 60%, #000000 100%);
  width: 0vh;
  left: 5%;
  position: relative;
  transform: translateX(-50%) rotate(90deg);
  position: absolute;
}

.mainText .mainTitle {
  text-transform: uppercase;
  color: #fff;
  font-size: 5em;
  position: relative;
  letter-spacing: 5px;
  position: relative;
  display: block;
  text-transform: uppercase;
  transition: all 0.4s linear;
  opacity: 1;
  user-select: none;
  font-weight: 700;
}
.mainText .mainTitle:hover {
  opacity: 1;
  -webkit-text-fill-color: white;
  text-fill-color: white;
}
.mainText .mainTitle:hover ~ .cursor {
  transform: scale(1.4);
  mix-blend-mode: difference;
  background: white;
}
.mainText .subTitle:hover {
  opacity: 1;
  -webkit-text-fill-color: white;
  text-fill-color: white;
}
.mainText .subTitle:hover ~ .cursor {
  transform: scale(1.4);
  mix-blend-mode: difference;
  background: white;
}
.mainText .subTitle .apply_button {
  border: 2px solid #27aae1;
  height: 80px;
  width: 200px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  margin: 25px;
}
.mainText .subTitle .apply_button::after {
  content: "Apply Now";
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%);
  color: #27aae1;
  transition: all 0.1s linear;
}
.mainText .subTitle .apply_button::before {
  content: "";
  position: relative;
  display: block;
  height: 15px;
  width: 15px;
  background: #27aae1;
  box-shadow: 0px 0px 10px 3px #0ff;
  margin-left: -8px;
  margin-top: -8px;
  opacity: 0;
  transition: all 0.1s linear;
  border-radius: 100%;
  animation: star 1.3s linear infinite;
}
@keyframes star {
  0% {
    margin-left: -8px;
    margin-top: -8px;
  }
  25% {
    margin-left: 194px;
    margin-top: -8px;
  }
  50% {
    margin-left: 194px;
    margin-top: 75px;
  }
  75% {
    margin-left: -8px;
    margin-top: 75px;
  }
  100% {
    margin-left: -8px;
    margin-top: -8px;
  }
}
.mainText .subTitle .apply_button:hover::before {
  opacity: 1;
  animation: star 1.3s linear infinite;
}
.mainText .subTitle .apply_button:hover::after {
  content: "Apply Now";
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 20px #82bedc, 0 0 30px #82bedc, 0 0 40px #82bedc, 0 0 50px #82bedc, 0 0 60px #82bedc;
}

.planetImg {
  transform: scale(0.7) rotate(158deg);
  position: absolute;
  top: -5%;
  right: 13%;
  animation: float 12s ease-in-out infinite;
  background-image: radial-gradient(rgba(0, 0, 0, 0), black 75%), url("../images/learning_technology_solutions_0.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) translatex(5px) scale(0.7) rotate(2deg);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px) translatex(-5px) scale(0.7) rotate(6deg);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px) translatex(5px) scale(0.7) rotate(0deg);
  }
}
.explosion {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  transition-duration: 10ms;
  transition-timing-function: ease-out;
  animation: meniItemClick 0.3s;
}

@keyframes meniItemClick {
  0% {
    transform: scale(0.3);
    box-shadow: 0 0 0px 0px #9ab3f5;
  }
  70% {
    transform: scale(1);
    opacity: 0.7;
    box-shadow: 0 0 10px 8px #9ab3f5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
    box-shadow: 0 0 0px 0px #9ab3f5;
  }
}
#WebGL-output {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dg {
  display: none;
}

#homepage_header {
  max-height: 100vh;
  transform: rotateX(0deg);
  padding: 4em 0 6em 0;
}
#homepage_header .header-logo {
  max-width: 350px;
  width: 100%;
}
#homepage_header .container {
  position: relative;
  height: 100%;
}
#homepage_header .container .row {
  height: 100%;
}
#homepage_header .container .row .header_left_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: column;
}
#homepage_header .container .row .header_left_content .planetImg {
  width: 65%;
  top: 0;
  right: 0;
}

.sub_nav {
  display: none;
}

#sub_1 {
  display: block;
}

.slider_nav {
  padding-top: 5em;
}
.slider_nav .carousel-indicators {
  position: relative;
  margin: 0;
}
.slider_nav .carousel-indicators .homepage_nav_indicators {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: white;
  opacity: 1;
  border: 0;
  box-shadow: 0px 0px 10px 1px white;
  margin: 0 5px;
  cursor: none;
}
.slider_nav .carousel-indicators .homepage_nav_indicators:hover {
  background: #27aae1 !important;
  transition: background 0.5s;
}
.slider_nav .carousel-indicators .active {
  background: #27aae1 !important;
  transition: background 0.5s;
}

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