.header {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  color: white;
  text-align: left;
}

.header::before,
.header::after {
  content: '';
  width: 50vh;
  height: 50vh;
  border-radius: 50%;
  display: block;
  position: absolute;
  z-index: 2;
}

.header::before {
  left: -25vh;
  top: 25vh;
  background: #DD5102;
}

.header::after {
  width: 120vh;
  height: 120vh;
  left: -60vh;
  top: -30vh;
  border: 1px dashed white;
  opacity: 0.5;
}

.header h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  margin-bottom: 32px;
}

.header .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.header .header-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.header .header-bg::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(180deg, rgba(16, 55, 120, 0.4) 0%, rgba(16, 55, 120, 0) 66.83%), linear-gradient(0deg, rgba(16, 55, 120, 0.2), rgba(16, 55, 120, 0.2));
}

.header .header-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.header-video iframe {
  transform: scale(1.14) translateY(-1%);
}

.header-close {
  width: 40px;
  height: 40px;
  color: white;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 43px;
  left: 50%;
  z-index: 2;
  opacity: 0;
  transform: translateX(-50%) translateY(-100%);
  pointer-events: none;
  cursor: pointer;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-close svg {
  width: 50%;
  height: 50%;
  fill: currentColor;
  transition: transform 1s cubic-bezier(0.33, 0.1, 0, 1);
}

.header-close:hover svg {
  transform: scale(0.8);
}

.header-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.header .header-title {
  max-width: 668px;
}

.header .primary-button {
  margin-top: 30px;
}

.header .scroll-button {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .header .scroll-button {
    bottom: 200px;
  }
}

.header .scroll-button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header .scroll-button svg path:last-child {
  animation: arrow 3s cubic-bezier(0.83, 0.11, 0.25, 0.88) infinite;
}

.header.playing .header-bg,
.header.playing .header-content {
  opacity: 0;
}

.header.playing .header-bg,
.header.playing .header-bg *,
.header.playing .header-content,
.header.playing .header-content * {
  pointer-events: none;
}

.header.playing .header-content {
  transform: translateY(40%);
}

.header.playing .header-close {
  opacity: 1;
  transform: translateX(-50%) translateY(0%);
  pointer-events: all;
}

@media (max-height: 700px),
(max-width: 780px) {
  .header-close {
    width: 30px;
    height: 30px;
    top: 50px;
  }

  .header-video iframe {
    transform: none;
  }

  .header-content {
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.header-logo {
  position: absolute;
  left: 50px;
  bottom: 50px;
  height: 55px;
  z-index: 2;
}

.header-logo img {
  height: 55px;
}

@media (max-width: 480px) {
  .header-logo {
    left: 20px;
    bottom: 20px;
    height: 37px;
  }

  .header-logo img {
    height: 37px;
  }
}

@keyframes arrow {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(100%);
    opacity: 0;
  }

  51% {
    transform: translateY(100%);
    opacity: 0;
  }

  52% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.video-component {
  width: 100%;
  position: relative;
}

.video-component .video-container {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  pointer-events: all;
}

.video-component .video-container::before {
  content: '';
  display: block;
  padding-bottom: 50%;
}

.video-component .video-container.playing iframe,
.video-component .video-container.playing video {
  opacity: 1 !important;
}

.video-component .video-container.playing .video-cover,
.video-component .video-container.playing .video-button {
  pointer-events: none !important;
}

.video-component .video-container.playing .video-cover {
  opacity: 0;
}

.video-component .video-container.playing .video-button {
  transform: translateY(100%);
  opacity: 0 !important;
  pointer-events: none;
}

.video-component .video-container.loading,
.video-component .video-container.loading * {
  pointer-events: none !important;
}

.video-component .video-container.loading .video-button-square {
  transform: scale(0.7);
}

.video-component .video-container.loading .video-button-square::after {
  animation: a-button-loading 2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.video-component.onebyone .video-container::before {
  padding-bottom: 100%;
}

.video-component .video-caption {
  max-width: 430px;
  display: block;
  margin-top: 23px;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.7);
}

.video-component .video-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-component .video-cover::before,
.video-component .video-cover::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.video-component .video-cover::before {
  background: #00071E;
  opacity: 0;
  z-index: 0;
}

.video-component .video-cover::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 15, 29, 0) 75.75%, rgba(10, 15, 29, 0.8) 100%);
}

.video-component .video-cover:hover {
  cursor: pointer;
}

.video-component .video-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 3;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-component .video-button-square {
  width: 100px;
  height: 100px;
  background: #ED8B00;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  transition: border-radius 1s cubic-bezier(0.43, 0.06, 0, 1), transform 1s cubic-bezier(0.43, 0.06, 0, 1), opacity 1s cubic-bezier(0.43, 0.06, 0, 1);
}

