@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
.tooltip {
    position: relative;
    display: flex;
    cursor: pointer;
    border-bottom: 1px dotted black;
    align-items: center;
}

/* Tooltip text */

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: fff;
    color: #000;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */

.tooltip:hover .tooltiptext {
    visibility: visible;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    /* width: 100vw; */
    /* overflow: hidden; */
}

.main {
    padding-top: 70px;
}

@media screen and (max-width: 992px) {
    .main {
        overflow: hidden;
        padding-top: 60px;
    }
}

/* .main:not(.jobs-page) {
  display: flex;
  flex-direction: column;
  align-items: center;
} */

.jobs-page {
    width: 100%;
}

.blur {
    filter: blur(4px);
}

.main-menu {
    position: sticky;
    top: 0;
    z-index: 5;
    right: 0%;
    top: 0%;
    background: #212634;
    width: 100%;
    font-family: IBM Plex Mono;
}

.main-menu .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu .logo img {
    height: 40px;
}

.main-menu .left li {
    display: flex;
    margin: 0 14px;
}

.main-menu .left li a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-bottom: 4px solid transparent;
    transition: 0.3s ease;
    cursor: pointer;
}

.main-menu .left li a.current {
    color: #FF993C;
    border-bottom: 4px solid #FF993C;
}

.main-menu .left li a:hover {
    border-bottom: 4px solid #FF993C;
}

.li-disabled {
    opacity: 30%;
}

.main-menu .left {
    margin: 0;
    display: flex;
    height: 100%;
    padding: 0;
}

.main-menu .left li:first-of-type {
    margin-left: 0;
}

.main-menu .right {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.main-menu .right .primary-button {
    padding: 10px 20px;
}

.main-menu .right li:last-of-type {
    margin-right: 0;
}

.primary-button,
.secondary-button {
    background: #FF993C;
    border-radius: 6px;
    padding: 12px 18px;
    color: #040A2A;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    width: 100%;
    text-align: center;
    /* max-width: 282px; */
    margin: 0 auto;
    min-height: 48px;
    border: 0;
    height: 48px;
    cursor: pointer;
    z-index: 1;
    transition: 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    text-shadow: none;
}

/* .primary-button:focus:before, .primary-button:active:before, .secondary-button:focus:before, .secondary-button:active:before {
    border-color: #305CF9;
    transform: translate(-0.25em, 0.25em); } */

/* .primary-button:hover, .secondary-button:hover {
    background: #1d41c2;
    transform: translate(-0.25em, 0.25em); } */

/* .primary-button:hover:before, .secondary-button:hover:before {
      border-color: #1d41c2;
      transform: translate(0.25em, -0.25em); } */

/* .primary-button:before, .secondary-button:before {
    content: "";
    display: flex;
    position: absolute;
    transition: 0.3s ease;
    width: 100%;
    height: 100%;
    border: 1px solid #305CF9;
    bottom: -6px;
    left: -6px;
    z-index: -1; } */

.primary-button svg,
.secondary-button svg {
    border-radius: 0;
    width: 20px;
    height: 20px;
    padding: 0 6px 0 0;
    display: none;
}

/* .primary-button svg path, .secondary-button svg path {
      fill: #212634; } */

.secondary-button {
    background: #76FC69;
    color: #29243D;
}

.secondary-button:before {
    border-color: #76FC69;
}

.secondary-button:hover {
    background: rgba(97, 255, 82, 0.883);
}

.secondary-button:hover:before {
    border-color: rgba(97, 255, 82, 0.883);
}

.primary-button.invalid-error {
    background: #f14646;
    border: 1px solid #f14646;
}

.primary-button.invalid-error:before {
    border-color: #f14646;
}

.primary-button.disabled {
    background: #656565;
}

.logo {
    border: none;
    background: none;
    text-align: center;
}

.hero {
    width: 100%;
    background-color: #212634;
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.hero-image {
    margin-top: 5px;
    height: 240px;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    transition: 0.3s ease;
}

.hero-title {
    margin-top: 16px;
    margin-bottom: 0;
    color: #fff;
    font-family: Poppins;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    width: 100%;
}

.hero-title.normal {
    font-size: 48px;
    line-height: 48px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 40px;
        line-height: 40px;
    }
    .hero-title.normal {
        font-size: 32px;
        line-height: 32px;
    }
}

.hero-stitle {
    font-weight: 300;
    font-size: 24px;
    line-height: 26px;
    color: white;
    width: 100%;
    margin-bottom: 44px;
    margin-top: 24px;
}

.hero-stitle+.form-content {
    padding-bottom: 10px;
}

.hero-introducing {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin: 0;
    width: 100%;
    z-index: 1;
}

@media screen and (max-width: 992px) {
    .hero-introducing {
        margin-top: 16px;
    }
}

.hero-introducing strong {
    font-weight: bold;
}

.hero-subtitle {
    margin: 0 auto;
    margin-top: 32px;
    color: #fff;
    font-family: Poppins;
    font-style: normal;
    width: 100%;
    max-width: 800px;
    font-weight: 300;
    font-size: 24px;
    line-height: 28px;
}

@media screen and (max-width: 992px) {
    .hero-subtitle {
        margin: 0;
        margin-top: 16px;
    }
}

#hero-form,
#hero-form-2,
#hero-form-3 {
    margin: 0;
    display: flex;
    flex-direction: column;
    width: fit-content;
}

