@import url("./bulma/bulma.min.css");
@import url("./splide.min.css");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,900&display=swap");

.has-text-gray {
  color: #777777;
}

.has-text-danger {
  color: red !important;
}

hr {
  background-color: #454750;
}

* {
  font-family: "Space Grotesk", sans-serif;
}

body {
  background-color: white;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: block;
}

.body-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
  background-color: #1b1b1b;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.body-overlay.active {
  opacity: 0.5;
  pointer-events: auto;
}

.body-overlay2 {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
  background-color: #1b1b1b;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.body-overlay2.active {
  opacity: 0.5;
  pointer-events: auto;
}

.page-loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1030;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  unicode-bidi: isolate;
}
.page-loader-container.hide {
  opacity: 0;
  display: none;
}
.page-loader-container .page-loader {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 350px;
  display: block;
  unicode-bidi: isolate;
}
.page-loader-container .page-loader .page-loader-inner {
  animation-name: pulsate;
  -webkit-animation-name: pulsate;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-timing-function: linear;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.page-loader-container .page-loader .page-loader-inner .page-loader-logo {
  position: relative;
  z-index: 2;
  margin: auto;
  max-width: 100%;
  height: auto;
  max-width: 100%;
  height: auto;
  min-height: auto;
  display: block;
  width: 300px;
  aspect-ratio: auto 300/76;
  height: 76px;
  overflow-clip-margin: content-box;
  overflow: clip;
}

@-webkit-keyframes slide-down {
  0% {
    margin-top: -90px;
  }
  100% {
    margin-top: 0px;
  }
}

@keyframes slide-down {
  0% {
    margin-top: -90px;
  }
  100% {
    margin-top: 0px;
  }
}
.navbar {
  height: 90px;
  background-color: white;
}
.navbar.is-fixed-top {
  background-color: white;
  -webkit-animation: slide-down 0.5s ease-out;
          animation: slide-down 0.5s ease-out;
}
.navbar .navbar-brand .navbar-item {
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent;
  margin-left: 2rem;
}
.navbar .navbar-brand .navbar-item img {
  max-height: 150px !important;
}
.navbar .navbar-menu .navbar-end > .navbar-item {
  font-weight: 500;
  position: relative;
  margin-right: 20px;
}
.navbar .navbar-menu .navbar-end > .navbar-item > a {
  font-size: 16px;
  padding: 12px 0;
}
.navbar .navbar-menu .navbar-end > .navbar-item > a:hover {
  background-color: transparent;
  color: #0034c3;
}
.navbar .navbar-menu .navbar-end > .navbar-item.is-active a {
  color: #0034c3;
}
.navbar .navbar-menu .navbar-end > .navbar-item.current-link {
  background-color: transparent;
}
.navbar .navbar-menu .navbar-end > .navbar-item.current-link > a::before {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  right: 0px;
  top: 5px;
  height: 1.5px;
  background-color: #0034c3;
  width: 100%;
  opacity: 1;
}
.navbar .navbar-menu .navbar-end > .navbar-item > a {
  color: black;
}
.navbar .navbar-menu .navbar-end > .navbar-item > a.is-dropdown::after {
  content: "\e817";
  color: white;
  display: inline-block;
  font: 400 normal 8px "fontello";
  position: relative;
  top: -2px;
  margin: 0 0 0 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: white;
  overflow-y: scroll;
  z-index: 50;
  margin-right: -100%;
  -webkit-transition: margin 0.3s ease-out;
  transition: margin 0.3s ease-out;
}
.mobile-nav.active {
  margin-right: 0;
}
.mobile-nav .mobile-nav-buttons {
  padding: 1rem;
}
.mobile-nav .mobile-nav-buttons a {
  padding: 1rem;
  margin-left: 15px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.mobile-nav .mobile-nav-buttons a:hover * {
  color: #0034c3;
  stroke: #0034c3;
}
.mobile-nav .bottom-links {
  padding: 0 10px;
}
.mobile-nav .bottom-links a.button.is-danger {
  background-color: #0034c3;
  color: white;
  border-radius: 0;
  padding: 1rem 2rem;
}

.is-display-1 {
  font-size: 120px;
  font-weight: bold;
  color: black;
  line-height: 1;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.is-display-1 i {
  font-weight: 200;
}
.is-display-1.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-display-2 {
  font-size: 80px;
  font-weight: bold;
  color: black;
  line-height: 1;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.is-display-2.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-display-3 {
  font-size: 50px;
  font-weight: bold;
  color: black;
  line-height: 1;
}

.is-display-4 {
  font-size: 25px;
  font-weight: bold;
  color: black;
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1s ease-out;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.is-display-4.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.body-content {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: block;
  unicode-bidi: isolate;
  margin-top: -90px;
  margin-bottom: -150px;
}
.body-content .paragraph-1 {
  color: black;
  font-size: 18px;
  font-weight: 200;
}
.body-content .description {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 1s 0.25s ease-out;
  transition: all 1s 0.25s ease-out;
}
.body-content .description.show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.body-content .partners .column {
  text-align: center;
}
.body-content footer {
  position: relative;
}
.body-content footer .has-background-blue {
  background-color: #0034c3;
}
.body-content footer .footer-container {
  position: relative;
  z-index: 1;
}

.content-wrapper {
  margin: 70px auto 150px;
  max-width: 1380px;
}

@media screen and (max-width: 1024px) {
  .flowmap-deformation-wrapper {
    height: 100vh;
  }
  .navbar {
    height: 80px;
    background-color: white;
  }
  .navbar .navbar-brand {
    height: 80px;
  }
  .navbar .navbar-brand .navbar-item {
    margin-left: 1rem;
  }
  .navbar .navbar-brand .navbar-burger {
    padding-right: 4rem;
  }
  .navbar .navbar-brand .navbar-burger span {
    background-color: black;
  }
  .navbar .navbar-brand .navbar-burger:hover {
    background-color: transparent;
  }
  .body-content {
    padding-top: 80px;
    margin-bottom: 0px;
  }
  .body-content .is-display-1 {
    font-size: 32px;
  }
  .body-content .is-display-2 {
    font-size: 40px;
  }
  .body-content .is-display-3 {
    font-size: 28px;
  }
  .body-content .is-display-4 {
    font-size: 24px;
  }
  .footer-container {
    margin-left: 0 !important;
    padding-right: 1em !important;
  }
  .footer-container .content-wrapper {
    margin-bottom: 0;
  }
  .footer-container .lets-talk {
    -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;
  }
  .footer-container .contact-button-wrapper {
    margin-left: 0 !important;
  }
}