.video-component .video-button-square::after {
  content: '';
  width: 12px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 16'%3E%3Cpath d='m12.662 6.94-10-6.25A1.247 1.247 0 0 0 .75 1.75v12.5a1.25 1.25 0 0 0 1.913 1.06l10-6.25a1.251 1.251 0 0 0 0-2.12Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.video-component .video-button span {
  max-width: 830px;
  margin-left: 25px;
  color: white;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  transition: transform 1s cubic-bezier(0.43, 0.06, 0, 1) 0.1s, opacity 1s cubic-bezier(0.43, 0.06, 0, 1);
}

.video-component .video-button:hover .video-button-square {
  transform: scale(0.8);
}

.video-component .video-button:hover span {
  transform: translateX(-10px);
}

.video-component video,
.video-component iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-component video {
  height: auto;
}

.video-component iframe {
  height: 100%;
}

.video-component.no-ratio .video-container {
  height: 100%;
}

.video-component.no-ratio .video-container::before {
  content: none;
  display: none;
}

@media (max-width: 768px) {
  .video-component .video-button {
    width: calc(100% - 28px);
    height: auto;
    justify-content: center;
    left: 18px;
    align-items: flex-start;
  }

  .video-component .video-button span {
    width: auto;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-left: 16px;
  }

  .video-component .video-button-square {
    width: 43px;
    min-width: 43px;
    height: 43px;
  }

  .video-component .video-caption {
    font-size: 11px;
    line-height: 14px;
    margin-top: 16px;
  }
}

@keyframes a-button-loading {
  0% {
    transform: translateX(0px);
  }

  30% {
    transform: translateX(80px);
    opacity: 1;
  }

  31% {
    opacity: 0;
    transform: translateX(80px);
  }

  32% {
    opacity: 0;
    transform: translateX(-80px);
  }

  33% {
    opacity: 1;
    transform: translateX(-80px);
  }

  100% {
    transform: translateX(0px);
  }
}

.pre-footer {
  width: 100%;
  height: 90vh;
  position: relative;
  color: white;
  z-index: 1;
}

.pre-footer-bg {
  width: calc(100% - 40px * 2);
  height: 100%;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 0;
}

.pre-footer-bg::before,
.pre-footer-bg::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.pre-footer-bg::before {
  background: #00071E;
  opacity: 0.4;
  z-index: 0;
}

.pre-footer-bg::after {
  z-index: 1;
  background: linear-gradient(71.62deg, rgba(0, 10, 42, 0.8) 27.69%, rgba(0, 10, 42, 0) 70.6%);
}

.pre-footer .small-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pre-footer h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 12px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 64px;
}

.pre-footer h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 72px;
  margin: 0;
}

.pre-footer .primary-button {
  margin-top: 64px !important;
}

.pre-footer .primary-button span {
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  opacity: 1;
}

@media (max-width: 80em) {
  .pre-footer .small-container {
    max-width: calc(100% - 40px * 4) !important;
  }
}

@media (max-width: 890px) {
  .pre-footer {
    height: auto;
    padding: 30px 0;
  }

  .pre-footer .small-container {
    height: auto;
    min-height: 50vw;
    max-width: calc(100% - 20px * 4) !important;
  }

  .pre-footer-bg {
    width: calc(100% - 20px * 2);
    left: 20px;
  }

  .pre-footer h4 {
    font-size: 12px;
    margin-bottom: 26px;
  }

  .pre-footer h5 {
    font-size: 40px;
  }

  .pre-footer .primary-button {
    margin-top: 33px !important;
  }

  .pre-footer .primary-button .primary-button-icon-container {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }

  .pre-footer .primary-button .primary-button-icon-container svg {
    width: 6px;
  }
}

#page .left-image {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
}

#page .left-image__img {
  width: 50%;
}

#page .left-image__text {
  width: 50%;
}

#page .primary-button.icon-in-circle {
  margin-top: 56px;
}

@media (max-width: 890px) {
  #page .primary-button.icon-in-circle {
    margin-top: 30px;
  }
}

#page .primary-button.icon-in-circle .primary-button-icon-container {
  width: 54px;
  height: 54px;
}

#page .primary-button.icon-in-circle .primary-button-icon-container svg {
  fill: none;
  width: 20px;
  height: 22px;
}

.header::before {
  background: #EE8B00;
}

.paragraph {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
}

@media (max-width: 890px) {
  .paragraph {
    font-size: 16px;
    line-height: 24px;
  }
}

.paragraph.big {
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  color: #fff;
}

@media (max-width: 890px) {
  .paragraph.big {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
}

.section-intro {
  position: relative;
  padding-top: 0;
  color: #fff;
  background: #103778;
}

.section-intro::before,
.section-intro::after {
  content: '';
  position: absolute;
}

.section-intro::before {
  width: 100vh;
  height: 100vh;
  left: -30vh;
  top: -38vh;
  border-radius: 50%;
  opacity: 0.05;
  background-color: #fff;
}

@media (max-width: 890px) {
  .section-intro::before {
    left: -70vh;
    top: -60vh;
  }
}

.section-intro::after {
  width: 120vh;
  height: 120vh;
  left: -35vh;
  top: -19vh;
  border: 1px dashed white;
  border-radius: 50%;
  opacity: 0.2;
}

@media (max-width: 890px) {
  .section-intro::after {
    left: -88vh;
    top: -72vh;
  }
}

.section-intro .small-container,
.section-intro .container {
  z-index: 1;
  position: relative;
  top: -10vw;
  margin-top: 10vw;
}

.section-intro img {
  width: 100%;
  margin-bottom: 100px;
}

@media (max-width: 890px) {
  .section-intro img {
    margin-bottom: 40px;
  }
}

@media (max-width: 890px) {
  .section-intro .two-columns {
    flex-direction: column;
  }

  .section-intro .two-columns>* {
    width: 100% !important;
    margin-bottom: 20px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

.section-intro .button-white {
  margin-top: 48px !important;
}

.right-image {
  display: flex;
  align-items: center;
}

.right-image__img {
  width: 50%;
  padding-left: 40px;
}

.right-image__img img {
  width: 100%;
}

.right-image__text {
  width: 50%;
  padding-right: 40px;
}

@media (max-width: 890px) {
  .right-image {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .right-image__img {
    width: 100%;
    max-width: 500px;
    padding-left: 0;
    margin-bottom: 40px;
  }

  .right-image__text {
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .right-image .title-h3 {
    font-size: 22px;
    line-height: 120%;
  }
}

@media (max-width: 890px) {
  .button-white {
    display: flex;
  }
}

.footer-cards-wrapper .download-pdf {
  background-color: #ED8B00;
}