@charset "UTF-8";
@import url(../src/tiny-slider.css);
@font-face {
  font-family: Medium;
  src: url("../assets/fonts/FuturaStd-Medium.otf"); }

@font-face {
  font-family: Light;
  src: url("../assets/fonts/FuturaBT-Light.ttf"); }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  font-family: Light;
  font-size: 16px;
  color: #333333;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll; }
  body :after {
    display: none; }
  body > * {
    opacity: 1;
    -webkit-transition: all 1s;
    transition: all 1s; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
  body .vessel-name {
    position: absolute;
    background: white;
    display: block;
    bottom: 0;
    right: auto;
    margin-left: 30px;
    margin-bottom: 30px;
    padding: 10px 30px; }
  body ul.list li:before {
    content: "•";
    /* Insert content that looks like bullets */
    padding-right: 8px;
    color: black;
    /* Or a color you prefer */ }
  body b {
    font-family: Medium; }
  body.loading {
    -webkit-transition: all 1s;
    transition: all 1s; }
    body.loading > * {
      opacity: 0;
      -webkit-transition: all 1s;
      transition: all 1s; }
    body.loading:after {
      content: '';
      border: 1px solid #d3d3d3;
      border-top: 1px solid #565757;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      -webkit-animation: spin 2s linear infinite;
      animation: spin 2s linear infinite;
      display: block;
      z-index: 99999999;
      position: fixed;
      left: calc(50% - 40px);
      top: calc(50vh - 40px);
      /* transform: translateY(50vh); */
      margin: auto; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
  body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    body *:focus {
      outline: 0; }
  body .bordered {
    border: 1px solid #333333;
    min-width: 200px;
    height: 40px;
    padding: 5px;
    display: block;
    width: 200px;
    text-align: center;
    line-height: 30px;
    font-size: 16px; }
  body .hover-cursor {
    cursor: pointer; }
  body .hover-effect {
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    body .hover-effect:hover {
      border: 1px solid #333333;
      min-width: 200px;
      height: 40px;
      padding: 5px;
      display: block;
      width: 200px;
      display: inline-block;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
  body .medium {
    font-family: Medium; }
  body .light {
    font-family: Light; }
  body #gallery-controls .next,
  body #gallery-controls .prev {
    position: absolute;
    top: 0;
    left: 3%;
    height: 100%;
    z-index: 9999999; }
    body #gallery-controls .next img,
    body #gallery-controls .prev img {
      cursor: pointer;
      width: 40px;
      height: 69%; }
  body #gallery-controls .prev {
    right: 3%;
    left: auto; }
    body #gallery-controls .prev img {
      -webkit-transform: rotateY(180deg);
      transform: rotateY(180deg); }
  body .head-quote,
  body .interior-quote {
    font-size: 43px;
    line-height: 52px;
    color: white;
    position: fixed;
    top: 75%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    z-index: 99999;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    opacity: 0;
    text-align: left;
    font-family: Light;
    left: -100vw; }
    body .head-quote.show,
    body .interior-quote.show {
      opacity: 1;
      left: 10%;
      -webkit-transition: all 0.6s;
      transition: all 0.6s; }
    body .head-quote .quote-author,
    body .interior-quote .quote-author {
      font-size: 24px;
      letter-spacing: 1px; }
  body .prev-p {
    width: 200px;
    left: 3%;
    position: fixed;
    bottom: 14%;
    display: inline-block; }
    body .prev-p .portfolio {
      -webkit-transform: translateY(-30%);
      transform: translateY(-30%);
      position: absolute; }
    body .prev-p .arrow {
      width: 55px;
      margin-right: 33px;
      float: left; }
  body .next-p {
    position: fixed;
    width: 55px;
    right: 3%;
    bottom: 14%; }
    body .next-p img {
      -webkit-transform: rotateZ(-180deg) translateY(0%);
      transform: rotateZ(-180deg) translateY(0%); }
  body .interior-quote {
    display: none !important; }
  body .head-quote {
    position: absolute; }
  body section {
    width: 100%;
    display: block;
    float: left;
    padding: 0 14% 7% 14%;
    overflow: hidden; }
    body section.padding-sm {
      padding: 7% 7% 7% 7%; }
    body section.fullheight {
      height: 100vh; }
    body section.adjusted {
      min-height: auto;
      height: auto; }
      body section.adjusted > article {
        height: auto; }
    body section.height-image {
      height: 80vh; }
      body section.height-image .image {
        padding-top: 80vh; }
    body section > h1 {
      width: 100%;
      text-align: center;
      text-transform: uppercase; }
    body section.multi-content {
      position: relative;
      padding-top: 0;
      min-height: 100vh; }
      body section.multi-content ul {
        width: 100%;
        text-align: left;
        margin-bottom: 80px;
        margin-top: 80px;
        padding-left: 7%;
        padding-right: 7%; }
        body section.multi-content ul li {
          border-color: transparent;
          margin: 0;
          display: inline-block;
          margin: 0 40px;
          text-transform: uppercase; }
          body section.multi-content ul li:first-child {
            margin-left: 0; }
          body section.multi-content ul li.activated {
            border-color: #333333; }
      body section.multi-content article {
        padding-left: 7%;
        padding-right: 7%; }
    body section .content {
      display: none; }
      body section .content.show {
        display: block; }
    body section .hidder_btn {
      margin-bottom: 50px; }
    body section.img-text .image {
      padding-top: 65%;
      margin-top: 125px;
      width: 65%;
      height: 65%;
      margin-right: 5%; }
    body section.project-gallery {
      padding: 0 calc(14% - 20px) 7% calc(14% - 20px); }
      body section.project-gallery img {
        margin: 20px;
        width: calc(50% - 40px);
        float: left; }
        body section.project-gallery img.fullwidth {
          width: calc(100% - 40px); }
      body section.project-gallery article {
        margin: 20px;
        width: calc(50% - 40px); }
        body section.project-gallery article.image {
          background-size: contain;
          background-repeat: no-repeat;
          background-position-y: top; }
        body section.project-gallery article.fullwidth {
          background-size: cover;
          width: calc(100% - 40px); }
    body section.scroll-effect {
      padding: 0;
      top: 0;
      background-position: center;
      background-size: cover;
      height: 100vh;
      background-repeat: no-repeat;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -ms-backface-visibility: hidden;
      background-attachment: scroll; }
      body section.scroll-effect img {
        width: 100%; }
      body section.scroll-effect.sticky {
        position: -webkit-sticky;
        position: sticky; }
    body section article {
      width: 50%;
      height: 100%;
      float: left;
      overflow: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      line-height: 24px;
      position: relative; }
      body section article .middle {
        margin: auto;
        width: 100%; }
      body section article h1 {
        margin-bottom: 40px; }
        body section article h1.title {
          font-family: Medium;
          font-size: 53px;
          line-height: 80px; }
          body section article h1.title span {
            margin: auto; }
      body section article p {
        font-family: Light;
        font-size: 16px; }
      body section article .image {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding-top: 100%;
        width: 100%; }
    body section article:only-of-type {
      width: 100%; }
    body section.project_information {
      min-height: 0;
      height: auto;
      font-size: 16px; }
      body section.project_information article {
        height: auto;
        width: 30%;
        margin-top: 6px;
        overflow: visible; }
        body section.project_information article.download {
          margin-top: 39px; }
        body section.project_information article:first-of-type {
          width: 70%;
          margin-top: 0;
          padding-right: 14%; }
        body section.project_information article h1 {
          margin-bottom: 0;
          text-decoration: underline;
          line-height: 40px; }
        body section.project_information article li {
          line-height: 24px; }
        body section.project_information article p {
          font-size: 16px;
          width: 87%; }
        body section.project_information article ul {
          position: relative;
          margin-left: 130px; }
        body section.project_information article .btn_download {
          position: absolute;
          content: url(../assets/img/pdf_icon.svg);
          top: 1px;
          left: 0;
          width: 68px;
          height: 70px;
          cursor: pointer; }
    body section.grid > article:only-child {
      width: 100%; }
    body section.grid article {
      width: 33.3333333333333%;
      float: left;
      height: auto; }
      body section.grid article h1 {
        text-align: center; }
        body section.grid article h1.title {
          margin-bottom: 60px;
          font-family: Light;
          font-size: 16px; }
      body section.grid article .cell {
        padding: 20px; }
      body section.grid article .image {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding-top: 100%; }
      body section.grid article .identifier {
        text-align: left; }
        body section.grid article .identifier h1 {
          text-transform: uppercase;
          margin-top: 80px; }
        body section.grid article .identifier.project {
          margin-bottom: 0; }
          body section.grid article .identifier.project h1 {
            text-align: left;
            margin-top: 20px;
            margin-bottom: 0; }
    body section.grid#properties {
      -webkit-transition: all 2s;
      transition: all 2s; }
      body section.grid#properties article:nth-child(n+10) {
        -webkit-transition: all 1s;
        transition: all 1s;
        height: 0;
        opacity: 0; }
      body section.grid#properties.expand {
        -webkit-transition: all 1s;
        transition: all 1s; }
        body section.grid#properties.expand article:nth-child(n) {
          -webkit-transition: all 1s;
          transition: all 1s;
          height: auto;
          opacity: 1; }
        body section.grid#properties.expand .more_btn_container {
          -webkit-transition: all 1s;
          transition: all 1s;
          opacity: 0;
          pointer-events: none;
          padding-top: 0px;
          padding-bottom: 0px; }
          body section.grid#properties.expand .more_btn_container img {
            pointer-events: none; }
      body section.grid#properties .more_btn_container {
        width: 100%;
        -webkit-transition: all 1s;
        transition: all 1s;
        opacity: 1;
        height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        body section.grid#properties .more_btn_container img {
          margin: auto;
          cursor: pointer; }
  body article.col2 div {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 100px;
    column-gap: 100px; }
  body article.col2.yachts {
    padding-left: 0;
    padding-right: 0; }
  body nav {
    font-family: Light;
    width: 100%;
    display: block;
    float: left;
    text-align: center;
    background: white;
    height: 80px;
    overflow: hidden;
    padding-top: 20px; }
    body nav.compressed {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 999999;
      width: 100%;
      text-align: right;
      padding: 0 14%;
      height: auto;
      max-height: 0px;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
      body nav.compressed.open {
        max-height: 120px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        padding: 30px 14%; }
      body nav.compressed .logo {
        position: relative;
        float: left;
        width: 50px; }
      body nav.compressed a {
        line-height: 60px; }
        body nav.compressed a.allways-on {
          border: 1px solid #333333;
          -webkit-transition: all 0.3s;
          transition: all 0.3s; }
      body nav.compressed .second-level {
        margin-top: -27px;
        font-size: 14px;
        display: inline-block;
        -webkit-transform: translateX(-22%);
        transform: translateX(-22%); }
        body nav.compressed .second-level a {
          padding: 0;
          padding-left: 10px; }
          body nav.compressed .second-level a:first-child {
            padding-right: 1px; }
          body nav.compressed .second-level a:last-child {
            padding-right: 17px; }
          body nav.compressed .second-level a.activated, body nav.compressed .second-level a:hover {
            border: 1px solid white;
            text-decoration: underline; }
    body nav a {
      line-height: 30px;
      text-decoration: none;
      text-transform: uppercase;
      color: #333333;
      cursor: pointer;
      padding: 5px;
      border: 1px solid white;
      padding-left: 15px;
      padding-right: 15px; }
      body nav a.activated, body nav a:hover {
        border: 1px solid #333333;
        -webkit-transition: all 0.3s;
        transition: all 0.3s; }
    body nav .second-level {
      display: none; }
  body header,
  body footer {
    width: 100%;
    float: left;
    text-align: center;
    font-family: Light;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  body header {
    position: relative; }
    body header .logo-wrapper {
      height: 15%;
      margin-top: 3%;
      margin-bottom: 3%; }
    body header.cover {
      height: 100vh;
      min-height: 900px; }
      body header.cover .arrow {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 10%; }
        body header.cover .arrow i,
        body header.cover .arrow img {
          margin: auto; }
      body header.cover .logo-wrapper {
        height: 20%;
        margin-top: 0%;
        margin-bottom: 0%;
        position: relative; }
        body header.cover .logo-wrapper img {
          height: 80%;
          top: 50%;
          -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
          position: absolute; }
      body header.cover .cover {
        height: 70%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover; }
  body footer {
    margin-top: 10vh;
    height: auto;
    margin-bottom: 20vh; }
    body footer .contact {
      font-size: 14px;
      font-family: Light;
      margin-top: 40px;
      line-height: 20px;
      position: relative; }
      body footer .contact .credits-btn {
        position: absolute;
        bottom: 0;
        right: 14%;
        display: block;
        border: 1px solid black;
        text-align: center;
        padding: 5px 8px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        cursor: pointer; }
        body footer .contact .credits-btn:hover {
          background: black;
          color: white; }
  body .tns-outer > button {
    display: none; }
  body .mobile {
    display: none !important; }
  body .desktop {
    display: block !important; }
  body .credits {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
    font-size: 14px;
    max-height: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 14%; }
    body .credits.show {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      max-height: 1000px; }
    body .credits .col {
      width: 33%;
      padding-right: 7%;
      line-height: 20px;
      margin-top: 80px; }
      body .credits .col.logo {
        margin-top: 0; }
      body .credits .col:first-child {
        width: 45%;
        padding-right: 14%;
        padding-left: 7%; }
      body .credits .col:last-child {
        padding-right: 0; }
      body .credits .col b {
        font-family: Medium; }
  body .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    background-position: center;
    height: 70%; }
  body #yacht1 {
    padding-left: 0; }
  body #yacht2 {
    padding-left: 0; }
  body #yacht {
    margin-bottom: 20px; }
  body .project-navigation {
    display: none; }

