@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;900&display=swap");
h2 {
  font-family: Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: color #001e32;
}

body {
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #071E30;
  overscroll-behavior-y: none;
  position: relative;
}

.logo {
  position: fixed;
  z-index: 1000;
  top: 30px;
  left: 30px;
  -webkit-animation: 1s ease-in 0s 1 show;
          animation: 1s ease-in 0s 1 show;
}

.logo img {
  width: 180px;
  -webkit-filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.6));
}

.page-scroller {
  position: fixed;
  z-index: 500;
  bottom: 0px;
  right: 0px;
}

.page-scroller a {
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 60px;
}

.page-scroller a.scroll-left {
  background-image: url("../img/arrow_pagination_left_blue.svg");
}

.page-scroller a.scroll-right {
  background-image: url("../img/arrow_pagination_right_blue.svg");
}

.container {
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: scroll hidden;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}

.container > section {
  position: relative;
}

.container > section .content {
  width: 450px;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  place-items: center start;
}

.container > section .content > div {
  width: 100%;
}

.navigation-button {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.navigation-button a {
  display: block;
  padding: 25px;
  background: url(../img/hamburger_blue.svg);
  background: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.navigation-button a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.navigation-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #071E30;
  color: #fff;
  overflow-y: hidden;
  z-index: 500;
  display: none;
}

.navigation-menu .close {
  position: fixed;
  top: 15px;
  right: 15px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.navigation-menu .close a img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navigation-menu .close:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.navigation-menu .menu {
  -ms-grid-rows: 1fr auto;
      grid-template-rows: 1fr auto;
  height: calc(100% - 100px);
  vertical-align: middle;
  text-align: center;
  overflow-y: scroll;
  padding-top: 100px;
  gap: 50px;
  display: -ms-grid;
  display: grid;
  color: white;
}

.navigation-menu .grid {
  -ms-grid-columns: (1fr)[1];
      grid-template-columns: repeat(1, 1fr);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  display: -ms-grid;
  display: grid;
  grid-auto-rows: minmax(1.25rem, auto);
  gap: 0px;
}

.navigation-menu .grid > div {
  position: relative;
  padding: 20px;
}

.navigation-menu .grid > div .navbg {
  -webkit-transition: opacity 0.3s ease-in 0s;
  transition: opacity 0.3s ease-in 0s;
  background: url(../img/lens_flare_2.jpeg) center center/contain no-repeat;
  -webkit-transform: translateY(-200px);
          transform: translateY(-200px);
  position: absolute;
  height: 500px;
  z-index: -1;
  width: 100%;
  opacity: 0;
  left: 0px;
  top: 0px;
}

.navigation-menu .grid > div:hover .navbg {
  opacity: 1;
}

.navigation-menu .grid > div a {
  font-size: 60px;
  color: #fff;
  text-decoration: none;
}

.navigation-menu ul {
  margin: 0;
  margin-top: 100px;
  padding: 0;
  display: block;
}

.navigation-menu ul li {
  margin: 0;
  margin-top: 50px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.navigation-menu ul li:first-child {
  margin-top: 0;
}

.navigation-menu ul li a {
  font-size: 60px;
  color: #fff;
  text-decoration: none;
  background-image: url("../img/lens_flare_2.jpeg");
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  padding: 100px;
}

.navigation-menu .address {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  margin-top: 20px;
  display: block;
  position: fixed;
  left: 50px;
  bottom: 50px;
}

.navigation-menu .icons {
  padding: 0 !important;
  width: 100%;
  text-align: center;
}

.navigation-menu .icons a {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.05);
  background-position: center center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navigation-menu .icons a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.navigation-menu .icons a.linkedin {
  background-image: url(../img/icon-linkedin.svg);
}

@media only screen and (max-device-width: 768px) {
  .container {
    overflow: auto;
    overflow-x: hidden;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
    display: block;
    height: auto;
  }
  .container > section .content {
    width: 100%;
    position: relative;
    z-index: 10;
    min-height: auto;
    display: -ms-grid;
    display: grid;
    place-items: center start;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  header {
    background: #071E30;
    height: 50px;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 100;
  }
  .logo {
    position: fixed;
    z-index: 1005;
    top: 18px;
    left: 30px;
    -webkit-animation: 1s ease-in 0s 1 show;
            animation: 1s ease-in 0s 1 show;
  }
  .logo img {
    width: 150px;
    -webkit-filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.6));
            filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.6));
  }
  .navigation-button {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 100;
  }
  .navigation-button a {
    display: block;
    padding: 12px;
    background: url(../img/hamburger_white.svg);
    background-repeat: no-repeat;
    background-position: center center;
  }
  .navigation-button a img {
    display: none;
  }
  .navigation-menu .grid > div .navbg {
    display: none;
  }
  .navigation-menu .grid > div:hover .navbg {
    opacity: 1;
  }
  .navigation-menu .grid > div a {
    font-size: 30px;
  }
  .navigation-menu ul li a {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
  }
  .navigation-menu .address {
    display: none;
  }
  .page-scroller {
    display: none;
  }
}

.overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.overlay .close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 999999;
}

.overlay .close a img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.overlay .content {
  position: relative;
  padding: 0;
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

.overlay iframe {
  margin-top: 80px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
