.button-primary {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid transparent;
}
.button-primary.light {
  background: #ffffff;
  color: #07073a;
}
.button-primary.light::after {
  background-color: #07073a;
}
.button-primary.light:hover {
  background: #f2f0ec;
  box-shadow: 0 8px 30px -4px rgba(15, 21, 34, 0.3);
}
.button-primary.light:focus {
  background: #f2f0ec;
  border-color: rgba(242, 240, 236, 0.8);
  outline: 2px solid #CCDAE6;
}
.button-primary.dark {
  background-color: #1a293b;
  color: #f2f0ec;
  border: 0;
}
.button-primary.dark::after {
  background-color: #f2f0ec;
}
.button-primary.dark:hover {
  background-color: #171f27;
  box-shadow: 0 8px 30px -4px rgba(15, 21, 34, 0.3);
}
.button-primary.dark:focus {
  background-color: #171f27;
  border-color: #5d6b98;
  outline: none;
}
.button-primary.dark-b {
  background-color: #222e72;
  color: #ffffff;
  outline: 2px solid transparent;
  border: 0;
}
.button-primary.dark-b::after {
  background-color: #ffffff;
}
.button-primary.dark-b:hover {
  background-color: #07073a;
}
.button-primary.dark-b:hover::after {
  background-color: #ffffff;
}
.button-primary.dark-b:focus {
  color: #dcdfea;
  background-color: #07073a;
  outline-color: #CCDAE6;
}
.button-primary.light-b {
  color: #07073a;
  background: #ffffff;
  border: 0;
}
.button-primary.light-b::after {
  background-color: #07073a;
}
.button-primary.light-b:hover, .button-primary.light-b:focus {
  border: 0;
  background: #b9c0d4;
  box-shadow: 0 8px 30px -4px rgba(15, 21, 34, 0.3);
}
.button-primary.light-b:focus-visible, .button-primary.light-b:focus {
  outline: 2px solid #CCDAE6;
}

