* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'IBM Plex Mono', monospace;
  
  }
  
  :root {
    --navbar-bg-color: hsl(0, 0%, 1%);
    --navbar-text-color: hsl(0, 0%, 85%);
    --navbar-text-color-focus: white;
    --navbar-bg-contrast: hsl(0, 0%, 25%);
    --first-color: hsl(38, 92%, 58%);
    --first-color-light: hsl(38, 100%, 78%);
    --first-color-alt: hsl(32, 75%, 50%);
    --second-color: hsl(195, 75%, 52%);
    --dark-color: hsl(212, 40%, 12%);
    --white-color: hsl(212, 4%, 95%);
    --body-color: hsl(212, 42%, 15%);
    --container-color: hsl(212, 42%, 20%);
    --text-color: #fff;
    --main-color: #0ef;
  }
  
  
  html {
    font-size: 62.5%;
    overflow-x: hidden;
  }
  
  
  body {
    background-image: linear-gradient( 111.4deg, rgba(7,7,9,1) 6.5%, rgba(27,24,113,1)93.2%);
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 64px;
    padding: 2rem 9%;
    background-color: var(--navbar-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
  }
  
  .header.sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, .2);
  }
  
  .logo img {
    width: 90px;
    color: var(--text-color);
  
    cursor: default;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-between;
    height: 300px;
    align-items: center;
  }
  
  
  .navbar a {
    display: flex;
    font-size: 1.7rem;
    color: var(--text-color);
    margin-left: 4rem;
    margin: 0.5em;
    padding: 0.4em 0.4em;
    width: 100%;
    word-spacing: 0.5px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
  
  /* .navbar a:hover,
  .navbar a:active {
    color: var(--main-color);
  } */
  
  .navbar a:is(:focus, :hover) {
    color: var(--navbar-text-color-focus);
    background-color: var(--navbar-bg-contrast);
  }
  
  
  
  .dropbtn1 {
    background-color: transparent;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
  
  }
  
  .dropdown1 {
    position: relative;
    display: inline-block;
  
  }
  
  .dropdown-content1 {
    display: none;
    position: absolute;
    background-color: #000000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(239, 229, 229, 0.2);
    z-index: 1;
  }
  
  .dropdown-content1 a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content1 a:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
  }
  
  .dropdown1:hover .dropdown-content1 {
    display: block;
  }
  
  .dropdown1:hover .dropbtn1 {
    background-color: var(--navbar-bg-contrast);
  
  }
  
  
  .menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: -100px;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .big {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
  }


  /* Pricing table */
 
/* Variables */
:root {
  --h1color: #6e768d;
  --h3color: #b4bdc6;
  --widthoftable: 31%;
  --bgctables: #ffffff;
  --bgfontcolor: #717787;
}

/* Body Styles */
body {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 100%;
    background-color: #f0f4f7;
    color: var(--bgfontcolor);
}

@media screen and (max-width: 960px) {
  body {
    font-size: 80%;
  }
}

@media screen and (max-width: 776px) {
  body {
    font-size: 70%;
  }
}

@media screen and (max-width: 496px) {
  body {
    font-size: 50%;
  }
}

@media screen and (max-width: 320px) {
  body {
    font-size: 40%;
  }
}

.change{
    font-size: 9rem;
}
.change::after{
    content: "";
    color:#005685;
    animation: change 2s ease-in-out infinite;
    
}

@keyframes change{
    0%{
        content: "#";
        
    }
    100%{
        content: "H";
    }

}

.hash{
    color: red;
}

