@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Light.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Display-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Ivy Presto Display";
  src: url("/typography/fonnts.com-Ivy-Presto-Headline-Semi-Bold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
h1 {
    font-family: "Ivy Presto Headline", serif;
    font-weight: 600;
    line-height: 100%;
    font-size: 84px;
}
span {
    font-family: "Ivy Presto Display", serif;
    font-weight: 300;
    font-style: italic;
}
h2 {
    font-family: "Ivy Presto Headline", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 110%;
}
h3 {
   font-family: "Ivy Presto Headline", serif;
   font-size: 56px;
   font-weight: 600;
   line-height: 110%;
}
h4 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
}
h6 {
  font-family: "Ivy Presto Headline", serif;
  font-size: 24px;
  font-weight: 600;
}
p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 130%;
  margin: 0;
}
b {
    font-weight: 600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --dark-blue: #152257;
    --dark-purple: #672076;
    --light-blue: #7CA6DB;
    --orange: #E4562E;
    --magenta: #C80181;
    --white: #fff;
    --black: #101010;
    --gray: #FAFAF8;
    --pale-bule: #E2EFFF;
}
.btn.magenta{
    background-color: var(--magenta);
    color: var(--white);
    padding: 16px 24px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
    display: flex;
    text-align: center;
    gap: 10px;
}
.btn {
    background-color: none;
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    justify-content: center;
    border: 1px solid var(--white);

}
@media (max-width: 1024px) {
  h1 {
    font-size: 65px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 50px;
  }
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 50px;
  }
  h3 {
    font-size: 45px;
  }
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
    font-size: 20px;
  }
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  min-height: 87.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;         
  object-position: top center; 
  z-index: 1;
}

.site-header,
.hero-wrapper_lower {
  position: relative;
  z-index: 3;
}

.site-header {
  padding: 25px 24px;
}

.header-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.logo img {
  width: 230px;
  height: 45px;
}

.nav {
  font-family: "Poppins", sans-serif;
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  font-weight: 600;
  border-bottom-color: var(--white);
  opacity: 1;
}

.header-btn {
  width: 125px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--white);
  padding: 14px 24px;
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.hero {
  padding: 0px 20px;
  color: var(--white);
}

.hero-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-image {
  max-width: 700px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  border-radius: 16px;
}

.hero-content {
  padding: 0px 0px 20px 0px;
  max-width: 695px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.hero-content_upper {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.hero-actions {
  width: 275px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 13px;
}
@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 60px;
  }
  .hero-content_upper {
    text-align: left;
    gap: 30px;
  }
  .hero-content {
    gap: 30px;
    padding: 0px 20px 20px 0px;
  }
  .hero-container {
    align-items: end;
  }
  .hero-wrapper {
    min-height: 60rem;
  }
  .hero-wrapper_lower {
    padding: 40px 5% !important;
  }
}
@media (max-width: 768px) {
  .hero-wrapper {
    min-height: 46rem;
  }
  .hero-img {
    object-position: center top;
    height: 100%;
  }
  .hero-wrapper_lower {
    padding: 30px 5% !important;
    align-items: flex-end;
  }
}
@media (max-width: 991px) {
  .nav {
    display: none;      
    flex-direction: column;
    gap: 15px;
    background: var(--magenta);
    padding: 20px;
    position: absolute;
    top: 90px;           
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav.active {
    display: flex;      
  }

  .menu-toggle svg {
    color: var(--white);
    width: 32px;
    height: 32px;
  }
  
  .menu-toggle {
    display: block;      
  }

  .nav-menu.active {
    display: block; 
  }

  .hero-container {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    width: 80%;
  }
  .header-btn {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 0px 20px;
  }

  .hero-image img {
    max-width: 280px;
  }
}
@media (max-width: 480px) {
  .hero-wrapper {
    min-height: 38rem;
  }
  .hero-img {
    object-position: top center;
  }
  .hero-wrapper_lower {
    padding: 20px 5% !important;
  }
}

/* -------- constellation wrapper -------- */
.hero-wrapper_lower {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 6%;
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 1000px;
  color: var(--white);
}

.hero-content span {
    color: var(--orange);
}


/* constellation Section */
.constellation {
  width: 100%;
  background: var(--dark-blue);
  padding: 54px 20px 100px 20px;
  color:#fff;
  justify-items: center;
  position:relative;
  overflow:hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 114px;
}

.constellation-wrapper {
  max-width: 1400px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 114px;
}

.constellation-content {
  height: 800px;
   width: 100%;
   display: flex;
   gap: 55px;
}

.constellation-left {
  max-width: 670px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px; 
}

.constellation-left img {
   width: 62px;
   height: 62px;
}

.constellation-left h2 {
    font-weight: 300;
    font-style: italic;
}

.constellation-left span {
    color: var(--orange);
}

.constellation-right {
    align-content: end;
    max-width: 780px;
    width: 100%;
}

.constellation-right {
    text-align: right;
}

.constellation-right span {
    color: var(--orange);
    font-weight: 600;
    font-style: normal;
}

.constellation-card {
  background: var(--orange);
  width: 100%;
  max-width: 1200px;
  padding: 70px 145px;
  border-radius: 80px 0px 80px 0px;
  color: var(--white);
}

.constellation-card p {
  font-weight: 600;
}

@media (max-width: 768px) {
  .constellation-content  {
    flex-direction: column;
    gap: 50px;
    height: auto;
  }
  .constellation-wrapper {
    gap: 80px;
  }
  .constellation-card  {
    padding: 60px 20px;
  }
  .constellation {
    padding: 50px 20px;
  }
}

/* Regarding use section */
.regarding-use-section {
  padding: 137px 20px;
}

.regarding-use-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 103px;
  margin: auto;
  align-items: center;
}

