@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');

body,
input,
button {
  font-family: 'Raleway', sans-serif;
}

* {
  box-sizing: border-box;
}

div#obfuscator {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 255;
  transition: opacity .25s;
}

div#obfuscator.hidden {
  opacity: 0;
  pointer-events: none;
}


div#obfuscator svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

div#things-fixed {
  position: fixed;
  top: 60px;
  left: 0px;
  width: 100%;
  height: 60px;
  z-index: 2;
  background: #0e3557;
  opacity: 0;
  transform: translateY(-60px);
  will-change: opacity, transform;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  padding: 0 100px;
}

div#things-fixed.visible {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}

div#things-fixed div.things {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  height: 60px;
  width: 100%;
}

div#things-fixed div.things>div {
  display: grid;
  font-size: 12px;
  align-content: center;
  text-align: center;
  cursor: pointer;
  transition: background-color .25s;
}

div#things-fixed div.things>div:hover {
  background: rgba(255, 255, 255, 0.1);
}

div#menu-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 3;
  background: #184A7900;
  transition: background-color .25s;
  height: 60px;
}

div#menu-fixed.visible {
  background: #184A79;
}

div.menu {
  text-align: center;
  display: grid;
  grid-template-columns: min-content min-content min-content;
  grid-gap: 0px;
  padding: 0px 10px;
  max-width: 1000px;
  float: right;
  padding-right: 100px;
  align-content: stretch;
  height: 100%;
}

div.menu>div {
  display: grid;
  align-content: center;
  justify-content: center;
  padding: 0px 20px;
  cursor: pointer;
  position: relative;
  transition: background-color .25s;
  font-size: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  height: 100%;
}

div.menu>div:not(:last-of-type)::after {
  content: '';
  width: 1px;
  background: white;
  position: absolute;
  right: 0px;
  top: 50%;
  height: 10px;
  transform: translateY(-50%);
  display: none;
}

div.menu>div:hover {
  background: rgba(255, 255, 255, 0.05);
}

img#menu-logo {
  float: left;
  height: 25px;
  position: absolute;
  top: 5px;
  height: 50px;
  transform: translateY(-100px);
  left: 100px;
  transition: transform .25s;
}

div.carousel {
  overflow: visible;
}

div.carousel>button.next_carousel {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  cursor: pointer;
}

div.carousel>button {
  outline: 0;
  border: 0;
  background: transparent;
  padding: 0px 10px;
  margin: 0px;
  transition: transform .25s;
  width: 30px;
  height: 40px;
  position: relative;
  cursor: pointer;
}

div.carousel>button:hover>img.hov {
  opacity: 1;
}

div.carousel>button>img.hov {
  opacity: 0;
  transition: opacity .25s;
}

div.carousel>button>img {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 15px;
}

div.carousel>button.prev_carousel {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}


div.carousel>div.scroller {
  display: grid;
  width: calc(100% - 75px);
  grid-template-columns: 100% 100% 100%;
  overflow: hidden;
  margin-left: 37.5px;
}

img#menu-logo.visible {
  transform: translateY(0%);
}

body {
  margin: 0;
  margin-top: 0;
  color: white;
  background: #154A79;
}

div.section {
  /* width: calc(100% - 30px);
  margin-left: 15px;
  margin-right: 15px; */
  width: 100%;
  overflow: hidden;
  /* border-radius: 10px;
  background-clip: clip; */
  /* margin-bottom: 15px; */
  position: relative;
}

div.limiter {
  /* max-width: 1000px;
  margin: 0 auto; */
  position: relative;
  padding: 0 100px;
}

div.unlimiter {
  margin: 0 auto;
}

.centered {
  text-align: center;
}

h3 {
  font-size: 18px;
  margin: 0px;
  padding: 0px 50px;
  font-weight: normal;
  line-height: 30px;
  text-align: center;
}

h3>strong {
  color: #67A9E4;
  font-weight: bold;
}

img#logo {
  width: calc(100% - 100px);
  max-width: 700px;
  margin: 0;
  margin-top: 150px;
}

div.parallax-bg {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.parallax-a {
  z-index: -2;
}

.parallax-a>div {
  background-image: url('./gfx/bg.png');
}

.parallax-b {
  opacity: 0.75;
  filter: blur(10px);
}

.parallax-b>div {
  background-image: url('./gfx/bg2_fullres.png');
  background-repeat: no-repeat;
  background-position: top center !important;
}

div.parallax-bg>div {
  background-size: 100%;
  background-position: center;
  width: max(100vw, 100vh);
  height: max(100vw, 100vh);
  position: absolute;
  top: 0px;
  left: 0px;
}

div.parallax-bg>div:nth-of-type(even) {
  transform: scaleY(-1);
}

div.tiles-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  /* grid-row-gap: 15px; */
}

