.page-cta {
  width: 100%;
  position: relative;
  background-color: #ffffff;
}
.home .page-cta {
  width: 100vw;
  padding-top: 40px;
  padding-bottom: 60px;
}
.home .page-cta::before {
  content: " ";
  position: absolute;
  top: 50px;
  right: -15%;
  width: 100%;
  height: calc(100% - 50px);
  background-image: url("../DocumentDefault/Assets/king-seal-light.svg");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 90% auto;
}
@media (min-width: 1024px) and (min-height: 600px) {
  .home .page-cta::before {
    top: 0;
    right: -3%;
    height: 100%;
    background-position: 100% 0;
    background-size: 50% auto;
  }
}
.page-cta__header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 0 auto;
  padding-top: 3.125rem;
  padding-right: 20px;
  padding-left: 20px;
  position: relative;
}
@media (min-width: 1024px) and (min-height: 600px) {
  .page-cta__header {
    padding-top: 3.75rem;
    margin: 0px auto 0 auto;
  }
}
.page-cta__title {
  font-family: "weiss";
  margin-top: 0;
  font-size: 2.375rem;
  color: #c8102e;
}
@media (min-width: 1024px) and (min-height: 600px) {
  .page-cta__title {
    font-size: 3rem;
  }
}
.page-cta__description {
  font-family: "legacy-book";
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #02132b;
  margin-bottom: 30px;
  color: #02132b;
}
@media only screen and (min-width: 900px) {
  .page-cta__description {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.page-cta__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 30px;
  max-width: 1300px;
  margin: 0 auto;
}
.page-cta__list-item {
  display: block;
  margin-bottom: 30px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .page-cta__list-item {
    width: 48%;
    margin-right: 4%;
  }
  .page-cta__list-item:last-child {
    margin-right: 0;
  }
}
.layout-full-width .page-cta__list-item {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .layout-full-width .page-cta__list-item {
    width: 31%;
    margin-right: 3%;
  }
  .layout-full-width .page-cta__list-item:last-child {
    margin-right: 0;
  }
}

.page-teaser {
  height: 100%;
  min-height: 400px;
  text-align: center;
  border: 2px solid #083a81;
  padding: 60px 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-teaser:hover::before {
  opacity: 1;
}
.page-teaser::before {
  opacity: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #083a81;
  top: 0;
  left: 0;
  content: " ";
  display: block;
  position: absolute;
  transition: opacity 0.2s ease-in-out;
}
.page-teaser__title {
  display: block;
  font-family: "weiss-bold";
  font-size: 2rem;
  line-height: 2.25rem;
  margin: 2.5rem 0 1.1875rem 0;
  margin: 0;
  color: #083a81;
}
@media only screen and (min-width: 900px) {
  .page-teaser__title {
    font-size: 2.625rem;
    line-height: 2.875rem;
  }
}
.page-teaser__description {
  font-family: "legacy-book";
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #02132b;
}
@media only screen and (min-width: 900px) {
  .page-teaser__description {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.page-teaser__link {
  font-family: "legacy-book";
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.25rem;
  display: inline-block;
  color: #4A4A4A;
  position: relative;
  margin-left: -15px;
}
@media only screen and (min-width: 900px) {
  .page-teaser__link {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}
.page-teaser__link::after {
  background-image: url("../DocumentDefault/Assets/chevron.svg");
  width: 6px;
  height: 11px;
  display: inline-block;
  content: " ";
  position: absolute;
  top: 2px;
  right: -18px;
}
.page-teaser__link::before {
  opacity: 0;
  width: 100%;
  height: 1px;
  display: block;
  content: " ";
  background-color: #4A4A4A;
  position: absolute;
  left: 0;
  bottom: 3px;
  transition: opacity 0.2s ease-in-out;
}
.page-teaser__link:hover::before {
  opacity: 1;
}
.page-teaser:hover .page-teaser__link::before {
  opacity: 1;
}

.page-teaser__rule {
  background-color: #c8102e;
  width: 45px;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  transition: width 0.2s ease-in-out;
  margin-bottom: 30px;
}
.page-teaser:hover .page-teaser__rule {
  width: 96px;
}