:root {
  --blue: #192945;
  --green: #cbffad;
}

@keyframes fadeimage2 {
  28% {
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  92.1% {
    opacity: 0;
  }
}
@keyframes fadeimage3 {
  59% {
    opacity: 0;
  }
  67% {
    opacity: 1;
  }
  94% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes parallax {
  20% {
    transform: translateY(300px);
  }
  85% {
    transform: translateY(-200px);
  }
}
@keyframes txtparallax {
  0% {
    transform: translateY(-350px);
  }
  50% {
    transform: translateY(0px);
  }
}
@keyframes parallaxbottom {
  0% {
    transform: translateY(200px);
  }
  30% {
    transform: translateY(0px);
  }
}
@keyframes scalephoto {
  20% {
    scale: 1;
  }
  45% {
    scale: 1.5;
  }
  55% {
    scake: 1.5;
  }
  80% {
    scale: 1;
  }
}
@keyframes scalephotohalve {
  20% {
    scale: 1;
  }
  45% {
    scale: 1.2;
  }
  55% {
    scake: 1.2;
  }
  80% {
    scale: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

html {
  box-sizing: border-box;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

hr {
  height: 0;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

code,
kbd,
samp,
pre {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

* {
  font-family: "poppins", Arial, Helvetica, sans-serif;
  color: #cbffad;
  transition: color 1s ease;
  transition: background-color 1s ease;
  margin: 0;
  padding: 0;
  font-weight: 200;
}

p {
  line-height: 2;
  font-size: 14px;
  font-family: "poppins", Arial, Helvetica, sans-serif;
}
p.big {
  font-size: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "ivypresto-display", "Times New Roman", Times, serif;
  font-weight: 300;
  text-align: center;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  h1.left, h2.left, h3.left, h4.left, h5.left, h6.left {
    text-align: left;
  }
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 28px;
}

img {
  max-width: 100%;
}
img.portrait {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

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

.clickthough {
  pointer-events: none;
}

.button, .buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.button a button, .buttons a button {
  margin-top: 30px;
  margin-bottom: 5px;
  padding: 13px 20px 10px;
  border: 1px solid #cbffad;
  border-radius: 100px;
  background-color: #192945;
  font-weight: 500;
}
.button a button:hover, .buttons a button:hover {
  background-color: #cbffad;
  color: #192945;
}
.button.green a button, .buttons.green a button {
  background-color: #cbffad;
  color: #192945;
  border: 1px solid #192945;
}
.button.green a button:hover, .buttons.green a button:hover {
  background-color: #192945;
  color: #cbffad;
}
@media screen and (min-width: 768px) {
  .button.leftdesktop, .buttons.leftdesktop {
    justify-content: left;
  }
}

body {
  background-color: #192945;
}
body header {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -999999999;
}
body header video {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.8;
}
body header .hero-content #title h1 {
  font-size: 8vw;
}
@media screen and (min-width: 1060px) {
  body header .hero-content #title h1 {
    font-size: 84px;
  }
}
body header.none {
  height: 1px;
  min-height: 1px;
}
body nav#nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 30px 40px 15px;
  display: flex;
  justify-content: space-between;
  z-index: 99999999999;
  transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background-color: rgba(25, 41, 69, 0);
}
body nav#nav-menu.scrolled, body nav#nav-menu.subpage, body nav#nav-menu.blue {
  background-color: #192945;
}
body nav#nav-menu #logo {
  z-index: 1;
}
body nav#nav-menu #logo svg {
  width: 100px;
}
@media screen and (max-width: 768px) {
  body nav#nav-menu .mainnavigation ul {
    position: fixed;
    left: 0;
    top: 100vh;
    gap: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    background-color: rgba(38, 38, 38, 0.8);
    width: 100%;
    text-align: center;
    transition: top 0.3s;
    height: 100vh;
    row-gap: 50px;
    font-size: 24px;
  }
  body nav#nav-menu .mainnavigation ul.active {
    left: 0;
    top: 0vh;
  }
}
@media screen and (min-width: 768px) {
  body nav#nav-menu .mainnavigation {
    padding-top: 6px;
  }
  body nav#nav-menu .mainnavigation ul {
    transition: background-color 0s ease;
  }
  body nav#nav-menu .mainnavigation ul li {
    margin-left: 30px;
    display: inline;
  }
}
body nav#nav-menu .bar {
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 0 10px 10px;
  transition: all 0.3s ease-in-out;
  background-color: #cbffad;
}
body nav#nav-menu .bar:nth-child(3) {
  width: 25px;
}
@media screen and (min-width: 768px) {
  body nav#nav-menu .bar {
    display: none;
  }
}
body nav#nav-menu .hamburger {
  z-index: 1000;
  margin-top: 0px;
  transform: translateZ(0);
  /* Hide Hamburger Bars when active (The Animation) */
}
body nav#nav-menu .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
body nav#nav-menu .hamburger.active .bar:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
body nav#nav-menu .hamburger.active .bar:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
  width: 40px;
}
body #wrapper {
  display: flex;
  flex-direction: column;
}
body .row {
  padding: 70px 40px;
  width: 100vw;
  text-align: left;
  display: flex;
  justify-content: center;
}
body .row.green {
  background-color: #cbffad;
  color: #192945;
}
body .row.green p, body .row.green h2, body .row.green h3, body .row.green h4, body .row.green h5, body .row.green h6 {
  color: #192945;
}
body .row.blue {
  background-color: #192945;
  z-index: 1;
}
body .row.spacer {
  padding-top: 0;
  padding-bottom: 0;
  height: 80px;
}
body .row.nospacing {
  padding-top: 0;
  padding-bottom: 0;
}
body .row.spacing {
  padding-top: 60px;
  padding-bottom: 60px;
}
body .row.extraspacing {
  padding-top: 120px;
  padding-bottom: 120px;
}
body .row.closing {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  body .row.reverse .columnwrapper {
    flex-direction: row-reverse;
  }
}
body .row.parallax {
  padding: 0 40px;
}
body .row.parallax .columnwrapper .column .imagewrapperh, body .row.parallax .columnwrapper .column .imagewrapperv {
  overflow: clip;
  margin-top: -30px;
  margin-bottom: -30px;
  animation: parallax;
  animation-timeline: view();
  animation-range: 0% 120%;
  z-index: -1;
}
body .row.parallax .columnwrapper .column .imagewrapperh img, body .row.parallax .columnwrapper .column .imagewrapperv img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: scalephoto;
  animation-timeline: view();
}
body .row.parallax .columnwrapper .column .imagewrapperh.halveeffect img, body .row.parallax .columnwrapper .column .imagewrapperv.halveeffect img {
  animation: scalephotohalve;
  animation-timeline: view();
}
body .row.parallax .columnwrapper .column .imagewrapperh.spacing, body .row.parallax .columnwrapper .column .imagewrapperv.spacing {
  margin-top: 30px;
  margin-bottom: 30px;
}
body .row.parallax .columnwrapper .column .imagewrapperh a, body .row.parallax .columnwrapper .column .imagewrapperv a {
  display: block;
}
body .row.parallax .columnwrapper .column .imagewrapperh {
  aspect-ratio: 4/3;
}
body .row.parallax .columnwrapper .column .imagewrapperv {
  aspect-ratio: 3/4;
}
body .row.parallax .columnwrapper .column .imagewrapperv img {
  height: 100%;
}
body .row.parallax.parallaxmorespacing {
  padding: 30px 40px;
}
body .row.parallax.parallaxextraspacing {
  padding: 120px 40px;
}
body .row.parallax.parallaxextraspacing .columnwrapper .column img {
  margin-top: -30px;
  margin-bottom: -30px;
  animation: parallaxbottom;
  animation-timeline: view();
  animation-range: 0% 120%;
  z-index: -1;
}
body .row.txtparallax .columnwrapper {
  animation: txtparallax;
  animation-timeline: view();
  animation-range: 0% 120%;
}
body .row.parallax .contact .column {
  margin-bottom: 0;
}
body .row .pagetitle {
  margin-top: 80px;
}
body .row .columnwrapper {
  max-width: 500px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
body .row .columnwrapper.wide {
  max-width: 800px;
  gap: 80px;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper {
    flex-direction: row;
  }
}
body .row .columnwrapper.contacts {
  gap: 0;
}
body .row .columnwrapper.contacts .buttons {
  flex-direction: column-reverse;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 0;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper.contacts .buttons {
    flex-direction: row-reverse;
  }
}
body .row .columnwrapper.contacts .buttons a button {
  margin-top: 20px;
  padding-left: 55px;
  white-space: nowrap;
  position: relative;
  min-width: 210px;
}
body .row .columnwrapper.contacts .buttons a button img {
  position: absolute;
  display: inline-block;
  max-width: 32px;
  top: 4px;
  left: 20px;
}
body .row .columnwrapper.contacts .buttons a button img svg {
  fill: #cbffad;
}
body .row .columnwrapper.contacts .buttons a button.phone {
  padding-left: 50px;
}
body .row .columnwrapper.contacts .buttons a button.phone img {
  left: 28px;
}
body .row .columnwrapper.contacts .buttons a button.mail {
  padding-left: 58px;
}
body .row .columnwrapper.contacts .buttons a button.mail img {
  left: 20px;
}
body .row .columnwrapper.verticalcenter {
  justify-content: center;
  align-items: center;
}
body .row .columnwrapper .column {
  padding: 0px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.doublecolumn {
    -moz-column-count: 2;
         column-count: 2;
  }
}
body .row .columnwrapper .column.horizontalcenter {
  display: flex;
  justify-content: center;
}
body .row .columnwrapper .column.width30 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.width30 {
    width: calc(30% - 15px);
  }
}
body .row .columnwrapper .column.width40 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.width40 {
    width: calc(40% - 15px);
  }
}
body .row .columnwrapper .column.widthswitch {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.widthswitch {
    width: calc(50% - 80px);
  }
}
body .row .columnwrapper .column.width50 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.width50 {
    width: calc(50% - 15px);
  }
}
body .row .columnwrapper .column.width60 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.width60 {
    width: calc(60% - 15px);
  }
}
body .row .columnwrapper .column.width70 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.width70 {
    width: calc(70% - 15px);
  }
}
body .row .columnwrapper .column.width100 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column.width100 {
    width: 100%;
    flex-direction: column;
  }
}
body .row .columnwrapper .column ul.adress {
  justify-content: center;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
body .row .columnwrapper .column ul.adress li {
  text-align: center;
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  body .row .columnwrapper .column ul.adress {
    flex-direction: row;
  }
}
body #footer {
  padding: 0px 40px 0px;
  display: flex;
}
body #footer .row {
  justify-content: space-between;
  padding: 25px 0;
  border-top: 1px solid #cbffad;
  flex-direction: column;
}
@media screen and (min-width: 450px) {
  body #footer .row {
    flex-direction: row;
  }
}
body #footer .row .column ul li {
  list-style-type: none;
  line-height: 1.5;
}
@media screen and (min-width: 860px) {
  body #footer .row .column ul {
    display: flex;
    gap: 30px;
  }
  body #footer .row .column ul li {
    display: inline;
  }
  body #footer .row .column ul li a {
    text-decoration: none;
  }
  body #footer .row .column ul li a:hover {
    color: white;
  }
}
@media screen and (min-width: 450px) {
  body #footer .row .column:nth-last-of-type(1) {
    text-align: right;
  }
}/*# sourceMappingURL=style.css.map */