@font-face {
  font-family: Lato;
  src: url("/static/landing/fonts/Lato-Reg.ttf"); }

@font-face {
  font-family: Lato;
  src: url("/static/landing/fonts/Lato-Bold.ttf");
  font-weight: bold; }

@font-face {
  font-family: Lato;
  src: url("/static/landing/fonts/Lato-Bla.ttf");
  font-weight: 900; }

@font-face {
  font-family: Lato;
  src: url("/static/landing/fonts/Lato-Lig.ttf");
  font-weight: 300; }

a {
  color: inherit; }
  a:hover {
    text-decoration: none; }

.square-btn {
  display: inline-block;
  position: relative;
  border: 2px solid black;
  line-height: 42px;
  color: black;
  padding: 0px 60px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  z-index: 0;
  -webkit-transition: color 0.15s ease-out;
  transition: color 0.15s ease-out; }
  .square-btn:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition: -webkit-transform 0.15s ease-out;
    transition: -webkit-transform 0.15s ease-out;
    transition: transform 0.15s ease-out;
    transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
    background-color: black;
    z-index: -1; }
  .square-btn:hover {
    color: white; }
    .square-btn:hover:before {
      -webkit-transform: scaleX(1);
      transform: scaleX(1); }
  @media (max-width: 550px) {
    .square-btn {
      font-size: 15px;
      line-height: 40px;
      padding: 0px 50px; } }

.underline-title {
  position: relative;
  margin-bottom: 70px; }
  .underline-title:after {
    content: "";
    position: absolute;
    background-color: white;
    height: 2.5px;
    width: 70px;
    bottom: -0.5em;
    left: 0; }
  .underline-title.center:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }

/* FF Parallax Fix, forces firefox to update the transform every frame */
@-webkit-keyframes ff-parallax-fix {
  from {
    opacity: 1; }
  to {
    opacity: 0.999; } }
@keyframes ff-parallax-fix {
  from {
    opacity: 1; }
  to {
    opacity: 0.999; } }

html {
  overflow-x: hidden; }

