@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300&family=Open+Sans:wght@500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear; }

:root {
  --black: #16161d;
  --light-color: #808080;
  --light-bg: #f5f5f8;
  --google-color: #4285f4;
  --twitter-color: #1da1f2;
  --youtube-color: #ff0000;
  --linkedin-color: #0e76a8;
  --discord-color: #5865F2; }

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem; }

section, footer {
  padding: 5rem 9%; }

.btn {
  color: white;
  font-weight: 400;
  font-size: 1.7rem;
  border: 0.1rem solid white;
  border-radius: 10rem;
  padding: 1.5rem 4rem; }

.btn:hover {
  background: var(--black); }

.heading {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 5rem;
  text-align: center; }

@media (max-width: 1200px) {
  section {
    padding: 3rem 2rem; } }
@media (max-width: 991px) {
  html {
    font-size: 60%; } }
@media (max-width: 450px) {
  html {
    font-size: 55%; } }
/* header starts */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 5rem 9%;
  display: flex;
  align-items: center;
  z-index: 100; }
  .header .logo {
    margin-right: auto;
    font-size: 2rem;
    color: white;
    font-weight: 700; }
    .header .logo span {
      font-weight: normal; }
  .header .navbar a {
    font-size: 1.7rem;
    color: white;
    margin-left: 3rem; }
  .header .menu {
    font-size: 2rem;
    color: white;
    display: none;
    cursor: pointer; }

.header.active {
  background: white;
  padding: 3rem 9%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); }
  .header.active .logo {
    color: var(--black); }
  .header.active .navbar a {
    color: var(--black); }
  .header.active .menu {
    color: var(--black); }

@media (max-width: 1200px) {
  .header, .header.active {
    padding: 2rem; } }
@media (max-width: 768px) {
  .header .menu {
    display: block; }
  .header .navbar {
    position: fixed;
    top: 6.4rem;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    flex-flow: column;
    text-align: center;
    transform: translateX(100%); }
    .header .navbar a {
      color: var(--black);
      margin: 0;
      font-size: 2rem;
      margin: 2rem 0; }
  .header .navbar.show {
    transform: translateX(0); } }
/* header ends */
/* home starts */
.home {
  height: 100vh;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center; }
  .home h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-top: 4rem;
    margin-bottom: 7rem;
    color: #fff;
    line-height: 1.6; }
  .home h2 {
    color: white;
    font-size: 2rem; }
  .home p {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-transform: none;
    color: white; }

@media (max-width: 1200px) {
  .home h1 {
    font-size: 3.33rem; }
  .home h2 {
    font-size: 2.5rem; } }
/* home ends */
/* gallery starts */
.gallery {
  background-color: #F7F7F8; }
  .gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; }
  .gallery .both {
    display: flex;
    justify-content: center; }
    .gallery .both .left {
      width: 45%;
      padding-right: 1em;
      display: flex;
      flex-direction: column;
      justify-content: space-between; }
      .gallery .both .left img:nth-child(1) {
        margin-top: 6em; }
      .gallery .both .left img:nth-child(2) {
        margin-bottom: 5em;
        margin-top: 3em; }
    .gallery .both .right {
      width: 45%;
      padding-left: 1em; }

/* gallery ends */
/* overview starts */
.overview {
  background-color: white;
  color: black; }
  .overview .container {
    width: 80%;
    margin: auto;
    font-size: 2rem;
    padding: 5rem 2rem; }
    .overview .container h1 {
      margin-bottom: 1em; }
    .overview .container p {
      line-height: 2; }
    .overview .container p:nth-child(2) {
      margin-bottom: 1em; }

/* overview ends */
/* challenge starts */
.challenge {
  background-color: #F7F7F8; }
  .challenge .container {
    width: 80%;
    margin: auto;
    font-size: 2rem;
    padding: 5rem 2rem; }
    .challenge .container h1 {
      margin-bottom: 1em; }
    .challenge .container p {
      line-height: 2; }
    .challenge .container p:not(:last-child) {
      margin-bottom: 1em; }

/* challenge ends */
/* how starts */
.how {
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; }
  .how .container {
    text-align: center;
    width: 80%;
    margin: auto;
    padding: 5rem 2rem; }
    .how .container img {
      margin-bottom: 4em; }
    .how .container h1 {
      font-size: 4rem;
      font-weight: normal;
      line-height: 1.6; }

/* how ends */
/* process starts */
.process table {
  width: 80%;
  margin: auto;
  padding: 5rem 2rem;
  text-align: left;
  font-size: 2rem;
  max-width: 960px; }
  .process table tr th h1 {
    font-size: 3rem;
    margin-bottom: 3em; }
  .process table tr td {
    vertical-align: top;
    padding-bottom: 3em;
    line-height: 2; }
    .process table tr td h4 {
      margin-bottom: 2em; }
    .process table tr td a {
      color: #CD1338;
      font-weight: bold;
      text-decoration: underline; }
  .process table tr td:nth-child(1) {
    width: 33%;
    color: #CD1338;
    font-size: 6rem; }

@media only screen and (max-width: 767px) {
  .process table tr, .process table td, .process table th {
    display: block; }
  .process table td {
    padding: 0; }
  .process table td:nth-child(1) {
    padding: 0;
    text-align: center;
    margin: auto; } }
@media only screen and (max-width: 510px) {
  .process table {
    width: 90%; } }
@media only screen and (max-width: 370px) {
  .process table {
    width: 100%; } }
/* process ends */
/* outcome starts */
.outcome {
  background-color: #F7F7F8; }
  .outcome .container {
    width: 80%;
    margin: auto;
    font-size: 2rem;
    padding: 5rem 2rem; }
    .outcome .container h1 {
      margin-bottom: 1em; }
    .outcome .container p {
      line-height: 2; }
    .outcome .container p:not(:last-child) {
      margin-bottom: 1em; }

/* outcome ends */
/* footer starts */
footer {
  text-align: center; }
  footer .logo {
    font-size: 2rem;
    color: var(--black);
    font-weight: 700; }
    footer .logo span {
      font-weight: normal; }
  footer p {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.7rem;
    color: gray; }
  footer .socials ion-icon {
    font-size: 2.5rem;
    color: var(--black);
    background: var(--light-bg);
    border-radius: 50%;
    padding: 1rem;
    margin: 0.5rem;
    cursor: pointer; }
  footer .socials ion-icon:nth-child(1) {
    color: var(--twitter-color); }
  footer .socials ion-icon:nth-child(1):hover {
    background: var(--twitter-color);
    color: white; }
  footer .socials ion-icon:nth-child(2) {
    color: var(--discord-color); }
  footer .socials ion-icon:nth-child(2):hover {
    background: var(--discord-color);
    color: white; }
  footer .socials ion-icon:nth-child(3) {
    color: var(--youtube-color); }
  footer .socials ion-icon:nth-child(3):hover {
    background: var(--youtube-color);
    color: white; }
  footer .socials ion-icon:nth-child(4) {
    color: var(--linkedin-color); }
  footer .socials ion-icon:nth-child(4):hover {
    background: var(--linkedin-color);
    color: white; }

/* footer ends */

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