@import url("https://fonts.googleapis.com/css2?family=Poppins:wgt@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #000;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(-45deg, #2a70f1, #2069F2, #073e86);
  background-size: 400% 400%;
  animation: gradientBG 5s ease infinite;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#hero {
  width: 100%;
  height: 100vh;
}
#hero .branding {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  padding-left: 50px;
}
#hero .branding h3 {
  font-size: 42px;
  font-weight: 600;
}
#hero .branding p {
  font-size: 26px;
  font-weight: 400;
}
#hero .branding div {
  display: flex;
  gap: 10px;
}
#hero .branding div a {
  padding: 6px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.1s;
}
#hero .branding div a:hover {
  background-color: transparent;
  transition: 0.1s;
  border: 2px solid #000;
  color: #000;
}
#hero .branding div a:nth-child(2) {
  background-color: transparent;
  border: 2px solid #000;
  color: #000;
  transition: 0.1s;
}
#hero .branding div a:nth-child(2):hover {
  background-color: #000;
  transition: 0.1s;
  border: 2px solid transparent;
  color: #fff;
}

#explore {
  width: 90%;
  margin: 0 auto;
  height: 100vh;
}
#explore .text-section p {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0;
}
#explore .text-section ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
#explore .text-section ul li {
  font-size: 16px;
  font-weight: 400;
}
#explore .text-section ul li span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #272727;
  border-radius: 50%;
  margin-right: 10px;
}
#explore .text-section a {
  display: block;
  margin-bottom: 8px;
}

hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #000;
}

.wrapper {
  display: flex;
  align-items: center !important;
  justify-content: center;
  gap: 10px;
}
.wrapper p {
  font-size: 24px;
  font-weight: 400;
}
.wrapper a {
  margin: 0 !important;
}

.downloadBtn {
  padding: 6px 20px;
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.1s;
}
.downloadBtn:hover {
  background-color: transparent;
  transition: 0.1s;
  border: 2px solid #000;
  color: #000;
}

@media (min-width: 768px) {
  #explore {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #explore > *:first-child {
    width: 50%;
  }
  #explore > *:last-child {
    padding-left: 50px;
    border-left: 3px solid #000;
  }
  .branding {
    padding-left: 100px !important;
  }
  .branding h3 {
    font-size: 52px !important;
    font-weight: 600;
  }
  .branding p {
    font-size: 32px !important;
    font-weight: 400;
  }
  .branding a {
    padding: 12px 26px;
    font-size: 20px !important;
  }
  .text-section h3 {
    font-size: 30px;
    font-weight: 600;
  }
  .text-section p {
    font-size: 20px !important;
    font-weight: 400;
  }
  .text-section ul li {
    font-size: 20px !important;
    font-weight: 400;
  }
}/*# sourceMappingURL=main.css.map */