:root {
  --main-color: #7c4dff;
  --active-color: #ebff3a;
  --back-color: #5b6670;
  --light-color: #ffffff;
  --dark-color: #1f0568;
}

/* global */
body {
  background-color: var(--main-color);
  font-family: "Roboto Flex", sans-serif;
}
body,
hmtl {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
section[id] {
  scroll-margin-top: 110px;
}
/* global */

.custom-top-padding {
  margin-top: 120px;
}

.navbar {
  border-bottom: 1px solid var(--active-color);
  backdrop-filter: blur(25px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.33);
}

.navbar-toggler {
  background-color: var(--active-color);
}

.navbar-brand img {
  width: 256px;
}

.navbar-nav .nav-item .nav-link {
  color: var(--active-color);
  font-weight: 500;
  font-size: 1.25em;
  text-transform: uppercase;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
  color: var(--light-color);
  text-shadow: 0 2px 5px var(--dark-color);
}
.img-wrapper {
  position: relative;
}
.img-wrapper img,
.decoration-img {
  position: relative;
  display: block;
  margin: 20px auto 0 auto;
}
.text-white {
  color: var(--light-color);
}
.main-title {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 3.5rem;
}
.main-title span {
  color: var(--active-color);
}
.sub-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.5rem;
}
.sub-title span {
  color: var(--active-color);
}
.body-text {
  font-size: 1.3rem;
}
.body-text span {
  color: var(--active-color);
  font-weight: 700;
}
.body-text span a {
  text-decoration: none;
  color: var(--active-color);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  &:hover {
    color: var(--dark-color);
  }
}
.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.step-title span {
  color: var(--active-color);
}
.custom-list li {
  font-size: 1.3rem;
  font-weight: 500;
}

.cta-btn {
  background-color: var(--active-color);
  color: var(--dark-color);
  padding: 20px 40px;
  border-radius: 90px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  &:hover {
    background-color: var(--light-color);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
  }
}

footer,
footer .container-fluid {
  padding: 0;
  margin: 0;
}
.img-footer {
  position: relative;
}
.img-footer img {
  position: relative;
  display: block;
  margin: 0 auto;
  height: 50px;
  object-fit: cover;
}

@media all and (max-width: 991px) {
  .img-wrapper img {
    margin: 0 auto;
    width: 80%;
  }
  .decoration-img {
    width: auto !important;
  }
}
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer-social li a {
  font-size: 1.5rem;
  color: var(--main-color);
  background-color: var(--active-color);
  padding: 10px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  &:hover {
    background-color: var(--dark-color);
    color: var(--active-color);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
  }
}
