.layout-container > header {
  z-index: 100;
}

.layout-container main {
  padding: 0!important;
}

.container {
  max-width: 1600px;
}

h1 {
  font-size: clamp(32px, 5vw, 75px);
  line-height: 85px;
  font-weight: 500;
}

h2 {
  font-size: 42px;
  line-height: 58px;
  font-weight: 500;
}

h3 {
  font-size: 32px;
  line-height: 46px;
  font-weight: 300;
}

h4 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 300;
}

p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}

.preamble {
  font-size: 20px;
  line-height: 34px;
}

.main-link {
  color: #000;
  font-weight: 300;
  transition: text-decoration ease-in 1s;
}

.main-link:hover {
  color: #000;
  text-decoration: underline;
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5em;
  width: 1.8em;
  height: 1.8em;
  background-color: #000;
  color: #FFF;
  border-radius: 50%;
  font-size: 0.8em;
  line-height: 1;
}

.main-button {
  display: block;
  background-color: #ED002F;
  border-radius: 30px;
  color: #FFF;
  font-weight: 500;
  font-size: 16px;
  padding: 15px;
  max-width: 200px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.main-button:hover {
  background-color: #BF0026;
  color: #FFF;
}

.secondary-button {
  background-color: #FFF;
  border-radius: 30px;
  color: #000;
  font-size: 21px;
}

li {
  font-weight: 300;
}

.block-appearance {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.block-appearance.visible {
  opacity: 1;
  transform: translateY(0);
}

.block6-6 img {
  border-radius: 30px;
}

.red-background-card {
  background: #EC173C;
  background: linear-gradient(45deg, rgba(236, 23, 60, 1) 0%, rgba(63, 0, 11, 1) 88%);
}

.red-background-card .content-box {
  border: 1pt solid #FFF;
  border-radius: 30px;
  text-align: center;
}

.red-background-card .content-box h2 {
  color: #FFF;
}

.red-background-card .content-box h3 {
  color: #FFF;
}

.red-background-card .content-box p {
  color: #FFF;
}

.background-card .content-box {
  background-image: url('/sites/gv/files/flmngr/harmony/background-card/background-card-image.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
  border-radius: 30px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.background-card .content-box .rapid-logo {
  position: absolute;
  width: 120px;
  top: 30px;
  right: 30px;
}

.background-card .content-box h2 {
  color: #FFF;
}

.background-card .content-box h3 {
  color: #FFF;
}

.background-card .content-box p {
  color: #FFF;
}

.back-to-top {
    bottom: 10px;
    right: 10px;
}

@media (max-width: 768px) {
  .background-card .content-box {
    background-position: right;
    border-radius: 0px;
  }

  .background-card .content-box .rapid-logo {
    width: 80px;
    top: 15px;
    right: 15px;
  }
}