.button-secondary {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 20px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  -moz-transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
}
.button-secondary.light-b {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.button-secondary.light-b::after {
  background-color: #ffffff;
}
.button-secondary.light-b:hover, .button-secondary.light-b:focus {
  background: rgba(243, 243, 243, 0.3);
}
.button-secondary.dark {
  border: 1px solid #07073a;
  color: #07073a;
}
.button-secondary.dark::after {
  background-color: #07073a;
}
.button-secondary.dark:hover {
  background-color: #ffffff;
  border-color: #5d6b98;
  color: #191c26;
}
.button-secondary.dark:hover::after {
  background-color: #191c26;
}
.button-secondary.dark:focus:not(:focus-visible) {
  border-color: #07073a;
}
.button-secondary.dark:focus {
  border-color: transparent;
  outline: 2px solid #CCDAE6;
  color: #303070;
  background-color: #ffffff;
}
.button-secondary.dark:focus::after {
  background-color: #303070;
}

.button-primary[target=_blank]::after,
.button-secondary[target=_blank]::after {
  -webkit-mask-image: url("../../../../assets/images/external.svg");
  mask-image: url("../../../../assets/images/external.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  display: block;
  margin-left: 11px;
  display: inline-block;
  width: 18px;
  height: 18px;
}
.button-primary[download]::after,
.button-secondary[download]::after {
  -webkit-mask-image: url("../../../../assets/images/download-icon.svg");
  mask-image: url("../../../../assets/images/download-icon.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  display: block;
  margin-left: 11px;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.call-to-action-block {
  background-color: #222e72;
  color: #f2f0ec;
  position: relative;
}
.call-to-action-block.light {
  color: #171f27;
  background-color: #eff1f5;
}
.call-to-action-block.light .call-to-action-block__inner {
  max-width: 1280px;
  position: relative;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block.light .call-to-action-block__inner {
    padding-bottom: 76px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .call-to-action-block.light .call-to-action-block__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1920px) {
  .call-to-action-block.light .call-to-action-block__inner {
    max-width: 1695px;
  }
}
.call-to-action-block.light .call-to-action-block__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 44px;
  width: -moz-calc(100% - 16px);
  width: calc(100% - 16px);
  border: 2px solid #ef434b;
  border-top: 0;
  border-right: 0;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block.light .call-to-action-block__inner::before {
    left: 32px;
    height: 100%;
    width: 2px;
    background-color: #ef434b;
    border: 0;
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block.light .call-to-action-block__inner::before {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__left {
    padding-left: 15px;
    border-left: 2px solid #ef434b;
  }
}
@media screen and (min-width: 640px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__left {
    padding-left: 34px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__left {
    padding-left: 34px;
  }
}
@media screen and (min-width: 1920px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__left {
    padding-left: 34px;
  }
}
.call-to-action-block.light .call-to-action-block__inner .call-to-action-block__right {
  position: relative;
}
.call-to-action-block.light .call-to-action-block__inner .call-to-action-block__right::after {
  -webkit-mask-image: url("../../../../assets/images/cta-light-curve-wide.svg");
  mask-image: url("../../../../assets/images/cta-light-curve-wide.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  display: none;
  border: 0;
  width: 685px;
  height: 58px;
  background-color: #ef434b;
  -webkit-mask-position: bottom;
  mask-position: bottom;
  position: absolute;
  top: 0;
  right: 36px;
}
@media screen and (min-width: 640px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__right::after {
    height: 54px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__right::after {
    height: 54px;
  }
}
@media screen and (min-width: 1920px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__right::after {
    display: block;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__right {
    padding-left: 34px;
  }
}
@media screen and (min-width: 1920px) {
  .call-to-action-block.light .call-to-action-block__inner .call-to-action-block__right {
    padding-right: 32px;
  }
}
.call-to-action-block.light::after {
  -webkit-mask-image: url("../../../../assets/images/cta-curve.svg");
  mask-image: url("../../../../assets/images/cta-curve.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  display: block;
  border: 0;
  width: 100%;
  height: 85px;
  background-color: #ef434b;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
}
@media screen and (min-width: 640px) {
  .call-to-action-block.light::after {
    -webkit-mask-image: url("../../../../assets/images/cta-curve-red.svg");
    mask-image: url("../../../../assets/images/cta-curve-red.svg");
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
    mask-position: bottom;
    position: absolute;
    max-width: 685px;
    height: 48px;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block.light::after {
    -webkit-mask-image: url("../../../../assets/images/cta-curve-red.svg");
    mask-image: url("../../../../assets/images/cta-curve-red.svg");
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
    mask-position: bottom;
    position: absolute;
    max-width: 685px;
    height: 48px;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 1920px) {
  .call-to-action-block.light::after {
    display: none;
  }
}
.call-to-action-block__inner {
  margin: 0 auto;
  max-width: 1216px;
  padding: 0 16px;
  padding-top: 75px;
  padding-bottom: 93px;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block__inner {
    padding: 71px 16px 101px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .call-to-action-block__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1920px) {
  .call-to-action-block__inner {
    margin: 0 auto;
    max-width: 1630px;
    padding: 0 16px;
  }
}
.call-to-action-block__right .inner {
  opacity: 0;
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.call-to-action-block__right .inner.in-viewport {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: animate-in-down;
  -moz-animation-name: animate-in-down;
  animation-name: animate-in-down;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes animate-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes animate-in-down {
  from {
    opacity: 0;
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes animate-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block__right {
    padding-top: 128px;
    padding-bottom: 100px;
  }
}
.call-to-action-block:not(.light) .call-to-action-block__right::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 44px;
  width: -moz-calc(100% - 16px);
  width: calc(100% - 16px);
  border: 2px solid #f2f0ec;
  border-top: 0;
  border-right: 0;
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
  .call-to-action-block:not(.light) .call-to-action-block__right::before {
    width: -moz-calc(100% - 32px);
    width: calc(100% - 32px);
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block:not(.light) .call-to-action-block__right::before {
    max-width: 50%;
    margin-left: auto;
  }
}
.call-to-action-block:not(.light) .call-to-action-block__left::after {
  -webkit-mask-image: url("../../../../assets/images/cta-curve.svg");
  mask-image: url("../../../../assets/images/cta-curve.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #f2f0ec;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  max-width: 375px;
  height: 44px;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .call-to-action-block:not(.light) .call-to-action-block__left::after {
    -webkit-mask-size: 100% 79px;
    mask-size: 100% 79px;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    max-width: 50%;
    height: 68px;
  }
}
@media screen and (min-width: 1920px) {
  .call-to-action-block:not(.light) .call-to-action-block__left::after {
    -webkit-mask-image: url("../../../../assets/images/cta-curve-wide.svg");
    mask-image: url("../../../../assets/images/cta-curve-wide.svg");
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
}
.call-to-action-block__left .inner {
  opacity: 0;
}
.call-to-action-block__left .inner.in-viewport {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: animate-in-down;
  -moz-animation-name: animate-in-down;
  animation-name: animate-in-down;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes animate-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block__left {
    padding-top: 128px;
    padding-bottom: 100px;
  }
}
.call-to-action-block__title {
  font-size: 2.25rem;
  line-height: 1.2222222222;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media screen and (min-width: 640px) {
  .call-to-action-block__title {
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 500;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block__title {
    font-size: 3rem;
    line-height: 1.25;
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block__title {
    padding-right: 32px;
  }
}
.call-to-action-block__subtitle {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  font-weight: 500;
  margin-bottom: 0;
}
@media screen and (min-width: 640px) {
  .call-to-action-block__subtitle {
    font-size: 1.875rem;
    line-height: 1.2666666667;
    font-weight: 500;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block__subtitle {
    font-size: 1.875rem;
    line-height: 1.2666666667;
    font-weight: 500;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .call-to-action-block__subtitle {
    padding-right: 32px;
  }
}
.call-to-action-block__summary p {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 400;
}
.call-to-action-block__summary a {
  color: inherit;
}
.call-to-action-block__summary a:hover, .call-to-action-block__summary a:focus {
  color: #0070c0;
}
.call-to-action-block__cta {
  margin-top: 32px;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block__cta {
    margin-top: 42px;
  }
}
@media screen and (min-width: 640px) {
  .call-to-action-block__cta a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .call-to-action-block__cta a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}