@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 70px;
}

.navbar {
    position: absolute;
    background: #141a1f;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: 'Rubik';
    position: sticky;
    top: 0;
    border-bottom: 5px solid #000;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 70px;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    display: flex;
    /* align-items: center; */
    height: 70px;
    padding: 20px 0;
}

#navbar__logo img {
    width: 100%;
}

/* .navbar__social.toggle {
    display: none;
}

.navbar__toggle {
    display: none;
} */

#mobile-menu {
    display: none;
}

.navbar__menu {
    display: flex;
    justify-content: space-between;
    width: 40%;
    align-items: center;
    list-style: none;
}

.navbar__item {
    /* height: 50px; */
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 125px; */
    text-decoration: none;
    height: 40px;
}

.navbar__links:hover {
    border-bottom: 3px solid #fff;
}

.navbar__links .active {
    border-bottom: 3px solid #fff;
}

.navbar__social {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    list-style: none;
    cursor: pointer;
}

.navbar__social-item {
    align-items: center;
    width: 32px;
    height: 32px;
    margin-left: 15px;
}

.navbar__social-links img {
    width: 100%;
}

.d-none {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #141a1f;
    /* margin-top: -70px; */
    /* height: 100vh; */
    /* height: calc(var(--vh, 1vh) * 100); */
    height: calc(100vh - 70px);
    overflow-x: hidden;
    overflow-y: hidden;
}

.hero__background-video-desktop {
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
}

.hero__background-video-mobile {
    display: none;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
}

.hero__shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: inset 0px -35px 24px 2px rgba(20, 26, 31, 1); 
    box-shadow: inset 0px -35px 24px 2px rgba(20, 26, 31, 1);
    top: 0;
    left: 0;
}

/* #home {
    background-image: url('images/hero-experiment.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
} */

.hero__gradient {
    background-image: url('/images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    border-radius: 0 0 50% 50%/ 0 0 100% 100%;
    transform: scaleX(1.3);
    filter: blur(50px);
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px);
    height: 100%;
}

.hero__gradient-under-construction {
    background-image: url('/images/gradient-header-page-under-construction.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    /* filter: blur(50px);
    -webkit-filter: blur(50px);
    -moz-filter: blur(50px); */
    height: 100%;
}

.hero__container {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15%;
    text-align: center;
}

.hero__container-under-construction {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 5%;
    text-align: center;
}

.hero__content-under-construction {
    width: 100%;
}

.hero__content-under-construction .main__content {
    padding: 0;
}

.hero__heading {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: bold;
    font-size: 50px;
    color:#fff;
}

.hero__heading span {
    background: #ee0979;
    background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);
    background: linear-gradient(to right, #ff6a00, #ee0979);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.hero__description {
    /* font-size: 32px; */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #fff;
}

.hero__description a {
    text-decoration: underline;
    color: #fff;
}

.hero__tagline {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    text-align: center;
    text-decoration-line: underline;
    color: #FFFFFF;
    margin: 30px 0;
    width: 100%;
}

.hero__element--preview {
    width: 90%;
}

.hero__element--preview img {
    width: 100%;
    margin-top: -40px;
}

.highlight {
    border-bottom: 4px solid rgb(123, 0, 255);
}

/* About Section */
.main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: top;
    background-color: #141a1f;
    height: auto;
    padding: 0 80px 60px 80px;
}