div.tiles-row {
  width: 100%;
}

div.tiles-row:nth-of-type(2) div.tiles {
  /* grid-template-columns: 1fr 2fr 1fr; */
}

div.tiles {
  width: 100%;
  display: grid;
  /* grid-template-columns: 2fr 1fr 1fr; */
  grid-template-columns: 1fr 1fr 1fr;
}

div.tile {
  background: white;
  /* border-radius: 10px; */
  height: 500px;
  position: relative;
  /* display: grid;
  align-content: end; */
  cursor: pointer;
  transition: background-color .25s, transform .25s;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05), 0 -25px 100px -25px rgba(103, 169, 228, 0.5) inset;
  /* z-index: -1; */
  overflow: hidden;
  /* transform: scale(1); */
  padding-bottom: 35px;
}

/* div.tile::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 7.5px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px solid rgba(0, 0, 0, 0.5);
  z-index: 5;
} */

div.tile::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  /* height: 75%; */
  height: 100%;
  background: #184A79;
  opacity: 1;
  /* background: linear-gradient(rgba(24, 74, 121, 0), rgba(24, 74, 121, 1)); */
  z-index: 3;
  mix-blend-mode: multiply;
  transition: opacity 0s;
  will-change: opacity;
}

div.tile.bright::before {
  background: #6AB8ED;
}

div.tile:hover::before {
  opacity: 0;
}

div.tile>div.backgrounder {
  position: absolute;
  top: -100px;
  left: -100px;
  height: calc(100% + 200px);
  width: calc(100% + 200px);
  overflow: hidden;
  z-index: 1;
  /* opacity: 0.5; */
  transition: filter 0s;
  filter: grayscale(100%) contrast(0.5) brightness(1.75);
}

div.tile:hover>div.backgrounder {
  /* opacity: 0.9; */
  filter: grayscale(0%) contrast(1) brightness(1);
}

div.tile>div.backgrounder>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

div.tile>div.titles {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  z-index: 4;
  text-align: center;
  filter: drop-shadow(0 0 20px black);
}

div.tile button {
  transform: scale(0);
  transition: transform .25s, height .25s, margin .25s;
  transform-origin: bottom;
  background: #4EABE9;
  border: 0px;
  font-size: 12px;
  padding: 0px 25px;
  border-radius: 5px;
  color: white;
  height: 0px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0px;
  pointer-events: none;
}

div.tile:hover button {
  transform: scale(1);
  height: 30px;
  margin-top: 10px;
}

div.tile div.dot {
  background-color: #4EABE9;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  position: relative;
  box-sizing: content-box;
  /* border: 10px solid #1880C6; */
  transition: background-color .25;
}

div.dot::before {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 75px;
  background: rgba(24, 128, 198, 0.15);
  content: '';
  border-radius: 100%;
  filter: blur(50px);
  will-change: filter;
  z-index: -1;
}

div.dot>img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  /* filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 1)); */
}

div.tile h2 {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  margin: 0;
  padding: 0 25px;
  padding-top: 15px;
  line-height: 50px;
}

div.highlight {
  background: radial-gradient(farthest-side at top left, rgba(21, 74, 121, 0.1) 75%, rgba(21, 74, 121, 0));
  position: relative;
  overflow: hidden;
}

div.highlight.reversed {
  background: radial-gradient(farthest-side at top right, rgba(21, 74, 121, 0.1) 75%, rgba(21, 74, 121, 0));
}

div.highlight::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0px;
  width: 100%;
  background: linear-gradient(rgba(21, 74, 121, 0.1) 75%, rgba(21, 74, 121, 0));
  height: 1px;
  z-index: -1;
}

div.highlight.reversed::before {
  background: linear-gradient(180deg, rgba(21, 74, 121, 0.1) 75%, rgba(21, 74, 121, 0));
}

div.highlight.reversed::after {
  background: linear-gradient(to bottom left, rgba(21, 74, 121, 0) 0%, rgba(21, 74, 121, 0) 50%, rgba(21, 74, 121, 0.5) 50%, rgba(21, 74, 121, 0.5) 100%);
}

