.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) and (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;
  }
}

.cards-slider .swiper-top {
  margin-bottom: 84px;
}

.cards-slider .swiper-top .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 60.625em) {
  .cards-slider .swiper-top {
    margin-bottom: 40px;
  }
}

.cards-slider .swiper-container {
  width: 100%;
  overflow: hidden;
}

.cards-slider .swiper-container .swiper-slide {
  height: auto;
}

.cards-slider .swiper-container .swiper-slide:not(.visible) .result-card {
  opacity: 0.2;
}

.cards-slider .swiper-container .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cards-slider .swiper-container .slider-button {
  width: 40px;
  height: 40px;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cards-slider .swiper-container .slider-button::before {
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), background 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cards-slider .swiper-container .slider-button svg {
  width: 7px;
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cards-slider .swiper-container .slider-button:first-child {
  margin-right: 16px;
}

.cards-slider .swiper-container .slider-button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}

.cards-slider .result-card {
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cards-slider .result-card figure {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 24px;
}

.cards-slider .result-card figure::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.cards-slider .result-card h6 {
  font-weight: bold;
  font-size: 32px;
  line-height: 40px;
  color: #DD5102;
  margin: 0;
}

.cards-slider .result-card p {
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
  opacity: 0.6;
  margin: 0;
  margin-top: 8px;
}

.quotation-mark.start {
  margin-bottom: 10px;
}

.quotation-mark.end {
  text-align: right;
  margin-top: 10px;
}

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

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

#page .left-image .paragraph:first-child {
  margin-top: 0;
}

#page .left-image__img {
  width: 50%;
  padding-right: 100px;
}

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

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

#page .left-image__text h3,
#page .left-image__text p {
  margin-bottom: 24px;
}

@media (max-width: 890px) {
  #page .left-image {
    flex-direction: column;
    margin-bottom: 60px;
  }

  #page .left-image__img {
    order: 2;
    width: 100%;
    padding: 0;
  }

  #page .left-image__text {
    order: 1;
    width: 100%;
    margin-bottom: 26px;
  }

  #page .left-image .primary-button {
    margin: 20px 0 40px 0;
  }
}

#page .text-huge {
  font-weight: 700;
  font-size: 160px;
  line-height: 160px;
  letter-spacing: -0.03em;
  position: relative;
  margin: 80px 0 62px 0;
}

#page .text-huge+.paragraph {
  font-size: 24px;
  line-height: 36px;
}

@media (max-width: 890px) {
  #page .text-huge {
    font-size: 120px;
    line-height: 120px;
  }

  #page .text-huge::before {
    height: 7px;
    bottom: -13px;
  }

  #page .text-huge+.paragraph {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  #page .text-huge {
    font-size: 85px;
    line-height: 85px;
  }

  #page .text-huge::before {
    height: 7px;
    bottom: -13px;
  }

  #page .text-huge+.paragraph {
    padding-right: 0;
  }
}

#page .text-huge .mobile {
  display: none;
  font-weight: 700;
}

@media (max-width: 480px) {
  #page .text-huge .mobile {
    display: inline-block;
  }
}

#page .text-huge .desktop {
  font-weight: 700;
}

@media (max-width: 480px) {
  #page .text-huge .desktop {
    display: none;
  }
}

#intro-section {
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

#intro-section .video-component {
  margin-bottom: 120px;
}

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

@media (max-width: 890px) {
  #intro-section .video-component .video-button {
    top: calc(50% - 20px);
  }
}

#intro-section .left-image {
  margin-bottom: 0;
}

#intro-section .left-image .footnote {
  margin-bottom: 0;
  opacity: 1;
  display: initial;
}

@media (max-width: 890px) {
  #intro-section .left-image .footnote {
    font-size: 13px;
    line-height: 150%;
  }
}

.section-blue {
  position: relative;
  padding-top: 360px;
  z-index: 0;
  color: white;
}

@media (max-width: 890px) {
  .section-blue {
    padding-top: 300px;
    padding-bottom: 75px;
  }
}

.section-blue .bg {
  width: calc(100% - 20px * 2);
  height: calc(100% - 150px);
  position: absolute;
  left: 20px;
  bottom: 0;
  z-index: 0;
  background: #E7EBEF;
}

@media (max-width: 890px) {
  .section-blue .bg {
    width: 100%;
    left: 0;
  }
}

.section-blue .bg img {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  display: block;
}

