:root {
  --white: #ffffff;
  --projectWhite: #e6e6e6;
  --projectBlack: #2d2d2c;
  --primary: #29abe2;
  --innerSectionLayoutWidth: 1440px;
  --contentWrapperWidth: 110rem;
  --fontOne: "Montserrat", sans-serif;
  --fontTwo: "Cormorant", serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--fontOne);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--white);
  scroll-behavior: smooth;
  box-sizing: border-box;
  letter-spacing: 0px;
  background-color: var(--primary);
  min-height: 100dvh;
}

main {
  background-color: var(--projectBlack);
}

section,
footer {
  display: flex;
  max-width: 170rem;
  margin: 0 auto;
}

.innerHeaderLayout,
.innerSectionLayout {
  display: flex;
  justify-content: center;
  max-width: var(--innerSectionLayoutWidth);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.8rem;
}

.contentWrapper {
  display: flex;
  max-width: var(--contentWrapperWidth);
  width: 100%;
}

h1 {
  font-family: var(--fontTwo);
  font-size: 5.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  text-align: center;
  -webkit-text-shadow: 0px 4px 13px rgba(0, 0, 0, 0.6);
  -moz-text-shadow: 0px 4px 13px rgba(0, 0, 0, 0.6);
  -ms-text-shadow: 0px 4px 13px rgba(0, 0, 0, 0.6);
  -o-text-shadow: 0px 4px 13px rgba(0, 0, 0, 0.6);
  text-shadow: 0px 4px 13px rgba(0, 0, 0, 0.6);
}

h2 {
  font-family: var(--fontTwo);
  font-size: 5.5rem;
  font-weight: 600;
  color: var(--primary);
}

