@charset "utf-8";
/* CSS Document */
/*MARK:Page resets*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region ..... set up basic page resets .........*/

body {
  min-height: 100vh;
  min-height: 100svh;
  text-rendering: optimizeLegibility;
  line-height: 1.5rem;
  color: black;
  overflow-x: hidden;
}
html {
  height: 100vh;
  height: 100svh;
  font-size: 16px;
  font-family: system-ui, sans-serif;
  line-height: 1.2rem;
  scroll-boundary-gutter: stable;
  background-color: transparent;
}
* {
  box-sizing: border box;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
article,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
  max-height: 100%;
  font-style: italic;
}
.br {
  border: solid;
  border-width: thin 0 0 0;
  border-color: red;
}
/* #endregion */
/*MARK:Text Setup*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region ....set up text .........*/
p {
  font-size: 1rem;
  font-weight: 500;
}
h1,
h2,
h3,
ul,
p {
  color: #fff;
}
h1 {
  font-size: 2rem;
  line-height: 2.5rem;
  text-wrap: balance;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-wrap: balance;
}
.heavy {
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: 600;
}
ul li {
  margin-left: 20px;
  list-style: none;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 2rem;
}
a {
  text-decoration: none;
  color: aliceblue;
}
/* Apply margin to h2 elements preceded by a p element */
.lastp p + h2 {
  margin-top: 2rem;
}
/* ##################### internal links ##########################*/
.internlinks {
  position: relative;
  text-decoration: none;
  letter-spacing: 0.09em;
  line-height: 2.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
}
.internlinks {
  color: white;
}

.internlinks::before {
  content: url("../assets/link-white.gif");
  margin-right: 3px;
}
.internlinks::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  bottom: -25px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.internlinks::after {
  border-top: 5px solid aliceblue;
}

.internlinks:hover::after {
  transform: scaleX(1);
}

/* #endregion */