#hero-form-2 {
    margin: 0;
}

.form-content {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 992px) {
    .form-content {
        width: 100%;
    }
}

form div {
    align-self: center;
}

.join-email {
    background: white;
    border: 1px solid #305CF9;
    box-sizing: border-box;
    min-width: 200px;
    z-index: 2;
    color: black;
    padding: 0 10px;
    padding-right: 25px;
    flex: 1;
}

@media screen and (max-width: 450px) {
    .join-email {
        min-width: initial;
        max-width: 170px;
    }
}

@media screen and (max-width: 992px) {
    .join-email {
        font-size: 12px;
    }
}

.join-email:focus {
    outline: none;
    border-color: #305CF9;
}

.join-email:focus+.primary-button {
    background: #1d41c2;
}

form input.invalid-error {
    border-color: #f14646;
}

form input.invalid-error+.primary-button {
    background: #f14646;
}

form input.invalid-error+.primary-button:hover {
    background: #f14646;
}

.message-error,
.message-already {
    margin-top: 6px;
    display: none;
    font-style: italic;
    font-weight: normal;
    font-size: 12px;
}

.message-error.on,
.message-already.on {
    display: inline-flex;
}

.message-error {
    color: #f14646;
}

.message-already {
    color: #ffffff;
}

.grey-line {
    border: 1px solid #212634;
    width: 100%;
    max-width: 1232px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

p {
    color: #fff;
}

.sign-up-text {
    margin-top: 16px;
    margin-bottom: 0;
    color: #a2a2a2;
    font-size: 14px;
    text-align: center;
}

.orange {
    position: absolute;
    width: 482px;
    height: 334px;
    background: #305CF9;
}

.active+.orange-line {
    border-color: #305CF9 !important;
}

.orange {
    position: absolute;
    width: 482px;
    height: 334px;
    background: #212634;
}

.half {
    width: 50%;
}

.partners {
    height: 530px;
    background-color: #212634;
}

/* footer {
  background-color: #212634;
  display: flex;
  align-items: center;
  flex-flow: column;
  align-content: flex-end;
  width: 100%;
  max-width: 1232px;
  font-family: IBM Plex Mono; }
  footer a {
    text-decoration: underline; }

footer nav {
  margin-top: 86px;
  margin-bottom: 25px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1232px;
  padding: 0 20px;
  box-sizing: border-box;
  box-sizing: border-box; }

footer ul {
  width: 40%;
  display: flex;
  padding: 0;
  align-items: center; }

footer .logo {
  width: 20%; }

footer .menu {
  justify-content: flex-start; }

footer .extra {
  justify-content: flex-end;
  font-size: 24px;
  margin-bottom: 0;
  flex-wrap: nowrap; }

footer li {
  list-style-type: none; }

footer .menu li {
  margin-right: 40px; }

footer li a {
  color: #fff;
  font-weight: 500;
  cursor: pointer; }

footer .extra li {
  margin-left: 39px;
  cursor: pointer;
  transition: 0.3s ease; }
  footer .extra li:hover {
    transform: translateY(-5px); }
  footer .extra li a {
    padding: 5px; }

footer .terms {
  width: 100%;
  max-width: 1232px;
  box-sizing: border-box;
  padding: 0 20px; }

footer .terms h4 {
  margin-top: 16px;
  color: #a2a2a2;
  font-size: 16px;
  font-weight: normal; }

.subfooter {
  display: flex;
  justify-content: space-between;
  width: 100%; }
  .subfooter a {
    color: #305CF9; }

.subfooter ul {
  display: flex;
  justify-content: flex-end; }

.subfooter ul li {
  margin-left: 32px;
  color: #a2a2a2;
  font-size: 16px; } */

.full {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.fa-li {
    color: #fff;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
    60% {
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.arrow {
    display: flex;
    flex-basis: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 114px;
    margin-bottom: 117px;
}

.arrow a {
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.arrow a:hover {
    transform: translateY(10px);
}

.arrow a:hover svg * {
    fill: #1d41c2;
}

.arrow a svg {
    filter: drop-shadow(0px 0px 5px #305CF9);
}

.arrow a svg:nth-child(2) {
    margin-top: -25px;
}

.arrow a svg * {
    transition: 0.3s ease;
    fill: #305CF9;
}

@media screen and (max-width: 992px) {
    .arrow {
        margin-top: 24px;
        margin-bottom: 52px;
        order: 2;
    }
}

#join {
    margin: 0;
    padding: 0;
}

#join-team {
    background-color: #212634;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding-top: 160px;
    padding-bottom: 80px;
    position: relative;
    z-index: 0;
}

#join-team .main-content {
    align-items: center;
    justify-content: center;
    z-index: 4;
}

#join-team .main-left p {
    font-weight: 300;
    font-size: 24px;
    line-height: 32px;
}

#join-team h1 {
    margin: 0;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    max-width: 770px;
}

#join-team h2 {
    margin: 0;
    margin-top: 16px;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    max-width: 580px;
}