p {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.3rem;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

strong {
  font-weight: 700;
}

blockquote {
  font-family: var(--fontOne);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
}

form {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
form .inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .textareaAndButton {
  display: flex;
  flex-direction: column;
}
form .textareaAndButton textarea {
  width: 100%;
  min-height: 15rem;
  margin: 0;
  padding: 0;
  border: none;
  padding: 1.1rem 0 1.1rem 2.4rem;
  margin-bottom: 2.8rem;
  border-radius: 12px;
}
form .textareaAndButton button {
  width: 100%;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  background-color: var(--primary);
  color: var(--projectBlack);
  border: none;
  border-radius: 12px;
  padding: 2.1rem;
  text-transform: uppercase;
  border: solid var(--projectBlack) 3px;
  cursor: pointer;
}
form .textareaAndButton button:hover {
  border: solid var(--white) 3px;
  transition: 0.3s ease-out;
}

input {
  max-width: calc(50% - 2rem);
  display: inline-block;
  margin-bottom: 1.8rem;
  padding: 1.6rem 0 1.6rem 2.4rem;
  border: none;
  width: 100%;
  background-color: #f2f2f2;
  border-radius: 12px;
}

input::placeholder,
textarea {
  color: #686262;
  font-size: 1.4rem;
  font-family: var(--fontOne);
  font-weight: 400;
  background-color: #f2f2f2;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 4.4rem;
    margin-top: 12rem;
    max-width: 66vw;
  }
  h2 {
    font-size: 3.2rem;
    line-height: 1.3;
  }
  p {
    line-height: 1.6;
  }
  .innerSectionLayout {
    padding: 1.8rem 3rem;
  }
  form {
    max-width: 54vw;
  }
  form .inputs {
    flex-direction: column;
  }
  form input {
    padding: 2rem 2rem;
    max-width: initial;
    border-radius: 7px;
  }
  form .textareaAndButton button {
    width: 100%;
    padding: 1.4rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.7rem;
    margin-top: 10rem;
    max-width: 66vw;
  }
  p {
    font-size: 1.6rem;
  }
  form {
    max-width: 100%;
  }
}
header {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 2;
}

.brand {
  display: flex;
}
.brand img {
  width: 16rem;
  height: auto;
}

.navContainer {
  margin-left: 32rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navDesktopLinks {
  list-style: none;
  display: flex;
}
.navDesktopLinks li {
  display: inline;
  margin-right: 5.3rem;
}
.navDesktopLinks li.activeLink a {
  border-bottom: 3px solid var(--white);
  padding-bottom: 0.5rem;
}
.navDesktopLinks li a {
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 3px solid transparent;
  transition: border-bottom-color 0.3s ease-out;
  letter-spacing: 3px;
}
.navDesktopLinks li a:hover, .navDesktopLinks li a:active {
  border-bottom: 3px solid var(--white);
  padding-bottom: 0.5rem;
}
.navDesktopLinks li:last-child {
  margin-right: 0;
}

/*Mobile nav*/
.navMobileLinks {
  padding-top: 10rem;
  background-color: var(--projectBlack);
  list-style: none;
  padding: 16rem 3rem 0rem 21rem;
  display: flex;
  height: 100vh;
  position: absolute;
  width: 17.4rem;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in;
  opacity: 0;
  z-index: 88;
}

@media (max-width: 1024px) {
  header {
    height: 5.4rem;
  }
  header nav a {
    font-size: 1.7rem;
  }
  .innerHeaderLayout {
    padding: 1.8rem 3rem;
  }
  .brand {
    flex-grow: 1;
  }
  .brand img {
    width: 9rem;
  }
  .navContainer {
    flex-direction: column;
    justify-content: center;
  }
  .navDesktopLinks {
    display: none;
  }
  .navMobileLinks {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    background-color: var(--projectBlack);
  }
  .navMobileLinks li {
    opacity: 0;
    margin-bottom: 4.3rem;
    text-align: center;
  }
  .navMobileLinks li.activeLink a {
    border-bottom: 3px solid var(--white);
    padding-bottom: 1rem;
  }
  .navMobileLinks li a {
    text-transform: uppercase;
    margin-right: 0;
    color: var(--white);
    letter-spacing: 5px;
  }
  .burgerIconWrapper {
    display: flex;
    height: 5.4rem;
    width: 5.4rem;
    position: absolute;
    right: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 99;
    cursor: pointer;
  }
  .burgerIconWrapper.open {
    background-color: var(--projectBlack);
  }
  .burgerIcon {
    display: flex;
    z-index: 99;
    width: 2.4rem;
    height: 1.6rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .burgerIcon div {
    width: 100%;
    height: 1px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 10px;
  }
  .nav-active {
    transform: translateX(0%);
    opacity: 1;
  }
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  .toggle {
    width: 26px;
    height: 26px;
    position: relative;
  }
  .toggle:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .toggle .line1,
  .toggle .line2 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -2px;
    height: 1px;
    background-color: var(--white);
    transform-origin: center;
  }
  .toggle .line1 {
    transform: rotate(45deg);
  }
  .toggle .line2 {
    transform: rotate(-45deg);
  }
}
#one .innerSectionLayout {
  padding-top: 27rem;
  padding-bottom: 37rem;
  position: relative;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  #one .innerSectionLayout {
    padding-top: 0rem;
    padding-bottom: 20rem;
  }
}
@media (max-width: 520px) {
  #one .innerSectionLayout {
    padding-bottom: 10rem;
  }
}
#one .innerSectionLayout .contentWrapper {
  justify-content: center;
}
#one .innerSectionLayout .contentWrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#one .innerSectionLayout .contentWrapper h1 {
  z-index: 1;
}
#one .innerSectionLayout .contentWrapper::after {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, rgb(45, 45, 44) 0%, rgba(45, 45, 44, 0) 35%);
  height: 4rem;
  width: 100%;
  bottom: 0;
}

#two .innerSectionLayout {
  display: flex;
  padding-top: 5rem;
}
#two .innerSectionLayout .contentWrapper {
  justify-content: center;
}
#two .innerSectionLayout .contentWrapper img {
  max-width: 84rem;
}

