@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
.inner__page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.image__content,
.image__gradient,
.text__content {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.image__content {
  z-index: 1;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}

.image__content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: zoomInOnLoad 5s forwards;
  animation: zoomInOnLoad 5s forwards;
}

@-webkit-keyframes zoomInOnLoad {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes zoomInOnLoad {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.image__gradient {
  position: absolute;
  z-index: 1;
  background: radial-gradient(rgba(0, 0, 0, 0.5), black);
  height: 50vh;
  width: 100%;
}

.text__content {
  position: relative;
  width: 100%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6rem 0rem;
  z-index: 0;
}

.text__content .home__text {
  position: absolute;
  top: 50px;
  color: var(--clr-accent-blue);
  text-transform: uppercase;
  cursor: pointer;
}

.text__content .home__text:hover {
  color: var(--clr-dark-black);
}

.text__content h2,
.text__content h4,
.text__content p,
.text__content ul {
  width: 85%;
  max-width: 550px;
}

.text__content h4,
.text__content p {
  font-size: 1rem;
  font-weight: 600;
}

.text__content h2 {
  color: var(--clr-light-black);
  font-size: 2.6rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2.7rem;
}

.text__content h2::after {
  content: "";
  display: block;
  background-color: var(--clr-light-gray);
  opacity: 0.5;
  width: 20%;
  max-width: 54px;
  height: 1px;
  margin-top: 1rem;
}

.text__content h4 {
  color: var(--clr-accent-blue);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.text__content p {
  color: var(--clr-dark-black);
  line-height: 1.6rem;
}

.text__content p a {
  color: var(--clr-accent-blue);
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

.text__content p a:hover {
  color: var(--clr-dark-black);
  text-decoration: underline;
}

.text__content ul {
  color: var(--clr-dark-black);
}

.text__content ul li {
  line-height: 1.2rem;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

@media screen and (min-width: 1000px) {
  .text__content ul li {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1440px) {
  .text__content ul li {
    line-height: 1.5rem;
    font-size: 1.1rem;
  }
}

.text__content ul li::before {
  content: "\2022";
  color: var(--clr-accent-blue);
  font-weight: bold;
  width: 2rem;
  margin-left: -0.8rem;
  padding-right: 0.5rem;
}

@media screen and (min-width: 1024px) {
  .inner__page__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .image__content {
    width: 50%;
    height: 100vh;
  }
  .image__content img {
    height: 100vh;
  }
  .image__gradient {
    width: 50%;
    height: 100vh;
  }
  .text__content {
    padding: 0;
    width: 50%;
  }
  .text__content .home__text {
    top: 150px;
  }
}

.nav__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: calc(24px / 3);
  cursor: pointer;
  z-index: 1;
}

.nav__hamburger div {
  width: 30px;
  height: 1px;
  background-color: var(--clr-accent-blue);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  z-index: 1;
}

.nav__hamburger:hover > div {
  background-color: var(--clr-accent-blue);
}

.nav__hamburger.active > div:first-child {
  -webkit-transform: rotate(45deg) translateY(6px) translateX(6px);
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.nav__hamburger.active > div:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav__hamburger.active > div:nth-child(3) {
  opacity: 0;
}

#main__navigation {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 2rem 1.5rem;
}

#main__navigation .btn {
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  #main__navigation {
    padding: 2rem 3rem;
  }
}

.header__navigation__content {
  position: fixed;
  right: 0px;
  top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #040404;
  height: 100vh;
  width: 100%;
  color: white;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.2);
  box-shadow: -10px 0px 20px rgba(0, 0, 0, 0.2);
}

.header__navigation__content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 3rem;
}

.header__navigation__content li:hover .nav__item__active {
  display: none;
}

.header__navigation__content li:hover img,
.header__navigation__content li:hover .nav__gradient {
  width: 100%;
  opacity: 1;
}

.header__navigation__content li:hover a {
  color: white;
}

.header__navigation__content li:hover a::after {
  background-color: white;
}

.header__navigation__content li img,
.header__navigation__content li a,
.header__navigation__content li .nav__gradient {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.header__navigation__content li .nav__gradient {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.header__navigation__content li img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.2;
}

.header__navigation__content li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 6vw, 4rem);
  font-weight: 400;
  z-index: 2;
}

.header__navigation__content .nav__item__active:hover a {
  color: var(--clr-accent-blue);
}

.header__navigation__content .nav__item__active:hover a::after {
  background-color: var(--clr-accent-dark-blue);
}

.header__navigation__content .nav__item__active a {
  color: var(--clr-accent-dark-blue);
}

.header__navigation__content .nav__item__active a::after {
  background-color: var(--clr-accent-dark-blue);
}

@media screen and (min-width: 1440px) {
  .header__navigation__content {
    width: 50%;
  }
}

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
}

.hero .vorlon__header {
  font-size: clamp(1.8rem, 20vw, 23rem);
  color: var(--clr-accent-dark-blue);
  font-weight: 500;
}

.hero h2 {
  font-size: 1rem;
  color: var(--clr-accent-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  text-align: center;
  opacity: 0.3;
}

#smokeCanvas {
  position: absolute;
  z-index: -1;
  top: 0px;
  left: 0px;
  background-image: url("../images/smoke-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: auto 105%;
  width: 100%;
  height: 100vh;
}

.vorlon__header {
  mix-blend-mode: color-dodge;
}

@media screen and (min-width: 1440px) {
  #smokeCanvas {
    background-size: 105%;
    background-position: bottom;
    width: 100%;
    height: 100%;
  }
}

:root {
  --clr-accent-blue: #2db9d2;
  --clr-accent-dark-blue: #45bad2;
  --clr-dark-black: #080808;
  --clr-light-black: #2b2b2b;
  --clr-light-gray: #667172;
  --clr-dark-gray: #2f3e43;
  --font-rajdhani: "Rajdhani", sans-serif;
  --base-transition: all 0.3s ease-in-out;
}

body {
  font-family: var(--font-rajdhani);
  overflow-x: hidden;
}

.btn {
  position: relative;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 0.8rem 2.5rem;
  font-weight: 500;
  font-family: var(--font-rajdhani);
  cursor: pointer;
}

.btn__primary {
  position: relative;
  color: var(--clr-accent-blue);
  border: 1px solid var(--clr-dark-gray);
  border-left: 0px;
}

.btn__primary .btn__animate {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 4px;
  background-color: var(--clr-accent-blue);
  -webkit-transition: var(--base-transition);
  transition: var(--base-transition);
}

.btn__primary:hover {
  color: white;
  border-color: var(--clr-accent-blue);
}

.btn__primary:hover .btn__animate {
  width: 100%;
  z-index: -1;
}

.cursor {
  position: fixed;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
  left: -100px;
  top: 50%;
  mix-blend-mode: difference;
  background-color: transparent;
  z-index: 10000;
  border: 2px solid white;
  height: 20px;
  width: 20px;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  z-index: 1;
}
/*# sourceMappingURL=styles.css.map */