.list-gg {
    /* background-color: #212634; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    transition: 0.4s;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .list-gg {
        padding: 24px 20px;
        display: block;
        box-sizing: border-box;
    }
}

.list-gg .container {
    margin: 64px 0;
    width: 100%;
    max-width: 1024px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .list-gg .container {
        margin: 0;
    }
}

.list-gg .line {
    width: calc(100% - 49px);
    margin-left: 24px;
    transition: 0.3s ease;
}

.list-gg .orange-line {
    border: 1px solid white;
}

.list-gg h3 {
    color: #fff;
    margin: 0;
    font-weight: 500;
    font-size: 32px;
    line-height: 48px;
    width: 770px;
}

.list-gg p a {
    color: white;
    font-weight: 300;
    text-decoration: none;
}

@media (min-width: 992px) {
    .hide-desktop {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .main-menu nav {
        display: flex;
        justify-content: space-between;
    }
    .main-menu nav ul {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0;
        margin: 0;
    }
    .main-menu button {
        width: inherit;
    }
    .main-menu nav .logo {
        display: flex;
        align-items: center;
        height: 100%;
        display: flex;
        justify-content: center;
    }
    #join {
        display: flex;
        justify-content: flex-end;
        font-size: 24px;
        list-style: none;
    }
}

.mobile-header li {
    padding: 0;
}

.mobile-header button {
    width: inherit;
}

.about-buttons {
    margin-top: 32px;
}

#first-content {
    padding-top: 200px;
    padding-bottom: 150px;
}

@media screen and (max-width: 992px) {
    #first-content {
        padding-top: 71px;
        padding-bottom: 71px;
    }
}

#about-us {
    position: relative;
    width: 100%;
    min-height: 887px;
}

#about-us p {
    max-width: 800px;
    margin-top: 24px;
    margin-bottom: 32px;
    line-height: 32px;
    font-size: 24px;
    text-shadow: 0px 0px 8px #212634;
}

#about-us .hero-title {
    margin-top: -20px;
}

#about-us .troncito {
    margin-top: 39%;
}

@media screen and (max-width: 992px) {
    #about-us {
        min-height: 450px;
    }
    #about-us .troncito {
        margin-top: 11%;
    }
}

@media screen and (max-width: 450px) {
    #about-us {
        min-height: 450px;
    }
    #about-us .troncito {
        margin-top: 23%;
    }
}

#our-partners {
    padding-top: 80px;
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    #our-partners {
        padding-top: 0;
        padding-bottom: 44px;
    }
    #our-partners .main-content {
        margin-top: 20px;
    }
}

#our-partners .hero-introducing {
    text-align: center;
    margin-bottom: 40px;
}

.our-partners-logo {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 992px) {
    .our-partners-logo {
        flex-direction: column;
        align-items: center;
    }
    .our-partners-logo svg {
        margin: 20px 0;
    }
}

@media (max-width: 992px) {
    /* Hero */
    .hero-image {
        height: 227px;
    }
    .modal .hero-title {
        max-width: 100%;
        font-size: 24px;
    }
    .modal h2 {
        font-size: 14px;
    }
    .hero-title {
        width: 100%;
    }
    .hero-subtitle {
        width: 90%;
    }
    #hero-form-2,
    #hero-form {
        margin-top: 24px;
    }
    #hero-form-2 {
        width: 100%;
    }
    /* About */
    #about-us {
        padding-top: 20px;
        padding-bottom: 44px;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding-top: 160px;
    }
}

@media screen and (max-width: 992px) and (max-width: 440px) {
    #about-us {
        padding-top: 100px;
    }
}

