
#navigation-section {
  margin: 96px;
}

#navigation-section h2 {
  color: var(--Blue, #1e3c72);

  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 111.111% */
  text-transform: uppercase;
  margin-bottom: 56px;
}

#navigation-section .row .custom-column {
  background-color: var(--Blue);
  padding: 24px 16px;
  border-radius: 20px;
}

#navigation-section .row .custom-column span {
  color: var(--White, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  text-transform: capitalize;
}

#navigation-section .row .custom-column h3 {
  color: var(--White, #fff);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px; /* 111.111% */
  text-transform: uppercase;

  margin-bottom: 96px !important;
}

#navigation-section a:active,
#navigation-section a:hover {
  outline: 0;
}

#navigation-section .link-arrow {
  display: inline-block;
  flex: 0 auto;
  -webkit-box-flex: 0;
  min-width: 100%;
  position: relative;
  text-align: left;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-top: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid white;
}

#navigation-section .link-arrow:hover {
  color: var(--Red, #ca202e);
  border-bottom: 1px solid var(--Red, #ca202e);
}

#navigation-section .link-arrow::before,
#navigation-section .link-arrow::after {
  content: url("images/arrow-right-white.svg");
  display: block;
  font-size: inherit;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0%, -50%);
  transition: all 0.5s cubic-bezier(0.25, 0.25, 0.08, 1.08);
}

#navigation-section .link-arrow:hover::before {
  content: url("images/arrow-right-red.svg");
}

#navigation-section .link-arrow.font-reg::before,
#navigation-section .link-arrow.font-reg::after {
  font-weight: 300;
}
#navigation-section .link-arrow::before {
  opacity: 0;
  transform: translate(-100%, -50%);
}

#navigation-section .link-arrow:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}

#navigation-section .link-arrow:hover::after {
  opacity: 0;
  transform: translate(100%, -50%);
}

/* Adjustments for medium screens */
@media screen and (max-width: 767px) {
  #navigation-section {
    margin: 80px 12px;
  }

  #navigation-section .row .custom-column span {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
  }

  #navigation-section .row .custom-column h3 {
    color: var(--White, #fff);

    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 120% */
    text-transform: uppercase;
    margin-bottom: 64px !important;
  }
}