@media (max-width: 890px) {
  .section-blue .bg img {
    width: 150%;
    margin-left: auto;
    margin-right: -70%;
    display: block;
  }
}

.section-blue .text-huge {
  margin-top: 0 !important;
  color: #000000;
}

.section-blue .small-container {
  z-index: 1;
  position: relative;
}

.section-blue .video-component {
  margin-bottom: 120px;
}

.section-blue .top {
  text-align: center;
  /*margin-bottom: 120px;*/
}

.section-blue .top .text-huge::after {
  content: none;
}

@media (max-width: 890px) {
  .section-blue .top {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .section-blue::before {
    height: calc(100% - 90px);
  }

  .section-blue .video-component {
    margin-bottom: 60px;
  }
}

.footnote {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: .6;
  margin: 15px 0 91px 0;
}

.footnote-mobile {
  display: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: .6;
}

@media (max-width: 480px) {
  .footnote-mobile {
    display: inherit;
  }
}

#cards-section {
  padding: 120px 0;
}

@media (max-width: 890px) {
  #cards-section {
    padding: 45px 0;
    display: flex;
    flex-direction: column;
  }
}

#cards-section .flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 120px;
}

@media (max-width: 890px) {
  #cards-section .flex {
    margin-top: 50px;
    flex-direction: column;
  }
}

#cards-section .card-container {
  width: 48%;
}

@media (max-width: 890px) {
  #cards-section .card-container {
    width: 100%;
  }

  #cards-section .card-container:last-child {
    margin-top: 40px;
  }
}

#cards-section .card-container figure {
  width: 100%;
}

#cards-section .card-container figure video {
  width: 100%;
  cursor: pointer;
}

#cards-section .card-container .share-button {
  margin-top: 24px;
}

.social-slider {
  overflow: hidden;
  padding-bottom: 0;
}

.social-slider .swiper-top {
  margin-bottom: 44px;
  margin-top: 24px;
}

.social-slider .swiper-top .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 60.625em) {
  .social-slider .swiper-top {
    margin-bottom: 40px;
  }
}

.social-slider .swiper-container {
  max-width: 1000px;
  width: 1000px;
  margin: 0 auto;
  overflow: initial;
}

.social-slider .swiper-container .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social-slider .swiper-container .slider-button {
  width: 40px;
  height: 40px;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-slider .swiper-container .slider-button::before {
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), background 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-slider .swiper-container .slider-button svg {
  width: 7px;
  transition: color 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-slider .swiper-container .slider-button:first-child {
  margin-right: 16px;
}

.social-slider .swiper-container .slider-button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.3;
}

@media (max-width: 480px) {
  .social-slider .swiper-container {
    width: 100%;
    max-width: 100%;
  }
}

.social-slider .swiper-slide {
  opacity: .2;
  width: auto !important;
  position: relative;
}

.social-slider .swiper-slide::after {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #123;
  top: 0;
  left: 0;
  z-index: 9;
  position: absolute;
}

.social-slider .swiper-slide img,
.social-slider .swiper-slide .video-component {
  width: 700px;
}

@media (max-width: 480px) {

  .social-slider .swiper-slide img,
  .social-slider .swiper-slide .video-component {
    width: 100%;
  }
}

.social-slider .swiper-slide-active {
  opacity: 1;
}

.social-slider .swiper-slide .primary-button {
  margin-top: 20px;
}

.social-slider .swiper-slide .primary-button .primary-button-icon-container {
  width: 54px;
  height: 54px;
}

.social-slider .swiper-slide .primary-button .primary-button-icon-container svg {
  fill: none;
  width: 25px;
  height: 25px;
  margin-left: -3px;
}

@media (max-width: 480px) {
  .social-slider .swiper-slide {
    width: 70% !important;
    margin-left: 20px;
  }
}

.social-slider .swiper-slide-active::after {
  width: 0;
  height: 0;
  display: none;
}

.section-pre-footer {
  padding-top: 0;
}

#page .text-huge+.paragraph span {
  display: block
}

.section-blue .small-container.top figure {
  margin: 64px 0 0 0;
}

.section-blue .small-container.top figure img {
  margin-bottom: 32px;
  width: 100%;
}

.section-blue .small-container.top figure figcaption {
  font-size: 20px;
  font-style: italic;
  text-align: left;
  line-height: 30px;
  color: #2F3640;
}