:root {
  --mainblue: #32b4cd;
  --logoblack: #575757;
  --black: #000;
  --falseblack: #272727;
  --white: #ffffff;
  --orange: #f99b36;
  --menuwidth: 21rem;
}

@font-face {
  src: url("../fonts/Nunito-Var.ttf");
  font-family: "Nunito";
  font-weight: normal;
  font-style: normal;
}
@font-face {
  src: url("../fonts/Nunito-Italic-Var.ttf");
  font-family: "Nunito";
  font-weight: normal;
  font-style: italic;
}
@font-face {
  src: url("../fonts/NunitoSans-Var.ttf");
  font-family: "NunitoSans";
  font-weight: normal;
  font-style: normal;
}
@font-face {
  src: url("../fonts/NunitoSans-Italic-Var.ttf");
  font-family: "NunitoSans";
  font-weight: normal;
  font-style: italic;
}
@font-face {
  src: url("../fonts/NunitoSans_10pt-ExtraLight.ttf");
  font-family: "NunitoSans";
  font-weight: 200;
  font-style: normal;
}
@font-face {
  src: url("../fonts/NunitoSans_10pt-ExtraLightItalic.ttf");
  font-family: "NunitoSans";
  font-weight: 200;
  font-style: italic;
}
body {
  background: var(--white);
}

.logo {
  width: 80vw;
  height: 80vh;
  background: url("../visuals/hakoona-logo-full.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  margin: auto;
}

* {
  font-family: NunitoSans, Verdana, Arial;
  font-size: clamp(11px, 1.2vmax, 18px);
  color: var(--falseblack);
  box-sizing: border-box;
}

body,
html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  padding-top: 12vmax;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 200;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.6em;
  margin-bottom: 0.8em;
}