/* div.highlight::after {
  content: '';
  position: absolute;
  top: -25px;
  left: 0px;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(21, 74, 121, 0) 0%, rgba(21, 74, 121, 0) 50%, rgba(21, 74, 121, 0.5) 50%, rgba(21, 74, 121, 0.5) 100%);
  height: 25px;
} */

div.backgroundPicture {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 125%;
}

div.backgroundPicture>img {
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 150%;
}

div.highlight>div.limiter>div {
  position: relative;
}

div.highlight div>p:last-child:after,
div.highlight div>ul:last-child:after {
  content: '';
  height: 3;
  width: 150px;
  max-width: 100%;
  background: #4EABE9;
  display: block;
  bottom: 0px;
  left: 0px;
  margin-top: 25px;
}

div.highlight ul {
  margin-top: 25px;
  padding-left: 40px;
  margin-bottom: 0px;
}

div.highlight ul li {
  margin-bottom: 10px;
}

div.highlight ul+p {
  margin-top: 25px;
}


div.highlight p {
  font-size: 16px;
  margin: 0px;
  font-weight: normal;
  line-height: 28px;
  text-align: justify;
  margin-bottom: 15px;
}

div.highlight div.textOnParallax>p:first-of-type {
  font-size: 25px;
  line-height: 37.5px;
}

div.highlight h2 {
  font-size: 50px;
  font-weight: normal;
  margin: 0px;
  margin-bottom: 25px;
  color: white;
}

div.highlight.reversed div.picture {
  right: 0px;
  left: auto;
}

div.highlight div.picture {
  width: 45vw;
  top: -50px;
  left: 0px;
  height: calc(100% + 100px);
  /* min-height: 400px; */
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05);
}

div.picture::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 7.5px;
  z-index: 2;
}

div.picture::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(78, 171, 233, 0.25), rgba(78, 171, 233, 0));
  z-index: 1;
}

div.picture>img {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  object-fit: cover;
}

.parallax {
  will-change: filter, transform;
}

div.form {
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.05), 0 -25px 100px -25px rgba(103, 169, 228, 0.5) inset;
  background: #154A79;
  padding: 50px;
  text-align: center;
}

div.form::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 7.5px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px solid rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

div.form>div {
  display: grid;
  grid-gap: 15px;
  grid-row-gap: 25px;
  text-align: left;
}

div.form>div:nth-of-type(1) {
  grid-template-columns: 1fr 1fr;
}

div.form>div:nth-of-type(2) {
  grid-template-columns: 1fr;
  margin-top: 25px;
  grid-row-gap: 0px;
}

div.form>div p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 14px;
}

div.form>div input,
div.form>div textarea {
  width: 100%;
  border: 1px solid #071928;
  background: white;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 16px;
}

div.form>div input:disabled,
div.form>div textarea:disabled {
  pointer-events: none;
  opacity: 0.25;
}

div.form>div textarea {
  min-height: 150px;
}

div.form>button {
  background: #4EABE9;
  border: 0px;
  font-size: 16px;
  padding: 15px 50px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  /* height: 30px; */
  cursor: pointer;
  min-width: 200px;
  margin-top: 20px;
  transition: transform 0.25s;
  transform: scale(1);
  will-change: transform;
}

div.form>button:hover {
  transform: scale(1.025);
}

h2.center {
  text-align: center;
  font-size: 50px;
  font-weight: normal;
  margin: 0px;
  margin-bottom: 75px;
  color: white;
}

p.footer {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
  margin: 0px;
  width: 100%;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 25px;
}

div.dots {
  width: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  margin-top: 25px;
  margin-left: 50%;
  transform: translate(-50%);
}

div.dots>div {
  width: 15px;
  height: 15px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid white;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  transition: border-color .25s;
}

div.dots>div.selected {
  border: 1px solid #4EABE9;
  background: transparent;
}

div.dots>div::after {
  content: '';
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #4EABE9;
  border-radius: 100%;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  transition: opacity .25s, transform .25s;
}

div.dots>div.selected::after {
  transform: scale(1);
  opacity: 1;
}

h3.quote {
  position: relative;
  line-height: 25px;
}

h3.quote::before {
  content: '“';
  font-size: 40px;
  font-weight: bold;
  vertical-align: -15px;
  margin-right: 10px;
}

h3.quote::after {
  content: '”';
  font-size: 40px;
  font-weight: bold;
  vertical-align: -15px;
  margin-left: 10px;
}

