* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html, body {
  scroll-behavior: smooth;
  background: #15151D;
}

header {
  height: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  width: 100%;
}
header .logo {
  font-size: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo a {
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo a img {
  height: 3.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 3.5rem;
}
header nav a {
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
}
header nav a:nth-of-type(1)::before {
  content: "01";
}
header nav a:nth-of-type(2)::before {
  content: "02";
}
header nav a:nth-of-type(3)::before {
  content: "03";
}
header nav a::before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);
  font-size: 0.75em;
  font-weight: 600;
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}
header nav a::after {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  transition: 0.25s ease;
}
header nav a:hover::after, header nav a.active::after {
  width: 70%;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
header .ham svg {
  height: 35px;
  width: 35px;
  color: #35F4BF;
  stroke-width: 2.5;
}
header .logout__btn {
  background: none;
  border: none;
}
header .logout__btn a {
  color: #000;
  text-decoration: none;
}
header .logout__btn a svg {
  color: #000;
  height: 30px;
  width: 30px;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #101010;
}
.offcanvas #close__offcanvas {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
}
.offcanvas #close__offcanvas svg {
  height: 35px;
  width: 35px;
  color: #fff;
  stroke-width: 2.5;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 2px solid #35F4BF;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {
  header .logo a img {
    height: 2.5rem;
  }
  header nav {
    gap: 1.75rem;
  }
  header nav a {
    font-size: 0.9em;
  }
  header nav a::after {
    bottom: -3px;
  }
  header .btn a {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 700px) {
  header {
    height: 5rem;
  }
  header .logo__parent {
    padding-left: 2.5%;
  }
  header .logo__parent .logo {
    font-size: 1.5em;
  }
  header nav {
    display: none;
  }
  header .ham {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .btn {
    display: none;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  border: none;
  background: none;
  transition: 0.25s ease;
}
.btn a {
  font-size: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-radius: 35px;
  text-decoration: none;
  padding: 1em 2em;
  font-weight: 500;
  transition: 0.2s ease;
  background: rgb(177, 244, 53);
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  color: #15151D;
  font-weight: 600;
  text-transform: uppercase;
}
.btn:hover {
  transform: scale(1.05);
}

footer {
  width: 100%;
  padding: 2.5rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .left {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 1rem;
}
footer .left .logo {
  height: 4.5rem;
  margin-bottom: 1.25rem;
}
footer .left a {
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
}
footer .left a .green {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}
footer .left a:hover .icon {
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.75) 35%, rgba(53, 244, 191, 0.75) 100%);
}
footer .left a .icon {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.6) 35%, rgba(53, 244, 191, 0.6) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .left a .icon svg {
  height: 22px;
  width: 22px;
  color: #fff;
  stroke-width: 2.5;
}
footer .right {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 1rem;
}
footer .right h3 {
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 0.5rem;
}
footer .right a {
  font-size: 1.25em;
  color: #fff;
  display: flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
}
footer .right a:hover svg {
  transform: translateX(2px);
}
footer .right a svg {
  height: 1.35em;
  width: 1.35em;
  color: #35F4BF;
  stroke-width: 2.5;
}
footer .right a svg path {
  color: rgb(177, 244, 53);
}

@media only screen and (max-width: 850px) {
  footer .footer__content .left h2 {
    font-size: 2em;
  }
  footer .footer__content .left p {
    font-size: 0.7em;
  }
  footer .footer__content .right a {
    font-size: 1em;
  }
}
@media only screen and (max-width: 1300px) {
  footer .footer__content .left h2 {
    font-size: 2.5em;
  }
  footer .footer__content .left p {
    font-size: 0.85em;
  }
  footer .footer__content .right {
    justify-content: center;
  }
  footer .footer__content .right a {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 700px) {
  footer {
    flex-flow: column;
    justify-content: start;
    align-items: start;
    gap: 2rem;
  }
  footer .left {
    order: 2;
  }
  footer .left .logo {
    font-size: 1.5em;
    margin-bottom: 0;
    height: 3rem;
  }
  footer .left a {
    font-size: 0.85em;
  }
  footer .left a .icon {
    height: 30px;
    width: 30px;
  }
  footer .left a .icon svg {
    height: 16px;
    width: 16px;
  }
  footer .right {
    order: 1;
  }
  footer .right h3 {
    font-size: 1.5em;
  }
  footer .right a {
    font-size: 1em;
  }
}
#gdpr__parent {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
#gdpr__parent input {
  height: auto;
  width: auto;
  cursor: pointer;
}
#gdpr__parent label {
  color: #fff;
  cursor: pointer;
}
#gdpr__parent label a {
  background: linear-gradient(90deg, rgb(177, 244, 53) 35%, rgb(53, 244, 191) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* for Safari */
  background-clip: text;
  color: transparent;
}

@media only screen and (max-width: 850px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
@media only screen and (max-width: 700px) {
  #gdpr__parent label {
    font-size: 0.8em;
  }
}
@keyframes fade-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(0);
}

.fade-up {
  animation: 0.5s fade-up ease-in-out forwards;
}

.animate-fade-up-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-2 {
  animation: 0.5s fade-up 0.5s ease-in-out forwards;
}

.animate-fade-up-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-3 {
  animation: 0.5s fade-up 1s ease-in-out forwards;
}

.animate-fade-up-4 {
  opacity: 0;
  transform: translateY(0);
}

.fade-up-4 {
  animation: 1s fade-up 3s ease-in-out forwards;
}