/*MARK:Page structure*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region set up page structure ......................*/
body {
  display: grid;
  grid-template-rows: 100px 1fr auto;
  grid-template-columns: 1fr;
}
html {
  background-image: url(../assets/background-mobile.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.fixed-block {
  position: fixed;
  top: 0;
  display: grid;
  grid-template-columns: Auto 1fr auto;
  grid-template-rows: auto;
  z-index: 999;
  min-width: 100%;
  background-color: rgba(0, 71, 114, 1);
}
.main-wrapper {
  display: flex;
  flex-direction: column;
  grid-area: 2/1/3/-1;
  background-color: none;
  margin: 2rem 1rem;
}
.footer {
  display: flex;
  grid-area: 3/1/4/-1;
  flex-direction: column;
  padding: 1rem;
  justify-content: space-around;
  border-top: #45d4ff thin solid;
}
/* #region set up fixed header ......................*/
.logo-holder {
  grid-area: 1/1/2/2;
  margin: 5px 20px 20px 3%;
  max-width: 100px;
}
.logo {
  margin: 10px 20px 0px 10px;
}
.nav-container {
  grid-area: 1/2/2/3;
  display: flex;
  justify-self: center;
  background-color: none;
  border-radius: 20%;
  padding-inline: 10px;
  align-content: center;
  margin: auto;
}
.button-block {
  display: flex;
  grid-area: 1/3/2/-1;
  margin-right: 10px;
  align-self: center;
}
.nav_button {
  padding: 5px 25px;
  background-color: rgba(252, 252, 252, 0.4);
  color: aliceblue;
  border-radius: 15px;
  border: white medium solid;
  cursor: pointer;
}
.nav_button:hover {
  background-color: #00353f;
}
/* #endregion */

/* #endregion */
/*MARK:Content*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region set up content structure .....................*/
.flexRow {
  display: flex;
  flex-direction: column;
}
.footerLinks {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-around;
  min-width: fit-content;
}
.copyright {
  display: flex;
  margin-top: 1rem;
  min-width: 100%;
  text-justify: center;
}
.centered-h {
  display: flex;
  margin-inline: auto;
}
.centered {
  display: flex;
  margin-inline: auto;
  justify-content: center;
}
.centered-text {
  max-width: 80ch;
  justify-content: space-around;
}
.underline {
  border-bottom: #014771 2px solid;
}
.flexRow-col {
  flex-direction: column;
}
/* #endregion */
/*MARK:Media queries*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region media queries ...... */
@media screen and (min-width: 1000px) {
  .flexRow {
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
  }

  .centered-text {
    max-width: 100ch;
  }
  .footerLinks {
    flex-direction: row;
  }
  .centered {
    flex-direction: column;
  }
}

/* #endregion media queries*/

/*MARK:Icons Helpers*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region ..... icons */
.arrowicon {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin: 0px 5px 3px 6px;
}
.right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.left {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.up {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.down {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* #endregion icons */
/* #region ..... helpers */
.yellow {
  background-color: yellow;
}
.space1 {
  margin-bottom: 1rem;
}
.space2 {
  margin-bottom: 2rem;
}
/* #endregion helpers */

/*MARK:Fixed*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region set up fixed header ......................*/
.logo-holder {
  grid-area: 1/1/2/2;
  margin: 5px 20px 20px 3%;
  max-width: 100px;
}
.logo {
  margin: 10px 20px 0px 10px;
}
.nav-container {
  grid-area: 1/2/2/3;
  display: flex;
  justify-self: center;
  background-color: none;
  border-radius: 20%;
  padding-inline: 10px;
  align-content: center;
  margin: auto;
}
.button-block {
  display: flex;
  grid-area: 1/3/2/-1;
  margin-right: 2rem;
  align-self: center;
}
.nav_button {
  padding: 5px 25px;
  background-color: rgba(252, 252, 252, 0.4);
  color: aliceblue;
  border-radius: 15px;
  border: white medium solid;
  cursor: pointer;
}
.nav_button:hover {
  background-color: #00353f;
}
/* #endregion */
/*MARK:Navigation*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region ..... navigation desktop */
.nav a {
  text-decoration: none;
}
.ion-md-menu {
  display: inline-block;
  margin: 10px;
  padding: 10px;
  background-color: rgba(252, 252, 252, 0.4);
  border-radius: 20%;
}
.ion-md-close {
  display: inline-block;
  margin: 10px;
  padding: 10px;
  background-color: rgba(252, 252, 252, 0.4);
  border-radius: 20%;
}
.menu-icons {
  display: flex;
  font-size: 4rem;
  cursor: pointer;
  display: none;
  align-items: center;
  margin: auto;
}

.nav {
  margin-top: -10px;
  max-width: 100%;
  margin-inline: auto;
}

.nav-list {
  display: flex;
  min-width: 750px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 1600;
}
nav ul {
  list-style: none;
  align-content: right;
  font-style: normal;
}
.nav-list li {
  line-height: 4rem;
  position: relative;
  margin: 0px auto;
}
.nav-list a {
  display: block;
  color: aliceblue;
  letter-spacing: 0.5px;
  padding: 0 1rem;
  font-size: 1.52rem;
  font-weight: 600;
  text-transform: capitalize;
  transition: color 650ms;
  text-decoration: none;
}
.nav-list a:hover {
  color: #45d4ff;
}
.sub-menu li {
  line-height: 3rem;
}
.sub-menu {
  width: 15rem;
  display: block;
  position: absolute;
  left: -20%;

  background-color: rgba(0, 71, 114, 1);
  box-shadow: 10px 10px 15px lightgrey;
  z-index: 1500;
  top: 4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 650ms ease;
}
.sub-menu-last {
  width: 10rem;
  opacity: 0;
  left: -20%;
  visibility: hidden;
  transition: all 650ms ease;
}
.sub-menu a {
  font-weight: 600;
  font-size: 14px;
  color: aliceblue;
}
.sub-menu .sub-menu::before {
  top: 0.9rem;
  left: -2.5rem;
  border: 1.2rem solid transparent;
  border-right-color: blue;
}
.sub-menu .sub-menu {
  border-top: none;
  border-left: 3px solid blue;
  top: 0;
  left: 60%;
}
.nav-list li:hover > .sub-menu {
  top: 4rem;
  left: -10%;
  opacity: 1;
  visibility: visible;
}
.sub-menu li:hover > .sub-menu {
  top: 0;
  left: 8%;
}
li.move-right {
  margin: auto 50px auto auto;
  line-height: initial;
}
/* #endregion */

/*MARK:Mobile nav*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region ..... navigation Mobile */
@media screen and (max-width: 1300px) {
  .menu-icons {
    display: block;
  }
  .nav-list {
    position: fixed;
    top: 90px;
    left: 0;
    height: 80vh;
    min-width: 100vw;
    margin-left: 0px;
    display: none;
    flex-direction: column;
    align-items: initial;
   background-color: rgba(0, 71, 114, 1);
    z-index: 1000;
    overflow-y: scroll;
    padding-bottom: 20vh;
  }
  .nav ul {
    list-style: none;
    align-content: right;
  }
  .nav-list > li {
    line-height: 4rem;
    margin-inline: auto;
  }

  .sub-menu {
    position: initial;
    border: 3px solid transparent;
    border-left-color: white;
    margin-left: 1rem;
    max-height: 0;
  }
  .sub-menu::before {
    display: none;
  }
  .nav-list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    max-height: initial;
  }
  li.move-right {
    margin: 0 auto 0 0;
    line-height: initial;
  }

  .ion-md-close {
    display: none;
    padding: 10px;
    background-color: rgba(252, 252, 252, 0.4);
    border-radius: 20%;
  }
  nav.active .ion-md-close {
    display: block;
  }
  nav.active .ion-md-menu {
    display: none;
  }
  nav.active .nav-list {
    display: flex;
  }
  .nav-align {
    text-align: left;
  }

  .homelink {
    margin-left: -130px;
  }
}
/* #endregion of mobile navigation */
/*MARK:Cookie banner*/
/*#*/
/*#*/
/*#*/
/*#*/
/*#*/
/* #region .... Cookie banner .... */
.cookie-banner {
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background-color: rgba(0, 107, 123, 1);
  color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: medium black solid;
}
.cookie-banner__button {
  background: #fff;
  color: #000;
  border: 0;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 15px;
  width: 200px;
  margin: 20px auto;
}
.cookie-banner p {
  font-size: 1rem;
}
/* #endregion */
