:root {
  --gradient-color: linear-gradient(315.01deg, #AD0C2E 8.31%, #ae0529b8 88.22%);
  --back-to-top-button-color: deeppink;
  --back-to-top-icon-color: white;
  --prime-color: #AD0C2E;
}

/* CSS Styles */
.back-to-top {
  background: var(--gradient-color);
  text-decoration: none;
  cursor: pointer;
  width: 56px;
  height: 56px;
  z-index: 999;
  position: fixed;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.4);
}

.back-to-top:hover {
  background: var(--prime-color);
  /* Lighten the button color */
}

.back-to-top:active {
  box-shadow: none;
  background: var(--prime-color);
  /* Darken the button color */
}

.back-to-top .icon__arrow-up {
  fill: var(--back-to-top-icon-color);
  width: 32px;
  height: 32px;
}

.hero-content-wrap h1 {
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-content-wrap h1 .small-text-heading {
  font-size: 2rem;
}

.hero-content-wrap h1 .small-text-heading:nth-child(1) {
  color: black;
}

.hero-other-section {
  height: auto !important;
}

.heading-start-line {
  width: 200px;
  margin: 10px auto;
  color: var(--prime-color);
  border: none;
  border-top: 5px solid #AD0C2E;
  border-radius: 11px;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  width: 50%;
  border: 2px solid #AD0C2E;
  left: 25%;
  bottom: 10px;
}