@media (max-width: 992px) {
    #about-us h3 {
        font-size: 14px;
    }
    #about-us-title {
        margin: 0;
        font-size: 32px;
        width: 90%;
    }
    #about-us p {
        font-size: 16px;
        width: 100%;
        max-width: 327px;
        font-weight: 300;
        padding-top: 0;
        margin-top: 18px;
        margin-bottom: 0;
    }
    .about-buttons {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        margin-top: 24px;
        align-items: center;
        max-width: 327px;
        margin-bottom: 64px;
    }
    .about-buttons a {
        width: 100%;
        margin: 0;
    }
    .about-buttons button {
        width: 100%;
    }
    #about-us .primary-button:not(.join-discord) {
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }
    #about-us .secondary-button {
        margin-left: 0;
        margin-right: 0;
        margin-top: 18px;
    }
    /* footer nav {
    width: 100%;
    margin-top: 32px;
    margin-bottom: 0;
    flex-direction: column;
    padding: 0 20px; }

  footer .menu {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 318px;
    margin-bottom: 0; }

  footer .extra {
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 327px;
    margin-top: 35px; }

  footer .menu li {
    margin: 0; }

  footer .extra li {
    margin: 0; }

  footer .terms {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0; }

  .terms .subfooter a {
    font-size: 16px !important; }

  footer .terms .grey-line {
    width: 90% !important; }

  .subfooter h4 {
    width: 50%; }

  .subfooter ul {
    width: 50%;
    align-items: flex-start;
    justify-content: flex-end; }

  .subfooter ul li {
    margin: 0; }

  .subfooter ul .terms-link {
    margin-right: 16px; } */
    #join-team {
        width: 100%;
        padding-top: 80px;
        padding-bottom: 44px;
    }
    #join-team .illustration-img {
        margin-bottom: 24px;
    }
    #join-team h1 {
        width: 90%;
        font-size: 32px;
        line-height: 32px;
    }
    #join-team h2 {
        width: 88%;
        font-size: 20px;
        line-height: 28px;
    }
    .list-gg h3 {
        font-size: 20px;
        line-height: 20px;
        width: 90%;
    }
    .list-gg p {
        font-size: 16px;
        line-height: 22px;
    }
    #mobile-menu {
        display: flex;
        position: fixed;
        z-index: 6;
        width: 100%;
        max-width: 250px;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        min-height: 100vh;
        padding-top: 80px;
        overflow-y: auto;
        transition: 0.3s ease;
        transform: translateX(-100%);
        box-sizing: border-box;
        background: #29243dd9;
    }
    #mobile-menu.on {
        transform: translateX(0%);
    }
    @supports (-webkit-backdrop-filter: blur(32px)) or (backdrop-filter: blur(32px)) {
        #mobile-menu {
            background: #29243dd9;
        }
    }
    #mobile-menu-body {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        transition: 0.3s ease;
    }
    #mobile-menu-body .menu {
        padding: 0 24px;
    }
    #mobile-menu-body .extra {
        flex: 1 1 100%;
        padding: 0;
    }
    #mobile-menu-body .to-the-bottom {
        align-self: flex-end;
        padding: 0 24px;
        width: 100%;
    }
    #mobile-menu-body .to-the-bottom .grey-line {
        border-color: #656565;
    }
    #mobile-menu-body .to-the-bottom a {
        text-decoration: none;
        font-size: 25px;
        display: inline-flex;
    }
    /* #mobile-menu-body .subfooter {
      width: 100%;
      display: flex;
      flex-direction: column;
      padding-bottom: 80px; }
      #mobile-menu-body .subfooter > * {
        margin-top: 24px; }
        #mobile-menu-body .subfooter > *:first-child {
          margin-top: 40px; }
      #mobile-menu-body .subfooter a {
        text-decoration: underline;
        color: #A2A2A2; }
      #mobile-menu-body .subfooter h4 {
        color: #A2A2A2;
        font-size: 16px;
        width: 100% !important;
        font-weight: normal; } */
    #mobile-menu-body ul {
        margin-top: 32px;
    }
    #mobile-menu-body ul li {
        margin-bottom: 38px;
        list-style-type: none;
        display: flex;
        align-items: flex-end;
    }
    #mobile-menu-body ul li a {
        color: #fff;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        text-align: center;
        text-decoration-line: underline;
    }
    #about-us img.improbable-logo {
        margin-top: 32px;
    }
    #about-us .grey-line {
        margin-top: 65px;
    }
    /* footer .terms h4 {
    font-size: 14px; } */
    .main>header {
        width: 100%;
        position: absolute;
        top: 0;
        z-index: 9;
        height: 80px;
        width: 100%;
    }
}

.modal-container {
    height: 100vh;
    width: 100%;
    z-index: 10;
    position: fixed;
    background-color: rgba(16, 16, 16, 0.4);
    display: none;
    justify-content: center;
    animation: modalIn 0.5s ease;
}

.modal-container input {
    /* background: #212634; */
    /* color: white; */
    z-index: 2;
}

@keyframes modalIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* The Modal (background) */

.modal {
    background-color: rgba(4, 10, 42, 0.95);
    width: 100%;
    max-width: 860px;
    /* box-sizing: border-box;
  box-shadow: 0px 0px 16px rgba(255, 157, 75, 0.4); */
    border-radius: 8px;
    align-self: center;
    z-index: 11;
    opacity: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    animation: scaleIn 0.5s 0.5s ease forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 992px) {
    .modal {
        border: 1px solid #656565;
        box-sizing: border-box;
        box-shadow: 0px 0px 16px #212634;
        border-radius: 8px;
        align-self: flex-end;
    }
}

/* .modal h1 {
  font-weight: 500;
  font-size: 40px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  width: 100%; } */

/* @media screen and (max-width: 991px) {
    .modal h1 {
      line-height: 20px; } } */

/* .modal h2 {
  text-align: center;
  color: #ffffff;
  margin: 16px;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px; } */

.close-modal {
    cursor: pointer;
}

.modal form {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

#contact-modal {
    display: none;
}

#contact-modal .modal {
    height: 390px;
}

/* Modal Content/Box */

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style the buttons that are used to open and close the accordion panel */