.regarding-use_content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: center;
}

.regarding-use_content span {
  color: var(--magenta);
}

.path-wrap {
  position: relative;
  width: 100%;
  margin: auto;
}

.path-img {
  width: 90%;
  height: auto;
  display: block;
}

#regarding-use-points {
  position: absolute;
  inset: 0;
}

.point-block {
  position: absolute;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.point-block h5 {
  color: var(--magenta);
  font-style: italic;
  font-size: 18px;
  font-weight: 300;
}

.bottom-text {
  margin-top: 90px;
  max-width: 835px;
  width: 100%;
  border-left: 6px solid var(--magenta);
  padding-left: 25px;
}

#regarding-use-bottom h6 {
  font-style: italic;
  font-weight: 300;
  color: var(--magenta);
}
@media (max-width: 1024px) {
  .path-img {
    width: 80%;
  }
  .point-block:nth-child(3) {
    right: -10px !important;
    top: 8% !important;
    width: 200px !important;
  }
}
@media (max-width: 992px) {
  #regarding-use-points {
    position: static;
    margin-top: 20px;
    display: grid;
    gap: 18px;
  }
  .point-block {
    position: static;
    max-width: 100%;
  }
  .path-img {
    width: 100%;
  }
  .bottom-text {
    margin-top: 0px;
  }
  .regarding-use_content img {
    width: 300px;
  }
  .regarding-use-container {
    gap: 50px;
  }
  .regarding-use-section {
    padding: 50px 20px;
  }
}
@media (max-width: 768px) {
  .point-block:nth-child(3){
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .point-block h5 {
    font-size: 16px;
  }

  .point-block p {
    font-size: 14px;
  }
}

/* Origin Section */
.origin-wrapper {
  background: var(--pale-bule);
  padding: 78px 20px;
  justify-items: center;
}

.origin-wrapper_content {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 55px;
  align-items: start;
}

.origin-header {
  background: #6B7FD2;
  color: white;
  padding: 20px 54px;
  border-radius: 45px 0px 45px;
  display: inline-flex;
  justify-content: space-between;
  max-width: 695px;
  width: 100%;
  align-items: center;
}

.origin-header span {
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
}

.origin-content {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.origin-row {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}

.origin-row h4 {
  width: 100%;
  max-width: 85px;
  color: var(--magenta);
}

.border {
  width: 100%;
  max-width: 6px;
  height: 94px;
  background-color: var(--magenta);
}

.who-highlight {
  font-size: 32px;
  font-weight: 300;
  color: var(--magenta);
}
@media (max-width: 1024px) {
  .origin-header span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .origin-header span {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .origin-wrapper {
    padding: 50px 20px;
  }
  .origin-row {
    gap: 15px;
  }
  .origin-header {
    padding: 20px;
  }
  .who-highlight {
    font-size: 20px;
  }
  .origin-row h4 {
    max-width: 51px;
  }
}
@media (max-width: 425px) {
  .origin-header span {
    font-size: 20px;
  }
  .origin-row {
    gap: 18px;
  }
}

/* The Constellation Section */
#the-constellation-wrapper {
  width: 100%;
  padding: 78px 20px;
  justify-items: center;
  background-color: var(--white);
}

#the-constellation-wrapper2 {
  width: 100%;
  padding: 78px 20px;
  justify-items: center;
  background-color: var(--pale-bule);
}

#the-constellation-wrapper3 {
  width: 100%;
  padding: 78px 20px;
  justify-items: center;
  background-color: var(--white);
}

#the-constellation-wrapper4 {
  width: 100%;
  padding: 78px 20px;
  justify-items: center;
  background-color: var(--pale-bule);
}

#the-constellation-wrapper5 {
  width: 100%;
  padding: 78px 20px;
  justify-items: center;
  background-color: var(--white);
}

#the-constellation-wrapper6 {
  width: 100%;
  padding: 78px 20px;
  justify-items: center;
  background-color: var(--pale-bule);
}