.main__team {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: top;
    background-color: #141a1f;
    height: auto;
    background-image: url('/images/team-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 80px 0 80px;
}

.main__intro-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.main__header:before {
    background-image: url(/images/light-shadow.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 160px;
    height: 50px;
    margin-top: -20px;
    margin-left: 25px;
    content: "";
}

.main__header {
    color: #fff;
    text-align: center;
    padding: 25px;
    border: 4px solid #000;
    border-bottom: 0;
    border-radius: 50px 50px 0 0;
    height: 100px;
}

.main__header.main__header-blue {
    background-image: url(/images/dna-blue@2x.png), linear-gradient(to left, #0D419D 19.84%, #388BFD 81.9%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% 50%;
    -webkit-box-shadow:inset 0 -4px 0 4px rgba(13, 53, 130, 1);
    box-shadow:inset 0 -4px 0 4px rgba(13, 53, 130, 1);
}

.main__header.main__header-purple {
    background-image: url(/images/dna-purple@2x.png), linear-gradient(90deg, #6E40C9 0%, #553098 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% 50%;
    -webkit-box-shadow:inset 0 -3px 0 3px #462580;
    box-shadow:inset 0 -3px 0 3px #462580;
}

.main__header.main__header-red {
    background-image: url(/images/dna-red@2x.png), linear-gradient(90deg, #DA3633 0%, #8E1619 96.88%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% 50%;
    -webkit-box-shadow:inset 0 -3px 0 3px #5E0002;
    box-shadow:inset 0 -3px 0 3px #5E0002;
}

.main__header h1 {
    font-size: 2rem;
}

.main__content {
    color: #fff;
    background-color: #0C1217;
    width: 100%;
    border: 4px solid #000;
    border-top: 0;
    border-radius: 0 0 50px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.main__content .main__text {
    margin: 30px 80px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: lighter;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
}

.main__element-slider {
    display: flex;
    flex-direction: row;
    height: auto;
    /* background: red; */
    margin: auto;
    overflow-x: hidden;
    width: 100%;
}

.main__faq-slider {
    margin-top: -80px;
}

.main__element-item {
    min-width: 25%;
    height: auto;
    position: relative;
    left: 0;
    transition: 0.5s;
    padding: 20px;
    text-align: center;
}

.main__element-item.main__element-item-w25 {
    min-width: 25%;
}

.main__element-item.main__element-item-w100 {
    min-width: 100%;
}

.main__element-item h1 {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    display: block;
    margin-block-end: 36px;
}

.main__element-item p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: justify;
    padding: 0 40px;
}

.main__element-item ol {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    text-align: justify;
    padding: 0 40px;
}

.main__element-item img {
    width: 100%;
}

.main__element-slider-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 30px;
    padding: 0 20px;
    z-index: 9;
}

.main__rules-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: top;
    width: 100%;
    /* margin-top: 50px; */
}

.main__rules-items {
    width: 23%;
    height: 100%;
}

.main__roadmap-container .main__content {
    background-image: url('/images/roadmap-card-background.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.main__content-roadmap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 20px 0;
}

.main__roadmap-item {
    width: 350px;
    height: 500px;
    padding: 80px 0 20px 30px;
}

.faq__content {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.faq__content-wrapper {
    margin: 20px;
    border: 3px solid #000;
    border-radius: 30px;
    padding: 10px;
    background-color: #203242;
    flex: 43%;
}

.accordion {
  color: #fff;
  background-color: #203242;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  font-weight: 500;
  transition: 0.4s;
}

/* .active, .accordion:hover {
  background-color: #ccc;
} */

.accordion:after {
  content: '\002B';
  color: #fff;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #203242;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.panel p, ol {
    font-size: 16px;
    line-height: 30px;
}

.panel ol {
    margin: 0 20px;
}

.panel p a {
    text-decoration: underline;
    color: #fff;
    font-weight: 500;
}

.main__team-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.main__team-slider-container {
    font-family: 'Rubik';
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: #fff;
    /* transform: translate(0, -30%); */
}

.main__team-slider-title {
    color: #fff;
    font-style: normal;
    font-weight: bold;
    font-size: 2rem;
    /* transform: translate(0, -200px); */
    text-align: center;
}

#mint {
    background-image: url('/images/mint-header-desktop.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.hero__mint {
    position: relative;
    background-color: #141a1f;
    position: relative;
    height: calc(100vh - 70px);
    overflow: hidden;
}

.hero__mint-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* height: 100vh; */
    padding: 30px 0;
    left: 0;
    right: 0;
    color: #fff;
}

.hero__mint-container p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 36px;
    margin: 10px 0;
}

.hero__mint-container p.element__count {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
    text-decoration: underline;
}

select.main__mint-count {
    width: auto;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    margin: 10px 0;
    padding: 10px 20px;
    font-size: 16px;
}

.hero__connected-wallet {
    visibility: hidden;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 30%;
    right: 50px;
    /* padding: 5px 50px; */
}

.hero__connected-wallet.show {
  visibility: visible;
  /* -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s */
}

.hero__connected-wallet p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.hero__connected-wallet img {
    /* width: 50px;
    height: auto;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-left: 10px; */
    
}

.dropdown__wallet-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.dropdown__wallet-info {
    position: relative;
    /* background-color: #f9f9f9; */
    margin-top: 10px;
    /* border-radius: 10px; */
    width: 280px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
}

.dropdown__wallet-info-header {
    background: #141A1F;
    background-image: url('/images/gradient-top-wallet-header.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 70px;
    border-radius: 20px 20px 0 0;
}

.dropdown__wallet-info-header:after {
    background-image: url(/images/metamask-icon-header.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 70px;
    height: 70px;
    transform: translate(-50%, 50%);
    content: "";
}

.dropdown__wallet-info-body {
    background: #fff;
    padding: 40px 20px 15px;
    border-radius: 0 0 20px 20px;
    overflow-wrap: break-word;
    width: 100%;
}

.dropdown__wallet-info p {
    color: #000;
    font-size: 12px;
    font-weight: 300;
    padding: 10px 0;
    text-decoration: none;
}

.dropdown__wallet-info #account_viewer {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.dropdown__wallet-info #selling_phase {
    color: #fff;
    background: #000;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border-radius: 50px;
    padding: 3px 10px;
}

.dropdown__wallet-info ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.dropdown__wallet-info ul.minter-links {
    justify-content: center;
}

.ticket-allchemist{
    display: flex;
    margin: 7px 0;
    flex-direction: column;
    align-content: center;
}

.ticket-allchemist .ticket-title  {
    /* border-right: 1px solid #FF6B18;
    width: 90%;
    border-right-style: dashed; */
    text-align: center;
    width: 100%;
}

.ticket-allchemist .ticket-item.orange{
    display: flex;
    flex-direction: row;
    background: rgba(255, 107, 24, 0.21);
    border: 1px solid #FF6B18;
    border-radius: 8px;
}

.ticket-list .ticket-item {
    display: flex;
    flex-direction: row;
    border-radius: 1em;
}

.ticket-item .ticket-title, .ticket-item .ticket-count {
    padding: 7px;
}

.ticket-item.yellow {
    background: rgba(255, 204, 24, 0.2);
    border: 1px solid #FEC455;
    border-radius: 8px;
}

.ticket-item.yellow .ticket-title {
    border-right: 1px solid #FEC455;
    border-right-style: dashed;
}

.ticket-item.blue {
    background: rgba(24, 144, 255, 0.2);
    border: 1px solid #18A0FB;
    border-radius: 8px;
}

.ticket-item.blue .ticket-title {
    border-right: 1px solid #18A0FB;
    border-right-style: dashed;
}

.ticket-item.purple {
    background: rgba(154, 24, 255, 0.2);
    border: 1px solid #6D3FC6;
    border-radius: 8px;
}

.ticket-item.purple .ticket-title {
    border-right: 1px solid #6D3FC6;
    border-right-style: dashed;
}

.minter-log {
    line-height: 2em;
}

.minter-links .minter-item {
    padding: 5px;
    cursor: pointer;
}

.minter-item img {
    width: 30px;
}

.slider-captions {
    margin: 30px 0 15px 0;
}

.slider-social {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.slider-social-item img {
    width: 50%;
}

.current-title {
    font-size: 30px;
    line-height: 40px;
}

.current-subtitle {
    font-size: 24px;
    font-weight: 400;
}

.community {
    width: 100%;
    background-color: #141A1F;
    background-image: url('/images/discord-footer.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
}

.footer {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 15px 50px;
    background-color: #141A1F;
    border-top: 5px solid #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.footer p {
    font-family: 'Poppins';
    line-height: 24px;
    font-size: 12px;
    font-weight: lighter;
    text-align: left;
}

.footer__social {
    display: flex;
}

.footer__social-item {
    padding-left: 20px;
}

.footer__social img {
    width: 20px;
}

.community__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #fff;
    font-family: 'Rubik';
    text-align: center;
}

.community__container h1 {
    font-size: 50px;
    font-weight: bold;
    line-height: 80px;
}

.community__container p {
    font-size: 26px;
    font-weight: lighter;
    line-height: 30px;
    margin: 30px 100px;
}

.main__card {
    width: 100%;
}

.main__card-fullbody {
    width: 100%;
    height: 100%;
    border: 4px solid #000;
    border-radius: 20px;
}

.main__card-fullbody.lab-flask:before {
    background-image: url(/images/lab-equipment/flask.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    transform: translate(50%, -80px);
    content: "";
}

.main__card-fullbody.lab-pipette:before {
    background-image: url(/images/lab-equipment/pipette.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    transform: translate(50%, -80px);
    content: "";
}

.main__card-fullbody.lab-boiling-flask:before {
    background-image: url(/images/lab-equipment/round-bottom-flask.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    transform: translate(50%, -80px);
    content: "";
}

.main__card-fullbody.lab-test-tube:before {
    background-image: url(/images/lab-equipment/test-tube.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 150px;
    height: 150px;
    transform: translate(50%, -80px);
    content: "";
}

.main__card-fullbody.main__card-fullbody-orange {
    background-image: url(/images/dna-orange-card-body.png), linear-gradient(270deg, #FFD366 0%, #FFBD28 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% -5%;
    -webkit-box-shadow:inset 0 -10px 0 0 #F4AC00;
    box-shadow:inset 0 -10px 0 0 #F4AC00;
}

.main__card-fullbody.main__card-fullbody-green {
    background-image: url(/images/dna-green-card-body.png), linear-gradient(270deg, #21FF6C 0%, #2DE46B 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% -5%;
    -webkit-box-shadow:inset 0 -10px 0 0 #2DC861;
    box-shadow:inset 0 -10px 0 0 #2DC861;
}

.main__card-fullbody.main__card-fullbody-red {
    background-image: url(/images/dna-red-card-body.png), linear-gradient(270deg, #FF5656 0%, #E74A4A 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% -5%;
    -webkit-box-shadow:inset 0 -10px 0 0 #CE0000;
    box-shadow:inset 0 -10px 0 0 #CE0000;
}

.main__card-fullbody.main__card-fullbody-blue {
    background-image: url(/images/dna-blue-card-body.png), linear-gradient(270deg, #65BBFF 0%, #1F9EFF 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% -5%;
    -webkit-box-shadow:inset 0 -10px 0 0 #2A81C6;
    box-shadow:inset 0 -10px 0 0 #2A81C6;
}

.main__card-header:before {
    background-image: url(/images/light-shadow.png);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 100px;
    height: 50px;
    margin-top: -25px;
    margin-left: 10px;
    content: "";
}

.main__card-header {
    color: #fff;
    text-align: center;
    padding: 30px;
    border: 4px solid #000;
    border-bottom: 0;
    border-radius: 40px 40px 0 0;
}

.main__card-header-circle:before {
    background-image: url(/images/light-shadow-circle.png);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    width: 15px;
    height: 50px;
    transform: translate(-20px, -5px);
    content: "";
}

.main__card-header-circle {
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    border: 4px solid #000;
    border-radius: 100%;
    transform: translate(-70%, -50%);
    width: 80px;
    height: 80px;
}

.main__card-header-circle h1 {
    font-size: 1.3rem;
}

.main__card-header.card__header-red {
    background-image: url(/images/dna-red@2x.png), linear-gradient(90deg, #DA3633 0%, #8E1619 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% 50%;
    -webkit-box-shadow:inset 0 -4px 0 4px #841416;
    box-shadow:inset 0 -3px 0 3px #841416;
}

.main__card-header.card__header-orange {
    background-image: url(/images/dna-orange@2x.png), linear-gradient(90deg, #E7BA4D 0%, #FFBF2D 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% 50%;
    -webkit-box-shadow:inset 0 -3px 0 3px #FF9E00;
    box-shadow:inset 0 -3px 0 3px #FF9E00;
}

.main__card-header.card__header-blue {
    background-image: url(/images/dna-blue@2x.png), linear-gradient(270deg, #0D419D 19.84%, #388BFD 81.9%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% 50%;
    -webkit-box-shadow:inset 0 -3px 0 3px #0F3984;
    box-shadow:inset 0 -3px 0 3px #0F3984;
}

.main__card-header.card__header-purple {
    background-image: url(/images/dna-purple@2x.png), linear-gradient(90deg, #6E40C9 0%, #553098 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 95% 50%;
    -webkit-box-shadow:inset 0 -3px 0 3px #462580;
    box-shadow:inset 0 -3px 0 3px #462580;
}

.main__card-header-circle.card__header-red {
    background-image: linear-gradient(90deg, #E52D27 0%, #B31217 100%);
    -webkit-box-shadow:inset 0 -4px 0 0 #A50A0F;
    box-shadow:inset 0 -4px 0 0 #A50A0F;
}

.main__card-header-circle.card__header-orange {
    background-image: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
    -webkit-box-shadow:inset 0 -4px 0 0 #D4771B;
    box-shadow:inset 0 -4px 0 0 #D4771B;
}

.main__card-header-circle.card__header-blue {
    background-image: linear-gradient(270deg, #26A2FF 19.84%, #8ECEFF 81.9%);
    -webkit-box-shadow:inset 0 -4px 0 0 #1193F5;
    box-shadow:inset 0 -4px 0 0 #1193F5;
}

.main__card-header-circle.card__header-purple {
    background-image: linear-gradient(90deg, #BF5AE0 0%, #A811DA 100%);
    -webkit-box-shadow:inset 0 -4px 0 0 #9749B0;
    box-shadow:inset 0 -4px 0 0 #9749B0;
}

.main__card-body {
    color: #fff;
    background: -webkit-linear-gradient(90deg, #0C1217 0%, #0E1820 100%);
    background: linear-gradient(90deg, #0C1217 0%, #0E1820 100%);;
    width: 100%;
    border: 4px solid #000;
    border-top: 0;
    border-radius: 0 0 40px 40px;
}

.main__card-content {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main__card-content h1 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 80px;
}

.main__card-content p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    font-size: 1.8rem;
}

.main__card-fullbody-content {
    padding: 80px 20px;
    transform: translate(0, -20%);
    color: #000;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.main__card-fullbody-content h1 {
    font-family: 'Rubik';
    font-size: 22px;
    line-height: 35px;
    text-align: center;
}

.main__card-fullbody-content ul {
    padding: 20px;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.main__card-footer {
    width: 100%;
    padding: 25px;
    background-color: #0E1820;
    border-top: 4px solid #000;
    border-radius: 0 40px 40px 40px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    text-align: center;
}

.main__card-body ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #0E1820;
    align-items: center;
    list-style-type: none;
    border-radius: 0 0 40px 40px;
}

.main__card-list li {
    width: 100%;
    padding: 25px;
    background-color: #0E1820;
    border-top: 4px solid #000;
    border-radius: 0 40px 40px 40px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: normal;
    font-size: 1.5rem;
    text-align: center;
}

.main__btn {
    min-width: 80px;
    font-family: 'Rubik';
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 40px;
    border: 2px solid #000000;
    border-radius: 50px;
    color: #000;
    position: relative;
    outline: none;
    margin: 10px 0;
    cursor: pointer;
}

.main__btn:disabled {
    filter: grayscale(1);
    cursor: not-allowed;
}

.main__btn:disabled a {
    pointer-events: none;
}

.main__btn-orange {
    background: #FFAB51;
    background-image: url('/images/dna-orange.png'), linear-gradient(to right, #FFE259 0%, #FFA751 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    -webkit-box-shadow:inset 0 -5px 0 0 #D5771B;
    box-shadow:inset 0 -5px 0 0 rgba(228, 142, 2, 0.7);
}

.main__btn-purple {
    background: #553098;
    background-image: url('/images/dna-purple.png'), linear-gradient(90deg, #6E40C9 0%, #553098 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right top;
    -webkit-box-shadow:inset 0 -5px 0 0 #3B177E;
    box-shadow:inset 0 -5px 0 0 #3B177E;
}

.main__btn.main__btn-purple a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn.main__btn-orange a {
    position: relative;
    z-index: 2;
    color: #000;
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    /* background: #ff1ead; */
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    color: #fff;
}

.main__btn:hover:after {
    width: 100%;
}

.main__btn-slider {
    font-family: 'Rubik';
    font-weight: bold;
    font-size: 12px;
    background: linear-gradient(270deg, #1F9EFF 17.17%, #088DF2 100%);
    padding: 5px 10px;
    border: 2px solid #000000;
    border-radius: 50px;
    -webkit-box-shadow:inset 0 -5px 0 5px #0274CC;
    box-shadow:inset 0 -3px 0 3px #0274CC;
    color: #fff;
    position: relative;
    outline: none;
    cursor: pointer;
}

.main__btn-slider a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn-slider img {
    width: 70%;
}

.main__img--container {
    text-align: center;
}

.main__img--card {
    margin: 10px;
    height: 500px;
    width: 500px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background-image: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
}

/* .main__slider-pagination {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 45px 0 10px;
    margin-bottom: -30px;
    width: 100%;
} */

.main__slider-pagination-end {
    display: flex;
}

.main__slider-pagination-start {
    display: flex;
}

.numerator {
    display: flex;
    align-items: top;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
}

.line-fraction {
    border-right: 1px solid #fff;
    height: 70px;
    transform: rotate(45deg);
}

.denominator {
    display: flex;
    align-items: end;
    color: #9D9D9D;
    font-size: 24px;
    font-weight: 300;
}

.team__swiper-container 
{
    width: 100%;
    margin-top: 80px;
}

.element__swiper-container 
{
    width: 100%;
    padding: 10px;
}

.swiper-slide 
{
    background-position: center;
    background-size: cover;
    width: 300px;
    /* height: 300px; */
}

.swiper-slide img
{
  width: 100%;
  border-radius: 20px;
  /* -webkit-box-reflect: below 1px linear-gradient(transparent,transparent, #0005); */
}

/* .swiper-slide{
    filter: blur(5px);
}

.swiper-slide-active{
    filter: blur(0px);
} */

.id
{
    color: #fff;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

@media screen and (max-width: 1024px) {
    .hero {
        height: calc(50vh - 70px);
    }

    .hero__background-desktop {
        height: 100%;
    }
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: -1;
    }

    .navbar__menu.active {
        background: #141a1f;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        /* height: 60vh; */
        height: 100vh;
        font-size: 1.6rem;
        overflow: hidden;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__social.toggle {
        display: block;
    }
    
    .navbar__toggle {
        display: block;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }
    
    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: left;
        /* padding: 2rem; */
        /* width: 100%; */
        display: table;
        margin-left: 20px;
    }

    #mobile-menu {
        display: flex;
        flex-direction: row;
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
        margin-left: 20px;
    }

    .navbar__social {
        display: none;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero__gradient {
        background-repeat: no-repeat;
        height: 50%;
    }

    .hero__container {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero__heading {
        font-size: 36px;
    }

    .hero__description {
        font-size: 14px;
        line-height: 18px;
    }

    .hero__tagline {
        font-size: 16px;
        line-height: 1.2rem;
    }

    .hero__element--preview {
        order: -1;
        flex: 1 0 100%;
        animation: float 3s ease-in-out infinite;
    }

    .hero__element--preview img {
        width: 100%;
        transform: scale(1.3);
        margin-top: 20px;
    }

    .hero__shadow {
        -webkit-box-shadow: inset 0px -100px 24px 2px rgb(20 26 31);
        box-shadow: inset 0px -100px 24px 2px rgb(20 26 31);
    }

    @keyframes float {
        0% {
            transform: translatey(0px);
        }
        50% {
            transform: translatey(-20px);
        }
        100% {
            transform: translatey(0px);
        }
    }

    .main {
        padding: 0 10px;
        padding-bottom: 80px;
    }

    .main__header:before {
        width: 130px;
        height: 50px;
        margin-top: -21px;
    }

    .main_header {
        height: 80px;
        padding: 20px;
    }

    .main__header h1 {
        font-size: 28px;
    }

    .main__content .main__text {
        margin: 30px 30px;
        font-size: 16px;
    }

    .main__element-item {
        min-width: 100%;
    }

    .main__intro-container {
        margin-bottom: 0px;
    }

    .main__rules-container  {
        flex-direction: column;
        /* margin: 40px 0; */
    }

    .main__rules-items {
        min-width: 100%;
        max-width: 100%;
        margin-top: 50px;
    }

    .main__card-header-circle {
        transform: translate(-40%, -50%);
    }

    .main__faq-slider {
        margin-top: -20px;
    }

    .main__element-item p {
        text-align: justify;
        padding: 0;
    }

    .main__team {
        background-size: cover;
        padding: 0 20px 0 20px;
    }

    .main__team-container .main__element-slider-nav {
        margin: 0;
        padding: 0;
    }

    .main__team-slider-title {
        font-size: 28px;
        margin-top: 28px;
    }

    .main__slider-pagination {
        margin: 20px 0 20px;
    }

    .swiper-slide {
        background-position: center;
        background-size: contain;
        width: 50%;
        height: 50%;
    }

    .current-subtitle {
        font-size: 25px;
        font-weight: 400;
    }

    .community__container h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .community__container p {
        margin: 50px 0;
    }

    .hero__container-under-construction {
        width: 100%;
        padding: 20px;
    }

    .hero__container-under-construction .hero__element--preview {
        animation: none;
    }

    .hero__container-under-construction .hero__element--preview img {
        width: 100%;
        transform: none;
        margin-bottom: -8px;
    }

    #mint {
        background-position: 25%;
    }
}

@media screen and (max-width: 768px) {
    #navbar__logo img {
        width: 130px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        margin-left: 20px;
    }

    .hero {
        /* overflow-y: scroll; */
    }

    .hero__gradient {
        background-repeat: no-repeat;
        height: 50%;
    }

    .hero__container {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero__heading {
        font-size: 36px;
    }

    .hero__description {
        font-size: 14px;
        line-height: 18px;
    }

    .hero__tagline {
        font-size: 16px;
        line-height: 1.2rem;
    }

    .hero__element--preview {
        order: -1;
        flex: 1 0 100%;
        animation: float 3s ease-in-out infinite;
    }

    .hero__element--preview img {
        width: 100%;
        transform: scale(1.3);
        margin-top: 20px;
    }

    .hero__shadow {
        -webkit-box-shadow: inset 0px -50px 24px 2px rgb(20 26 31);
        box-shadow: inset 0px -50px 24px 2px rgb(20 26 31);
    }

    @keyframes float {
        0% {
            transform: translatey(0px);
        }
        50% {
            transform: translatey(-20px);
        }
        100% {
            transform: translatey(0px);
        }
    }

    .main {
        padding: 0 10px;
        padding-bottom: 80px;
    }

    .main__header:before {
        width: 130px;
        height: 50px;
        margin-top: -21px;
    }

    .main_header {
        height: 80px;
        padding: 20px;
    }

    .main__header h1 {
        font-size: 28px;
    }

    .main__content .main__text {
        margin: 30px 30px;
        font-size: 16px;
    }

    .main__element-item {
        min-width: 100%;
    }

    .main__intro-container {
        margin-bottom: 0px;
    }

    .main__rules-container  {
        flex-direction: column;
        /* margin: 40px 0; */
    }

    .main__rules-items {
        min-width: 100%;
        max-width: 100%;
        margin-top: 50px;
    }

    .main__card-header-circle {
        transform: translate(-40%, -50%);
    }

    .main__faq-slider {
        margin-top: -20px;
    }

    .main__element-item p {
        text-align: justify;
        padding: 0;
    }

    .main__roadmap-container .main__content {
        background-size: auto;
        background-position: bottom left;
    }

    .main__team {
        background-size: cover;
        padding: 0 20px 0 20px;
    }

    .main__team-container .main__element-slider-nav {
        margin: 0;
        padding: 0;
    }

    .main__team-slider-title {
        font-size: 28px;
        margin-top: 28px;
    }

    .main__slider-pagination {
        margin: 20px 0 20px;
    }

    .element__swiper-container .swiper-slide {
        background-position: center;
        background-size: contain;
        width: 100%;
        height: 100%;
    }

    .team__swiper-container .swiper-slide {
        background-position: center;
        background-size: contain;
        width: 50%;
        height: 50%;
    }

    .current-subtitle {
        font-size: 25px;
        font-weight: 400;
    }

    .community__container h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .community__container p {
        margin: 50px 0;
    }

    .hero__container-under-construction {
        width: 100%;
        padding: 20px;
    }

    .hero__container-under-construction .hero__element--preview {
        animation: none;
    }

    .hero__container-under-construction .hero__element--preview img {
        width: 100%;
        transform: none;
        margin-bottom: -8px;
    }

    #mint {
        background-position: 25%;
    }
}

/* Mobile Device */
@media screen and (max-width: 480px) {
    #navbar__logo img {
        width: 130px;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        margin-left: 20px;
    }

    .hero {
        height: calc(100vh - 70px);
        overflow: hidden;
    }

    .hero__background-video-desktop {
        display: none;
    }
    .hero__background-video-mobile {
        position: relative;
        display: block;
    }

    .hero__shadow {
        position: relative;
        -webkit-box-shadow: 0px 0px 15px 15px rgba(20, 26, 31, 1);
        box-shadow: 0px 0px 15px 15px rgba(20, 26, 31, 1);
    }

    /* #home {
        background-image: url('images/hero-experiment-mobile.webp');
        background-size: contain;
    } */

    .hero__gradient {
        background-repeat: no-repeat;
        height: 50%;
    }

    .hero__container {
        bottom: 0;
        top: 40%;
        /* max-width: 100%;
        padding: 0 10px; */
    }

    .hero__heading {
        font-size: 36px;
    }

    .hero__description {
        font-size: 14px;
        line-height: 18px;
    }

    .hero__tagline {
        font-size: 16px;
        line-height: 1.2rem;
    }

    .hero__element--preview {
        order: -1;
        flex: 1 0 100%;
        animation: float 3s ease-in-out infinite;
    }

    .hero__element--preview img {
        width: 100%;
        transform: scale(1.3);
        margin-top: 20px;
    }

    @keyframes float {
        0% {
            transform: translatey(0px);
        }
        50% {
            transform: translatey(-20px);
        }
        100% {
            transform: translatey(0px);
        }
    }

    .main {
        padding: 0 10px;
        padding-bottom: 50px;
    }

    .main__header:before {
        width: 130px;
        height: 50px;
        margin-top: -21px;
    }

    .main_header {
        height: 80px;
        padding: 20px;
    }

    .main__header h1 {
        font-size: 28px;
    }

    .main__content .main__text {
        margin: 30px 30px;
        font-size: 16px;
    }

    .main__element-item {
        min-width: 100%;
    }

    .main__intro-container {
        margin-bottom: 0px;
    }

    .main__rules-container  {
        flex-direction: column;
        /* margin: 40px 0; */
    }

    .main__rules-items {
        min-width: 100%;
        max-width: 100%;
        margin-top: 50px;
    }

    .main__card-header-circle {
        transform: translate(-40%, -50%);
    }

    .main__faq-slider {
        margin-top: -20px;
    }

    .main__element-item p {
        text-align: justify;
        padding: 0;
    }

    .main__roadmap-container .main__content {
        background-image: url('images/roadmap-card-background.webp');
        background-repeat: no-repeat;
        background-size: auto;
        background-position: 0 100%;
    }

    .main__team {
        background-size: cover;
        padding: 0 20px 0 20px;
    }

    .main__team-container .main__element-slider-nav {
        margin: 0;
        padding: 0;
    }

    .main__team-slider-title {
        font-size: 28px;
        margin-top: 28px;
    }

    .main__slider-pagination {
        margin: 20px 0 20px;
    }

    .element__swiper-container .swiper-slide {
        background-position: center;
        background-size: contain;
        width: 100%;
        height: 100%;
    }

    .team__swiper-container .swiper-slide {
        background-position: center;
        background-size: contain;
        width: 100%;
        height: 100%;
    }

    .current-subtitle {
        font-size: 25px;
        font-weight: 400;
    }

    .community__container h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .community__container p {
        margin: 50px 0;
    }

    .hero__container-under-construction {
        width: 100%;
        padding: 20px;
    }

    .hero__container-under-construction .hero__element--preview {
        animation: none;
    }

    .hero__container-under-construction .hero__element--preview img {
        width: 100%;
        transform: none;
        margin-bottom: -8px;
    }

    #mint {
        background-image: url('/images/mint-header-mobile.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
    }

    .hero__mint-container .hero__heading {
        font-size: 30px;
    }

    .hero__mint-container p.element__count {
        font-size: 20px;
    }

    .hero__connected-wallet {
        width: 100%;
        margin: auto 0;
        right: 0;
        transform: translate(10%, 5%);
        display: block;
    }
}