* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background-color: #f9f9f9;
  color: #ffffff;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1200px) {
  body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #FEDA0A;
}

nav.sidebar {
  background-color: #000000;
  width: 23.5%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0.5rem 2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "montserrat", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
nav.sidebar .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10px;
  gap: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 3rem;
}
nav.sidebar .header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav.sidebar .header .logo img {
  width: 100%;
}
nav.sidebar .content {
  min-height: 40%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 2rem;
}
nav.sidebar .content .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
nav.sidebar .content .nav-links li {
  list-style: none;
}
nav.sidebar .content .nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 14.4px;
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
nav.sidebar .content .nav-links li a:hover {
  color: #FEDA0A;
}
nav.sidebar .content .nav-links li a img {
  width: 30px;
}
@media (max-width: 768px) {
  nav.sidebar {
    width: 100%;
    height: 10vh;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  nav.sidebar .header {
    width: 50%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
  nav.sidebar .header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0rem;
  }
  nav.sidebar .header .logo img {
    width: 80%;
  }
  nav.sidebar .content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: none;
    z-index: 223;
    width: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10px 25px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  nav.sidebar .content .nav-links {
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  nav.sidebar .content .nav-links span {
    display: none;
  }
  nav.sidebar .content .nav-links li a {
    font-size: 32px;
    color: #D5D4D5;
  }
  nav.sidebar .content .nav-links li a i.bx {
    font-size: 24px;
  }
}

.main-body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main-body .container {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}
.main-body .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg.jpg);
  background-size: cover;
  background-position: center;
  -webkit-filter: blur(1px);
          filter: blur(1px); /* Adjust the blur intensity here */
  z-index: -1;
}
.main-body .container .overlay {
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.411);
  height: 100%;
}
.main-body .container .content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  gap: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3rem;
}
.main-body .container .content h2 {
  font-size: 56px;
  color: white;
  font-weight: normal;
  font-family: "Poppins", sans-serif;
}
.main-body .container .content p {
  color: white;
  text-align: center;
}
.main-body .container .content .countdown {
  font-size: 48px;
  color: #FFD628;
  font-weight: 900;
}
.main-body .container .content .email-signup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-body .container .content .email-signup p {
  color: white;
  text-align: center;
}
.main-body .container .content .email-signup form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.main-body .container .content .email-signup input {
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 68%;
}
.main-body .container .content .email-signup button {
  min-width: 30%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.6rem 1rem;
  color: #26292e;
  border: none;
  border-radius: 5px;
  background: #FEDA0A;
  cursor: pointer;
}
.main-body .container .content .social-links {
  display: none;
}
@media (max-width: 768px) {
  .main-body .container .content {
    padding: 1rem;
    gap: 0.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
  .main-body .container .content h2 {
    font-size: 36.8px;
    text-align: center;
  }
  .main-body .container .content p {
    color: white;
    font-size: 12.8px;
    text-align: center;
  }
  .main-body .container .content .countdown {
    font-size: 35.2px;
    color: #FFD628;
    padding: 1rem 0;
  }
  .main-body .container .content .email-signup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .main-body .container .content .email-signup input {
    padding: 0.6rem;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 14.4px;
  }
  .main-body .container .content .email-signup button {
    padding: 0.6rem 1rem;
    color: #26292e;
    border: none;
    border-radius: 5px;
    font-size: 14.4px;
    background: #FEDA0A;
  }
  .main-body .container .content .social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
    padding: 0.5rem;
  }
  .main-body .container .content .social-links li {
    list-style: none;
  }
  .main-body .container .content .social-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14.4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.3rem;
  }
  .main-body .container .content .social-links li a img {
    width: 35px;
  }
  .main-body .container .content .social-links li a span {
    display: none;
  }
}
@media (max-width: 768px) {
  .main-body .container {
    height: 90%;
  }
}
@media (max-width: 768px) {
  .main-body {
    height: 90vh;
    overflow-y: scroll;
  }
}
.main-body footer.footer {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #000000;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  bottom: 0;
  margin-top: auto;
  z-index: 2;
}
.main-body footer.footer p {
  font-family: "Montserrat", sans-serif;
  font-size: 12.96px;
  font-weight: 300;
  padding: 1rem;
  color: white;
  text-align: center;
}
@media (min-width: 1200px) {
  .main-body footer.footer p {
    padding: 0.5rem;
  }
}
@media (max-width: 768px) {
  .main-body footer.footer {
    height: 10%;
  }
}/*# sourceMappingURL=main.css.map */