* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: radial-gradient(circle at center, #050c1a, #02060e);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

body .grid {
    background-size: 5rem 5rem;
    background-image:
      linear-gradient(to right, #050c1a 1px, transparent 1px),
      linear-gradient(to bottom, #050c1a 1px, transparent 1px);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: #e51d67;
}

.unselectable {
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 8rem;
    color: white;
}

.nav-logo {
    font-size: 2em;
    color: #15f2df;
}

.img-logo {
    width: 200px;
    height: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-family: "Manjari", sans-serif;
  font-size: 1.5rem;
  transition: color 0.2s;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #e51d67;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #15f2df;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.top-section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem 2rem;
}

.top-section-aligned {
    position: relative;
    padding: 3rem clamp(2rem, 8vw, 10%);
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.top-left {
    text-align: center;
    padding: 2rem;
    color: #15f2df;
}

.top-left h2 {
    font-size: 3em;
    background: linear-gradient(to bottom, #15f2df, #83f0e7);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    font-family: "Shippori Antique B1", sans-serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
}

.top-left h1 {
    font-size: 7em;
    background: linear-gradient(to bottom right, #15f2df, #83f0e7, #fff);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    font-family: "Shippori Antique B1", sans-serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
}

.top-left p {
    font-size: 2em;
    color: #fff;
    font-family: "Manjari", sans-serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
}

.top-left button {
    background-color: rgba(229, 29, 103, 0.3);
    color: #fff;
    border-color: #e51d67;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    cursor: pointer;
    border-radius: 4rem 0 4rem 0;
    border-width: 2px;
    border-style: solid;
    margin: 2rem 0px 1rem 0px;
    transition-duration: 0.1s;
    display: inline-flex;
    align-items: center;
}

.top-left button .icon {
    display: block;
    margin: 1.5px;
    height: 2em;
    width: 2em;
    stroke-width: 2;
}

.top-left button:hover {
    background-color: rgba(229, 29, 103, 0.9);
    border-radius: 0 4rem 0 4rem;
    transition-duration: 0.3s;

}

.top-right {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 32, 63, 0.2);
    border-radius: 1rem;
    /*clip-path: polygon(50% 0%, 90% 0%, 100% 10%, 100% 90%, 90% 100%, 50% 100%, 10% 100%, 0% 90%, 0% 10%, 10% 0%);*/
    box-shadow: 20px 20px 0 0 rgba(21, 242, 223, 0.6);
    transition-duration: 0.2s;
}

.top-right:hover {
    background: rgba(15, 32, 63, 0.7);
    border-radius: 1.5rem;
    box-shadow: 20px 20px 0 0 rgba(21, 242, 224, 0.9);
    transition-duration: 0.2s;
    cursor: pointer;
}

.img-box {
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-color: #15f2df;
    border-width: 2px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.middle-section {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem 8rem;
}

.middle-section-cta {
    position: relative;
    display: grid;
    padding: 3rem;
    justify-content: center;
    max-width: max-content;
    gap: 3rem;
    margin: 0 auto;
}

.middle-section-cta-box {
    display: flex;
    padding: 2rem;
    flex-direction: column;
    color: #fff;
    text-align: center;
    font-family: "Manjari", sans-serif;
    margin: 0rem 2rem 0rem 2rem;
}

.middle-section-cta-box h2 {
    font-family: "Shippori Antique B1", sans-serif;
    font-optical-sizing: auto;
    text-transform: uppercase;
    color: #e51d67;
    box-shadow: #15f2df;
    font-size: 3rem;
}

.middle-section-cta-box p {
    font-size: 1rem;
}

.middle-section-cta-box a {
    color: #15f2df;
    text-decoration: underline;
    transition: color 0.2s;
}

.middle-section-cta-box a:hover {
    color: #e51d67;
}

.middle-section-aligned {
    position: relative;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    max-width: max-content;
    gap: 3rem;
    margin: 0 auto;
}

.middle-box {
    display: flex;
    padding: 2rem;
    flex-direction: column;
    color: #fff;
    text-align: left;
    font-family: "Manjari", sans-serif;
    margin: 0rem 2rem 0rem 2rem;
    background: rgba(15, 32, 63, 0.2);
    border-radius: 1rem;
}

.middle-box .icon {
    display: block;
    margin: 1.5rem;
    height: auto;
    width: 2.5rem;
    stroke-width: 2;
}

.mb-title {
    font-family: "Shippori Antique B1", sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    padding: 1rem 0 2rem 0;
    display: inline-flex;
    align-items: center;
}

.mb-list {
    list-style-type: disc;
    list-style-position: inside;
    padding-top: 5px;
}

footer {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    background: rgba(15, 32, 63, 0.2);
    color: #fff;
}

.footer-box {
    display: flex;
    padding: 0 2rem 0 2rem;
    flex-direction: column;
    color: #fff;
    text-align: left;
    justify-content: center;
    font-family: "Manjari", sans-serif;
}

.footer-sm-txt {
    font-size: x-small;
}

.footer-box .icon {
    width: 2rem;
    height: auto;
}

@media (max-width: 1180px) {
  .top-section-aligned {
    grid-template-columns: 1fr;
    text-align: center;
    display: block;
  }

  .top-left {
    padding: 2rem 0 2rem 0;
  }

  .top-left h2 {
    font-size: 5vw;
  }

  .top-left h1 {
    font-size: 11vw;
  }

  .top-left p {
    font-size: 3vw;
  }

  .middle-section-aligned {
    grid-template-columns: 1fr;
  }


  .navbar {
    padding: 2rem 3rem;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    width: 70%;
    padding-left: 3rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links.open {
    transform: translateX(0);
  }

}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}