body {
  font-family: Lato;
  -webkit-perspective: 100px;
  perspective: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden; }

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 100px;
  background-color: white;
  height: 70px; }
  header .logo {
    width: 40px; }
  header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold; }
    header nav > * {
      margin: 0 30px; }
    header nav a {
      position: relative;
      color: black;
      line-height: 70px; }
      header nav a:hover {
        color: black; }
        header nav a:hover::after {
          content: "";
          background-color: #7a003c;
          position: absolute;
          left: 0;
          right: 0;
          top: calc( 100% - 3px);
          bottom: 0; }
  header .menu-btn {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background-color: transparent;
    background-image: url("/static/landing/images/hamburger-icon.svg");
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: center;
    cursor: pointer; }
    header .menu-btn:hover {
      background-color: #FAFAFA; }
    header .menu-btn:active {
      background-color: #F0F0F0; }
  @media (max-width: 1000px) {
    header {
      padding: 0 20px; }
      header nav {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: white;
        -webkit-transition: -webkit-transform 0.5s ease;
        transition: -webkit-transform 0.5s ease;
        transition: transform 0.5s ease;
        transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        z-index: -1; }
        header nav > * {
          margin: 0px 100px; }
        header nav.show {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-transform: translateY(0);
          transform: translateY(0); }
      header .menu-btn {
        display: block; } }

.hero {
  height: calc(100vh - 70px);
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .hero:before {
    content: "";
    position: absolute;
    left: 0;
    top: -40px;
    right: 0;
    bottom: -40px;
    background-image: var(--bg-img, url("/static/landing/images/hero.jpg"));
    background-size: cover;
    -webkit-transform: translateZ(-17.64706px) scale(1.17647);
    transform: translateZ(-17.64706px) scale(1.17647);
    -webkit-animation: ff-parallax-fix 0.1s infinite linear;
    animation: ff-parallax-fix 0.1s infinite linear;
    z-index: -1; }
  .hero .contents {
    margin-left: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .hero p {
    white-space: nowrap;
    font-size: 20px;
    font-weight: 300;
    background-color: #003263;
    line-height: 50px;
    padding: 0 15px;
    margin-bottom: 5px;
    color: white; }
  .hero .big-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 4px; }
    .hero .big-text p {
      font-size: 40px;
      font-weight: bold; }
  @media (max-width: 1000px) {
    .hero {
      height: calc( min(100vh - 70px, 120vw));
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
      .hero:before {
        background-image: var(--bg-img-mobile, url("/static/landing/images/hero-mobile.jpg"));
        background-position: top center; }
      .hero .contents {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        margin-top: calc( min( 150px, 40vw )); }
      .hero .big-text {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
  @media (max-width: 550px) {
    .hero p {
      line-height: 40px;
      font-size: 15px; }
    .hero .big-text p {
      font-size: 26px; } }

.section2 {
  text-align: center;
  background-color: #7a003c;
  max-width: 777px;
  color: white;
  font-size: 16px;
  padding: 70px;
  margin: 0px 20px 0 20px;
  -ms-flex-item-align: center;
  align-self: center; }
  .section2 h1 {
    font-size: 34.5px;
    margin-bottom: 100px; }
  .section2 p {
    margin-bottom: 30px; }
  .section2 .underline-title:after {
    background-color: white;
    width: 70px; }
  .section2 .stats-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin: 80px 0 40px 0; }
    .section2 .stats-list li {
      -webkit-box-flex: 1;
      -ms-flex: 1 0;
      flex: 1 0;
      margin: 0 0px 40px 0px;
      list-style-type: none;
      min-width: 145px; }
    .section2 .stats-list .number {
      font-size: 43px;
      font-weight: bold;
      margin-bottom: -10px; }
    .section2 .stats-list .description {
      font-size: 14px;
      font-weight: 300; }
  .section2:after {
    content: "";
    background-image: url("/static/landing/images/world.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 195px;
    height: 195px;
    display: block;
    margin: 0 auto; }
  @media (max-width: 550px) {
    .section2 {
      padding: 40px 30px;
      margin: 0 10px; } }

.landing-image2 {
  width: calc(min(1002px, 100vw));
  height: calc(min(668px, 80vw));
  background-image: url("/static/landing/images/image2.jpg");
  background-size: cover;
  background-position: center;
  margin: 50px auto -120px auto;
  z-index: -1;
  -webkit-transform: translateZ(-33.33333px) scale(1.33333);
  transform: translateZ(-33.33333px) scale(1.33333);
  -webkit-animation: ff-parallax-fix 0.1s infinite linear;
  animation: ff-parallax-fix 0.1s infinite linear; }
  @media (max-width: 550px) {
    .landing-image2 {
      margin-top: 0px;
      margin-bottom: 0px; } }

.section3 {
  background-color: white;
  width: 903px;
  margin: 0 auto 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17.5px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }
  .section3 .square-btn {
    color: #7a003c;
    border-color: #7a003c; }
    .section3 .square-btn:before {
      background-color: #7a003c; }
    .section3 .square-btn:hover {
      color: white; }
  .section3 .underline-title:after {
    background-color: #7a003c;
    width: 70px; }
  .section3 .contents {
    padding: 40px 50px; }
    .section3 .contents h1 {
      font-size: 34.5px; }
      .section3 .contents h1 em {
        color: #7a003c;
        font-style: normal; }
    .section3 .contents li {
      list-style-type: none;
      margin-bottom: 7px; }
      .section3 .contents li i {
        color: #7a003c;
        margin-right: 10px;
        font-size: 0.5em;
        position: relative;
        top: -2px; }
    .section3 .contents ul {
      margin-bottom: 40px;
      padding-left: 0px; }
  .section3 .image {
    width: 285px;
    margin-left: auto;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(102, 0, 50, 0.8)), to(rgba(102, 0, 50, 0.8))), url("/static/landing/images/image3.jpg");
    background-image: linear-gradient(rgba(102, 0, 50, 0.8), rgba(102, 0, 50, 0.8)), url("/static/landing/images/image3.jpg");
    background-size: cover; }
  .section3:before {
    content: "";
    background-color: #7a003c;
    position: absolute;
    z-index: -2;
    left: -45px;
    right: 200px;
    top: 145px;
    bottom: -30px;
    -webkit-transform: translateZ(-11.11111px) scale(1.11111);
    transform: translateZ(-11.11111px) scale(1.11111);
    -webkit-animation: ff-parallax-fix 0.1s infinite linear;
    animation: ff-parallax-fix 0.1s infinite linear; }
  .section3:after {
    content: "";
    background-color: #e2e2e2;
    position: absolute;
    z-index: -3;
    left: 70px;
    top: 150px;
    width: 90%;
    bottom: -60px;
    -webkit-transform: translateZ(-17.64706px) scale(1.17647);
    transform: translateZ(-17.64706px) scale(1.17647);
    -webkit-animation: ff-parallax-fix 0.1s infinite linear;
    animation: ff-parallax-fix 0.1s infinite linear; }
  @media (max-width: 1000px) {
    .section3 {
      width: auto;
      margin-left: 20px;
      margin-right: 20px; }
      .section3 .image {
        position: absolute;
        top: calc(100% - 20px);
        left: -50px;
        right: -50px;
        height: 115px;
        width: auto;
        z-index: -1;
        -webkit-transform: translateZ(-5.26316px) scale(1.05263);
        transform: translateZ(-5.26316px) scale(1.05263);
        -webkit-animation: ff-parallax-fix 0.1s infinite linear;
        animation: ff-parallax-fix 0.1s infinite linear;
        background-position-y: 46%; }
      .section3:before {
        top: 10%;
        bottom: 50%; }
      .section3:after {
        width: auto;
        right: -100px;
        top: 50%;
        bottom: 10%; } }
  @media (max-width: 550px) {
    .section3 {
      margin-left: 10px;
      margin-right: 10px;
      font-size: 15px; }
      .section3 .contents {
        padding: 30px; }
        .section3 .contents h1 {
          font-size: 30px; } }
  @media (max-width: 380px) {
    .section3 {
      margin-left: 0;
      margin-right: 0; } }

.section4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 240px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .section4 .square-btn {
    color: white;
    border-color: white; }
    .section4 .square-btn:before {
      background-color: white; }
    .section4 .square-btn:hover {
      color: #003263; }
  .section4 .item {
    width: 402px;
    height: 506px;
    background-color: #003161;
    background-size: cover;
    color: white;
    padding: 50px 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
    .section4 .item h1 {
      font-size: 34.5px;
      line-height: 1.2em;
      margin-bottom: 90px; }
    .section4 .item:not(:first-child) {
      margin-left: 10px; }
  .section4 .underline-title:after {
    bottom: -0.9em; }
  .section4 .image1 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 45, 89, 0.9)), to(rgba(0, 45, 89, 0.9))), url("/static/landing/images/image3.jpg");
    background-image: linear-gradient(rgba(0, 45, 89, 0.9), rgba(0, 45, 89, 0.9)), url("/static/landing/images/image3.jpg");
    background-position: center right; }
  .section4 .image2 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 45, 89, 0.9)), to(rgba(0, 45, 89, 0.9))), url("/static/landing/images/digital_house.jpg");
    background-image: linear-gradient(rgba(0, 45, 89, 0.9), rgba(0, 45, 89, 0.9)), url("/static/landing/images/digital_house.jpg");
    background-position: center; }
  @media (max-width: 1000px) {
    .section4 {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding: 0 20px; }
      .section4 .item {
        padding: 25px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        max-width: 530px;
        width: 100%;
        height: 160px; }
        .section4 .item h1 {
          font-size: 24px;
          margin-bottom: 0; }
          .section4 .item h1 br {
            display: none; }
        .section4 .item:not(:first-child) {
          margin-left: 0;
          margin-top: 15px; } }
  @media (max-width: 550px) {
    .section4 {
      padding: 0 10px; }
      .section4 .item h1 {
        font-size: 18px; } }
  @media (max-width: 380px) {
    .section4 {
      padding: 0; } }