.accordion {
    color: #fff;
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 32px;
    line-height: 32px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    background-color: transparent;
    border: none;
    padding: 24px;
    transition: 0.3s ease;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

.accordion:hover+.grey-line {
    border-color: white;
}

.accordion .arrow-icon {
    transform: rotate(180deg);
    transition: 0.3s ease;
}

.accordion .arrow-icon path {
    transition: 0.3s ease;
    fill: white;
}

.accordion.active .arrow-icon {
    transform: rotate(0);
}

.accordion.active .arrow-icon path {
    fill: #305CF9;
}

@media screen and (max-width: 992px) {
    .accordion {
        font-size: 20px;
        padding: 9px 24px;
    }
    .accordion .arrow-icon {
        min-width: 18px;
        max-width: 18px;
        height: 18px;
    }
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */

.job {
    background-color: transparent !important;
}

.job,
.terms-list>li {
    width: 100%;
    /* background-color: #212634; */
    margin-bottom: 60px;
    text-align: left;
}

.job:last-of-type,
.terms-list>li:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .job,
    .terms-list>li {
        margin-bottom: 24px;
    }
}

.terms-list>li {
    margin-bottom: 0;
}

.job .learn-more {
    margin-top: 30px;
}

.job .learn-more a {
    color: #305CF9;
    text-decoration: underline;
    font-weight: 500;
}

/* Style the accordion panel. Note: hidden by default */

.jobs-page .list-gg .panel h2 {
    letter-spacing: 0.2em;
    color: #FF993C;
}

.jobs-page .list-gg .panel li:before {
    background: #FF993C;
}

.list-gg .panel {
    display: none;
    overflow: hidden;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    padding: 24px;
}

@media screen and (max-width: 992px) {
    .list-gg .panel {
        padding: 0;
    }
}

.list-gg span {
    margin: 0;
    margin-top: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 16px;
    display: block;
}

.list-gg h1 {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
}

.list-gg h2 {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

.list-gg p {
    margin-bottom: 56px;
    font-weight: 300;
    font-size: 20px;
    line-height: 26px;
}

.list-gg ul {
    padding-left: 0;
    margin-bottom: 56px;
}

.list-gg ul li {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-weight: 300;
    font-size: 20px;
    margin: 10px 0;
}

/* .list-gg ul li:before {
      content: "";
      display: flex;
      height: 8px;
      min-width: 8px;
      border-radius: 50%;
      margin-right: 8px;
      background: white; } */

@media screen and (max-width: 450px) {
    .terms-container .list-gg ul li {
        flex-wrap: wrap;
    }
}

#our-team {
    padding-top: 76px;
    position: relative;
    width: 100%;
}

#our-team .secondary-button {
    margin-top: 20px;
}

@media screen and (max-width: 992px) {
    #our-team {
        padding-top: 44px;
        padding-bottom: 44px;
    }
    #our-team .main-left {
        text-align: left;
        justify-content: flex-start;
    }
    #our-team a {
        width: 100%;
    }
    #our-team .hero-title {
        text-align: center;
        margin-top: -10px;
    }
}

#our-team .hero-title {
    max-width: 482px;
}

#our-team p {
    max-width: 382px;
}

#our-team a {
    align-self: center;
}

.main-content {
    box-sizing: border-box;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    max-width: calc(1232px + 40px);
    padding: 0 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 992px) {
    .main-content {
        margin-top: 24px;
        padding: 0 16px;
    }
}

.main-content #hero-form-2 {
    margin-bottom: 0;
}

.main-content.normal {
    max-width: calc(1024px + 40px);
}

.main-content p {
    line-height: 22px;
    font-weight: 300;
}

.main-content.reverse {
    flex-direction: row-reverse;
}

.main-content.reverse .main-left {
    justify-content: flex-end;
    text-align: right;
}

.main-left,
.main-right {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    margin: 0;
    align-self: flex-start;
    z-index: 1;
}

@media screen and (max-width: 992px) {
    .main-left,
    .main-right {
        flex: 1 1 100%;
    }
}

.main-left {
    flex: 1 1 16px;
}

@media screen and (max-width: 992px) {
    .main-left {
        order: 1;
        flex-direction: column;
    }
}

.main-right {
    justify-content: flex-end;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .main-right {
        order: 0;
        justify-content: center;
        display: flex;
    }
}

.form-container {
    display: flex;
    position: relative;
}

@media screen and (max-width: 992px) {
    .form-container {
        width: 100%;
    }
}

.form-container button {
    left: -5px;
    position: relative;
    padding: 20px;
    line-height: 10px;
}

.extra a {
    display: flex;
    text-decoration: none;
}

/* .footer-logo {
  height: 44px; } */

a {
    text-decoration: none;
}

header .hide-desktop {
    background: #212634;
    padding: 0 24px;
    box-sizing: border-box;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}

header .hide-desktop .primary-button {
    width: inherit;
    padding: 0 15px;
}

body.menu-open {
    overflow: hidden;
}

.close-modal svg {
    position: absolute;
    top: 16px;
    right: 22px;
    width: 22px;
    height: 22px;
}

.terms-container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.terms-title {
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    color: #FF993C;
    text-align: center;
    margin-top: 36;
    margin-bottom: 0;
}

.terms-list {
    width: 100%;
    max-width: 1024px;
    justify-content: flex-start;
    margin: 0 auto;
}

.list-gg .term-title {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
}

.terms-content {
    width: 100%;
    width: 100%;
    /* background: #212634; */
    padding-bottom: 127px;
}

.terms-content a {
    display: contents;
}

.menu-container {
    display: grid;
    grid-template-columns: 2fr .5fr 2fr;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    max-width: calc(1232px + 40px);
    padding: 0 20px;
    margin: 0 auto;
    height: 80px;
}