@keyframes fade-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-left {
  opacity: 0;
  transform: translateX(-100px);
}

.fade-left {
  animation: 1s fade-left ease-in-out forwards;
}

.animate-fade-left-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-2 {
  animation: 1s fade-left 1s ease-in-out forwards;
}

.animate-fade-left-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-left-3 {
  animation: 1s fade-left 2s ease-in-out forwards;
}

@keyframes fade-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
.animate-fade-right {
  opacity: 0;
  transform: translateX(-100%);
}

.fade-right {
  animation: 1s fade-right ease-in-out forwards;
}

.animate-fade-right-2 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-2 {
  animation: 1s fade-right 0.5s ease-in-out forwards;
}

.animate-fade-right-3 {
  opacity: 0;
  transform: translateY(0);
}

.fade-right-3 {
  animation: 1s fade-right 2s ease-in-out forwards;
}

@keyframes scale-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-scale-in {
  opacity: 0;
  transform: translateX(-100%);
}

.scale-in {
  animation: 0.75s scale-in ease-in-out forwards;
}

.animate-scale-in-2 {
  opacity: 0;
  transform: translateY(0);
}

.scale-in-2 {
  animation: 0.75s scale-in 0.25s ease-in-out forwards;
}

.animate-scale-in-3 {
  opacity: 0;
  transform: translateY(0);
}

.scale-in-3 {
  animation: 0.75s scale-in 0.5s ease-in-out forwards;
}

@media only screen and (max-width: 850px) {
  .fade-left-2, .fade-left-3 {
    animation: 1s fade-left ease-in-out forwards;
  }
  .fade-right-2, .fade-right-3 {
    animation: 1s fade-right ease-in-out forwards;
  }
  .fade-up-2, .fade-up-3, .fade-up-4 {
    animation: 0.5s fade-up ease-in-out forwards;
  }
  .scale-in-2, .scale-in-3 {
    animation: 0.75s scale-in ease-in-out forwards;
  }
}
#loading__parent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}
#loading__parent #loading {
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.content {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
  gap: 50px;
  align-items: start;
  padding: 5rem 10% 2.5rem;
}
.content .content__text h1 {
  font-size: 52px;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1.25em;
}
.content .content__text p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.5rem;
  line-height: 1.5em;
  font-size: 17px;
}
.content .content__text .services {
  margin: 5rem 0;
}
.content .content__text .services h2 {
  font-size: 41px;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.25em;
}
.content .content__text .services .services__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  row-gap: 65px;
  padding: 2rem 0;
}
.content .content__text .services .services__content .item {
  width: 100%;
}
.content .content__text .services .services__content .item .item__heading {
  display: grid;
  grid-template-columns: 61px 1fr;
  gap: 20px;
  align-items: center;
}
.content .content__text .services .services__content .item .item__heading .icon {
  height: 61px;
  width: 61px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgb(177, 244, 53);
  background: linear-gradient(90deg, rgba(177, 244, 53, 0.9) 35%, rgba(53, 244, 191, 0.9) 100%);
}
.content .content__text .services .services__content .item .item__heading .icon img {
  width: 35px;
  height: 35px;
}
.content .content__text .services .services__content .item .item__heading h3 {
  font-size: 25px;
  color: #fff;
  line-height: 1.25em;
}
.content .content__text .services .services__content .item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.35em;
  margin-top: 0.75rem;
}
.content .cta {
  background: #12121A;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  position: sticky;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
}
.content .cta h1 {
  font-size: 27px;
  color: #fff;
}
.content .cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.5rem 0;
  line-height: 1.35em;
}
.content .cta .input {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  margin: 0.75rem 0;
  width: 100%;
}
.content .cta .input label {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.content .cta .input input {
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 100%;
}
.content .cta #gdpr__parent label {
  font-size: 13px;
}
.content .cta .btn {
  margin-top: 1rem;
}

@media only screen and (max-width: 1300px) {
  .content {
    gap: 35px;
  }
  .content .content__text h1 {
    font-size: 35px;
  }
  .content .content__text p {
    font-size: 15px;
  }
  .content .content__text .services h2 {
    font-size: 35px;
  }
  .content .content__text .services .services__content .item .item__heading {
    grid-template-columns: 47px 1fr;
  }
  .content .content__text .services .services__content .item .item__heading .icon {
    height: 47px;
    width: 47px;
  }
  .content .content__text .services .services__content .item .item__heading .icon img {
    height: 24px;
    width: 24px;
  }
  .content .content__text .services .services__content .item .item__heading h3 {
    font-size: 18px;
  }
  .content .content__text .services .services__content .item p {
    font-size: 13px;
  }
  .content .cta h1 {
    font-size: 19px;
  }
  .content .cta p {
    font-size: 15px;
  }
  .content .cta .input label {
    font-size: 16px;
  }
  .content .cta .input input {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }
  .content .cta {
    position: relative;
    transform: none;
    top: 0;
  }
}
@media only screen and (max-width: 700px) {
  .content {
    padding: 2.5rem 5%;
    gap: 20px;
  }
  .content .content__text h1 {
    font-size: 22px;
    letter-spacing: -1px;
  }
  .content .content__text p {
    font-size: 13px;
  }
  .content .content__text .services {
    margin: 3.5rem 0 0;
  }
  .content .content__text .services h2 {
    font-size: 22px;
    letter-spacing: -1px;
  }
  .content .content__text .services .services__content {
    grid-template-columns: 1fr;
    row-gap: 45px;
  }
}/*# sourceMappingURL=style.css.map */