h4.signed {
  width: 100%;
  text-align: center;
  font-weight: normal;
  font-size: 15px;
  padding: 0px;
  margin: 0px;
  margin-top: 25px;
  font-style: italic;
}

.pop-in {
  transform: scale(0.5);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .5s, opacity .5s;
}

.pop-in.visible {
  transform: scale(1);
  opacity: 1;
}

div.textOnParallax {
  width: 100%;
  background: linear-gradient(90deg, #1A4A7900 25%, #1A4A79 50%);
  z-index: 2;
  padding-left: 50%;
  transform: scale(1);
  padding-top: 100px;
  padding-bottom: 100px;
  padding-right: 100px;
}

div.textOnParallax.toLeft {
  background: linear-gradient(-90deg, #184A7900 25%, #184A79DD 50%);
  padding-right: 50%;
  padding-left: 100px;
}

div.textOnParallax.darkText,
div.textOnParallax.darkText h2 {
  color: black !important;
}

div.about {
  /* background: radial-gradient(circle at bottom left, #4EABE9AA, #4EABE9); */
  background: #4EABE9;
  width: 100%;
  padding: 0px 100px;
  /* color: black; */
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 100px;
  box-shadow: 0 -20px 70px rgba(255, 255, 255, 0.25) inset;
  align-items: center;
}

div.about>div:nth-of-type(1) {
  position: relative;
}

div.about>div:nth-of-type(1):before {
  content: '';
  width: 2px;
  position: absolute;
  left: -30px;
  top: 9px;
  height: 100px;
  background: white;
}

div.about>div:nth-of-type(2) {
  position: relative;
  padding: 100px 0px;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
}

div.about>div:nth-of-type(2):before {
  content: '';
  width: 30px;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  background-image: url('./gfx/arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
}

div.about h2 {
  font-size: 22px;
  font-weight: bold;
  margin: 0px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 25px;
  display: none;
}

div.about p {
  font-size: 25px;
  margin: 0px;
  font-weight: normal;
  line-height: 37.5px;
  text-align: left;
}

div.about ul {
  padding-left: 150px;
  margin: 0;
}

div.about li {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 30px;
}

div.about li b {
  /* color: #0C1928; */
}

.section .border {
  position: absolute;
  top: 5px;
  left: 5px;
  border: 1px solid rgba(0, 0, 0, 025);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 5px;
  pointer-events: none;
  display: none;
}

img#specialImage {
  position: absolute;
  right: 50%;
  bottom: 0px;
  height: 120%;
  width: 50%;
  object-fit: contain;
  transform: translateX(5%);
}

@media all and (max-width: 950px) {

  div.limiter {
    padding: 0 50px !important;
  }

  img#logo {
    margin-top: 100px !important;
  }

  div.about {
    grid-template-columns: 1fr;
    padding: 0px 50px !important;
    padding-top: 50px !important;
  }

  div.about>div:nth-of-type(1) {
    padding-bottom: 50px;
  }

  div.about>div:nth-of-type(2) {
    padding: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: -50px;
  }

  div.about>div:nth-of-type(2)::before {
    display: none;
  }

  div.about ul {
    padding-left: 50px;
  }

  div.tiles,
  div.tiles-row:nth-of-type(2) div.tiles {
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 450px) {
  div#menu-fixed {
    display: none;
  }

  div#things-fixed {
    display: none;
  }

  div.textOnParallax {
    padding: 50px !important;
  }
}

button.expander {
  transition: transform .25s, height .25s, margin .25s;
  background: #4EABE9;
  border: 0px;
  font-size: 12px;
  padding: 10px 50px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0px;
  cursor: pointer;
}

button.expander.expanded {
  margin-bottom: 15px;
}

button.expander > span:nth-of-type(2), button.expander.expanded > span:nth-of-type(1) {
  display: none;
}

button.expander.expanded > span:nth-of-type(2), button.expander > span:nth-of-type(1) {
  display: initial;
}

button.expander:not(.expanded)+div.expandable {
  transform: scaleY(0);
  max-height: 0px !important;
}

div.expandable {
  max-height: auto;
  transform: scaleY(1);
  transform-origin: center top;
  overflow: hidden;
  position: relative;
  transition: transform .25s, max-height .25s;
}

img#menu-arrow-fixed {
  position: fixed;
  height: 10px;
  left: 0px;
  transform: translateX(-50%);
  top: calc(60px - 10px);
  transition: left .25s;
  z-index: 3;
  pointer-events: none;
}