.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;
}

.homepage-hero {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .homepage-hero__image {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
  }
}
.homepage-hero img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 501/270;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .homepage-hero img {
    aspect-ratio: 834/420;
  }
}
@media screen and (min-width: 1024px) {
  .homepage-hero img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1440/800;
  }
}
.homepage-hero__inner {
  position: relative;
  z-index: 2;
}
.homepage-hero__info {
  background-color: #07073a;
  color: #f2f0ec;
  padding: 64px 32px 117px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .homepage-hero__info {
    padding: 127px 65px 96px;
  }
}
@media screen and (min-width: 1024px) {
  .homepage-hero__info {
    background-color: transparent;
    padding: 135px 0 114px;
    background-image: -moz- oldlinear-gradient(214.87deg, #07073A 30.88%, rgba(32, 48, 66, 0.78) 61.07%, rgba(37, 35, 91, 0.52) 74.95%);
    background-image: linear-gradient(235.13deg, #07073A 30.88%, rgba(32, 48, 66, 0.78) 61.07%, rgba(37, 35, 91, 0.52) 74.95%);
    mix-blend-mode: normal;
  }
}
@media screen and (min-width: 1920px) {
  .homepage-hero__info {
    padding: 196px 0 273px;
  }
}
.homepage-hero__container {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 640px) {
  .homepage-hero__container {
    padding-right: 22px;
    padding-top: 11px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .homepage-hero__container {
    padding-right: 22px;
    padding-top: 11px;
  }
}
@media screen and (min-width: 1024px) {
  .homepage-hero__container {
    margin: 0 auto;
    max-width: 1216px;
    padding: 0 16px;
  }
}
@media screen and (min-width: 1920px) {
  .homepage-hero__container {
    margin: 0 auto;
    max-width: 1630px;
    padding: 0 16px;
  }
}
.homepage-hero__container::before {
  content: "";
  display: block;
  position: absolute;
  border-top: 8px solid #0070c0;
  border-right: 8px solid #0070c0;
  top: -11px;
  right: 0;
  width: 120px;
  height: 131px;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .homepage-hero__container::before {
    border-top: 10px solid #0070c0;
    border-right: 10px solid #0070c0;
    top: -49px;
    right: -28px;
  }
}
@media screen and (min-width: 1024px) {
  .homepage-hero__container::before {
    border-top: 15px solid #0070c0;
    border-right: 15px solid #0070c0;
    top: -51px;
    right: 16px;
  }
}
@media screen and (min-width: 1920px) {
  .homepage-hero__container::before {
    top: -88px;
  }
}
@media screen and (min-width: 1024px) {
  .homepage-hero__container--inner {
    max-width: 50%;
    margin-left: auto;
    width: 50%;
    padding-right: 52px;
  }
}
.homepage-hero__title {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .homepage-hero__title {
    font-size: 4.5rem;
    line-height: 1.25;
    font-weight: 400;
  }
}
.homepage-hero__subtitle {
  font-size: 2.25rem;
  line-height: 1.2222222222;
  font-weight: 500;
  margin-bottom: 16px;
}
.homepage-hero__summary p,
.homepage-hero__summary a,
.homepage-hero__summary li {
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  color: #f2f0ec;
}
@media screen and (min-width: 640px) {
  .homepage-hero__summary p,
.homepage-hero__summary a,
.homepage-hero__summary li {
    font-size: 1.4375rem;
    line-height: 1.3913043478;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .homepage-hero__summary p,
.homepage-hero__summary a,
.homepage-hero__summary li {
    font-size: 1.4375rem;
    line-height: 1.3913043478;
  }
}
.homepage-hero__summary a {
  color: inherit;
}
.homepage-hero__summary a:hover, .homepage-hero__summary a:focus {
  color: #0070c0;
}
.homepage-hero__cta {
  margin-top: 32px;
}
@media screen and (min-width: 640px) {
  .homepage-hero__cta {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .homepage-hero__cta {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}