/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

body {font-family: "century-gothic", sans-serif;}

/*
* A better looking default horizontal rule
*/

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}


audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
* Remove default fieldset styles.
*/

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
* Allow only vertical resizing of textareas.
*/

textarea {
  resize: vertical;
}


/* FLEX */

.flex-row {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    align-content: stretch;
}

.flex-row.top {
    align-items: flex-start !important;
}

.flex {
    display: flex;
    align-items: flex-start | flex-end | center | baseline;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-plain {
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.columns-2 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-content: flex-end;
    align-content: flex-end;
    align-self: flex-start;
}

.flex-row.stretch {
    display: flex;
    align-items: flex-start | flex-end | center | baseline | stretch;
    flex-wrap: wrap;
    justify-content: center;
}





/* ==========================================================================
Custom styles
========================================================================== */

.main-banner {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  background-color: #dedede;
}

header {
  background-color: #011b2300;
  height: 10em;
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  border-bottom: 1px solid #ffffff33;
  transition: 0.4s ease-in-out;
  z-index: 3;
}

header.scrolled {
  height: 8em;
  background-color: #011b23db;
  backdrop-filter: blur(12px);
}

header.scrolled .logo img {
  height: 3em;
}

header nav {
  padding: 1em 3em 1em 3em;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

header .lines {
  width: 100%;
  height: 2em;
  position: absolute;
  bottom: 0;
  margin-bottom: -2em;
  display: flex;
  justify-content: space-between;
}

header .lines i  {
  display: flex;
  width: 1px;
  height: 1em;
  background-color: #fff3;
  margin: 1px 3em 0 3em;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 4em;
  display: block;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}

/* .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-line {
  height: 3px;
  width: 35px;
  background: #ffffff;
  margin: 3px 0px;
} */

.main-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


h1 {
  font-family: "century-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 4em;
}

h2 {
  font-family: "century-gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 2.5em;
}

p {
  font-family: "century-gothic", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #000000;
  font-size: 1em;
  line-height: 2em;
}

.main-banner h1 {
  display: block;
  position: absolute;
  bottom: 1em;
  left: 2em;
}

.scroll-wrap {
  position: absolute;
  bottom: -180px;
  right: 100px;
}

.scroll-wrap p {
  color: #ffffff;
  transform: rotate(-90deg);
  text-transform: uppercase;
  font-size: 1em;
  margin-bottom: 40px;
}

.scrolldown {
  width: 1px;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(to bottom, #ddd 50%, rgba(255, 255, 255, 0) 50%);
  background-position: 0 -60px;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
	}
@keyframes scrolldown {
  0% { background-position: 0 -250px; }
  75% { background-position: 0 0; }
  100% { background-position: 0 250px; }
}

section .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 100%;
}

section .row .column {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
}

section.intro .row {
  overflow: hidden;
}

section.intro .row .column .images {
  background-color: blue;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.intro .row .column i{
  display: block;
  background-color: #fff;
  height: 10em;
  position: absolute;
  width: 10em;
  -webkit-transform: rotate(-45deg);
  bottom: -5em;
  right: -5em;
}

section.intro .row .column:last-child p {
  padding: 5em;
}

section.services .row {
  background-color: #011b23;
}

section.services .row .column:first-child {
  display: flex;
  align-items: center;
}




.menuContent a i {
  transition: 1s;
}

.menuContent a:hover i {
  transform: rotate(360deg);
  color: #fff;
}

.menuContent i {
  font-family: "apparat-light", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1em;
  color: #fff0;
  float: right;
}



.teknicraft-home-vessel {
  display: block;
  object-fit: cover;
  width: 100%;
  margin-top: -5%;
}


section.services .row .column:first-child .wrap {
  margin: 10%;
}

.copyright {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 0 0 10px 0;
  margin: 0;
  list-style: none;
  height: auto;
}

.copyright p {
  font-size: 1em;
  color: #fff;
}

section.footer i {
  display: block;
  width: 100%;
  height: 1px;
  background: #34494f;
}

section.footer .row {
  background: #011b23;
  padding-top: 2%;
}

section.footer .row .wrap {
  width: 100%;
  padding: 0 5em;
}

section.footer a {
  display: block;
  font-family: "century-gothic", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #ffffff;
  margin: 0;
  margin-bottom: 0px;
  text-align: end;
  margin-bottom: 1.5em;
  font-size: 2.5em;
  text-decoration: none;
}

section.footer .copyright p {
  color: #fff;
  text-align: inherit;
  margin-top: 2em;
  margin-bottom: 1.5em;
  font-size: 0.75em;
  letter-spacing: 1px;
}

section.footer .copyright a {font-size: 0.75em;}

#menuArea {
  display: flex;
  align-items: center;
  z-index: 99999;
}

input#menuToggle {
  display: none;
}

.open {
  background-color: #ffffff;
  width: 30px;
  height: 2px;
  display: block;
  cursor: pointer;
  position: relative;
  top: 8px;
}

.open:before {
  content: "";
  background-color: #ffffff;
  width: 30px;
  height: 2px;
  display: block;
  position: relative;
  top: -6px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.open:after {
  content: "";
  background-color: #ffffff;
  width: 30px;
  height: 2px;
  display: block;
  position: relative;
  top: 4px;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.menuOpen {
  width: 30px;
  height: 20px;
  display: block;
  padding: 15px;
  cursor: pointer;
  float: right;
  z-index: 99999;
}

.menuOpen:hover .open:before {
  top: -7px;
}

.menuOpen:hover .open:after {
  top: 5px;
}

.menu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(9, 66, 121, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 99998;
}

.menu label {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  background-size: 100%;
  cursor: pointer;
}

.menu .menuContent {
  position: relative;
  top: 50%;
  padding-bottom: 20px;
  margin-top: -170px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.menu ul li a {
  text-align: center;
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-family: "century-gothic", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #fff;
  font-size: 3em;
  padding: 0px 0px;
  transition: 0.3s;
  width: 100%;
  margin: 10px auto;
  max-width: 8em;
  border: 1px solid rgba(255, 255, 255, 0);
}

.menu ul li a:hover {
  padding: 10px 40px;
  border: 1px solid rgba(255, 255, 255, 1);
}

.menuEffects {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.menuEffects ul {
  transform: translateY(0%);
  transition: all 0.5s;
}

#menuToggle:checked ~ .menuEffects {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

#menuToggle:checked ~ .menuEffects ul {
  opacity: 1;
}

#menuToggle:checked ~ .menuOpen .open {
  background-color: transparent;
}

#menuToggle:checked ~ .menuOpen .open:before {
  content: "";
  background-color: white;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:checked ~ .menuOpen .open:after {
  content: "";
  background-color: white;
  transform: rotate(-45deg);
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
}

#menuToggle:not(:checked) ~ .menuEffects ul {
  transform: translateY(-30%);
}

section.banner {
  height: 100vh;
  background-color: #dedede;
}

section.banner .row .column .images {
  object-fit: cover;
  width: 100%;
  height: 60%;
  display: block;
  position: relative;
  left: -10%; top:8%
}


section.banner .row .column > p {width: 100%; position:relative; top:8%}

section.banner .row .column > p > img {
  object-fit: cover;
  width: 100%;
  height: 60%;
  display: block;
  position: relative;
  left: -10%; top:8%
}

section.banner .row {
  background: linear-gradient( to right, #d8dfce 0%, #d8dfce 70%, #094279 70%, #094279 100% );
  padding-top: 0;
}

section.banner .row .column h1 {
  font-weight: 600;
  font-size: 10em; margin-bottom: 30px
}

.banner-title {
  font-size: 10em;
  font-weight: 600;
  line-height: 1em;
  z-index: 2;
  color: #011b23;
  margin: 0;
  position: relative;
}

section.banner .row .column .wrap {
  position: relative;
  padding-left: 10%;
  padding-top: 10%;
}

.preview-vessel-butt {
  font-family: "century-gothic", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #094279;
  font-size: 1.5em;
  line-height: 2em;
  width: 330px;
  text-align: left;
  padding: 13px;
  border-radius: 0;
  background: #09427900;
  border: solid 1px #094279;
  padding-left: 30px;
}

.dropdown {
  display: inline-block;
  position: relative;
  margin-top: 20px;
}
.dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  overflow: auto;
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.4);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a {
  font-family: "century-gothic", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #fff;
  display: block;
  padding: 15px;
  text-decoration: none;
  background: #094279;
}
.dropdown-content a:hover {
  color: #FFFFFF;
  background-color: #00A4BD;
}


/*--*/


.project-category-list {display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  background-color: #fff; padding: 10% 0; max-width: 90vw; margin: 0 auto}


.project-category {width: 48%; position:relative; margin: 0 0 40px 0; background-color: #011b23; cursor:pointer}
.project-category h2 {position:absolute; left: 30px; bottom: 30px; font-size: 1.5vw; z-index:1}
.project-category p {margin:0; padding:0}
.project-category:hover img  {opacity:0.9; mix-blend-mode: luminosity}

.project-category img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}


.project-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  background-color: #fff; padding-top: 10%
}

.project-list > * {
  margin:4% 10%;
  flex: 1 100%;
}

.project-item {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  background-color: #d8dfce;
  transform: translateY(0px);
  transition: all 0.5s;
}

.project-image-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.project-details {
  display: flex;
  flex: 1.5;
  flex-flow: row wrap;
  align-content: center;
  margin-left: 5%;
}

.project-image-wrap {
  display: flex;
  flex: 2;
  align-items: center;
  justify-content: center;
  background-color: #094279;
}

.project-details h2 {
  color: #094279;
  margin: 0;
  flex: 1 100%;
}

.project-details p {
  font-size: 1.25em;
  flex: 1 100%; max-width:80%
}

.project-details strong {
  font-weight: 600;
}

.project-item:hover {
  background-color: #094279;
  transform: translateY(-5px);
}

.project-item:hover h2, .project-item:hover p {color:#fff}

.learn {
  display: flex;
  width: 200px;
  position: absolute;
  justify-content: center;
  padding: 20px;
  border: solid 1px #ffffff00;
  font-family: "century-gothic", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #ffffff00;
  text-decoration: none;
  transform: translateY(0px);
  transition: all 1s;
}

.project-item:hover .learn {
  color: #ffffff;
  border: solid 1px #ffffff;
  transform: translateY(-5px);
}

.project-image-wrap img {
  opacity: 1;
  transition: all 1s;
}

.project-item:hover .project-image-wrap img{
  opacity: .2;
}


.project-banner {
  background-color: #d8dfce;
  padding-top: 14em;
}


.project-banner .column {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.project-banner .column:first-child {
  flex: 2;
  flex-flow: row wrap;
  padding: 5%;
}

.project-banner .column:last-child {
  background-color: #094279;
  padding: 6%;
  flex: 1.5;
}

.project-banner h1 {
  font-weight: 600;
  font-size: 6vw;
  color: #000000;
  line-height: 1em;
  margin: 0;
}

.project-banner .details p {
  color: #ffffff;
  font-size: 1.1vw; margin-bottom:0
}

.project-banner .details a {color:#fff; opacity: 0.9; text-decoration:none; border-bottom: 1px solid #fff6}

.project-banner .details strong {font-weight:600}

.tail {
  font-size: 2vw;
  margin: 20px 0 0 0;
  color: #000; line-height: 3vw
}


.description {column-count: 2;
    column-gap: 5vw;}


.project-intro {
  background-color: #d8dfce;
}


.project-intro .wrap {
  padding: 5%;
}

.project-intro .column {
  width: 47%;
}

.project-gallery {
  background-color: #d8dfce; padding-bottom: 40px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-videos {
  background-color: #d8dfce;
}

.project-videos .wrap {
  width: 70%;
  margin: 0 auto;
  padding: 5% 0 8%;
}

.project-videos .column:last-child {
  padding-bottom: 0%;
}


.hs-responsive-embed-youtube {
  position: relative;

}
.hs-responsive-embed-youtube iframe {

  width: 100%!important;
  height: 600px !important; margin-bottom: 30px;
}

.project-sheet {
  background-color: #d8dfce;
  padding: 2% 0 5%; text-align:center;
}

.project-sheet h4 {
    text-align: center;
    font-size: 3em;
    margin: 0;
    padding-bottom: 1em;
    line-height: 1em; font-family: "century-gothic", sans-serif;
    font-weight: 200;
}

.project-sheet a {
    text-align: center;
    border: solid 1px #000000;
    padding: 25px 40px;
    color: #000000;
    text-decoration: none;
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    font-family: "century-gothic", sans-serif;
    font-weight: 200;
    font-style: normal;
}


.details:after {
    content: "";
    position: absolute;
    width: 9vw;
    height: 9vw;
    background: rgb(215,224,205);
    background: linear-gradient(135deg, rgba(215,224,205,1) 50%, rgba(51,51,51,0) 50%);
    margin: -6%;
}

.hero-image-wrapper {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  flex: 2.5;
  background-color: #094279;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
}

.hero-image-wrapper:after {
  content: "";
  position: absolute;
  width: 9vw;
  height: 9vw;
  background: rgb(215,224,205);
  background: linear-gradient(135deg, rgba(215,224,205,1) 50%, rgba(51,51,51,0) 50%);
}

.about-content {
    background-color: #fff;
}

.about-content .wrap {
    padding: 5% 15%;
    padding-top: 8%;
}

.lead {
    /* background: #094279; */
    padding: 1.7em;
    color: #000;
    font-family: "century-gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5em;
    margin: 0;
    border: solid 1px #00000021;
}

.about-content .column {
    flex: 1;
    padding: 0 3%;
}

.about-content p {
    hyphens: none;
}

.about-content p:first-child {
    hyphens: none;
    margin-top: 0;
}

.content-points {
    background-color: #094279;
}

.content-points .column {
  flex: 1 100%;
}

.content-points .column:last-child .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.content-points .column:last-child .wrapper .card {
    position: relative;
    overflow: hidden;
    width: 20%;
    margin: 1em;
    height: 250px;
    padding: 2em;
    border: solid 1px #fff;
    display: flex;
    align-items: end;
}

.content-points .column:last-child .wrapper h5 {
  margin-bottom: 15px;
}

.content-points .column:last-child .wrapper p {
    font-size: 1em;
    color: #fff;
    margin: 0;
}
.content-points .column:last-child .wrapper .icon {
  width: 25%;
  height: auto;
  position: absolute;
  left: -35px;
}

.content-points .wrap {
  padding: 8%;
}

.content-points h2 {
  text-align: center;
}

.content-points .column:last-child {
  display: flex;
}


.about-content2 {
  background-color: #fff;
}

.about-content2 .wrap {
    padding: 0 5% 5%;
}

.about-content2 .column {
    flex: 1;
    background-color: #094279;
}

.about-content2 .column:first-child:before {
  content: "";
  position: absolute;
  width: 9vw;
  height: 9vw;
  background: rgb(255,255,255);
  background: linear-gradient(135deg, rgba(255,255,255,1) 50%, rgba(51,51,51,0) 50%);
}

.about-content2 p {
  color: #fff;
}


.about-content2 h3 {color:#fff; font-size: 30px;}

.about-content2 .column:last-child {
    display: flex;
    align-items: center;
    padding: 5%; flex-wrap:wrap
}

.profile-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
}

.down-arrow {
    display: block;
    height: auto;
    position: absolute;
    width: 20px;
    left: auto;
    right: 5%;
    top: 44%;
}


.contact-section {
  flex: 1;
}

 .contact-section h3 {
   margin: 0;
   padding: 0;
   color: rgba(255, 255, 255, .9);
   font-size: 25px;
   margin-bottom: 20px;
   text-transform: uppercase;
}
 .contact-section form {
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   margin: 0 auto;
   text-align: left;
}

 .contact-section form .content {
   width: 100%;
   margin: 0 auto;
}

 .contact-section form .row {
   display: flex;
   justify-content: space-between;
   width: 100%;
   margin: 0 auto;
}

 .contact-section form .row div {
   width: 48%;
   padding-bottom: 1em;
}

.contact-section form .row .name,
.contact-section form .row .email,
.contact-section form .row .company,
.contact-section form .row .number,
.contact-section form .row .city,
.contact-section form .row .country {
   display: block;
}

.contact-section form .row .name input[name="name"],
.contact-section form .row .email input[name="email"],
.contact-section form .row .company input[name="company"],
.contact-section form .row .number input[name="number"],
.contact-section form .row .city input[name="city"],
.contact-section form .row .country input[name="country"] {
  width: 100%;
  height: 40px;
}

 .contact-section form .content textarea {
   width: 100%;
   resize: none;
}
.contact-section form .content button {
    border: solid 1px #ffffff;
    background-color: #ffffff00;
    padding: 25px 40px;
    margin-top: 30px;
    color: #ffffff;
    text-decoration: none;
    display: block;
    width: 240px;
    max-width: 100%;
    font-family: "century-gothic", sans-serif;
    font-weight: 200;
    font-style: normal;
}



.contact-section form label  {
  color: #fff;
  font-family: "century-gothic", sans-serif;
  font-weight: 200;
  font-style: normal;
  color: #ffffff;
  font-size: 1em;
  line-height: 2em;
}


.project-banner .contact {
  font-weight: 600;
  font-size: 7vw;
  color: #000000;
  line-height: 1em;
  margin: 0;
  margin-bottom: 3%;
}

.contact-banner {
  padding-bottom: 10em;
}

.contact-form:after {
    content: "";
    position: absolute;
    width: 9vw;
    margin: -6%;
    height: 9vw;
    background: rgb(215,224,205);
    background: linear-gradient(135deg, rgba(215,224,205,1) 50%, rgba(51,51,51,0) 50%);
}

.contact-banner p {
  margin: 0; font-size: 20px;
}

.about-banner p {
  font-size: 2.25em;
  line-height: 1.75em;
}

.success-message {padding-left: 90px;padding-bottom: 40px;}



@media (max-width: 1500px) {

  .main-banner h1 {
    left: 1em;
  }

  section.intro .row .column:last-child p {
    padding: 3em;
    font-size: 1em;
  }

  .teknicraft-home-vessel {
    display: block;
    object-fit: cover;
    width: 100%;
    margin-top: auto;
  }


  section.services .row .column:first-child h2 {
    font-size: 1.5em;
  }

  section.banner .row .column h1 {
    font-size: 10em;
  }

  .project-image-wrap {
    flex: 1;
  }

  .project-details {
    flex: 1;
  }

  .project-details h2 {
    color: #094279;
    font-size: 2em;
  }

  .project-details p {
    font-size: 1em;
  }

  .content-points .column:last-child .wrapper .card {
    width: 100%;
    height: auto;
  }

  .content-points h2 {
    text-align: left;
  }

  .content-points .column {
    flex: 1 50%;
  }

  .about-banner p {
    font-size: 1.5em;
    line-height: 1.75em;
  }

  .about-content .column {
    flex: 1 100%;
    padding: 0 3%;
  }

}



@media (max-width: 800px) {

  header nav {
    padding: 1em 2em 1em 2em;
  }

  header {
    height: 7em;
    position: fixed;
  }

  .logo img {
    height: 2.5em;
  }

  header.scrolled .logo img {
    height: 2.5em;
  }

  header.scrolled {
    height: 7em;
  }

  h1 {
    font-size: 3em;
  }

  p {
    font-size: 1em;
  }

  .main-banner h1 {
    left: 1em;
  }

  .scroll-wrap {
    right: 0px;
    bottom: -200px;
  }

  .scroll-wrap p {
    font-size: 0.75em;
  }

  section .row {
    display: block;
  }

  section .row .column {
    width: 100%;
  }

  section.intro .row .column:last-child p {
    padding: 3em;
  }

  .copyright {
  display: block;
  padding: 0;
  margin: 30px 0 0 0;
  }

  section.footer .row .wrap {
    width: 100%;
    padding: 0 0em;
  }

  section.footer .copyright p {
    text-align: center;
    margin-top: 0em;
    margin-bottom: 0em;
  }

  section.footer p {
    margin-bottom: 1em;
    font-size: 2.5em;
    text-align: center;
  }

  section.footer a {
    font-size: 1.5em;
    text-align: center;
  }

  .preview-vessel-butt {
    font-size: 1em;
    width: 250px;
  }

  section.banner {
    height: auto;
    margin-top: 7em;
  }

  section.banner .row {
    background: #d8dfce;
  }

  section.banner .row .column h1 {
    font-size: 3.5em;
  }

  header.scrolled {
    background-color: #011b23;
  }

  section.banner .row .column .images {
    display: none;
  }

  .dropdown {
    margin-bottom: 20px;
  }

  .project-item {
    flex-flow: column-reverse;
  }

  .project-details {
    justify-content: flex-start;
    padding: 1em;
  }

  .project-intro .column {
    width: 100%;
  }

  .project-sheet p {
    font-size: 2em;
  }

  .project-sheet a {
    padding: 10px 20px;
  }

  .project-banner .column:last-child {
    background-color: #094279;
    padding: 6%;
    flex: 1 100%;
  }

  .project-banner .details p {
    color: #ffffff;
    font-size: 1em;
  }

  .details:after {
    display: none;
  }

  .project-banner {
    background-color: #d8dfce;
    padding-top: 8em;
  }

  .project-sheet {
    background-color: #d8dfce;
    padding-bottom: 4em;
  }

  .hero-image-wrapper {
    flex: auto;
  }

  .content-points .column:last-child .wrapper .card {
    flex: 0 0 80%;
    height: auto;
  }

  section.footer .row {
    background: #011b23;
    padding-top: 7%;
  }

  .content-points .column {
    flex: 1 100%;
  }

  .contact-section form .row div {
    width: 99%;
    padding-bottom: 1em;
  }

  .about-content2 .column {
    flex: 1 100%;
    background-color: #094279;
  }


section.banner .row .column > p > img {

    width: 100%;
      left: 0;
    top: 20px;
}

.tail {
    font-size: 3.5vw; line-height: 5vw}


.description {
    column-count: 1;
    column-gap: 1vw;
}

.project-category h2 {bottom: 10px;}

}
















/* ==========================================================================
Helper classes
========================================================================== */

/*
* Hide visually and from screen readers
*/

.hidden,
[hidden] {
  display: none !important;
}


.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}