/* Pricing Table Styles */
.pricingTable{
  margin-top: 140px;
  margin-bottom: 60px;
}
.pricingTable-title {
  text-align: center;
  color: var(--h1color);
  font-size:8rem;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.pricingTable-subtitle {
  text-align: center;
  color: var(--h3color);
  font-size: 5rem;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}
@media screen and (max-width: 608px){
  .pricingTable-title{
    font-size: 5rem;
  }
  .change{
    font-size: 7rem;
  }
  .pricingTable-subtitle{
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .pricingTable-subtitle {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 384px) {
  .pricingTable-title{
    font-size: 3rem;
  }
  .change{
    font-size: 5rem;
  }
  .pricingTable-subtitle{
    font-size: 2rem;
  }
}

.pricingTable-firstTable {
  list-style: none;
  padding-left: 2em;
  padding-right: 2em;
  text-align: center;
}

.pricingTable-firstTable_table {
  vertical-align: middle;
  width: var(--widthoftable);
  background-color: var(--bgctables);
  display: inline-block;
  padding: 0px 30px 40px;
  text-align: center;
  max-width: 320px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table {
    display: block;
    width: 90%;
    margin: 0 auto;
    max-width: 90%;
    margin-bottom: 20px;
    padding: 10px;
    padding-left: 20px;
    
  }
  
}

@media screen and (max-width: 480px) {
  .pricingTable-firstTable_table > * {
    display: block;
    float: none;
  }
}

.pricingTable-firstTable_table:after {
  content: '';
  display: table;
  clear: both;
}

.pricingTable-firstTable_table:hover {
  transform: scale(1.08);
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table:hover {
    transform: none;
  }
}

.pricingTable-firstTable_table:not(:last-of-type) {
  margin-right: calc((100% - var(--widthoftable) * 3) / 2);
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table:not(:last-of-type) {
    margin-right: auto;
  }
}

.pricingTable-firstTable_table:nth-of-type(2) {
  position: relative;
}

.pricingTable-firstTable_table:nth-of-type(2) h1 {
  padding-top: 8%;
}

.pricingTable-firstTable_table:nth-of-type(2):before {
  content: 'Most Popular';
  position: absolute;
  color: white;
  display: block;
  background-color: #3bbdee;
  text-align: center;
  right: 15px;
  top: -25px;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 0.7em;
  padding-top: 22px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: all 0.5s ease;
}

@media screen and (max-width: 988px) {
  .pricingTable-firstTable_table:nth-of-type(2):before {
    font-size: 0.6em;
  }
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table:nth-of-type(2):before {
    left: 10px;
    width: 45px;
    height: 45px;
    top: -10px;
    padding-top: 13px;
  }
}

@media screen and (max-width: 480px) {
  .pricingTable-firstTable_table:nth-of-type(2):before {
    font-size: 0.5em;
  }
}

.pricingTable-firstTable_table:nth-of-type(2):hover:before {
  transform: rotate(360deg);
}

.pricingTable-firstTable_table__header {
  font-size: 1.6em;
  padding: 40px 0px;
  border-bottom: 2px solid #ebedec;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1068px) {
  .pricingTable-firstTable_table__header {
    font-size: 1.45em;
  }
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__header {
    padding: 0px;
    border-bottom: none;
    float: left;
    width: 33%;
    padding-top: 3%;
    padding-bottom: 2%;
  }
}

@media screen and (max-width: 610px) {
  .pricingTable-firstTable_table__header {
    font-size: 1.3em;
  }
}

@media screen and (max-width: 480px) {
  .pricingTable-firstTable_table__header {
    float: none;
    width: 100%;
    font-size: 1.8em;
    margin-bottom: 5px;
  }
}

.pricingTable-firstTable_table__pricing {
  font-size: 3em;
  padding: 30px 0px;
  border-bottom: 2px solid #ebedec;
  line-height: 0.7;
}

@media screen and (max-width: 1068px) {
  .pricingTable-firstTable_table__pricing {
    font-size: 2.8em;
  }
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__pricing {
    border-bottom: none;
    padding: 0;
    float: left;
    clear: left;
    width: 33%;
  }
}

@media screen and (max-width: 610px) {
  .pricingTable-firstTable_table__pricing {
    font-size: 2.4em;
  }
}

@media screen and (max-width: 480px) {
  .pricingTable-firstTable_table__pricing {
    float: none;
    width: 100%;
    font-size: 3em;
    margin-bottom: 10px;
  }
}

.pricingTable-firstTable_table__pricing span:first-of-type {
  font-size: 0.35em;
  vertical-align: top;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1068px) {
  .pricingTable-firstTable_table__pricing span:first-of-type {
    font-size: 0.3em;
  }
}

.pricingTable-firstTable_table__pricing span:last-of-type {
  vertical-align: bottom;
  font-size: 0.30em;
  letter-spacing: 0.04em;
  padding-left: 0.2em;
}

@media screen and (max-width: 1068px) {
  .pricingTable-firstTable_table__pricing span:last-of-type {
    font-size: 0.25em;
  }
}

.pricingTable-firstTable_table__options {
  list-style: none;
  padding: 15px;
  font-size: 0.9em;
  border-bottom: 2px solid #ebedec;
}

@media screen and (max-width: 1068px) {
  .pricingTable-firstTable_table__options {
    font-size: 0.85em;
  }
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__options {
    border-bottom: none;
    padding: 0;
    margin-right: 10%;
  }
}

@media screen and (max-width: 610px) {
  .pricingTable-firstTable_table__options {
    font-size: 0.7em;
    margin-right: 8%;
  }
}

@media screen and (max-width: 480px) {
  .pricingTable-firstTable_table__options {
    font-size: 1.3em;
    margin-right: none;
    margin-bottom: 10px;
  }
}

.pricingTable-firstTable_table__options > li {
  padding: 8px 0px;
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__options > li {
    text-align: left;
  }
}

@media screen and (max-width: 610px) {
  .pricingTable-firstTable_table__options > li {
    padding: 5px 0;
  }
}

@media screen and (max-width: 480px) {
  .pricingTable-firstTable_table__options > li {
    text-align: center;
  }
}

li{
  font-size: 1.3rem;
}


.pricingTable-firstTable_table__options > .green:before {
  content: '✓';
  /* content: '×'; */
  display: inline-flex;
  margin-right: 15px;
  color: white;
  background-color: #74ce6a;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: 1.8em;
  padding: 2px;
  align-items: center;
  justify-content: center;
}
.pricingTable-firstTable_table__options > .red:before {
  content: '×';
  display: inline-flex;
  margin-right: 15px;
  color: white;
  background-color: rgb(237, 102, 102);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  font-size: 1.8em;
  padding: 2px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1068px) {
  .pricingTable-firstTable_table__options > li:before {
    width: 14px;
    height: 14px;
    padding: 1.5px;
  }
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__options > li:before {
    width: 12px;
    height: 12px;
  }
}

.pricingTable-firstTable_table__getstart {
  color: white;
  border: 0;
  background-color: #71ce73;
  margin-top: 30px;
  border-radius: 5px;
  cursor: pointer;
  padding: 15px;
  box-shadow: 0px 3px 0px 0px rgba(102, 172, 100, 1);
  letter-spacing: 0.07em;
  transition: all 0.4s ease;
}

@media screen and (max-width: 1068px) {
  .pricingTable-firstTable_table__getstart {
    font-size: 0.95em;
  }
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__getstart {
    margin-top: 0;
  }
}

@media screen and (max-width: 610px) {
  .pricingTable-firstTable_table__getstart {
    font-size: 0.9em;
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .pricingTable-firstTable_table__getstart {
    font-size: 1em;
    width: 50%;
    margin: 10px auto;
  }
}

.pricingTable-firstTable_table__getstart:hover {
  transform: translateY(-10px);
  box-shadow: 0px 40px 29px -19px rgba(102, 172, 100, 0.9);
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__getstart:hover {
    transform: none;
    box-shadow: none;
  }
}

.pricingTable-firstTable_table__getstart:active {
  box-shadow: inset 0 0 10px 1px rgba(102, 165, 100, 1), 0px 40px 29px -19px rgba(102, 172, 100, 0.95);
  transform: scale(0.95) translateY(-9px);
}

@media screen and (max-width: 767px) {
  .pricingTable-firstTable_table__getstart:active {
    transform: scale(0.95) translateY(0);
    box-shadow: none;
  }
}


  /* .style{
    font-size: 100px;
    margin-left: 10px;
    padding-top: 200px;
    flex-wrap: wrap;
}

.first{
    display: flex;
    justify-content: baseline;
    place-items: center;
}
.title{
    display: flex;
    padding-left: 80px;
    flex-wrap: wrap;
}
.hash{
    color: red;
    font-size: 100px;
    margin-top: 180px;
    margin-left: 40px;
}
.uprr{
    margin-left: 50px;
    padding-top: 150px;
    width:500px;
}
.pass-details {
    padding-top: 100px;
}

.sell {
    padding-left: 350px;
    padding-bottom: 70px;
}

.sell-pass h1{
    align-items: center; 
    justify-content: center;
    padding-left: 270px;
    padding-bottom: 50px;
    font-size: 40px;
}

.pricing-table1 {
    width: 70%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pricing-table1 tr{
    font-size: 20px;
}

.pricing-table1 th,
.pricing-table1 td {
    padding: 15px;
    border: 1px solid #ccc;
    text-align: center;
}

.pricing-table1 th {
    background-color: #000080;
    /* Navy blue */
    /* color: #fff;
    font-size: 20px;
}

.pricing-table1 td{
    font-size: 20px;
}

.sold-out {
    color: red;
    font-weight: bold;
}

.note {
    margin-top: 10px;
    font-size: 0.8em;

}

.registration-button {
    /* background-color: #000080;
    /* Navy blue */
    /* color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    font-size: 20px;
    border-radius: 20px;
}

.price {
    padding-left: 270px;
}

.pricing-table {
    width: 80%;
    border-collapse: collapse;
    align-items: center;
    justify-content: center;
    
}
.features{
    padding-left: 10px;
}

.pricing-table tr{
    font-size: 20px;
}

.pricing-table th,
.pricing-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.pricing-table th {
    background-color: #000080;
    /* Navy blue */
    /* color: #fff;
}

.checkmark {
    color: green;
}

.crossmark {
    color: red;
}

.registration-button {
    background-color: #000080; */
    /* Navy blue */
    /* color: #fff;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    margin: 20px;
    cursor: pointer;
}

.pass-feature h1{
    align-items: center; 
    justify-content: center; 
    padding-left: 360px;
    padding-bottom: 50px; 
    font-size: 40px;
}

.register1 {
    padding-left: 310px;
}

.register2 {
    padding-left: 390px;
}  */
   
  
   footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: auto;
  }
  .details {
    margin-right: 240px;
    font-size: 20px;
    text-align: center;
    padding-left: 250px;
  }
  
  .reach {
    margin-right: 150px;
    font-size: 20px;
    padding-left: 150px;
    color: white;
  }
  
  .social-media a {
    color: #fff;
    font-size: 24px;
    margin: 0 5px;
    text-decoration: none;
  }
  
  
  .social-media a:hover {
    color: rgb(38, 212, 38);
  }
  
  
  @media screen and (max-width: 1010px) {
  
    .details {
        font-size: 18px;
    }
  
    .reach {
        font-size: 18px;
    }
  
  }
  
  @media screen and (max-width: 901px) {
  
    header {
        padding: 1rem 5%;
  
    }
  
    .logo img {
        width: 70px;
    }
  
    .navbar a {
        font-size: 1.4rem;
        margin-left: 2rem;
    }
  
    #menu-icon {
        display: block;
        /* Show the menu icon */
    }
  
    .details {
        font-size: 15px;
    }
  
    .reach {
        font-size: 15px;
    }
  }
  
  @media screen and (max-width: 901px){

  }
  
  @media screen and (max-width: 825px) {
  
    header {
        padding: 1rem 5%;
  
    }
  
    .logo img {
        width: 55px;
        margin-left: -50px;
    }
  
    .navbar {
        margin-left: 30px;
    }
  
    .navbar a {
        font-size: 1.3rem;
        margin-left: 1.5rem;
    }
  
    .navbar .dropbtn1 {
        font-size: 1.3rem;
        margin-left: 1.5rem;
    }
  
    #menu-icon {
        display: block;
        /* Show the menu icon */
    }
  
  }

  @media screen and (max-width: 750px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: black;
    }
  
    .nav-links.show {
        display: flex;
    }
  
    .menu-icon {
        display: flex;
    }
  
    /* Add the following CSS to change the background color on hover */
    .navbar .nav-links a:hover {
        background-color: white;
        color: black;
    }
  
    .logo img {
        width: 80px;
        margin-left: -30px;
    }
    .details {
        margin-right: 0;
        font-size: 16px;
        text-align: center;
        padding-left: 0;
      }
    
      .reach {
        margin-right: 0;
        font-size: 16px;
        padding-left: 0;
      }
    
      .social-media a {
        font-size: 20px;
      }
    
      footer {
        padding: 10px;
      }
  }
  
  @media screen and (max-width: 661px) {
  
    .navbar a {
        font-size: 1.2rem;
        margin-left: 1.5rem;
    }
  
    .details {
        font-size: 15px;
    }
  
    .reach {
        font-size: 15px;
    }
  
  }
  
  
  
  @media screen and (max-width: 376px) {
    .details {
        font-size: 13px;
    }
  
    .reach {
        font-size: 13px;
    }
  }

  /* @media only screen and (max-width: 1340px) {



    .title img{
        /* display: flex;
        flex-direction: column;
        gap: 100px; */
        /* margin-top: -100px;

    }
    .title
    {
        display: flex;
        justify-content: center;
        align-items: center;
    }
   
    .sell {
        padding-left: 100px;
    }
    .sell-pass {
        margin-left: 180px;
    }
    .pass-details {
        padding-top: 50px;
    }
    .pricing-table1 {
        width: 70%;
        margin-left: 160px;
    }
    .note{
        margin-left: 16rem;
    }
    .price {
        margin-left: 70px;
    }
    .pass-feature h1{
        margin-left: -16rem;
    }
    .pricing-table{
        margin-left: 0.5rem;
    }
    .features{
        margin-right: 150px;
    }
    .register1 {
        margin-left: 16rem;
    }
    .register2 {
        margin-left: -150px;
    }
}

@media only screen and (max-width: 1240px) {

    
   

    .title img{
        /* display: flex;
        flex-direction: column;
        gap: 100px; */
        /* margin-top: -100px;

    }
    .title
    {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sell {
        padding-left: 20px;
    }
    .sell-pass {
        margin-left: 120px;
    }
    .pass-details {
        padding-top: 50px;
    }
    .pricing-table1 {
        width: 70%;
        margin-left: 17rem;
    }
    .note{
        margin-left: 17rem;
    }
    .price {
        padding-left: 200px;
    }
    .pass-feature h1{
        margin-left: -16rem;
    }
    .pricing-table{
        margin-left: 0.5rem;
    }
    .register1 {
        margin-left: 7rem;
    }
    .register2 {
        margin-left: -150px;
    }
} */
/* 
@media only screen and (max-width: 1047px){
    .register1{
        margin-left: 100px;
    }
    .pass-feature h1{
        margin-left: -25rem;
    }
    .features{
        margin-left: -8rem;
    }
    .pricing-table{ */
        /* width:95%;
    }
    .register2{
        margin-left: -200px;
    }
}

/* Media query for mobile devices */
/* @media only screen and (max-width: 873px) {
    

    .style{
        font-size: 8rem;
    }

    .uprr{ */
        /* display: flex;
        flex-direction: column;
        gap: 100px;  */
        /* margin-top: -500px;

    }
    .title
    {
        display: flex;
        justify-content: center;
        align-items: center;
    }
   
    .sell {
        margin-right: 50px;
    }
    .sell-pass h1{
        margin-left:-90px;
        font-size: 40px;
    }
    .pass-details {
        padding-top: 30px;
    }
    .pricing-table1 {
        width: 60%;
    }
    .pricing-table1 tr{
        font-size: 15px;
    }
    .pricing-table tr{

        font-size: 15px;
    }
    .price {
        
        margin-left: -8rem;
    }
    .register1{
        margin-left:auto;
    }
    .register2 {
        margin-left: -15rem;
    }
    
}  */

/* @media only screen and (max-width: 771px){
    
    

    .title
    {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .sell-pass h1{
        margin-left: -130px;
    }
    .register1{
        margin-left: -40px;
    }
    .pass-feature h1{
        margin-left: -220px;
    }
    .features{
        margin-right: -10px;
    }
    .register2{
        margin-left: -190px;
    }
    
}

@media only screen and (max-width: 711px){
    .style{
        font-size: 60px;
    }
}

@media only screen and (max-width: 655px){
    
    .style{
        font-size: 5rem;
    }
    .uprr{
        height: 300px;
        width: 200px;
        margin-left: -1px;
    }
} */