.theconstellation-section{
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.theconstellation-header{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.theconstellation-header_upper {
  background: #6B7FD2;
  color: white;
  padding: 20px 54px;
  border-radius: 45px 0px 45px;
  display: inline-flex;
  justify-content: space-between;
  max-width: 695px;
  width: 100%;
  align-items: center;
}

.theconstellation-header_upper h4{
  width: max-content !important;
  color: var(--white) !important;
  font-style: normal !important;
  font-weight: 600 !important;
  font-size: 29px !important;
}

.theconstellation-header_upper span {
  font-size: 29px;
  font-weight: 300;
  font-style: italic;
}

.theconstellation-header h4{
  max-width: 680px;
  width: 100%;
  font-weight: 300;
  font-style: italic;
  color: var(--magenta);
}

.theconstellation-title{
  color:#fff;
  padding:14px 26px;
  border-radius:18px;
}

.theconstellation-content {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.point-row{
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}

.point-row h4 {
  width: 100%;
  max-width: 85px;
  color: var(--magenta);
}
@media (max-width: 1024px) {
  .theconstellation-header_upper span {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .theconstellation-header_upper span {
    font-size: 24px;
  }
  .theconstellation-header {
    flex-direction: column;
    align-items: start;
  }
  .theconstellation-header_upper {
    padding: 20px;
  }
}
@media (max-width: 425px) {
  .theconstellation-header_upper span {
    font-size: 20px;
  }
  .point-row {
    gap: 18px;
  }
  .point-row h4{
    max-width: 40px !important;
  }
}

/* Orbit Section */
.orbit-section {
  align-items: center;
  justify-items: center;
  padding: 90px 0px 90px 160px;
}

.orbit-wrapper {
  margin: auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}

.orbit-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 765px;
  width: 100%;
}

.orbit-content_upper {
  color: var(--dark-blue);
  max-width: 605px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.orbit-content_upper img {
  width: 420px;
}

.orbit-content ul {
  list-style: none;
  padding: 0;
  padding-left: 10px;
}

.orbit-content li {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  padding-left: 15px;
  position: relative;
}

.orbit-content li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.orbit-content_lower {
  max-width: 765px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 45px;
  color: var(--dark-blue);
}

.orbit-content_lower img {
  width: 420px;
}

.orbit-image img {
  width: 100%;
  border-radius: 0px 350px 0px;
}

.orbit-questions h4 {
  color: #C80180;
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .orbit-section {
    padding: 50px 20px;
  }
}
@media (max-width: 768px) {
   .orbit-section {
      padding: 50px 20px;
   }
   .orbit-wrapper {
      flex-direction: column;
   }
   .orbit-image img {
    width: 100%;
   }
   .orbit-content_upper img {
      width: 300px;
   }
   .orbit-content_upper {
    gap: 25px;
   }
   .orbit-content_lower img {
      width: 300px;
    }
   .orbit-content_lower {
        gap: 25px;
   }
   .orbit-content {
    gap: 40px;
   }
}



/* Universe Section */
.universe-section {
  background: linear-gradient(195.24deg, #152257 -7.17%, #C80180 112.52%);
  padding: 180px 20px;
  color: white;
  text-align: center;
}

.universe-wrapper {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.universe-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.universe-content img {
    width: 430px;
}

#dynamic-content h4 {
    font-weight: 300;
    font-style: italic;
}

@media (max-width: 768px) {
    .universe-section {
        padding: 50px 20px;
    }
    .universe-content img {
        width: 310px;
    }
}

/* Footer */
.site-footer {
  background: #1E285F;
  color: #ffffff;
  padding: 58px 20px 65px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-around;
}

.footer-brand {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand img {
  width:  230px;
  height: 50px;
}

.footer-brand p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-menu_wrapper {
  width: 55%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-col h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-col a {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-col a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-col a.active {
  position: relative;
  display: inline-block;
}

.footer-col a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-menu_right {
  display: flex;
  flex-direction: column;
  gap: 49px;
}

.footer-menu_privacy {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-menu_privacy h6 {
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-menu_privacy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 39px;
}

.footer-menu_privacy a {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a:hover::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-menu_privacy a.active {
  position: relative;
  display: inline-block;
}

.footer-menu_privacy a.active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 2px;
  height: 25px;
  width: 2px;
  background: var(--white);
}

.footer-contact_wrapper h6{
  font-family: "Poppins", sans-serif;
  color: var(--orange);
  font-size: 16px;
  text-transform: uppercase;
}

.footer-contact_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-contact p{
  font-family: "Ivy Presto Display";
  font-size: 18px;
  font-style: italic;
}

.footer-contact a{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600s;
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-bottom p {
  font-family: "Ivy Presto Display";
  font-style: italic;
}

.footer-bottom small {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
  }

  .footer-brand {
    width: 100%;
  }

  .footer-menu_wrapper {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .site-footer {
    padding: 40px 25px;
  }

  .footer-menu_wrapper {
    flex-direction: column;
  }
}