/* #news {
  background-color: #212634;
  padding: 120px 0;
  width: 100%;
  display: flex;
  justify-content: center; }
  @media (max-width: 992px) {
    #news {
      padding: 44px 0; } } */

.news-container {
    margin-top: 32px;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 400px));
    margin-bottom: 44px;
    justify-content: center;
}

.news-card {
    width: 100%;
    max-width: 400px;
    height: 274px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: center;
}

.news-card:hover .news-card-description {
    margin-bottom: 0 !important;
    opacity: 1;
}

.news-card-body {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: 0.3s ease;
    text-align: left;
    justify-content: flex-end;
}

.news-card-body:hover {
    background: rgba(0, 0, 0, 0.5);
}

.news-card-body:hover .news-card-title {
    text-decoration-color: #FF993C;
    -moz-text-decoration-color: #FF993C;
}

.news-card-date {
    align-self: flex-end;
    font-size: 14px;
    line-height: 16px;
    color: white;
    margin: 0;
}

.news-card-title {
    font-style: normal;
    font-weight: 500;
    color: white;
    margin: 0;
    font-family: Poppins;
    font-size: 24px;
    line-height: 26px;
    text-decoration-color: transparent;
    transition: 0.3s ease;
}

.news-card-author {
    margin-top: 8px;
    font-size: 14px;
    line-height: 16px;
    font-family: IBM Plex Mono;
}

#medium {
    width: 100%;
    text-align: center;
}

#medium .secondary-button {
    margin-left: auto;
    margin-right: auto;
}

.illustration-img {
    max-width: 100%;
}

button:focus {
    outline: none;
}

.error-icon {
    position: absolute;
    left: -23px;
    z-index: 9;
    border: 2px solid #f14646;
    border-radius: 50%;
    padding: 2px;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    transform: scale(0);
    transition: 0.3s ease;
}

.error-icon path {
    fill: #f14646 !important;
}

.invalid-error .error-icon {
    transform: scale(1);
}

#first-content .main-left {
    max-width: 100%;
}

@media screen and (min-width: 993px) {
    #first-content .main-left .hero-subtitle {
        margin-top: 0;
    }
}

#first-content .main-left .form-content {
    width: 100%;
}

.underline-text {
    position: relative;
    display: inline-flex;
}

.underline-text:after {
    content: "";
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: transparent;
}

@media screen and (min-width: 993px) {
    .underline-text:nth-child(1):after {
        width: 104%;
    }
}

#get-in-touch {
    padding: 100px 0;
    background: #212634;
    display: flex;
    justify-content: center;
    width: 100%;
}

@media screen and (max-width: 992px) {
    #get-in-touch {
        padding: 64px 0;
    }
}

#get-in-touch .join-discord {
    margin-left: auto;
    margin-right: auto;
}

#get-in-touch .main-content {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

#get-in-touch .form-content {
    margin-top: 12px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

#get-in-touch .hero-subtitle {
    margin-top: 16px;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
}

.discord-button {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.rabbit {
    width: 100%;
    max-width: 620px;
}

.news-card-description {
    transition: 0.3s ease;
    opacity: 0;
    margin-top: 10px;
}

.hide {
    display: none !important;
}

.hero-content .join-discord {
    margin-left: auto;
    margin-right: auto;
}

#get-in-touch .join-discord {
    margin-top: 30px;
}

.join-discord {
    animation: fadeIn 1s ease;
    opacity: 1;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 992px) {
    .join-discord {
        margin-left: auto;
        margin-right: auto;
    }
}

.join-discord svg path {
    fill: white;
}

.modal .join-discord {
    margin-left: auto;
    margin-right: auto;
    max-width: 220px;
}

body {
    transition: 1s ease;
}

.opacity {
    opacity: 0;
}

#join-team .hero-title {
    width: 100%;
}

.tron {
    flex: 0;
    display: flex;
    flex-direction: column;
}

.troncito {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: inherit;
    margin-left: auto;
    margin-right: auto;
}

.troncito p {
    text-align: center;
}

#our-team .troncito {
    margin-top: 45%;
}

@media screen and (max-width: 992px) {
    #our-team .troncito {
        margin-top: 20%;
    }
}

.make-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.make-center .main-left {
    flex: 1 1 100%;
}

.makeit-center {
    display: flex;
    align-items: center;
}

.make-auto {
    margin: 0 auto;
}

@media screen and (min-width: 991px) {
    .scale {
        font-size: 18px;
        height: inherit;
        padding: 20px 40px !important;
    }
}