#three {
  scroll-margin-top: 4rem;
}
#three .innerSectionLayout {
  padding-top: 7rem;
  background-color: var(--projectBlack);
}
#three .innerSectionLayout .contentWrapper {
  flex-direction: column;
}
#three .innerSectionLayout .contentWrapper h2 {
  text-align: center;
}
#three .innerSectionLayout .contentWrapper .textWrapper {
  display: flex;
  margin-top: 7rem;
  margin-bottom: 17rem;
}
@media (max-width: 1024px) {
  #three .innerSectionLayout .contentWrapper .textWrapper {
    margin-bottom: 5rem;
  }
}
@media (max-width: 600px) {
  #three .innerSectionLayout .contentWrapper .textWrapper {
    flex-direction: column;
    margin-top: 4rem;
  }
}
#three .innerSectionLayout .contentWrapper .textWrapper .text {
  width: 50%;
}
@media (max-width: 600px) {
  #three .innerSectionLayout .contentWrapper .textWrapper .text {
    width: 100%;
  }
}
#three .innerSectionLayout .contentWrapper .textWrapper .text:first-child {
  padding-right: 6rem;
}
#three .innerSectionLayout .contentWrapper .textWrapper .text .animatedParagraph {
  margin-bottom: 3rem;
  border-left: 5px solid var(--primary);
  padding-left: 3rem;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
}
#three .innerSectionLayout .contentWrapper a {
  display: flex;
  justify-content: center;
  background-color: var(--primary);
  max-width: 35rem;
  width: 100%;
  text-decoration: none;
  color: var(--projectBlack);
  padding: 2.1rem;
  border-radius: 12px;
  margin: 0 auto;
  border: solid var(--projectBlack) 3px;
}
@media (max-width: 1024px) {
  #three .innerSectionLayout .contentWrapper a {
    padding: 1.6rem;
  }
}
@media (max-width: 700px) {
  #three .innerSectionLayout .contentWrapper a {
    max-width: none;
  }
}
#three .innerSectionLayout .contentWrapper a:hover {
  border: solid var(--white) 3px;
  transition: 0.3s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