.section5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 150px;
  width: 1010px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .section5 .underline-title:after {
    background-color: #003263;
    width: 100px; }
  .section5 .contents h1 {
    font-size: 50px; }
    .section5 .contents h1 em {
      color: #003263;
      font-style: normal; }
  .section5 .contents .icon-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .section5 .contents .icon-link i {
      font-size: 1.5em;
      margin-right: 0.25em; }
  .section5 .contents a {
    font-size: 18px;
    font-weight: bold;
    color: #003263; }
  .section5 .media-list {
    max-width: 558px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .section5 .media-list .media {
      position: relative;
      margin: 5px;
      width: 176px;
      height: 176px;
      background-color: lightgray;
      border-radius: 7px;
      background-size: cover; }
      .section5 .media-list .media .overlay {
        display: none;
        position: absolute;
        text-align: center;
        line-height: 176px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 25px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.2); }
      .section5 .media-list .media:hover .overlay {
        display: block; }
  @media (max-width: 1000px) {
    .section5 {
      width: auto;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      .section5 .media-list {
        margin-top: 40px; }
      .section5 .underline-title:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); } }

.section6 {
  margin: 200px auto;
  text-align: center; }
  .section6 .square-btn {
    color: #003263;
    border-color: #003263; }
    .section6 .square-btn:before {
      background-color: #003263; }
    .section6 .square-btn:hover {
      color: white; }
  .section6 .underline-title:after {
    background-color: #003263;
    width: 100px; }
  .section6 h1 {
    font-size: 40px;
    margin-bottom: 100px; }
    .section6 h1 br {
      display: none; }
    .section6 h1 em {
      color: #003263;
      font-style: normal; }
  .section6 .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .section6 .row > :not(:first-child) {
      margin-left: 15px; }
  @media (max-width: 1000px) {
    .section6 h1 br {
      display: inline; } }
  @media (max-width: 550px) {
    .section6 h1 {
      font-size: 30px; } }

footer {
  background-color: #003263;
  color: white;
  padding: 78px 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px; }
  footer .underline-title:after {
    background-color: white;
    width: 50px; }
  footer a {
    font-weight: bold; }
  footer h1 {
    font-size: 30px; }
  footer h2 {
    font-size: 16px; }
  footer .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    footer .links .internal {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; }
      footer .links .internal > :not(:first-child) {
        margin-top: 12px; }
    footer .links .social {
      margin-top: auto;
      font-size: 1.5em;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      footer .links .social > :not(:first-child) {
        margin-left: 20px; }
  footer .adresses {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: -30px;
    margin-right: -15px; }
    footer .adresses > * {
      margin-left: 15px;
      margin-right: 15px;
      margin-bottom: 30px; }
    footer .adresses img {
      width: 233px;
      height: 156px;
      margin-bottom: 10px; }
  @media (max-width: 1000px) {
    footer {
      padding: 30px 0px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center; }
      footer .links {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 50px; }
        footer .links .internal {
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center; }
        footer .links .social {
          margin-top: 20px; }
      footer .adresses {
        margin-right: auto; }
      footer .underline-title:after {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%); } }
  @media (max-width: 550px) {
    footer {
      font-size: 12px; }
      footer h1 {
        font-size: 20px; }
      footer h2 {
        font-size: 14px; }
      footer .adresses .img {
        width: 170px;
        height: 120px; } }
