@font-face {
  font-family: Khula;
  src: url("Fonts/Khula-Light.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: khula;
}
@media (min-width: 1200px) {
  .header {
    /* position: absolute; */
    width: 100%;
    height: 80%;
    overflow: hidden;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .header-1 {
    width: 49%;
    height: 500px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-left: 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
  }
  .header-1 h1 {
    font-size: 40px;
    line-height: 1.5;
    color: white;
    padding: 40px 10px;
    margin-left: -50px;
  }
  .header-1 p {
    font-size: 20px;
    color: black;
    padding: 20px;
    opacity: 0.6;
    line-height: 1.5;
    text-align: center;
  }
  .header-1 .btn {
    width: 60%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 40px 20px;
  }
  .btn > a {
    width: 40%;
    height: 55px;
    background-color: #1f1e29;
    color: white;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
  }
  .btn > a:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .btn .btn-2 {
    width: 45%;
    height: 55px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border: none;
    border-radius: 50px;
    margin-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px;
    cursor: pointer;
  }
  .btn .btn-2:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .header-img {
    width: 49%;
    float: right;
    margin-right: -150px;
    margin-top: 30px;
  }
  .header-img img {
    width: 60%;
    height: 60%;
  }
  .main {
    width: 100%;
    height: 350px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row;
    justify-content: center;
    /* position: absolute;
  top: 80%; */
  }
  .main .box-1,
  .main .box-2,
  .main .box-3 {
    width: 32%;
    height: 320px;
    margin-left: 10px;
  }
  .main .box-1 {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    line-height: 2;
    padding: 30px;
  }
  .main .box-1 h3 {
    color: white;
    font-weight: 100;
    font-size: 21px;
    letter-spacing: 1px;
  }
  .main .box-1 h2 {
    color: white;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 1px;
  }
  .main .box-1 h2 span {
    opacity: 0.5;
  }
  .main .box-2 {
    display: flex;
    justify-content: center;
    flex-flow: column;
    line-height: 2;
  }
  .main .box-2 .box-2-1 {
    display: flex;
    flex-flow: row;
    margin: 0 auto;
    width: 80%;
  }
  .box-2-1 .btn-3 {
    width: 75%;
    height: 45px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
  }
  .box-2-1 .btn-3:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .box-2 .btn-4 {
    width: 45%;
    height: 45px;
    background-color: #1f1e29;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
  .box-2 .btn-4:hover {
    animation: pulse-1 1s infinite;
    transition: 0.3s;
  }
  @keyframes pulse-1 {
    0% {
      transform: scale(1);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  .box-2 .btn-5 {
    width: 70%;
    height: 58px;
    background-color: #1f1e29;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 50px;
    transition: 0.3s;
  }
  .box-2 .btn-5:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .box-3 {
    margin: 0 auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    position: relative;
    top: 46%;
    left: 16%;
    font-family: "Baloo da 2", cursive;
    text-align: center;
  }
  .countdown {
    display: flex;
    justify-content: center;
    margin-top: -160px;
  }
  .countdown div {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 10rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .countdown div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #17181b;
  }
  .countdown div::after {
    content: attr(data-content);
    font-size: 1.5rem;
    opacity: 0.5;
    font-weight: 400;
    position: absolute;
    bottom: -3rem;
  }

  .bar {
    width: 90%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: white;
    /* position: relative; */
    margin-top: 50px;
  }
  .bar-progress {
    width: 60%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: #000;
    /* position: absolute; */
  }
  .wrapper {
    width: 100%;
    height: auto;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    /* position: absolute;
  top: 125%; */
  }

  .wrapp-1 {
    width: 60%;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
  }
  .wrapp-1 h1 {
    text-align: left;
    color: white;
    letter-spacing: 1;
    font-weight: 700;
    font-size: 40px;
  }
  .wrapp-1 p {
    font-size: 17px;
    color: white;
    opacity: 0.6;
    margin-top: 50px;
    line-height: 1.7;
    margin-left: 5px;
    text-align: justify;
  }
  .wrapp-1 a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 900;
    color: black;
    text-shadow: 1px 1px 2px #000000;
  }
  .wrapp-1 span {
    font-weight: 700;
    font-size: 20px;
    color: white;
  }
  .wrapp-1 .btn-6 {
    width: 38%;
    height: 58px;
    background-color: #1f1e29;
    margin-top: 30px;
    border: none;
    color: white;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
  }
  .wrapp-1 .btn-6:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .wrapp-2 {
    width: 50%;
    height: 100%;
  }
  .wrapp-2 img {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
    height: 500px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row;
    flex-direction: row;
    align-items: center;
    /* position: absolute;
  top: 195%; */
  }
  .cont-1,
  .cont-2,
  .cont-3 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 310px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 1px solid #ffe53b;
    border-radius: 10px;
    margin: 0 auto;
    animation: pulse 1500ms infinite;
  }
  @keyframes pulse {
    0% {
      box-shadow: #f28b03;
    }
    60% {
      box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 5px;
    }
  }
  .cont-1 img {
    width: 30%;
    height: 30%;
    margin-top: -85px;
  }
  .cont-1 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
  }
  .cont-1 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 img {
    width: 30%;
    height: 30%;
  }
  .cont-2 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
  }
  .cont-2 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 h5 {
    color: white;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 100;
  }
  .cont-2 .btn-7 {
    width: 70%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .cont-2 .btn-7:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .cont-3 img {
    width: 30%;
    height: 30%;
  }
  .cont-3 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    margin-top: 5px;
  }
  .cont-3 .countdown{
    width: 8rem;
    height:6rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 1rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .countdown div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #17181b;
  }
  .countdown div::after {
    content: attr(data-content);
    font-size: 1.5rem;
    opacity: 0.5;
    font-weight: 400;
    position: absolute;
    bottom: -3rem;
  }

  .lottery {
    width: 100%;
    height: 800px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 260%; */
    margin-top: -60px;
  }
  .lottery h1 {
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: 100;
    opacity: 0.6;
    letter-spacing: 1.5px;
    margin-top: 55px;
  }

  .hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
    margin-top: 22px;
  }
  .lot {
    display: flex;
    flex-flow: row;
    align-items: center;
  }
  .lottery-1 {
    width: 49%;
    margin-left: 5px;
  }
  .lottery-1 img {
    margin-left: -30px;
    margin-top: 40px;
    padding: 40px 20px;
    width: 100%;
    height: 100%;
  }
  .lottery-2 {
    width: 50%;
    margin-left: -15px;
  }
  .lottery-2 p {
    color: white;
    font-weight: 200;
    font-size: 18px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    text-align: justify;
  }
  .Quick {
    width: 100%;
    height: 1100px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 388%; */
    margin-top: -60px;
  }
  .Quick h1 {
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    margin-top: 50px;
    margin-left: 130px;
  }
  .Quick-1 {
    width: 80%;
    height: 870px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-flow: column;
    border-radius: 20px;
  }
  .Q-Box-1 {
    display: flex;
    flex-flow: row;
  }
  .Q-line {
    width: 25%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 25px;
  }
  .Q-line Button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 40px;
    color: black;
    font-weight: 900;
    border: none;
    background-color: white;
  }
  .line {
    width: 80px;
    border: 0;
    height: 2px;
    margin-left: 7px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
  }
  .Q-paragraph {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -140px;
    margin-top: 20px;
  }
  .Q-paragraph h1 {
    margin-left: -350px;
    font-size: 30px;
  }
  .Q-paragraph p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
  }
  .Q-Box-2 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -140px;
    margin-top: 20px;
  }
  .Q-paragraph-2 h1 {
    margin-left: -350px;
    font-size: 30px;
  }
  .Q-paragraph-2 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
  }
  .Q-Box-3 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-3 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -75px;
  }
  .Q-paragraph-3 h1 {
    margin-left: -350px;
    font-size: 30px;
  }
  .Q-paragraph-3 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: -200px;
  }
  .Q-Box-4 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-4 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -100px;
    margin-top: 25px;
  }
  .Q-paragraph-4 h1 {
    margin-left: -280px;
    font-size: 30px;
  }
  .Q-paragraph-4 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: -40px;
  }
  .footer {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 538%; */
    margin-top: -60px;
  }
  .footer-1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-1 h1 {
    font-size: 50px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5;
  }
  .footer-1 p {
    color: white;
    letter-spacing: 1.5;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 100;
  }
  .footer-1 span {
    font-weight: 800;
    color: #f28b03;
    text-shadow: 1px 1px 2px #000000;
  }
  .footer-1 .footer-box {
    display: flex;
    flex-flow: row;
    align-items: center;
    width: 70%;
    height: 100px;
    margin-top: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .footer-1 .footer-box h3 {
    color: white;
    margin-left: 25px;
  }

  .footer-1 .footer-box button {
    width: 65%;
    height: 45px;
    background-color: white;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 15px;
  }
  .footer .footer-box button:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .footer-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-2 p {
    color: white;
    opacity: 0.6;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1.5px;
    line-height: 2;
  }
  .footer-2 a {
    color: white;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 50px;
    font-weight: 700;
    font-size: 20px;
  }
  .social {
    width: 70%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    transition: 0.3s;
    cursor: pointer;
  }
  .social a:hover {
    opacity: 0.6;
  }
  .scroll a {
    text-decoration: none;
    float: right;
    margin-right: 30px;
    margin-top: -80px;
    writing-mode: vertical-rl;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000000;
  }
  .scroll a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    line-height: 35px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 200px;
    top: 60%;
    width: 70%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
  }

  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }

  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  /* The Close Button */
  .close {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close:hover,
  .close:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-body {
    height: 200px;
    padding: 2px 16px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }

  .modal-body a {
    color: #e6e2dd;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
  .modal-body a:hover {
    font-size: 20px;
    color: #ffe53b;
  }
  .modal-body p {
    font-size: 11px;
    opacity: 0.7;
    text-align: center;
    color: #e6e2dd;
    letter-spacing: 2px;
    margin-top: 5px;
  }
  .modal-body .metamask {
    width: 50%;
  }
  .modal-body .metamask img {
    margin-left: 10px;
  }
  .modal-body .wallet {
    width: 50%;
  }
  .modal-body .wallet img {
    margin-left: 10px;
  }

  /* Modal-BuyTicket */
  .popup {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 270px;
    top: 50%;
    width: 60%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
  }
  .popup-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 50%;
    height: 520px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }
  .close-popup {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close-popup:hover,
  .close-popup:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }
  .popup-body {
    height: 500px;
    padding: 2px 16px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }
  .popup-body .popup-body-h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .popup-body-1 {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
  .popup-body .popup-body-h-l h2 {
    color: black;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-left: -50px;
    opacity: 0.6;
    margin-top: 10px;
  }
  .popup-body .popup-body-h-r h4 {
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-top: 10px;
  }
  .popup-body-b {
    width: 90%;
    height: 90px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    margin-left: 27px;
    margin-top: 30px;
  }
  .popup-body-b input[type="number"] {
    border-radius: 10px;
    width: 90%;
    height: 40px;
    color: black;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    text-align: right;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #f06500;
  }
  .popup-body-b span {
    color: black;
    font-weight: 700;
    display: block;
    margin-top: 60px;
    margin-left: 280px;
  }
  .popup-body-p {
    width: 90%;
    height: 80px;
    margin-top: 5px;
    margin-left: 25px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-p .popup-body-l h2 {
    margin-left: 10px;
    font-size: 17px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h4 {
    font-size: 16px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h5 {
    font-size: 17px;
    font-weight: 800;
    margin-right: 10px;
  }
  .btn-8 {
    width: 90%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .btn-8:hover {
    background: #f06500;
    color: white;
    box-shadow: 0 0 50px #f06500, 0 0 200px #f06500;
  }
  .popup p {
    font-size: 15px;
    font-weight: 700;
    margin-top: 20px;
  }
}

@media (min-width: 990px) and (max-width: 1200px) {
  .header {
    /* position: absolute; */
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .header-1 {
    width: 49%;
    height: 400px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-left: 10px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
    margin-top: -5px;
  }
  .header-1 h1 {
    font-size: 28px;
    line-height: 1.5;
    color: white;
    padding: 20px 10px;
    margin-left: -55px;
  }
  .header-1 p {
    font-size: 20px;
    color: black;
    padding: 20px;
    opacity: 0.6;
    line-height: 1.5;
    text-align: center;
  }
  .header-1 .btn {
    width: 80%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 40px 20px;
  }
  .btn > a {
    width: 40%;
    height: 55px;
    background-color: #1f1e29;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
  }
  .btn > a:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .btn .btn-2 {
    width: 45%;
    height: 55px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border: none;
    border-radius: 50px;
    margin-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px;
    cursor: pointer;
  }
  .btn .btn-2:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .header-img {
    width: 49%;
    float: right;
    margin-right: -90px;
    margin-top: 30px;
  }
  .header-img img {
    width: 60%;
    height: 60%;
  }
  .main {
    width: 100%;
    height: 400px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row;
    justify-content: center;
    /* position: absolute;
  top: 80%; */
    margin-top: -5px;
  }
  .main .box-1,
  .main .box-2,
  .main .box-3 {
    width: 35%;
    height: 320px;
    margin-left: 5px;
  }
  .main .box-1 {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    line-height: 2;
    padding: 30px;
  }
  .main .box-1 h3 {
    color: white;
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .main .box-1 span {
    opacity: 0.5;
  }
  .main .box-2 {
    display: flex;
    justify-content: center;
    flex-flow: column;
    line-height: 2;
  }
  .main .box-2 .box-2-1 {
    display: flex;
    flex-flow: row;
    margin: 0 auto;
    width: 80%;
  }
  .box-2-1 .btn-3 {
    width: 75%;
    height: 45px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
  }
  .box-2-1 .btn-3:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .box-2 .btn-4 {
    width: 45%;
    height: 45px;
    background-color: #1f1e29;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
  .box-2 .btn-4:hover {
    animation: pulse-1 1s infinite;
    transition: 0.3s;
  }
  @keyframes pulse-1 {
    0% {
      transform: scale(1);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  .box-2 .btn-5 {
    width: 70%;
    height: 58px;
    background-color: #1f1e29;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 50px;
    transition: 0.3s;
  }
  .box-2 .btn-5:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .box-3 {
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    margin-left: -10px;
    font-family: "Baloo da 2", cursive;
    text-align: center;
  }
  .countdown {
    display: flex;
    justify-content: center;
    margin-top: -160px;
    margin-left: -20px;
  }
  .countdown div {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 10rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .countdown div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #17181b;
  }
  .countdown div::after {
    content: attr(data-content);
    font-size: 1.5rem;
    opacity: 0.5;
    font-weight: 400;
    position: absolute;
    bottom: -3rem;
  }
  .bar {
    width: 92%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: white;
    /* position: relative; */
    margin-top: 50px;
  }
  .bar-progress {
    width: 60%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: #000;
    /* position: absolute; */
  }
  .wrapper {
    width: 100%;
    height: auto;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    /* position: absolute;
  top: 125%; */
    margin-top: -5px;
  }

  .wrapp-1 {
    width: 60%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-left: 10px;
  }
  .wrapp-1 h1 {
    text-align: left;
    color: white;
    letter-spacing: 1;
    font-weight: 700;
    font-size: 40px;
  }
  .wrapp-1 p {
    font-size: 17px;
    color: white;
    opacity: 0.6;
    margin-top: 50px;
    line-height: 1.7;
    text-align: justify;
  }
  .wrapp-1 a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 900;
    color: black;
    text-shadow: 1px 1px 2px #000000;
  }
  .wrapp-1 span {
    font-weight: 700;
    font-size: 20px;
    color: white;
  }
  .wrapp-1 .btn-6 {
    width: 38%;
    height: 58px;
    background-color: #1f1e29;
    margin-top: 30px;
    border: none;
    color: white;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
  }
  .wrapp-1 .btn-6:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .wrapp-2 {
    width: 50%;
    height: 100%;
  }
  .wrapp-2 img {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
    height: 500px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row;
    flex-direction: row;
    align-items: center;
    /* position: absolute;
  top: 195%; */
    margin-top: -5px;
  }
  .cont-1,
  .cont-2,
  .cont-3 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 280px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 1px solid #ffe53b;
    border-radius: 10px;
    margin: 0 auto;
    animation: pulse 1500ms infinite;
  }
  @keyframes pulse {
    0% {
      box-shadow: #f28b03;
    }
    60% {
      box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 5px;
    }
  }
  .cont-1 img {
    width: 30%;
    height: 30%;
    margin-top: -85px;
  }
  .cont-1 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
  }
  .cont-1 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 img {
    width: 30%;
    height: 30%;
  }
  .cont-2 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
  }
  .cont-2 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 h5 {
    color: white;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 100;
  }
  .cont-2 .btn-7 {
    width: 70%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .cont-2 .btn-7:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .cont-3 img {
    width: 30%;
    height: 30%;
  }
  .cont-3 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    margin-top: 5px;
  }
  .cont-3 .countdown{
    width: 8rem;
    height:6rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 1rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }

  .lottery {
    width: 100%;
    height: 700px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 260%; */
    margin-top: -60px;
  }
  .lottery h1 {
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: 100;
    opacity: 0.6;
    letter-spacing: 1.5px;
    margin-top: 55px;
  }

  .hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
    margin-top: 22px;
  }
  .lot {
    display: flex;
    flex-flow: row;
    align-items: center;
  }
  .lottery-1 {
    width: 49%;
    margin-left: 5px;
  }
  .lottery-1 img {
    margin-left: -10px;
    margin-top: 40px;
    padding: 40px 20px;
    width: 100%;
    height: 130%;
  }
  .lottery-2 {
    width: 50%;
    margin-left: -15px;
  }
  .lottery-2 p {
    color: white;
    font-weight: 200;
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    text-align: justify;
  }
  .Quick {
    width: 100%;
    height: 1200px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 388%; */
    margin-top: -60px;
  }
  .Quick h1 {
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    margin-top: 50px;
    margin-left: 10px;
  }
  .Quick-1 {
    width: 98%;
    height: 1000px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-flow: column;
    border-radius: 20px;
  }
  .Q-Box-1 {
    display: flex;
    flex-flow: row;
  }
  .Q-line {
    width: 25%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 25px;
  }
  .Q-line Button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 40px;
    color: black;
    font-weight: 900;
    border: none;
    background-color: white;
  }
  .line {
    width: 80px;
    border: 0;
    height: 2px;
    margin-left: 7px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
  }
  .Q-paragraph {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -140px;
  }
  .Q-paragraph h1 {
    margin-left: -120px;
    font-size: 30px;
    margin-top: 70px;
  }
  .Q-paragraph p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 60px;
    margin-top: -25px;
  }
  .Q-Box-2 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -140px;
  }
  .Q-paragraph-2 h1 {
    margin-left: -120px;
    font-size: 30px;
    margin-top: 70px;
  }
  .Q-paragraph-2 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 60px;
    margin-top: -25px;
  }
  .Q-Box-3 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-3 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: -220px;
  }
  .Q-paragraph-3 h1 {
    margin-left: 10px;
    font-size: 30px;
    margin-top: 40px;
  }
  .Q-paragraph-3 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 150px;
    margin-top: -25px;
  }
  .Q-Box-4 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-4 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: -210px;
  }
  .Q-paragraph-4 h1 {
    margin-left: 5px;
    font-size: 30px;
    margin-top: 55px;
  }
  .Q-paragraph-4 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 140px;
    margin-top: -25px;
  }
  .footer {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 538%; */
    margin-top: -60px;
  }
  .footer-1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 90%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-1 h1 {
    font-size: 50px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5;
  }
  .footer-1 p {
    color: white;
    letter-spacing: 1.5;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 100;
  }
  .footer-1 span {
    font-weight: 800;
    color: #f28b03;
    text-shadow: 1px 1px 2px #000000;
  }
  .footer-1 .footer-box {
    display: flex;
    flex-flow: row;
    align-items: center;
    width: 70%;
    height: 100px;
    margin-top: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .footer-1 .footer-box h3 {
    color: white;
    margin-left: 5px;
    font-size: 15px;
  }

  .footer-1 .footer-box button {
    width: 55%;
    height: 45px;
    background-color: white;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 5px;
  }
  .footer .footer-box button:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .footer-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-2 p {
    color: white;
    opacity: 0.6;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1.5px;
    line-height: 2;
  }
  .footer-2 a {
    color: white;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 50px;
    font-weight: 700;
    font-size: 20px;
  }
  .social {
    width: 70%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    transition: 0.3s;
    cursor: pointer;
  }
  .social a:hover {
    opacity: 0.6;
  }
  .scroll a {
    text-decoration: none;
    float: right;
    margin-right: 30px;
    margin-top: -80px;
    writing-mode: vertical-rl;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000000;
  }
  .scroll a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    line-height: 35px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 170px;
    top: 70%;
    width: 70%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
  }

  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }

  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  /* The Close Button */
  .close {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close:hover,
  .close:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-body {
    height: 200px;
    padding: 2px 16px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }

  .modal-body a {
    color: #e6e2dd;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
  .modal-body a:hover {
    font-size: 20px;
    color: #ffe53b;
  }
  .modal-body p {
    font-size: 11px;
    opacity: 0.7;
    text-align: center;
    color: #e6e2dd;
    letter-spacing: 2px;
    margin-top: 5px;
  }
  .modal-body .metamask {
    width: 50%;
  }
  .modal-body .metamask img {
    margin-left: 10px;
  }
  .modal-body .wallet {
    width: 50%;
  }
  .modal-body .wallet img {
    margin-left: 10px;
  }

  /* Modal-BuyTicket */
  .popup {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 2; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 60px;
    top: 50%;
    width: 90%; /* Full width */
    height: 100%; /* Full height */
    overflow: scroll; /* Enable scroll if needed */
  }
  .popup-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 40%;
    height: 550px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }
  .close-popup {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close-popup:hover,
  .close-popup:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }
  .popup-body {
    height: 500px;
    padding: 2px 16px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }
  .popup-body .popup-body-h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .popup-body-1 {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
  .popup-body .popup-body-h-l h2 {
    color: black;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-left: -50px;
    opacity: 0.6;
    margin-top: 70px;
    text-align: center;
  }
  .popup-body .popup-body-h-r h4 {
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-top: 70px;
  }
  .popup-body-b {
    width: 90%;
    height: 90px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
  }
  .popup-body-b input[type="number"] {
    border-radius: 10px;
    width: 90%;
    height: 40px;
    color: black;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    text-align: right;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #f06500;
  }
  .popup-body-b span {
    color: black;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-top: 55px;
    margin-left: 250px;
  }
  .popup-body-p {
    width: 90%;
    height: 80px;
    margin-top: 5px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-p .popup-body-l h2 {
    margin-left: 10px;
    font-size: 17px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h4 {
    font-size: 16px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h5 {
    font-size: 17px;
    font-weight: 800;
    margin-right: 10px;
  }
  .btn-8 {
    width: 90%;
    height: 45px;
    background-color: white;

    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 15px;
  }
  .btn-8:hover {
    background: #f06500;
    color: white;
    box-shadow: 0 0 50px #f06500, 0 0 200px #f06500;
  }
  .popup p {
    font-size: 15px;
    font-weight: 700;
    text-align: justify;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .header {
    /* position: absolute; */
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }

  .header-1 {
    width: 50%;
    height: 400px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-left: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
    margin-top: -5px;
  }
  .header-1 h1 {
    font-size: 25px;
    line-height: 1.5;
    color: white;
    padding: 20px 10px;
    margin-left: -25px;
  }
  .header-1 p {
    font-size: 20px;
    color: black;
    padding: 20px;
    opacity: 0.6;
    line-height: 1.5;
    text-align: center;
  }
  .header-1 .btn {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 30px 20px;
  }
  .btn > a {
    width: 40%;
    height: 55px;
    background-color: #1f1e29;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
  }
  .btn > a:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .btn .btn-2 {
    width: 45%;
    height: 55px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border: none;
    border-radius: 50px;
    margin-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px;
    cursor: pointer;
  }
  .btn .btn-2:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .header-img {
    width: 49%;
    float: right;
    margin-right: -90px;
    margin-top: 30px;
  }
  .header-img img {
    width: 60%;
    height: 60%;
  }
  .main {
    width: 100%;
    height: 900px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    /* position: absolute;
  top: 80%; */
    margin-top: -5px;
  }
 
  .main .box-1 {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    line-height: 2;
    padding: 30px;
    margin-top: -10px;
    width: 50%;
    height: 240px;
    
  }
  .main .box-1 h3 {
    color: white;
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 10px;
  }
  .main .box-1 span {
    opacity: 0.5;
  }
  .main .box-2 {
    display: flex;
    justify-content: center;
    flex-flow: column;
    line-height: 2;
    margin-top: -100px;
    width: 50%;
    height: 450px;
    
  }
  .main .box-2 .box-2-1 {
    display: flex;
    flex-flow: row;
    margin-top: 70px;

    width: 100%;
    margin-left: -10px;
  }
  .box-2-1 .btn-3 {
    width: 85%;
    height: 45px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
  }
  .box-2-1 .btn-3:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .box-2 .btn-4 {
    width: 55%;
    height: 45px;
    background-color: #1f1e29;
    margin-left: 100px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;

    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
  .box-2 .btn-4:hover {
    animation: pulse-1 1s infinite;
    transition: 0.3s;
  }
  @keyframes pulse-1 {
    0% {
      transform: scale(1);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  .box-2 .btn-5 {
    width: 90%;
    height: 58px;
    background-color: #1f1e29;
    margin-left: 250px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 50px;
    transition: 0.3s;
  }
  .box-2 .btn-5:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .box-3 {
    width: 50%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    line-height: 2;
    font-family: "Baloo da 2", cursive;
    text-align: center;
    
  }
  .countdown {
    display: flex;
    justify-content: center;
    margin-top: -200px;
  }
  .countdown div {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 10rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .countdown div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #17181b;
  }
  .countdown div::after {
    content: attr(data-content);
    font-size: 1.5rem;
    opacity: 0.5;
    font-weight: 400;
    position: absolute;
    bottom: -3rem;
  }
  .bar {
    width: 90%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: white;
    /* position: relative; */
    margin-top: 50px;
  }
  .bar-progress {
    width: 60%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: #000;
    /* position: absolute; */
  }
  .wrapper {
    width: 100%;
    height: auto;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    /* position: absolute;
  top: 125%; */
    margin-top: -5px;
  }

  .wrapp-1 {
    width: 70%;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-left: -60px;
  }
  .wrapp-1 h1 {
    text-align: left;
    color: white;
    letter-spacing: 1;
    font-weight: 700;
    font-size: 40px;
  }
  .wrapp-1 p {
    font-size: 17px;
    color: white;
    opacity: 0.6;
    margin-top: 20px;
    line-height: 1.7;
    margin-left: 80px;
    text-align: justify;
  }
  .wrapp-1 a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 900;
    color: black;
    text-shadow: 1px 1px 2px #000000;
  }
  .wrapp-1 span {
    font-weight: 700;
    font-size: 20px;
    color: white;
  }
  .wrapp-1 .btn-6 {
    width: 58%;
    height: 58px;
    background-color: #1f1e29;
    margin-top: 30px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
  }
  .wrapp-1 .btn-6:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .wrapp-2 {
    width: 50%;
    height: 100%;
  }
  .wrapp-2 img {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
    height: 900px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    /* position: absolute;
  top: 195%; */
    margin-top: -5px;
  }
  .cont-1,
  .cont-2,
  .cont-3 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 280px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 1px solid #ffe53b;
    border-radius: 10px;
    margin: 0 auto;
    animation: pulse 1500ms infinite;
    margin-top: 10px;
  }
  @keyframes pulse {
    0% {
      box-shadow: #f28b03;
    }
    60% {
      box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 5px;
    }
  }
  .cont-1 img {
    width: 30%;
    height: 30%;
    
  }
  .cont-1 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
  }
  .cont-1 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 img {
    width: 30%;
    height: 30%;
  }
  .cont-2 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
  }
  .cont-2 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 h5 {
    color: white;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 100;
  }
  .cont-2 .btn-7 {
    width: 70%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .cont-2 .btn-7:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .cont-3 img {
    width: 30%;
    height: 30%;
  }
  .cont-3 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    margin-top: 5px;
  }
  .cont-3 .countdown{
    width: 8rem;
    height:6rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 1rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .lottery {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 260%; */
    margin-top: -60px;
  }
  .lottery h1 {
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: 100;
    opacity: 0.6;
    letter-spacing: 1.5px;
    margin-top: 55px;
  }

  .hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
    margin-top: 22px;
  }
  .lot {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .lottery-1 {
    width: 100%;
    margin-left: 5px;
  }
  .lottery-1 img {
    margin-left: -20px;
    margin-top: 40px;
    padding: 40px 20px;
    width: 100%;
    height: 130%;
  }
  .lottery-2 {
    width: 95%;
    margin-left: 5px;
  }
  .lottery-2 p {
    color: white;
    font-weight: 200;
    font-size: 14px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    text-align: justify;
  }
  .Quick {
    width: 100%;
    height: 1200px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 388%; */
    margin-top: -60px;
  }
  .Quick h1 {
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    margin-top: 50px;
    margin-left: 5px;
  }
  .Quick-1 {
    width: 98%;
    height: 1000px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 20px;
    margin-left: 8px;
    display: flex;
    flex-flow: column;
    border-radius: 20px;
  }
  .Q-Box-1 {
    display: flex;
    flex-flow: row;
  }
  .Q-line {
    width: 25%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 25px;
  }
  .Q-line Button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 20px;
    color: black;
    font-weight: 900;
    border: none;
    background-color: white;
  }
  .line {
    width: 70px;
    border: 0;
    height: 2px;
    margin-left: 7px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
  }
  .Q-paragraph {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -105px;
  }
  .Q-paragraph h1 {
    margin-left: -120px;
    font-size: 25px;
    margin-top: 80px;
  }
  .Q-paragraph p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 50px;
    margin-top: -25px;
    text-align: left;
  }
  .Q-Box-2 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -105px;
  }
  .Q-paragraph-2 h1 {
    margin-left: -120px;
    font-size: 25px;
    margin-top: 90px;
  }
  .Q-paragraph-2 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 50px;
    margin-top: -25px;
    text-align: left;
  }
  .Q-Box-3 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-3 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: -185px;
  }
  .Q-paragraph-3 h1 {
    margin-left: 10px;
    font-size: 25px;
  }
  .Q-paragraph-3 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 120px;
    margin-top: -25px;
    text-align: left;
  }
  .Q-Box-4 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-4 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: -175px;
  }
  .Q-paragraph-4 h1 {
    margin-left: 5px;
    font-size: 25px;
    margin-top: 70px;
  }
  .Q-paragraph-4 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 110px;
    margin-top: -25px;
    text-align: left;
  }
  .footer {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 538%; */
    margin-top: -60px;
  }
  .footer-1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 90%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-1 h1 {
    font-size: 50px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5;
    text-align: center;
  }
  .footer-1 p {
    color: white;
    letter-spacing: 1.5;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 100;
    text-align: center;
  }
  .footer-1 span {
    font-weight: 800;
    color: #f28b03;
    text-shadow: 1px 1px 2px #000000;
  }
  .footer-1 .footer-box {
    display: flex;
    flex-flow: row;
    align-items: center;
    width: 80%;
    height: 100px;
    margin-top: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .footer-1 .footer-box h3 {
    color: white;
    margin-left: 5px;
    font-size: 14px;
  }

  .footer-1 .footer-box button {
    width: 35%;
    height: 45px;
    background-color: white;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 5px;
  }
  .footer .footer-box button:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .footer-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 90%;
    height: 250px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-2 p {
    color: white;
    opacity: 0.6;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1.5px;
    line-height: 2;
  }
  .footer-2 a {
    color: white;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 50px;
    font-weight: 700;
    font-size: 20px;
  }
  .social {
    width: 70%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 50px;
  }
  .social a:hover {
    opacity: 0.6;
  }
  .scroll a {
    text-decoration: none;
    float: right;
    margin-right: 80px;
    margin-top: -80px;
    writing-mode: vertical-rl;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000000;
  }
  .scroll a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    line-height: 35px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 150px;
    top: 50%;
    width: 70%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
  }

  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }

  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  /* The Close Button */
  .close {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close:hover,
  .close:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-body {
    height: 200px;
    padding: 2px 16px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }

  .modal-body a {
    color: #e6e2dd;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
  .modal-body a:hover {
    font-size: 20px;
    color: #ffe53b;
  }
  .modal-body p {
    font-size: 11px;
    opacity: 0.7;
    text-align: center;
    color: #e6e2dd;
    letter-spacing: 2px;
    margin-top: 5px;
  }
  .modal-body .metamask {
    width: 50%;
  }
  .modal-body .metamask img {
    margin-left: 10px;
  }
  .modal-body .wallet {
    width: 50%;
  }
  .modal-body .wallet img {
    margin-left: 10px;
  }

  /* Modal-BuyTicket */
  .popup {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 2; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 10px;
    top: 100%;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: scroll; /* Enable scroll if needed */
  }
  .popup-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 45%;
    height: 550px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }
  .close-popup {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close-popup:hover,
  .close-popup:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }
  .popup-body {
    height: 500px;
    padding: 2px 16px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }
  .popup-body .popup-body-h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .popup-body-1 {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
  }
  .popup-body .popup-body-h-l h2 {
    color: black;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-left: -50px;
    opacity: 0.6;
    margin-top: 20px;
  }
  .popup-body .popup-body-h-r h4 {
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-top: 20px;
  }
  .popup-body-b {
    width: 90%;
    height: 90px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-b input[type="number"] {
    border-radius: 10px;
    width: 90%;
    height: 40px;
    color: black;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    text-align: right;
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #f06500;
  }
  .popup-body-b span {
    color: black;
    font-weight: 700;
    display: block;
    margin-top: 55px;
    margin-left: 220px;
  }
  .popup-body-p {
    width: 90%;
    height: 80px;
    margin-top: 5px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-p .popup-body-l h2 {
    margin-left: 10px;
    font-size: 14px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h4 {
    font-size: 16px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h5 {
    font-size: 17px;
    font-weight: 800;
    margin-right: 10px;
  }
  .btn-8 {
    width: 70%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .btn-8:hover {
    background: #f06500;
    color: white;
    box-shadow: 0 0 50px #f06500, 0 0 200px #f06500;
  }
  .popup p {
    font-size: 15px;
    font-weight: 700;
    margin-left: 20px;
    text-align: justify;
  }
}

@media (min-width: 560px) and (max-width: 768px) {
  .header {
    /* position: absolute; */
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
  }

  .header-1 {
    width: 90%;
    height: 500px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-left: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
    margin-top: 7px;
  }
  .header-1 h1 {
    font-size: 25px;
    line-height: 1.5;
    color: white;
    padding: 10px 10px;
    margin-left: -245px;
  }
  .header-1 p {
    font-size: 20px;
    color: black;
    padding: 20px;
    opacity: 0.6;
    line-height: 1.5;
    text-align: center;
  }
  .header-1 .btn {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 30px 20px;
  }
  .btn > a {
    width: 40%;
    height: 55px;
    background-color: #1f1e29;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
  }
  .btn > a:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .btn .btn-2 {
    width: 45%;
    height: 55px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border: none;
    border-radius: 50px;
    margin-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px;
    cursor: pointer;
  }
  .btn .btn-2:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .header-img {
    width: 49%;
    float: right;
    margin-right: -90px;
    margin-top: 30px;
  }
  .header-img img {
    width: 60%;
    height: 60%;
  }
  .main {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;

    /* position: absolute;
  top: 80%; */
    margin-top: -5px;
  }
 
  .main .box-1 {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    padding: 20px;
    margin-top: -20px;
    width: 80%;
    height: 450px;
    margin-top: 10px;
   
  }
  .main .box-1 h3 {
    color: white;
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .main .box-1 span {
    opacity: 0.5;
  }
  .main .box-2 {
    display: flex;
    justify-content: center;
    flex-flow: column;
    line-height: 2;
    margin-top: -20px;
    width: 80%;
    height: 550px;
    margin-top: 10px;
   
  }
  .main .box-2 .box-2-1 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: 5px;
  }
  .box-2-1 .btn-3 {
    width: 45%;
    height: 45px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 7px;
  }
  .box-2-1 .btn-3:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .box-2 .btn-4 {
    width: 45%;
    height: 50px;
    background-color: #1f1e29;
    margin-left: 170px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;

    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
  .box-2 .btn-4:hover {
    animation: pulse-1 1s infinite;
    transition: 0.3s;
  }
  @keyframes pulse-1 {
    0% {
      transform: scale(1);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  .box-2 .btn-5 {
    width: 70%;
    height: 58px;
    background-color: #1f1e29;
    margin-left: 260px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 50px;
    transition: 0.3s;
  }
  .box-2 .btn-5:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .box-3 {
    margin: 0 auto;
    font-family: "Baloo da 2", cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 300px;
    margin-top: 50px;
   
  }
  .countdown {
    display: flex;
    justify-content: center;
    margin-top: -200px;
    margin-left: -10px;
  }
  .countdown div {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 10rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .countdown div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #17181b;
  }
  .countdown div::after {
    content: attr(data-content);
    font-size: 1.5rem;
    opacity: 0.5;
    font-weight: 400;
    position: absolute;
    bottom: -3rem;
  }
  .bar {
    width: 60%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: white;
    /* position: relative; */
    margin-top: 160px;
    margin-left: -370px;
  }
  .bar-progress {
    width: 40%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: #000;
    /* position: absolute; */
  }
  .wrapper {
    width: 100%;
    height: auto;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    /* position: absolute;
  top: 125%; */
    margin-top: -5px;
  }

  .wrapp-1 {
    width: 95%;
    height: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-left: 4px;
  }
  .wrapp-1 h1 {
    text-align: left;
    color: white;
    letter-spacing: 1;
    font-weight: 700;
    font-size: 30px;
  }
  .wrapp-1 p {
    font-size: 17px;
    color: white;
    opacity: 0.6;
    margin-top: 10px;
    line-height: 1.7;
    text-align: justify;
  }
  .wrapp-1 a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 900;
    color: black;
    text-shadow: 1px 1px 2px #000000;
  }
  .wrapp-1 span {
    font-weight: 700;
    font-size: 20px;
    color: white;
  }
  .wrapp-1 .btn-6 {
    width: 60%;
    height: 58px;
    background-color: #1f1e29;
    margin-top: 30px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
    margin-left: 20px;
  }
  .wrapp-1 .btn-6:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .wrapp-2 {
    width: 70%;
    height: 100%;
    margin-top: -200px;
  }
  .wrapp-2 img {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
    height: 900px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    /* position: absolute;
  top: 195%; */
    margin-top: -5px;
  }
  .cont-1,
  .cont-2,
  .cont-3 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 280px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 1px solid #ffe53b;
    border-radius: 10px;
    margin: 0 auto;
    animation: pulse 1500ms infinite;
    margin-top: 10px;
  }
  @keyframes pulse {
    0% {
      box-shadow: #f28b03;
    }
    60% {
      box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 5px;
    }
  }
  .cont-1 img {
    width: 30%;
    height: 30%;
  }
  .cont-1 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 5px;
  }
  .cont-1 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 img {
    width: 30%;
    height: 30%;
  }
  .cont-2 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    font-size: 15px;
  }
  .cont-2 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 h5 {
    color: white;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 100;
  }
  .cont-2 .btn-7 {
    width: 90%;
    height: 45px;
    background-color: white;
    margin-left: 5px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .cont-2 .btn-7:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .cont-3 img {
    width: 30%;
    height: 30%;
  }
  .cont-3 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    margin-top: 5px;
    font-size: 15px;
  }
  .cont-3 .countdown{
    width: 8rem;
    height:6rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 1rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .lottery {
    width: 100%;
    height: 1100px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 260%; */
    margin-top: -60px;
  }
  .lottery h1 {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 100;
    opacity: 0.6;
    letter-spacing: 1.5px;
    margin-top: 55px;
  }

  .hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
    margin-top: 22px;
  }
  .lot {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .lottery-1 {
    width: 100%;
    margin-left: 5px;
  }
  .lottery-1 img {
    margin-left: -30px;
    margin-top: 40px;
    padding: 40px 20px;
    width: 100%;
    height: 110%;
  }
  .lottery-2 {
    width: 95%;
    margin-left: 3px;
  }
  .lottery-2 p {
    color: white;
    font-weight: 200;
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    text-align: justify;
  }
  .Quick {
    width: 100%;
    height: 1150px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 388%; */
    margin-top: -60px;
  }
  .Quick h1 {
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    margin-top: 50px;
    margin-left: 10px;
  }
  .Quick-1 {
    width: 98%;
    height: 900px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-flow: column;
    border-radius: 20px;
    margin-left: 10px;
  }
  .Q-Box-1 {
    display: flex;
    flex-flow: row;
  }
  .Q-line {
    width: 25%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 25px;
  }
  .Q-line Button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    color: black;
    font-weight: 900;
    border: none;
    background-color: white;
  }
  .line {
    width: 80px;
    border: 0;
    height: 2px;
    margin-left: 7px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
  }
  .Q-paragraph {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -70px;
  }
  .Q-paragraph h1 {
    margin-left: -150px;
    font-size: 20px;
    margin-top: 80px;
  }
  .Q-paragraph p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 20px;
    margin-top: -25px;
  }
  .Q-Box-2 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: -70px;
    margin-top: -10px;
  }
  .Q-paragraph-2 h1 {
    margin-left: -150px;
    font-size: 20px;
    margin-top: 110px;
  }
  .Q-paragraph-2 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 20px;
    margin-top: -25px;
  }
  .Q-Box-3 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-3 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: -70px;
  }
  .Q-paragraph-3 h1 {
    margin-left: -180px;
    font-size: 20px;
    margin-top: 50px;
  }
  .Q-paragraph-3 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 20px;
    margin-top: -25px;
  }
  .Q-Box-4 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-4 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: -55px;
  }
  .Q-paragraph-4 h1 {
    margin-left: -180px;
    font-size: 20px;
    margin-top: 50px;
  }
  .Q-paragraph-4 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 10px;
    margin-top: -25px;
  }
  .footer {
    width: 100%;
    height: 1300px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 538%; */
    margin-top: -60px;
  }
  .footer-1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-1 h1 {
    font-size: 30px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5;
  }
  .footer-1 p {
    color: white;
    letter-spacing: 1.5;
    margin-top: 30px;
    font-size: 15px;
    font-weight: 100;
    text-align: center;
  }
  .footer-1 span {
    font-weight: 800;
    color: #f28b03;
    text-shadow: 1px 1px 2px #000000;
  }
  .footer-1 .footer-box {
    display: flex;
    flex-flow: row;
    align-items: center;
    width: 80%;
    height: 100px;
    margin-top: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .footer-1 .footer-box h3 {
    color: white;
    margin-left: 15px;
    font-size: 13px;
  }

  .footer-1 .footer-box button {
    width: 35%;
    height: 45px;
    background-color: white;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 5px;
  }
  .footer .footer-box button:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .footer-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 90%;
    height: 400px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-2 p {
    color: white;
    opacity: 0.6;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1.5px;
    line-height: 2;
  }
  .footer-2 a {
    color: white;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 700;
    font-size: 15px;
  }
  .social {
    width: 90%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    transition: 0.3s;
    cursor: pointer;
    margin-top: -50px;
  }
  .social a:hover {
    opacity: 0.6;
  }
  .scroll a {
    text-decoration: none;
    float: right;
    margin-right: 30px;
    margin-top: -130px;
    writing-mode: vertical-rl;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000000;
  }
  .scroll a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    line-height: 35px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 120px;
    top: 180%;
    width: 70%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
  }

  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }

  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  /* The Close Button */
  .close {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close:hover,
  .close:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-body {
    height: 200px;
    padding: 2px 16px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }

  .modal-body a {
    color: #e6e2dd;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
  .modal-body a:hover {
    font-size: 20px;
    color: #ffe53b;
  }
  .modal-body p {
    font-size: 11px;
    opacity: 0.7;
    text-align: center;
    color: #e6e2dd;
    letter-spacing: 2px;
    margin-top: 5px;
  }
  .modal-body .metamask {
    width: 50%;
  }
  .modal-body .metamask img {
    margin-left: 10px;
  }
  .modal-body .wallet {
    width: 50%;
  }
  .modal-body .wallet img {
    margin-left: 10px;
  }

  /* Modal-BuyTicket */
  .popup {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 2; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 70px;
    top: 150%;
    width: 80%; /* Full width */
    height: 100%; /* Full height */
    overflow: scroll; /* Enable scroll if needed */
  }
  .popup-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 70%;
    height: 550px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }
  .close-popup {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close-popup:hover,
  .close-popup:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }
  .popup-body {
    height: 500px;
    padding: 2px 16px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }
  .popup-body .popup-body-h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .popup-body-1 {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
  .popup-body .popup-body-h-l h2 {
    color: black;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-left: -50px;
    opacity: 0.6;
    margin-top: 20px;
  }
  .popup-body .popup-body-h-r h4 {
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-top: 20px;
  }
  .popup-body-b {
    width: 90%;
    height: 90px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-b input[type="number"] {
    border-radius: 10px;
    width: 90%;
    height: 40px;
    color: black;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    text-align: right;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #f06500;
  }
  .popup-body-b span {
    color: black;
    font-weight: 700;
    display: block;
    margin-top: 55px;
    margin-left: 170px;
  }
  .popup-body-p {
    width: 90%;
    height: 80px;
    margin-top: 5px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-p .popup-body-l h2 {
    margin-left: 10px;
    font-size: 17px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h4 {
    font-size: 16px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h5 {
    font-size: 17px;
    font-weight: 800;
    margin-right: 10px;
  }
  .btn-8 {
    width: 70%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .btn-8:hover {
    background: #f06500;
    color: white;
    box-shadow: 0 0 50px #f06500, 0 0 200px #f06500;
  }
  .popup p {
    font-size: 15px;
    font-weight: 700;
    text-align: justify;
  }
}

@media (min-width: 480px) and (max-width: 560px) {
  .header {
    /* position: absolute; */
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
  }

  .header-1 {
    width: 95%;
    height: 400px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-left: -5px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
  }
  .header-1 h1 {
    font-size: 25px;
    line-height: 1.5;
    color: white;
    padding: 20px 10px;
    margin-left: -25px;
  }
  .header-1 p {
    font-size: 20px;
    color: black;
    padding: 20px;
    opacity: 0.6;
    line-height: 1.5;
    text-align: center;
  }
  .header-1 .btn {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 30px 20px;
  }
  .btn > a {
    width: 40%;
    height: 55px;
    background-color: #1f1e29;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
  }
  .btn > a:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .btn .btn-2 {
    width: 45%;
    height: 55px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border: none;
    border-radius: 50px;
    margin-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px;
    cursor: pointer;
  }
  .btn .btn-2:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .header-img {
    width: 49%;
    float: right;
    margin-right: -90px;
    margin-top: 30px;
  }
  .header-img img {
    width: 60%;
    height: 60%;
  }
  .main {
    width: 100%;
    height: 900px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-top: -5px;
  }

  .main .box-1 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    line-height: 2;
    padding: 10px;
    width: 90%;
    height: 150px;
  }
  .main .box-1 h3 {
    color: white;
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .main .box-1 span {
    opacity: 0.5;
  }
  .main .box-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    margin-top: 10px;
    width: 90%;
    height: 550px;
    
  }
  .main .box-2 .box-2-1 {
    display: flex;
    flex-flow: row;
    width: 100%;
    margin-left: 50px;
  }
  .box-2-1 .btn-3 {
    width: 50%;
    height: 45px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-left: 10px;
    border: none;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
  }
  .box-2-1 .btn-3:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .box-2 .btn-4 {
    width: 60%;
    height: 45px;
    background-color: #1f1e29;
    margin-left: 80px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;

    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
  .box-2 .btn-4:hover {
    animation: pulse-1 1s infinite;
    transition: 0.3s;
  }
  @keyframes pulse-1 {
    0% {
      transform: scale(1);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  .box-2 .btn-5 {
    width: 70%;
    height: 58px;
    background-color: #1f1e29;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 10px;
    margin-left: 100px;
    transition: 0.3s;
  }
  .box-2 .btn-5:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .box-3 {
    margin: 0 auto;
    margin-top: 10px;
    font-family: "Ballo da 2", cursive;
    text-align: center;
    width: 90%;
    height: 320px;
  }
  .countdown {
    display: flex;
    justify-content: center;
    margin-top: -150px;
  }
  .countdown div {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 10rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .countdown div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #17181b;
  }
  .countdown div::after {
    content: attr(data-content);
    font-size: 1.5rem;
    opacity: 0.5;
    font-weight: 400;
    position: absolute;
    bottom: -3rem;
  }
  .bar {
    width: 70%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: white;
    /* position: relative; */
    margin-top: 30px;
    margin-left: 70px;
  }
  .bar-progress {
    width: 60%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: #000;
    /* position: absolute; */
  }
  .wrapper {
    width: 100%;
    height: auto;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    /* position: absolute;
  top: 125%; */
    margin-top: -5px;
  }

  .wrapp-1 {
    width: 95%;
    height: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-left: 5px;
  }
  .wrapp-1 h1 {
    text-align: left;
    color: white;
    letter-spacing: 1;
    font-weight: 700;
    font-size: 30px;
  }
  .wrapp-1 p {
    font-size: 17px;
    color: white;
    opacity: 0.6;
    margin-top: 5px;
    line-height: 1.7;
    text-align: justify;
  }
  .wrapp-1 a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 900;
    color: black;
    text-shadow: 1px 1px 2px #000000;
  }
  .wrapp-1 span {
    font-weight: 700;
    font-size: 20px;
    color: white;
  }
  .wrapp-1 .btn-6 {
    width: 78%;
    height: 58px;
    background-color: #1f1e29;
    margin-top: 10px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
  }
  .wrapp-1 .btn-6:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .wrapp-2 {
    width: 50%;
    height: 100px;
    margin-top: -180px;
  }
  .wrapp-2 img {
    width: 100%;
    height: 100%;
  }
  .container {
    width: 100%;
    height: 700px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: absolute;
  top: 195%; */
    margin-top: -5px;
  }
  .cont-1,
  .cont-2,
  .cont-3 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 280px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 1px solid #ffe53b;
    border-radius: 10px;
    margin: 0 auto;
    animation: pulse 1500ms infinite;
    margin-top: 5px;
  }
  @keyframes pulse {
    0% {
      box-shadow: #f28b03;
    }
    60% {
      box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 5px;
    }
  }
  .cont-1 img {
    width: 30%;
    height: 30%;
  }
  .cont-1 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 5px;
  }
  .cont-1 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 img {
    width: 30%;
    height: 30%;
  }
  .cont-2 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    font-size: 15px;
  }
  .cont-2 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 h5 {
    color: white;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 100;
  }
  .cont-2 .btn-7 {
    width: 90%;
    height: 45px;
    background-color: white;
    margin-left: 5px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .cont-2 .btn-7:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .cont-3 img {
    width: 30%;
    height: 30%;
  }
  .cont-3 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    margin-top: 5px;
    font-size: 15px;
  }
  .cont-3 .countdown{
    width: 7rem;
    height:5rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 1rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .lottery {
    width: 100%;
    height: 1100px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 260%; */
    margin-top: -60px;
  }
  .lottery h1 {
    text-align: center;
    color: white;
    font-size: 30px;
    font-weight: 100;
    opacity: 0.6;
    letter-spacing: 1.5px;
    margin-top: 55px;
  }

  .hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
    margin-top: 22px;
  }
  .lot {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .lottery-1 {
    width: 100%;
    margin-left: 5px;
  }
  .lottery-1 img {
    margin-left: -10px;
    margin-top: 40px;
    padding: 40px 20px;
    width: 100%;
    height: 130%;
  }
  .lottery-2 {
    width: 90%;
    margin-left: -2px;
  }
  .lottery-2 p {
    color: white;
    font-weight: 200;
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    text-align: justify;
  }
  .Quick {
    width: 100%;
    height: 1300px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 388%; */
    margin-top: -60px;
  }
  .Quick h1 {
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    margin-top: 50px;
    margin-left: -10px;
  }
  .Quick-1 {
    width: 95%;
    height: 1000px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    flex-flow: column;
    border-radius: 20px;
  }
  .Q-Box-1 {
    display: flex;
    flex-flow: row;
  }
  .Q-line {
    width: 25%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 25px;
  }
  .Q-line Button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 10px;
    color: black;
    font-weight: 900;
    border: none;
    background-color: white;
  }
  .line {
    width: 80px;
    border: 0;
    height: 2px;
    margin-left: 7px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
  }
  .Q-paragraph {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: 30px;
  }
  .Q-paragraph h1 {
    margin-left: -150px;
    font-size: 20px;
    margin-top: 90px;
  }
  .Q-paragraph p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: -30px;
    margin-top: -25px;
  }
  .Q-Box-2 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 55%;
    margin-left: 30px;
    margin-top: -10px;
  }
  .Q-paragraph-2 h1 {
    margin-left: -140px;
    font-size: 20px;
    margin-top: 120px;
  }
  .Q-paragraph-2 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: -30px;
    margin-top: -25px;
  }
  .Q-Box-3 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-3 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: 10px;
  }
  .Q-paragraph-3 h1 {
    margin-left: -110px;
    font-size: 20px;
    margin-top: 50px;
  }
  .Q-paragraph-3 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: -10px;
    margin-top: -25px;
  }
  .Q-Box-4 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-4 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 70%;
    margin-left: 60px;
  }
  .Q-paragraph-4 h1 {
    margin-left: -150px;
    font-size: 20px;
    margin-top: 70px;
  }
  .Q-paragraph-4 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: -50px;
    margin-top: -25px;
  }
  .footer {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 538%; */
    margin-top: -60px;
  }
  .footer-1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-1 h1 {
    font-size: 25px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5;
  }
  .footer-1 p {
    color: white;
    letter-spacing: 1.5;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 100;
    text-align: center;
  }
  .footer-1 span {
    font-weight: 800;
    color: #f28b03;
    text-shadow: 1px 1px 2px #000000;
  }
  .footer-1 .footer-box {
    display: flex;
    flex-flow: row;
    align-items: center;
    width: 90%;
    height: 100px;
    margin-top: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .footer-1 .footer-box h3 {
    color: white;
    margin-left: 5px;
    font-size: 13px;
  }

  .footer-1 .footer-box button {
    width: 40%;
    height: 45px;
    background-color: white;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 5px;
  }
  .footer .footer-box button:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .footer-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-2 p {
    color: white;
    opacity: 0.6;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1.5px;
    line-height: 2;
  }
  .footer-2 a {
    color: white;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 700;
    font-size: 15px;
  }
  .social {
    width: 90%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    transition: 0.3s;
    cursor: pointer;
  }
  .social a:hover {
    opacity: 0.6;
  }
  .scroll a {
    text-decoration: none;
    float: right;
    margin-right: 20px;
    margin-top: -130px;
    writing-mode: vertical-rl;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000000;
  }
  .scroll a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    line-height: 35px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 30px;
    top: 120%;
    width: 90%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
  }

  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }

  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  /* The Close Button */
  .close {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close:hover,
  .close:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-body {
    height: 200px;
    padding: 2px 16px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }

  .modal-body a {
    color: #e6e2dd;
    font-size: 18px;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
  .modal-body a:hover {
    font-size: 20px;
    color: #ffe53b;
  }
  .modal-body p {
    font-size: 11px;
    opacity: 0.7;
    text-align: center;
    color: #e6e2dd;
    letter-spacing: 2px;
    margin-top: 5px;
  }
  .modal-body .metamask {
    width: 50%;
  }
  .modal-body .metamask img {
    margin-left: 10px;
  }
  .modal-body .wallet {
    width: 50%;
  }
  .modal-body .wallet img {
    margin-left: 10px;
  }

  /* Modal-BuyTicket */
  .popup {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 2; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 30px;
    top: 120%;
    width: 90%; /* Full width */
    height: 100%; /* Full height */
    overflow: scroll; /* Enable scroll if needed */
  }
  .popup-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 70%;
    height: 500px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }
  .close-popup {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close-popup:hover,
  .close-popup:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }
  .popup-body {
    height: 500px;
    padding: 2px 16px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }
  .popup-body .popup-body-h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .popup-body-1 {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
  .popup-body .popup-body-h-l h2 {
    color: black;
    font-size: 25px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-left: -50px;
    opacity: 0.6;
    margin-top: 20px;
  }
  .popup-body .popup-body-h-r h4 {
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-top: 20px;
  }
  .popup-body-b {
    width: 90%;
    height: 90px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-b input[type="number"] {
    border-radius: 10px;
    width: 90%;
    height: 40px;
    color: black;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    text-align: right;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #f06500;
  }
  .popup-body-b span {
    color: black;
    font-weight: 700;
    display: block;
    margin-top: 55px;
    margin-left: 170px;
  }
  .popup-body-p {
    width: 90%;
    height: 80px;
    margin-top: 5px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .popup-body-p .popup-body-l h2 {
    margin-left: 10px;
    font-size: 17px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h4 {
    font-size: 16px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h5 {
    font-size: 17px;
    font-weight: 800;
    margin-right: 10px;
  }
  .btn-8 {
    width: 70%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .btn-8:hover {
    background: #f06500;
    color: white;
    box-shadow: 0 0 50px #f06500, 0 0 200px #f06500;
  }
  .popup p {
    font-size: 15px;
    font-weight: 700;
    text-align: justify;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .header {
    /* position: absolute; */
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
  }

  .header-1 {
    width: 95%;
    height: 400px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin-left: -5px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
  }
  .header-1 h1 {
    font-size: 20px;
    line-height: 1.5;
    color: white;
    padding: 20px 10px;
    margin-left: -15px;
  }
  .header-1 p {
    font-size: 20px;
    color: black;
    padding: 20px;
    opacity: 0.6;
    line-height: 1.5;
    text-align: center;
  }
  .header-1 .btn {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    padding: 30px 20px;
  }
  .btn > a {
    width: 40%;
    height: 55px;
    background-color: #1f1e29;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
  }
  .btn > a:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .btn .btn-2 {
    width: 45%;
    height: 55px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    border: none;
    border-radius: 50px;
    margin-left: 20px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px;
    cursor: pointer;
  }
  .btn .btn-2:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .header-img {
    width: 49%;
    float: right;
    margin-right: -90px;
    margin-top: 30px;
  }
  .header-img img {
    width: 60%;
    height: 60%;
  }
  .main {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: -5px;
  }
  .main .box-1 {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    line-height: 2;
    padding: 10px;
    margin-top: 10px;
    margin-left: -5px;
    width: 80%;
    height: 200px;
    margin-top: -70px;
   
  }
  .main .box-1 h3 {
    color: white;
    font-weight: 100;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .main .box-1 span {
    opacity: 0.5;
  }
  .main .box-2 {
    display: flex;
    justify-content: center;
    flex-flow: column;
    line-height: 2;
    width: 80%;
    height: 450px;
    margin-top: 10px;
    
  }
  .main .box-2 .box-2-1 {
    display: flex;
    flex-flow: column;
    margin-top: -10px;
    width: 100%;
  }
  .box-2-1 .btn-3 {
    width: 70%;
    height: 45px;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    background-size: 300px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
    margin-top: 5px;
    margin-left: 50px;
    border: none;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
  }
  .box-2-1 .btn-3:hover {
    background-position: -200%;
    transition: background 300ms ease-in-out;
  }
  .box-2 .btn-4 {
    width: 70%;
    height: 45px;
    background-color: #1f1e29;
    margin-left: 50px;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin-top: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
  .box-2 .btn-4:hover {
    animation: pulse-1 1s infinite;
    transition: 0.3s;
  }
  @keyframes pulse-1 {
    0% {
      transform: scale(1);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  .box-2 .btn-5 {
    width: 95%;
    height: 58px;
    background-color: #1f1e29;
    margin-left: 260px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    margin: 0 auto;
    margin-top: 20px;
    transition: 0.3s;
  }
  .box-2 .btn-5:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .box-3 {
    margin: 0 auto;
    font-family: "Baloo da 2", cursive;
    text-align: center;
    width: 80%;
    height: 200px;
    margin-top: 10px;
   
  }
  .countdown {
    display: flex;
    justify-content: center;
    margin-top: -100px;
  }
  .countdown div {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 10rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .countdown div::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.15rem;
    background-color: #17181b;
  }
  .countdown div::after {
    content: attr(data-content);
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 400;
    position: absolute;
    bottom: -3rem;
  }
  .bar {
    width: 80%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: white;
    /* position: relative; */
    margin-top: 30px;
    margin-left: 40px;
  }
  .bar-progress {
    width: 60%;
    height: 7px;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    background-color: #000;
    /* position: absolute; */
  }
  .wrapper {
    width: 100%;
    height: auto;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    /* position: absolute;
  top: 125%; */
    margin-top: -5px;
  }

  .wrapp-1 {
    width: 90%;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-left: 10px;
  }
  .wrapp-1 h1 {
    text-align: left;
    color: white;
    letter-spacing: 1;
    font-weight: 700;
    font-size: 30px;
  }
  .wrapp-1 p {
    font-size: 17px;
    color: white;
    opacity: 0.6;
    margin-top: 10px;
    line-height: 1.7;
    text-align: justify;
    margin-left: -7px;
  }
  .wrapp-1 a {
    font-size: 17px;
    text-decoration: none;
    font-weight: 900;
    color: black;
    text-shadow: 1px 1px 2px #000000;
  }
  .wrapp-1 span {
    font-weight: 700;
    font-size: 20px;
    color: white;
  }
  .wrapp-1 .btn-6 {
    width: 85%;
    height: 58px;
    background-color: #1f1e29;
    margin-top: 30px;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    transition: 0.3s;
    cursor: pointer;
  }
  .wrapp-1 .btn-6:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .wrapp-2 {
    width: 50%;
    height: 100%;
  }
  .wrapp-2 img {
    width: 100%;
    height: 100%;
    margin-top: -850px;
  }
  .container {
    width: 100%;
    height: 900px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    display: flex;
    flex-flow: column;
    align-items: center;
    /* position: absolute;
  top: 195%; */
    margin-top: -5px;
  }
  .cont-1,
  .cont-2,
  .cont-3 {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 280px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 1px solid #ffe53b;
    border-radius: 10px;
    margin: 0 auto;
    animation: pulse 1500ms infinite;
    margin-top: 12px;
  }
  @keyframes pulse {
    0% {
      box-shadow: #f28b03;
    }
    60% {
      box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 5px;
    }
  }
  .cont-1 img {
    width: 30%;
    height: 30%;
  }
  .cont-1 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    font-size: 15px;
    margin-top: 5px;
  }
  .cont-1 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 img {
    width: 30%;
    height: 30%;
  }
  .cont-2 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    font-size: 15px;
  }
  .cont-2 h4 {
    color: white;
    margin-top: 20px;
    font-size: 20px;
  }
  .cont-2 h5 {
    color: white;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 100;
  }
  .cont-2 .btn-7 {
    width: 70%;
    height: 45px;
    background-color: white;
    margin-left: 5px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .cont-2 .btn-7:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .cont-3 img {
    width: 30%;
    height: 30%;
  }
  .cont-3 h2 {
    font-weight: 100;
    color: white;
    letter-spacing: 1px;
    margin-top: 5px;
    font-size: 15px;
  }
  .cont-3 .countdown{
    width: 6rem;
    height:5rem;
    background: linear-gradient(
      to bottom,
      rgba(255, 123, 0, 0.9) 50%,
      rgba(255, 255, 255, 0.9) 0
    );
    margin: 1rem 1rem 2rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
    position: relative;
  }
  .lottery {
    width: 100%;
    height: 1150px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 260%; */
    margin-top: -60px;
  }
  .lottery h1 {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 100;
    opacity: 0.6;
    letter-spacing: 1.5px;
    margin-top: 55px;
  }

  .hr {
    border: 0;
    height: 2px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
    margin-top: 22px;
  }
  .lot {
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .lottery-1 {
    width: 100%;
    margin-left: 5px;
  }
  .lottery-1 img {
    margin-left: -10px;
    margin-top: 40px;
    padding: 40px 20px;
    width: 100%;
    height: 130%;
  }
  .lottery-2 {
    width: 90%;
    margin-left: -2px;
  }
  .lottery-2 p {
    color: white;
    font-weight: 200;
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 1.5px;
    text-align: justify;
  }
  .Quick {
    width: 100%;
    height: 1100px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    /* position: absolute;
  top: 388%; */
    margin-top: -60px;
  }
  .Quick h1 {
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 22px;
    margin-top: 50px;
    margin-left: -10px;
  }
  .Quick-1 {
    width: 95%;
    height: 1000px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 10px;
    display: flex;
    flex-flow: column;
    border-radius: 20px;
  }
  .Q-Box-1 {
    display: flex;
    flex-flow: row;
  }
  .Q-line {
    width: 20%;
    display: flex;
    flex-flow: row;
    align-items: center;
    margin-top: 25px;
  }
  .Q-line Button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left:2px;
    color: black;
    font-weight: 900;
    border: none;
    background-color: white;
  }
  .line {
    width: 80px;
    border: 0;
    height: 2px;
    margin-left: 7px;
    background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0)
    );
  }
  .Q-paragraph {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    margin-left: -40px;
  }
  .Q-paragraph h1 {
    margin-left: -140px;
    font-size: 18px;
    margin-top: 100px;
  }
  .Q-paragraph p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 35px;
    margin-top: -25px;
  }
  .Q-Box-2 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    margin-left: -90px;
   
  }
  .Q-paragraph-2 h1 {
    margin-left: -80px;
    font-size: 18px;
    margin-top: 100px;
  }
  .Q-paragraph-2 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left:90px;
    margin-top: -25px;
  }
  .Q-Box-3 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-3 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    margin-left: -40px;
  }
  .Q-paragraph-3 h1 {
    margin-left: -60px;
    font-size: 18px;
    margin-top: 50px;
  }
  .Q-paragraph-3 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left: 40px;
    margin-top: -25px;
  }
  .Q-Box-4 {
    display: flex;
    flex-flow: row;
  }
  .Q-paragraph-4 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    margin-left: -70px;
  }
  .Q-paragraph-4 h1 {
    margin-left: -10px;
    font-size: 18px;
    margin-top: 70px;
  }
  .Q-paragraph-4 p {
    color: white;
    opacity: 0.6;
    line-height: 1.5;
    margin-left:70px;
    margin-top: -25px;
  }
  .footer {
    width: 100%;
    height: 1000px;
    background-image: linear-gradient(84deg, #f28b03, #f06500);
    margin-top: -60px;
  }
  .footer-1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    height: 300px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-1 h1 {
    font-size: 25px;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5;
  }
  .footer-1 p {
    color: white;
    letter-spacing: 1.5;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 100;
    text-align: center;
  }
  .footer-1 span {
    font-weight: 800;
    color: #f28b03;
    text-shadow: 1px 1px 2px #000000;
  }
  .footer-1 .footer-box {
    display: flex;
    flex-flow: row;
    align-items: center;
    width: 95%;
    height: 100px;
    margin-top: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
  }
  .footer-1 .footer-box h3 {
    color: white;
    font-size: 12px;
    margin-left: 5px;
  }

  .footer-1 .footer-box button {
    width: 35%;
    height: 45px;
    background-color: white;
    border: none;
    color: #f06500;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 5px;
  }
  .footer .footer-box button:hover {
    box-shadow: 0 0 10px 0 #ffe53b inset, 0 0 20px 2px #ff005b;
    border: 3px solid #ffe53b;
  }
  .footer-2 {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    height: 550px;
    margin: 0 auto;
    margin-top: 50px;
  }
  .footer-2 p {
    color: white;
    opacity: 0.6;
    font-size: 15px;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 1.5px;
    line-height: 2;
  }
  .footer-2 a {
    color: white;
    letter-spacing: 1.5px;
    text-decoration: none;
    margin-top: 30px;
    font-weight: 700;
    font-size: 13px;
  }
  .social {
    width: 90%;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    transition: 0.3s;
    cursor: pointer;
    margin-top: -172px;
  }
  .social a:hover {
    opacity: 0.6;
  }
  .scroll a {
    text-decoration: none;
    float: right;
    margin-right: 10px;
    margin-top: -100px;
    writing-mode: vertical-rl;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000000;
  }
  .scroll a i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    line-height: 35px;
    text-align: center;
    text-shadow: 1px 1px 2px #000000;
  }
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 10px;
    top: 150%;
    width: 95%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
  }

  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 100%;
    height: 200px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }

  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  /* The Close Button */
  .close {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close:hover,
  .close:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }

  .modal-body {
    height: 200px;
    padding: 2px 16px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }

  .modal-body a {
    color: #e6e2dd;
    font-size: 15px;
    text-align: center;
    display: block;
    margin-top: 10px;
  }
  .modal-body a:hover {
    font-size: 20px;
    color: #ffe53b;
  }
  .modal-body p {
    font-size: 11px;
    opacity: 0.7;
    text-align: center;
    color: #e6e2dd;
    letter-spacing: 2px;
    margin-top: 5px;
  }
  .modal-body .metamask {
    width: 50%;
  }
  .modal-body .metamask img {
    margin-left: 10px;
    margin-top: -1px;
  }
  .modal-body .wallet {
    width: 50%;
  }
  .modal-body .wallet img {
    margin-left: 10px;
  }

  /* Modal-BuyTicket */
  .popup {
    display: none; /* Hidden by default */
    position: absolute; /* Stay in place */
    z-index: 2; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    right: 3px;
    top: 150%;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: scroll; /* Enable scroll if needed */
  }
  .popup-content {
    position: relative;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
    margin: auto;
    padding: 0;
    margin-top: -30px;
    width: 80%;
    height: 590px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
  }
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }

  @keyframes animatetop {
    from {
      top: -300px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }
  .close-popup {
    color: #f06500;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
    text-shadow: 1px 1px 2px #000000;
  }

  .close-popup:hover,
  .close-popup:focus {
    color: #ffe53b;
    text-decoration: none;
    cursor: pointer;
  }
  .popup-body {
    height: 500px;
    padding: 2px 16px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: #f28b03;
    background-image: -moz-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: -webkit-linear-gradient(top, #f28b03 0%, #f06500 100%);
    background-image: linear-gradient(to bottom, #f28b03 0%, #f06500 100%);
  }
  .popup-body .popup-body-h {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .popup-body-1 {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
  .popup-body .popup-body-h-l h2 {
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-left: 10px;
    opacity: 0.6;
    margin-top: 80px;
  }
  .popup-body .popup-body-h-r h4 {
    color: black;
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-top: 80px;
  }
  .popup-body-b {
    width: 100%;
    height: 90px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
  }
  .popup-body-b input[type="number"] {
    border-radius: 10px;
    width: 95%;
    height: 40px;
    color: black;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    outline: none;
    text-align: right;
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid #f06500;
  }
  .popup-body-b span {
    color: black;
    font-weight: 700;
    display: block;
    margin-top: 55px;
    margin-left: 200px;
  }
  .popup-body-p {
    width: 100%;
    height: 80px;
    margin-top: 5px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
  }
  .popup-body-p .popup-body-l h2 {
    margin-left: 10px;
    font-size: 12px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h4 {
    font-size: 12px;
    opacity: 0.6;
  }
  .popup-body-p .popup-body-r h5 {
    font-size: 14px;
    font-weight: 800;
    margin-right: 10px;
  }
  .btn-8 {
    width: 75%;
    height: 45px;
    background-color: white;
    margin-left: 10px;
    border: none;
    color: #f06500;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1;
    border-radius: 50px;
    padding: 10px;
    cursor: pointer;
    margin-top: 5px;
  }
  .btn-8:hover {
    background: #f06500;
    color: white;
    box-shadow: 0 0 50px #f06500, 0 0 200px #f06500;
  }
  .popup p {
    font-size: 15px;
    font-weight: 700;
    text-align: justify;
  }
}
