.btn-reuse {
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  padding: 0.7em 1.5em;
  display: inline-block;
  border-radius: 10px;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  color: #fff;
  background-color: #00dda4;
  cursor: pointer;
  line-height: 18.75px;
}

.btn-reuse:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-reuse:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-reuse::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn-reuse a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.btn-reuse::after {
  background-color: #00dda4;
}

.btn-reuse:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-submit {
  position: relative;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 2.5rem;
  display: inline-block;
  border-radius: 10px;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  color: #fff;
  background-color: #00dda4;
  cursor: pointer;
  line-height: 18.75px;
  transform: translateY(0);
  transition: all 0.2s;
}
.btn-submit a {
  color: #fff;
}
.btn-submit:hover {
  transform: translateY(-0.3rem);
}
.btn-submit:active {
  transform: translateY(-0.1rem);
}

/* Typography styles */
.heading-secondary {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  background-clip: text;
  text-align: center;
  line-height: 37.5px;
  /* color: transparent; */
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
.heading-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(#000, 1);
}
@media screen and (max-width: 700px) {
  .heading-secondary {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 400px) {
  .heading-secondary {
    font-size: 1rem;
  }
}

h5 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  h5 {
    font-size: 1rem;
  }
}

/* Utility classes */
.mt-1 {
  margin-top: 1rem;
}
.mt-1-5 {
  margin-top: 1.5rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
.mt-7 {
  margin-top: 6rem;
}
.mt-8 {
  margin-top: 6rem;
}

.pt-1 {
  padding-top: 1rem;
}
.pt-2 {
  padding-top: 2rem;
}
.pt-3 {
  padding-top: 3rem;
}
.pt-4 {
  padding-top: 4rem;
}
.pt-5 {
  padding-top: 5rem;
}
.pt-6 {
  padding-top: 6rem;
}
.pt-7 {
  padding-top: 7rem;
}