.scene {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sky {
    z-index: 2;
    position: absolute;
    overflow: hidden;
    height: 90%;
    top: -100px !important;
    left: 0px;
    width: 100%;
    background: #FF3D6B;
}

@media screen and (max-width: 992px) {
    .sky {
        top: 0 !important;
        height: calc(100% - 110px);
    }
}

.sunset {
    background: linear-gradient(180deg, #FF3D6B -0.18%, #FE7F8F 25%, #ffe682 100%);
    transition: 5s ease;
    transform: translateY(100%);
    width: 100%;
    height: 50%;
}

@media screen and (max-width: 550px) {
    .sunset {
        background: linear-gradient(180deg, #FF3D6B -0.18%, #FE7F8F 21.04%, #FDD4BD 80%);
    }
}

.sunset.on {
    transform: translateY(0px);
    height: 100%;
}

.sunset.on.part2 {
    transform: translateY(0px);
}

@media screen and (max-width: 550px) {
    .sunset.on {
        transform: translateY(0px);
    }
}

.part-2 article.main-left h1,
.part-2 article.main-left p {
    text-shadow: 1px 2px 10px #212634;
}

.part-3 {
    animation: sungodown3 5s 5s cubic-bezier(0.43, 1.25, 0, 0.94) forwards;
}

@keyframes sungodown3 {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(50deg);
    }
}

.floor {
    position: absolute;
    overflow: hidden;
    top: 160px !important;
    z-index: 3;
    transform: scaleY(0.5) !important;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FF993C 0%, #29243D 100%);
}

.floor.switch {
    position: absolute;
    top: initial !important;
    bottom: -110px;
    height: 210px;
}

@media screen and (min-width: 450px) {
    .floor svg {
        transform: translateY(-120px);
    }
}

.mountain {
    z-index: 4;
    position: absolute;
    left: 0;
    top: 1%;
}

@media screen and (max-width: 992px) {
    .mountain {
        top: initial;
        bottom: 14vw;
    }
}

@media screen and (max-width: 440px) {
    .mountain {
        bottom: 23vw;
    }
}

@media screen and (max-width: 992px) {
    .mountain {
        bottom: initial;
        top: 20px;
    }
}

.mountain .back-mountain {
    height: 380px;
    width: 100vw;
    min-width: 800px;
}

.mountain .front-mountain {
    position: absolute;
    z-index: 9;
    top: 2px;
    left: -4px;
    height: 380px;
    width: 100vw;
    min-width: 800px;
}

ul {
    list-style: none;
}

.rainbow {
    /* overflow: hidden; */
    position: relative;
    /* padding: 1px; */
    transition: 0.3s ease;
}

/* .rainbow:before, .rainbow:after {
    display: flex;
    content: "";
    background: linear-gradient(0deg, #fe3d6b 0%, #1addef 50%, #ff8569 100%);
    width: 100%;
    height: 548px;
    transition: 0.3s ease;
    max-width: 407px;
    margin-left: -1px;
    margin-top: -1px;
    max-height: 281px;
    position: absolute;
    opacity: 0;
    transition: 0.3s ease; }
  .rainbow:hover {
    box-shadow: 0px 0px 12px rgba(133, 130, 147, 0.4); } */

.rainbow:hover:before,
.rainbow:hover:after {
    opacity: 1;
}

.rainbow:hover:before {
    animation: tekashi1 1s linear infinite;
}

.rainbow:hover:after {
    animation: tekashi2 1s linear infinite;
}

@keyframes tekashi1 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes tekashi2 {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.hero-content .primary-button.scale,
#our-team .secondary-button {
    margin-left: auto;
    margin-right: auto;
}

.news-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-info p {
    margin: 0;
}

.news-card-info .news-card-author,
.news-card-info .news-card-date {
    font-family: IBM Plex Mono;
    font-size: 12px;
    color: #A2A2A2;
}

@media screen and (min-width: 991px) {
    .hero-content .join-email {
        height: 60px;
    }
    #get-in-touch .form-container,
    .hero-content .form-container {
        padding: 20px;
    }
    #get-in-touch .form-container input,
    .hero-content .form-container input {
        width: 0;
        min-width: 0px;
        padding: 0;
        transition: .3s ease;
    }
    #get-in-touch .form-container input:active,
    #get-in-touch .form-container input:hover,
    #get-in-touch .form-container input:focus,
    .hero-content .form-container input:active,
    .hero-content .form-container input:hover,
    .hero-content .form-container input:focus {
        padding: 0 10px;
        width: 250px;
    }
    #get-in-touch .form-container:hover input,
    .hero-content .form-container:hover input {
        padding: 0 10px;
        width: 250px;
    }
}

#mobile-menu-btn {
    cursor: pointer;
}

.to-the-left .form-container {
    padding: 0;
}

.to-the-left #hero-form-3 {
    padding: 0 50px 0 0;
    margin-left: 0;
}

.card {
    display: inline-flex;
    background: #212634;
    border-radius: 2px;
    padding: 5px;
    z-index: 1;
    opacity: 0;
    position: relative;
    transform: scale(0.8) translateY(500%);
}

.card.on {
    animation: cardIn 10s cubic-bezier(0, 0.15, 0.21, -0.1) infinite;
}

.card:nth-child(2) {
    animation-delay: 4s;
}

@keyframes cardIn {
    0% {
        opacity: 0.1;
        transform: scale(0.8) translateY(500%);
    }
    10% {
        opacity: 0.1;
    }
    30% {
        transform: scale(0.8) translateY(100%);
    }
    32% {
        transform: scale(0.8) translateY(100%);
        opacity: 1;
    }
    100% {
        transform: scale(0.8) translateY(-100%);
        opacity: 0;
    }
}