@media only screen and (max-width: 950px) {
  body nav.compressed {
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#ececec));
    background: linear-gradient(white, #ececec); }
  body nav.compressed .second-level {
    display: none !important; }
  body section article .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 82vh;
    width: 100%; }
  body section.img-text article .image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: calc(100vw - 10%);
    width: 100%;
    margin-top: 14%;
    width: 85%; }
  body .credits .col {
    width: 45%;
    padding-right: 7%;
    padding-left: 7%; }
  body .credits .col:first-child {
    padding-right: 7%;
    padding-left: 7%; }
  body #yacht1 {
    padding-left: 7% !important;
    margin-bottom: 20px; }
  body #yacht {
    margin-bottom: 20px; }
  body #yacht2 {
    padding-left: 7%;
    margin-bottom: 40px; }
  body .toffy-reduced {
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  body .project-navigation {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 60px; }
    body .project-navigation .arrow {
      width: 50px;
      margin-bottom: 11px;
      margin-right: 40px; }
    body .project-navigation .arrow-reversed {
      width: 50px;
      -webkit-transform: rotateZ(180deg);
      transform: rotateZ(180deg);
      margin-bottom: 11px;
      margin-left: 40px; }
  body #gallery-controls .next img,
  body #gallery-controls .prev img {
    height: 43%; }
  body .head-quote .quote-author, body .interior-quote .quote-author {
    font-size: 21px;
    letter-spacing: 1px;
    pointer-events: none; }
  body .head-quote {
    width: 75%;
    top: 75vh; }
  body .interior-quote {
    width: 75%;
    pointer-events: none;
    display: none; }
  .image-container {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100% !important;
    height: 82vh !important; }
  .slider {
    height: 100vh; }
  .tns-outer .tns-inner {
    height: 100%; }
  .tns-item {
    height: 100vh; }
  body section.height-image {
    height: 86vh; }
  body .desktop {
    display: none !important; }
  body .mobile {
    display: block !important; }
    body .mobile .tns-outer {
      height: 100%; }
  body .interior-quote {
    display: none !important;
    top: 66%; }
  body section.adjusted {
    padding: 0 7% 7% 7%; }
  body section.project_information {
    padding-left: 7%;
    padding-right: 7%;
    margin-bottom: 40px; }
    body section.project_information article {
      padding: 0 !important; }
      body section.project_information article:first-of-type {
        padding-right: 0; }
      body section.project_information article p {
        width: 100%; }
  body .prev-p {
    width: 180px;
    left: 3%;
    position: relative;
    bottom: 27%;
    float: left;
    -webkit-transform: translateX(-65%);
    transform: translateX(-65%);
    margin-left: 50%; }
  body .next-p {
    position: relative;
    width: 55px;
    right: 3%;
    bottom: 27%;
    float: left; }
  body article.col2 div {
    -webkit-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0px;
    column-gap: 0px; }
  body article.col2.yachts {
    padding: 0% 7%;
    margin-bottom: 60px; }
  body section.grid article .cell {
    padding-top: 0;
    padding-bottom: 0; }
  body section.grid article .identifier {
    margin-bottom: 0; }
    body section.grid article .identifier h1 {
      margin-top: 40px; }
    body section.grid article .identifier.project {
      margin-bottom: 20px; }
  body section.grid.highlights {
    margin-top: 60px; }
  body .credits {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    body .credits .col:last-child {
      padding-right: 7%; }
    body .credits.padding-sm {
      padding-left: 14% !important;
      padding-right: 14% !important;
      padding-top: 25vh !important;
      text-align: center; }
    body .credits .col {
      width: 100% !important;
      margin-bottom: 20px !important;
      margin-top: 0 !important; }
  body .content-selector li {
    width: 150px;
    display: block;
    min-width: 0;
    float: left;
    margin: 0 !important;
    margin-bottom: 20px; }
  body nav .second-level a {
    font-size: 20px !important;
    line-height: 46px !important; }
  body nav.compressed {
    max-height: 120px;
    -webkit-transition: all 1.3s;
    transition: all 1.3s;
    padding: 10px 2%;
    -webkit-box-shadow: 0px -6px 63px grey;
    box-shadow: 0px -6px 63px grey;
    box-shadow: 0px -6px 63px grey;
    width: 100vw;
    left: 0;
    top: 0px;
    height: 60px;
    top: -100px; }
    body nav.compressed a {
      opacity: 0;
      -webkit-transition: all 0.5s;
      transition: all 0.5s;
      border: none;
      width: 100%;
      float: left;
      margin: auto;
      text-align: center;
      font-size: 31px;
      /* margin-top: 50%; */
      line-height: 93px; }
    body nav.compressed.open {
      max-height: 120px;
      -webkit-transition: all 0.6s;
      transition: all 0.6s;
      padding: 10px 2%;
      -webkit-box-shadow: 0px -6px 63px grey;
      box-shadow: 0px -6px 63px grey;
      box-shadow: 0px -6px 63px grey;
      width: 100vw;
      left: 0;
      top: 0px;
      height: 60px; }
      body nav.compressed.open .menu-links-wrapper {
        width: 100%;
        height: 80%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: auto;
        padding-top: 14%; }
    body nav.compressed .mobile.logo {
      float: right;
      -webkit-transition: all 0.4s;
      transition: all 0.4s;
      right: 0;
      top: -4px; }
    body nav.compressed.expanded {
      width: 100%;
      height: 100%;
      max-height: 100%;
      top: 0;
      right: 0;
      left: 0%; }
      body nav.compressed.expanded .toffy-reduced {
        opacity: 0; }
      body nav.compressed.expanded a {
        opacity: 1;
        border: none;
        width: 100%;
        float: left;
        margin: 0px auto 20px auto;
        text-align: center;
        font-size: 20px;
        /* margin-top: 50%; */
        /* flex: 1; */
        line-height: 20px; }
  body footer {
    margin-bottom: 25vh;
    margin-top: 25vh; }
    body footer .logo-wrapper img {
      width: 80px; }
    body footer .credits-btn {
      position: relative !important;
      margin-top: 20px;
      display: inline-block !important;
      right: 0 !important; }
      body footer .credits-btn:hover {
        background: white !important;
        color: black !important; }
    body footer section {
      overflow: visible; }
  body header .logo-wrapper img {
    width: 70px;
    margin-top: 10px; }
  body section.padding-sm {
    padding-bottom: 14%; }
  body section.project-gallery img {
    margin: 0;
    margin-bottom: 10px;
    float: left;
    width: calc(100%) !important; }
  body section.multi-content, body section.project-gallery {
    padding-left: 0;
    padding-right: 0; }
  body .padding-sm {
    padding: 7% 0% 7% 0% !important; }
  body #interior article .image {
    margin-right: auto !important; }
  body .scroll-effect {
    height: 100%;
    /* background-size: contain; */
    display: block;
    float: none;
    width: 100%; }
  body section {
    padding: 0 0% 7% 0%; }
    body section.img-text h1.title {
      margin-top: 40px; }
    body section.grid article {
      width: 100%; }
    body section article {
      width: 100%; }
    body section h1.title {
      font-size: 40px !important; }
    body section.project_information article {
      width: 100% !important;
      padding: 3%; }
  body .next-p img {
    -webkit-transform: rotateZ(-180deg) translateX(128%) translateY(1px);
    transform: rotateZ(-180deg) translateX(128%) translateY(1px); }
  body .prev-p {
    width: 180px;
    left: 3%;
    position: relative;
    bottom: 14%;
    float: left;
    -webkit-transform: translateX(-38%);
    transform: translateX(-38%);
    margin-left: 38%;
    margin-bottom: 40px; }
  .menu-links-wrapper {
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
  body nav.compressed.open {
    max-height: 120px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    padding: 10px 4%;
    -webkit-box-shadow: 0px -6px 63px grey;
    box-shadow: 0px -6px 63px grey;
    box-shadow: 0px -6px 63px grey;
    width: 100vw;
    left: 0;
    top: 0px;
    height: 42px !important; }
    body nav.compressed.open.expanded {
      height: 100vh !important;
      max-height: 100vh; }
      body nav.compressed.open.expanded .menu-links-wrapper {
        opacity: 1; }
  #properties.grid {
    padding: 0; } }

@media only screen and (max-width: 475px) {
  body .head-quote, body .interior-quote {
    font-size: 35px;
    line-height: 42px;
    top: 75vh; } }

#yacht-gallery .tns-item {
  height: auto !important; }

#tours image {
  background-image: url(./Application/assets/img/tours.jpg);
  width: 100vw;
  background-position: bottom; }

@media only screen and (orientation: landscape) {
  body .head-quote {
    top: 75vh; } }