#five {
  background-image: url(../images/video.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#five .innerSectionLayout {
  display: flex;
  flex-wrap: wrap;
  padding-top: 24rem;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout {
    padding-top: 5rem;
  }
}
#five .innerSectionLayout .contentWrapper {
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 700px) {
  #five .innerSectionLayout .contentWrapper {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
#five .innerSectionLayout .contentWrapper h2 {
  margin-bottom: 2rem;
  line-height: 0.8;
  text-align: center;
}
#five .innerSectionLayout .contentWrapper p {
  margin-bottom: 9rem;
  text-align: center;
}
@media (max-width: 700px) {
  #five .innerSectionLayout .contentWrapper p {
    margin-bottom: 5rem;
    font-size: 1.32rem;
  }
}
#five .innerSectionLayout .contentWrapper .block {
  display: flex;
  width: 50%;
  background-color: transparent;
  padding: 2.6rem;
}
#five .innerSectionLayout .contentWrapper .block:nth-child(odd) {
  padding-left: 0;
}
#five .innerSectionLayout .contentWrapper .block:nth-child(even) {
  padding-right: 0;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block {
    padding: 1rem;
  }
}
@media (max-width: 700px) {
  #five .innerSectionLayout .contentWrapper .block {
    width: 100%;
    padding: 0 0 1.6rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 47.2rem;
  background-color: var(--projectWhite);
  padding: 4rem;
  border-radius: 4rem;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock {
    padding: 2rem;
    min-height: auto;
    width: 100%;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 9rem;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper {
    height: 6rem;
  }
  #five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper:has(h2) {
    height: auto;
    margin-bottom: 2rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper h2 {
  color: var(--projectBlack);
  font-size: 5rem;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 700px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper h2 {
    margin-bottom: 0;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img {
  height: 100%;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img {
    max-height: 4rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.cosmo {
  max-width: 290px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.clean {
  max-width: 272px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.pagora {
  max-width: 253px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.leikur {
  max-width: 269px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.banq {
  max-width: 92px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.scandi {
  max-width: 341px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.smyrna {
  max-width: 279px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.brigantine {
  max-width: 289px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.stream {
  max-width: 213px;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.ballista {
  max-width: 318px;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .logoWrapper img.ballista {
    max-width: 208px;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock h3 {
  font-size: 19.9px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--projectBlack);
  text-align: center;
  margin: 1rem 0 4rem;
  letter-spacing: 3px;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock p {
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--projectBlack);
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock p {
    font-size: 1.45rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper a {
  display: flex;
  color: var(--projectBlack);
  text-decoration: none;
  text-transform: uppercase;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper a img {
  max-width: 1.55rem;
  margin-right: 1rem;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper a img {
    max-width: 1rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper a span {
  font-size: 1.5rem;
  letter-spacing: 3px;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper a span {
    font-size: 0.9rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper a:hover {
  color: var(--primary);
  transition: 0.3s ease-out;
}
#five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper p {
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock .linkWrapper p {
    font-size: 0.9rem;
  }
}
#five .innerSectionLayout .contentWrapper .block .innerBlock.penultimate {
  justify-content: center;
}
@media (max-width: 1024px) {
  #five .innerSectionLayout .contentWrapper .block .innerBlock.penultimate {
    min-height: auto;
  }
}
#five .innerSectionLayout .contentWrapper .block#contact {
  scroll-margin-top: 10rem;
  flex-direction: column;
}
#five .innerSectionLayout .contentWrapper .block#contact p {
  font-size: 1.32rem;
  margin-bottom: 1.8rem;
}

footer {
  background-color: var(--projectBlack);
  padding-bottom: 10rem;
}
footer .innerSectionLayout .contentWrapper {
  flex-direction: column;
  align-items: center;
  max-width: 80rem;
}
footer .innerSectionLayout .contentWrapper .brand {
  display: flex;
  margin: 5rem 0;
}
footer .innerSectionLayout .contentWrapper .brand img {
  width: 16rem;
  height: auto;
}
footer .innerSectionLayout .contentWrapper p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
footer .innerSectionLayout .contentWrapper ul {
  display: flex;
  list-style: none;
  margin: 5rem 0;
}
@media (max-width: 600px) {
  footer .innerSectionLayout .contentWrapper ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .innerSectionLayout .contentWrapper ul li {
  border-right: 1px solid var(--white);
}
@media (max-width: 600px) {
  footer .innerSectionLayout .contentWrapper ul li {
    margin-bottom: 2rem;
  }
}
footer .innerSectionLayout .contentWrapper ul li:last-child {
  border: 0;
}
@media (max-width: 449px) {
  footer .innerSectionLayout .contentWrapper ul li:nth-child(3) {
    border: 0;
  }
}
footer .innerSectionLayout .contentWrapper ul li a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 1.8rem;
}

#formSection {
  scroll-margin-top: 12rem;
}

#formSection h2,
#formSection p {
  text-align: center;
  margin-bottom: 2rem;
  color: #000;
}

#formSection h2 {
  font-size: 3.9rem;
}

#formSection p:last-of-type {
  margin-bottom: 5rem;
}

@media (max-width: 1024px) {
  #formSection .innerSectionLayout {
    max-width: 53vw;
  }
  #formSection h2 {
    font-size: 4vw;
  }
  #formSection p:last-of-type {
    text-align: left;
  }
}
@media (max-width: 768px) {
  #formSection .innerSectionLayout {
    max-width: 33rem;
  }
  #formSection h2 {
    font-size: 2.7rem;
  }
}

/*# sourceMappingURL=styles.css.map */