h4 {
  font-size: 1.4em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

button {
  border: none;
  padding: 0.5rem;
  box-shadow: none;
  border-radius: 0.5rem;
}

p,
ul {
  white-space: normal;
  font-family: NunitoSans, Verdana, Arial;
  line-height: 1.5em;
  font-weight: 200;
}
p.subText,
ul.subText {
  font-size: 0.9em;
  font-style: italic;
  opacity: 0.9;
}

li.dotNote {
  list-style: circle;
  margin-bottom: 0.6rem;
}

ol.contentTable li {
  line-height: 1.71rem;
  font-weight: 300;
}

.hidden {
  visibility: hidden;
}

.statement {
  text-align: center;
  font-size: 1.5rem;
  max-width: 84%;
  margin: auto;
  padding: 0 1rem 1rem;
}

.getInTouch {
  width: clamp(8rem, auto, 30vw);
  height: 2rem;
  padding: 0.4rem 1.4rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 100vmax;
  position: fixed;
  right: 0.9rem;
  top: 0.9rem;
  font-size: clamp(14px, 1.2rem, 20px);
  opacity: 1;
  transition: 0.52s ease all;
}
.getInTouch:hover {
  cursor: pointer;
}

.mainBar {
  display: flex;
  flex-direction: row;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  background: var(--white);
  z-index: 9999;
}
.mainBar .logo {
  margin: 0 2rem 0 0;
  transition: 0.47s ease all;
  flex-grow: 2;
  height: 12vmax;
  min-height: 4.6rem;
  min-width: 11rem;
  width: auto;
  background-position: top left;
  margin-top: 0.6em;
  margin-bottom: 1em;
}
.mainBar.scrolledAway .getInTouch {
  opacity: 1;
}
.mainBar.scrolledAway .logo {
  height: 7vmax;
  background-position: top left;
}
.mainBar.scrolledAway .collapseMenu {
  top: 2.5rem;
}
.mainBar .mainMenu {
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #dedede;
  display: flex;
  justify-content: space-between;
  padding-top: 1px;
  padding-bottom: 0.6em;
}
.mainBar .mainMenu li {
  padding: 0;
  padding-top: 0.5em;
  color: var(--logoblack);
  font-weight: 200;
  flex-grow: 1;
  border-right: 1px solid var(--white);
}
.mainBar .mainMenu li:first-child {
  padding-left: 0;
}
.mainBar .mainMenu li:last-child {
  border-right: none;
}
.mainBar .mainMenu li a {
  text-decoration: none;
  color: var(--logoblack);
  padding: 0.8em 2em;
  display: block;
  white-space: nowrap;
}
.mainBar .mainMenu li:first-child a {
  padding-left: 0.2rem;
}
.mainBar .mainMenu li .dropdown-content {
  background: var(--white);
  display: none;
  margin-bottom: -1000vh;
  padding: 0.8em;
  z-index: 999;
  margin-right: -100vw;
  width: 18rem;
}
.mainBar .mainMenu li .dropdown-content a {
  padding: 0.6em 2em 0.6em 0.5em;
}
.mainBar .mainMenu li.active {
  box-shadow: 0 -1em 1.8em -0.6em #e5e5e5 inset;
}
.mainBar .mainMenu li.active .dropdown-content {
  display: block;
  border-radius: 6px;
  box-shadow: 0.4rem 0.8rem 0.9rem 0.2rem #c3c3c3;
}

.collapseMenu {
  display: none;
  width: clamp(18px, 2vmin, 34px);
  height: calc(clamp(18px, 2vmin, 34px) * 0.75);
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
  position: absolute;
  z-index: 9999;
  top: 3.9rem;
  right: 2.5rem;
  transition: 0.47s ease all;
  cursor: pointer;
}
.collapseMenu .topLine,
.collapseMenu .bottomLine {
  width: 100%;
  height: 1px;
  background-color: var(--logoblack);
  transition: 0.72s ease all;
}
.collapseMenu.openPanel .topLine {
  transform: rotateZ(-225deg) translateX(50%);
}
.collapseMenu.openPanel .bottomLine {
  transform: rotateZ(225deg) translateX(50%);
}

@media screen and (orientation: landscape) {
  .mainBar .mainMenu li.company {
    order: 99;
    position: fixed;
    top: 0;
    width: 5rem;
    border-right: none;
    transition: 0.4s ease all;
  }
  .mainBar .mainMenu li.company a {
    padding: 0.2rem 0.3rem 0.4rem;
    font-size: 0.8em;
    background: none;
    text-align: center;
    text-decoration: underline;
    margin: auto;
  }
  .mainBar .mainMenu li.company#no4 {
    right: 0;
  }
  .mainBar .mainMenu li.company#no1 {
    right: 15rem;
  }
  .mainBar .mainMenu li.company#no2 {
    right: 10rem;
  }
  .mainBar .mainMenu li.company#no3 {
    right: 5rem;
  }
  .scrolledAway .company {
    transform: scale(0.9);
  }
}
@media screen and (orientation: portrait) {
  .collapseMenu {
    display: flex;
  }
  .mainBar {
    justify-content: flex-start;
  }
  .mainBar .logo {
    max-width: 80vw;
  }
  .mainBar .mainMenu {
    position: absolute;
    height: 100vh;
    left: 100vw;
    top: 0;
    width: var(--menuwidth);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    background: var(--white);
    z-index: 888;
    padding-top: 7rem;
    transition: 0.46s ease all;
    transform: translateX(0);
  }
  .mainBar .mainMenu li {
    flex-grow: 0;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #dedede;
    order: 1;
  }
  .mainBar .mainMenu li a, .mainBar .mainMenu li:first-child a {
    padding: 1.5em;
    width: 100%;
  }
  .mainBar .mainMenu li .dropdown-content {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 1.2rem;
    width: auto;
  }
  .mainBar .mainMenu li .dropdown-content a {
    padding: 1.2rem 1.5rem;
  }
  .mainBar .mainMenu li.active .dropdown-content {
    box-shadow: none;
    border-radius: 0;
  }
  .mainBar .mainMenu li.active > a::after {
    transform: rotateZ(180deg);
  }
  .mainBar .mainMenu li.dropdown > a::after {
    content: " ";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background: url("../visuals/menuarrow-iced.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
    margin-left: 0.6rem;
    transition: 0.38s ease all;
  }
  .mainBar .mainMenu.openPanel {
    box-shadow: -4rem 0 4.5rem -0.2rem rgba(0, 0, 0, 0.4);
    transform: translateX(calc(-1 * var(--menuwidth)));
  }
}
.mainLine {
  height: auto;
  width: 100%;
  padding-top: 10vmax;
  padding-bottom: 10vmax;
  padding-left: clamp(2rem, 3vw, 10vmax);
  padding-right: clamp(2rem, 3vw, 10vmax);
  background-color: var(--white);
  background-image: url("../visuals/doublewave1.svg"), url("../visuals/singlewave1.svg");
  background-position: calc(50vw + 19rem) -25%, calc(-50vw - 21rem) calc(50% + 1.1rem);
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
}
.mainLine .sellOff {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin: auto;
  width: 35rem;
}
.mainLine .sellOff .line {
  font-size: 1.6rem;
  font-family: NunitoSans;
  font-weight: 200;
  display: block;
  text-align: left;
}
.mainLine .sellOff .line.firstLine {
  flex-basis: 100%;
}
.mainLine .sellOff .line.secondLine {
  font-size: 2.1rem;
}
.mainLine .sellOff .line.thirdLine {
  font-size: 2.7rem;
}

.footer {
  width: 100vw;
  padding: 1.2rem;
  font-size: clamp(11px, 0.8em, 18px);
  color: var(--white);
  background: var(--logoblack);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: row;
  box-shadow: 0 1.4rem 1.7rem -20px rgba(0, 0, 0, 0.6) inset;
}
.footer p {
  color: var(--white);
  font-weight: 200;
  font-family: NunitoSans;
  font-size: clamp(11px, 0.8em, 14px);
  margin: 0.4rem 2rem;
}
.footer .aboutUs {
  width: clamp(20rem, 30vw, 50rem);
}
.footer a.privacypolicy {
  color: var(--white);
  display: flex;
  width: 100%;
  justify-content: center;
  font-weight: 200;
  font-family: NunitoSans;
  font-size: clamp(11px, 0.8em, 14px);
  margin: 0.4rem 2rem;
}

a.getinTouch {
  position: fixed;
  display: block;
  bottom: 0;
  right: 0;
  z-index: 9;
  color: var(--white);
  padding: 1.4rem 2.4rem 1.4rem 3.6rem;
  background: var(--orange);
  text-decoration: underline;
  border-radius: 0;
  border-top-left-radius: 100rem;
  font-size: 1.3em;
}

.bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
}
.bar .illustration {
  min-height: 30vw;
  width: 50vw;
  background: url("../visuals/highway.webp") no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.bar .illustration img {
  max-width: 80%;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
}
.bar .readMe {
  width: 50vw;
  padding: 2.4vw;
}
.bar.dark {
  background-color: var(--falseblack);
}
.bar.dark * {
  color: var(--white);
}
.bar.centerBar {
  flex-direction: column;
  justify-content: center;
}
.bar.centerBar .readMe {
  margin: auto;
  width: 90vw;
  max-width: 54rem;
}
.bar.sumUp {
  display: flex;
  justify-content: center;
}
.bar.sumUp .sumItem {
  background: var(--white);
  margin: 0 1px;
  padding: 1em 0.4em;
  color: var(--white);
  width: 23%;
  white-space: nowrap;
  overflow: visible;
  border: 1px solid var(--white);
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 0 1.8rem -1.3rem rgba(0, 0, 0, 0.4);
  text-align: center;
}
.bar.sumUp .sumItem a {
  display: inline-block;
  color: var(--logoblack);
  margin: auto;
  width: auto;
  text-align: center;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  font-weight: 200;
  border-bottom: 1px solid #777;
}
.firstBar .illustration {
  min-height: 10vw;
  margin: 2rem 0;
  background-position: center center;
  background-size: contain;
  background-image: none;
}

.esgBar .illustration {
  background: url("../visuals/esg-build-waveless.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  min-height: 16rem;
}

.evolveBar .illustration {
  background: url("../visuals/holoplanet.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  min-height: 16rem;
}

.meshBar .illustration {
  min-height: 5rem;
}

.fuseBar .illustration {
  background: url("../visuals/handshake.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  min-height: 16rem;
}

.procureBar .illustration {
  background: url("../visuals/adventure.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

.serviceStar .illustration {
  background: url("../visuals/upstairs.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

.scmBar .illustration {
  background: url("../visuals/train.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

.tolkBar .illustration {
  background: url("../visuals/village.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

.opexBar .illustration {
  background: url("../visuals/operations.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

.datamanagementBar .illustration {
  background: url("../visuals/managedata.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  min-height: 15rem;
}

.jumpstartBar .illustration {
  background: url("../visuals/journeystart.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  min-height: 15rem;
}

.complyBar .illustration {
  background: url("../visuals/complydata.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  min-height: 15rem;
}

.scienceBar .illustration {
  background: url("../visuals/datascience.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

.transformBar .illustration {
  background: url("../visuals/transformation.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

.digiformBar .illustration {
  background: url("../visuals/transformationbuild.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 15rem;
}

@media (orientation: portrait) {
  .bar .illustration,
  .bar .readMe {
    flex-basis: 100%;
  }
  .bar .illustration img,
  .bar .readMe img {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .bar.esgBar .illustration {
    min-height: 17rem;
    background-position: center left;
  }
  .bar.sumUp .sumItem {
    width: 48%;
    margin-bottom: 2%;
  }
  .bar.aboutLine {
    padding: 2em 7vmin 0;
  }
}
.bar.aboutBar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}
.bar.aboutBar .illustration {
  align-items: flex-end;
  width: auto;
}
.bar.aboutBar .illustration img {
  width: auto;
  max-height: 17rem;
}
@media screen and (orientation: portrait) {
  .bar.aboutBar .illustration {
    padding-top: 1.7rem;
    border-top: 1px solid #cecece;
  }
  .bar.aboutBar .illustration img {
    margin: auto;
    border-radius: 0.4rem;
  }
  .bar.aboutBar .readMe {
    padding-top: 0;
  }
  .bar.aboutBar .readMe h1,
  .bar.aboutBar .readMe h2,
  .bar.aboutBar .readMe h3,
  .bar.aboutBar .readMe h4 {
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2em;
  }
}
.content {
  display: flex;
  flex-direction: column;
}