.profile-pic {
    width: 50px;
    flex: 0 0 50px;
    margin: 0;
    border-radius: 50%;
    height: 50px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

.profile-pic img {
    height: 100%;
}

.notification {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
    margin-top: 5px !important;
    font-family: IBM Plex Mono;
    color: white;
    font-size: 12px !important;
    margin: 0 !important;
}

.username {
    margin: 0;
    font-family: Poppins;
}

.pyramid {
    border-color: #212634 transparent;
    border-style: solid;
    border-width: 0px 300px 350px 300px;
    height: 0px;
    width: 0px;
    position: relative !important;
    z-index: 3;
    left: calc(50% - 300px);
    margin-left: auto;
    margin-right: auto;
    transition: 0.5s ease;
}

@media screen and (max-width: 550px) {
    .pyramid {
        transform: scale(0.5) !important;
        transform-origin: center bottom;
    }
}

.star-container {
    width: 100%;
    height: 100%;
    top: -97px;
    position: absolute !important;
    left: 0px;
    display: flex !important;
    justify-content: space-around;
    padding: 70px 20px;
    box-sizing: border-box;
    z-index: 3;
    top: -120px !important;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-delay: 5s;
}

.star-container:nth-child(2) {
    top: 40px !important;
}

.star-container.on {
    opacity: 1;
}

@media screen and (max-width: 992px) {
    .star-container {
        top: -40px !important;
        margin-left: 10px;
    }
}

.star-container .star {
    width: 5px;
    height: 5px;
    display: inline-flex;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

.star-container .star:nth-child(odd) {
    margin-top: 30px;
}

.main-left {
    z-index: 4;
}

.second-sky {
    width: 100%;
}

@media screen and (max-width: 450px) {
    .second-sky {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.second-sky img {
    object-fit: cover;
}

@media screen and (max-width: 550px) {
    .second-sky img {
        max-height: 500px;
    }
}

.second-sky svg {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .second-sky svg {
        height: 100vh;
        max-height: 300px;
        z-index: 2;
        position: relative;
    }
    .second-sky svg * {
        width: 100%;
        height: 100%;
    }
}

#our-team {
    display: flex;
    justify-content: center;
    align-items: center;
}

#our-team .main-content {
    position: absolute;
    top: 0;
    height: 100%;
}

@media screen and (max-width: 992px) {
    #our-team .hero-title {
        font-size: 32px;
        line-height: 32px;
    }
}

#our-team p {
    max-width: 772px;
    font-size: 24px;
    line-height: 32px;
}

@media screen and (max-width: 992px) {
    #our-team p {
        font-size: 16px;
        line-height: 22px;
    }
}

#main-video {
    height: 100vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
}

#main-video .main-content {
    z-index: 2;
    position: relative;
}

.main-video-bottom {
    align-self: flex-end;
    padding-bottom: 44px;
}

.main-video-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.main-video-title {
    flex: 1 1 100%;
    text-align: center;
    color: white;
    align-self: flex-end;
    font-family: IBM Plex Mono;
    font-weight: 500;
    font-size: 76px;
    line-height: 64px;
}

@media screen and (max-width: 992px) {
    .main-video-title {
        font-weight: 500;
        font-size: 32px;
        line-height: 34px;
    }
}

.main-video-bottom {
    flex: 1 1 100%;
    display: flex;
    justify-content: space-between;
}

.main-video-bottom>* {
    margin: 10px 0;
}

@media screen and (max-width: 992px) {
    .main-video-bottom {
        justify-content: center;
    }
    .main-video-bottom .main-video-social {
        display: none;
    }
    .main-video-bottom .form-container {
        justify-content: center;
    }
}

.main-video-bottom input {
    opacity: 0.8;
    transition: 0.3s ease;
}

.main-video-bottom input:focus {
    opacity: 1;
}

.main-video-social {
    background: rgba(255, 255, 255, 0.3);
    padding: 5px 10px;
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 238px;
    height: 40px;
}

.main-video-social ul {
    padding: 0;
    margin: 0;
    justify-content: space-between;
    width: 100%;
}

.main-video-social ul a {
    color: white;
    transition: 0.3s ease;
    padding: 10px;
}

.main-video-social ul a:hover {
    transform: translateY(-5px);
}

.extra {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 40px;
}

.extra li {
    margin-bottom: 0;
}

.extra li a {
    font-size: 24px;
    text-decoration: none;
}

.extra li a svg {
    width: 24px;
    height: 24px;
}

.main-video-item {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
}

@media screen and (min-width: 993px) {
    .main-video-item video {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .main-video-item video {
        align-self: start;
        max-width: 1080px;
    }
}

.scene img {
    object-fit: cover;
}

@media screen and (max-width: 450px) {
    .scene img {
        height: 100%;
    }
}

.scene img,
.part-2 img {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.our-partners-logo img,
.our-partners-logo svg {
    max-width: 100%;
}

.our-partners-logo figure {
    margin: 0;
}

ul {
    padding: 0;
}

.join-email+.primary-button:hover {
    transform: initial;
}

.join-email+.primary-button:before {
    content: none;
}

@media screen and (max-width: 992px) {
    .extra li {
        margin-bottom: 0 !important;
    }
}

.waitlist {
    margin-left: 5px;
}

.join-discord {
    flex-wrap: nowrap;
}

.home .join-discord {
    max-width: 220px;
    color: #040A2A;
}

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