/* RESET */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;

}

body {
    margin: 0;
}

a:focus {
    outline: thin dotted;
}

a:active,
a:hover {
    outline: 0;
}

h1 {
    font-size: 6rem;
    margin: 0.67em 0;

}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

mark {
    background: #ff0;
    color: #000;
}

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

pre {
    white-space: pre-wrap;
}

q {
    quotes: "\201C""\201D""\2018""\2019";
}



sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
}

button,
input {
    line-height: normal;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}

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

*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;
    font-weight: 500;
    color: #1c1c1c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    background: #D5D0CC;
    font-family: 'PolySansReef Slim', sans-serif;
}


/*body:before {
    content: "";
    position: fixed;
    width: 140px;
    height: 140px;
    left: 50%;
    top: 50%;
    margin-left: -70px;
    margin-top: -70px;
    background-color:#D6634B;
    background-image: url('/img/ReefGroup_Logo_Icon_Dark_Grey.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1; 
}
*/


/* load in/out */
#loadable {
    background-color: #D5D0CC;
    opacity: 1;
    transition: .5s opacity 1s;
}

body.fade-out #loadable {
    opacity: 0;
    transition: none;
}

_:-ms-fullscreen, :root body.fade-out #loadable { opacity: 1!important; }


/* HELPERS */

.fade-in {
    opacity: 0;
    animation: fadeIn 4s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes bgZoomOut {
    to {
        transform: scale(1);
        opacity: 0.4;
    }
}

@keyframes grow {
    0% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(1.1);
    }
}


@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}


a {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #1a1a1a;
    outline: none;
    cursor: pointer;
}

h1 a {
    border:none;
}


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

li {
    margin: 0;
    padding: 0;
}

.uc {
    text-transform: uppercase;
}

.lc {
    text-transform: none!important;
}

a:hover,
a:focus {
    color: inherit;
    outline: none;
}


button:focus {
    outline: none;
}


.hidden {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
    pointer-events: none;
}


.bg-image {
    background-size: cover;
    background-position: center;
}

.no-bg {
    background: none !important;
}

.no-padding {
    padding: 0!important;
}

.small-padding {
    padding: 1rem;
}


.padded {
    padding: 2rem;
}

.no-margin {
    margin: 0!important;
}




.bg-white {
    background-color: #e1dfde;
}

.bold, .b {
    font-weight: bold;
/*    fon*/
}

.no-underline, .no-underline > a {
    text-decoration: none!important;
    border-bottom: none;
}

.vh {
    min-height: 100vh !important;
}


.almost-vh {
    height: 80vh !important;
}


.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}


.text-center {
    text-align: center;
}


.container {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: calc(100vw - 4rem);
    width: calc(100dvw - 4rem);
    max-width: 1200px;
}

.container.narrow {
    max-width: 950px;
}


.light {
    font-weight: 100;
}


.text-right {
    text-align: right;
}

img,
.img-full {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: cover;
}


.aspect-square {
    padding-top: 100%;
}

.aspect-sixteen-nine {
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.aspect-four-three {
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
}

.aspect-three-two {
    padding-top: 66.6%;
    /* 3:2 Aspect Ratio */
}

.aspect-eight-five {
    padding-top: 62.5%;
    /* 8:5 Aspect Ratio */
}


.clearfix,
.cf {
    display: block;
    width: 0;
    height: 0;
    clear: both;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.hidden-sm {
    display: none;
}

.visible-sm {
    display: block;
}

@media screen and (min-width: 48em) {
    .hidden-sm {
        display: block;
    }

    .visible-sm {
        display: none;
    }

    .no-margin-desktop {
        margin: 0!important;
    }
}

/* TYPE */


a


::-moz-selection {
    background: #D6634B;
}

::selection {
    background: #D6634B;
}

html {
    font-size: calc(11px + 0.390625vw);
}
/*
@media screen and (min-width: 320px) {
    html {
        font-size: calc(16px + 6 * ((100vw - 320px) / 680));
    }
}

@media screen and (min-width: 1000px) {
    html {
        font-size: 17px;
    }
}*/

h1,
h2,
h3,
h4,
h5,
h6 {
    /* Always use a font stack, even with custom web fonts! */
    font-family: 'PolySansReef Slim', sans-serif;
    color: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0;
    line-height: 1.5rem;
    font-size: 1rem;
    letter-spacing: -0.03rem;
    font-weight: 500;
}

h1, .h1 {
    font-size: 4rem;
    line-height: 4rem;
/*    font-weight: 100;*/
    /*text-transform: uppercase;*/
    margin-bottom: 2rem;
}

h2, .h2 {
    font-size: 1.8rem;
    line-height: 120%;
    font-weight: 500;
/*    font-weight: 100;*/
}



.h3,
.h4,
.h5,
.h6 {
    font-size: 1rem;
}


p,
.p {
    font-size: 1rem;
    line-height: 120%;
    letter-spacing: -0.1px;
    /*max-width: 66ch;*/
    margin-block-end: 2rem;
}

.large, .large > p, .text-large, .text-large p, .text-large .p {
    font-size: 1.9rem;
    line-height: 120%;
    max-width: 47ch;
    letter-spacing: -0.03rem;
}

.medium, .medium > p {
    font-size: 1.5rem;
    line-height: 120%;
    letter-spacing: -0.03rem;
    /*text-transform: uppercase;*/
/*    font-weight: lighter;*/
}

small, .small, .small p {
    font-size: 0.8rem;
}

@media only screen and (max-width: 64em) {
    small, .small, .small p {
        font-size: 1rem;
    }
}


.spacer {
    display: flex;
    height: 2rem;
    margin: 0;
}

.spacer--large {
    display: flex;
    height: 8rem;
    margin: 0;
}


hr, .hr {
    display: block;
    border:none;
    height: 1px;
    background: #1a1a1a;
    width: 100%;
}

hr.short {
    width: 60px;
    float: left;
    clear: both;
}
hr.short::after {
  content: "";
  clear: both;
  display: table;
}

cite {
/*    font-size: 0.8rem;*/
/*    color: #999;*/
}

cite a {
    border:none;
    text-decoration: none;
}
cite a:hover {
   text-decoration: underline;
}



/* LAYOUT */

header {}

main {
    padding: 0;
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    height: 100vh;
    height: 100dvh;
    background: #D5D0CC;
/*    margin-top: 80px;*/
}

footer {
    background: #1C1C1C;
    margin: 4rem 0 0 0;
    color: #e1dfde;
    padding: 0 0 4rem 0;
    font-size:.8rem;
}

footer .menu  {
    margin-top: -0.5rem;
}

footer .menu li {
    line-height: 120%;
    list-style: none;
    width: 50%;
    float: left;
}

footer .menu li:nth-child(even) {
    padding-left: 1rem;
}

footer .menu li a {
    border-bottom: none;
}

footer .menu li a:hover {
    border-bottom: 1px solid;
}

.social-icon-wrap {
    display: inline-block;
    margin: 0 5PX 0 0;
    width: 40px;
/*    border: 1px solid white;*/
    border-radius: 10rem;
    height: 40px;
    padding-top: 18px;
    text-align: left;
    transform: scale(.8);
}

.social-icon {
    fill: white;
    color: white;
    width: 24px;
    margin: 0;
    padding: 0;
    /* border: 1px solid white; */
    height: 24px;
    /* padding: 10px; */
    /* border-radius: 10rem; */
    /* margin-top: 1rem; */
    /* margin-bottom: 1rem; */
    /* margin-right: 0.5rem; */
    transition: transform .2s ease;
}


.social-icon-wrap:hover .social-icon{
/*    border: 1px solid #D6634B;*/
    fill: #D6634B;
    color: #D6634B;
}


footer p {
    font-size: inherit;
}

footer .small p {
    line-height: 120%;
}

.footer-logo {
    width: 200px;
    height: auto;
}

@media only screen and (max-width: 64em) {
    footer {
        font-size: 17px;
    }
}



/* COMPONENTS */



/* HEADER WITH HAMBURGER */
.header {
    position: fixed;
    width: 100%;
    z-index: 10;
    left: 0;
    padding: .5rem 0;
    height: 80px;
    top:0;
 border-bottom: 1px solid #1c1c1c;
/*  background: #D5D0CC;*/
   
}
.header.with-bg {
    background: transparent;
}

.header-offset {
    display: block;
    height: 79px;
}


body[below-top='true'] .header, .header.with-bg  {
/*    background: linear-gradient(180deg, rgba(213, 208, 204, 0.6), rgba(213, 208, 204, 0));*/
 background: #D5D0CC;

    /*background: rgba(213, 208, 204, .7);*/
}


.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    /*background-color: white;*/
}

.header li a {
    display: block;
    padding: 10px 20px 10px 0;
    /*border-right: 1px solid #1c1c1c;*/
    text-decoration: none;
    letter-spacing: -0.02em;
}

.header li a:hover,
.header .menu-btn:hover {
    /*background-color: #1c1c1c;*/
}



@keyframes hideUp {
    from {
        clip-path: inset(0 0 0 0);
    }

    to {
        clip-path: inset(0 0 100% 0);
    }
}


@keyframes revealCircle {
   from {
      clip-path: circle(0% at 0% 0%);
      opacity: 0;
  }


   to {
       clip-path: circle(100% at 100% 50%);
  }
}

.hide-up {
    animation: hideUp;
    animation-fill-mode: backwards;
    animation-iteration-count: 1;
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(0.75, 0.14, 0.15, 0.98);
}

.hide-down {
    animation: hideUp;
    animation-fill-mode: backwards;
    animation-direction: reverse;
    animation-iteration-count: 1;
    animation-duration: .8s;
    animation-timing-function: cubic-bezier(0.75, 0.14, 0.15, 0.98);
}

@keyframes revealText {
   from {
      transform:translateY(100%);
  }


   to {
        transform:translateY(0);
  }
}



.text-wrap {
    position: relative;
    overflow: hidden;
    height: auto;
    line-height: 100%;
}

.text-wrap > * {
    animation: revealText;
    animation-iteration-count: 1;
    animation-duration: .8s;
    animation-delay: 1s;
    animation-fill-mode: backwards;
    animation-timing-function: cubic-bezier(0.75, 0.14, 0.15, 0.98);
    overflow: hidden;
}

.reef-logo-animated {
   float: left;
    width: 158px;
    left: 50%;
    top: 50%;
    margin-top: -30px;
    margin-left: 20px;
    transform: scale(2);
    transform-origin: center;
    fill: #1a1a1a;
    text-decoration: none;
    border: none;
    position: fixed;
    height: auto; 
}

body.fade-out .reef-logo-animated {
    transition-delay: 0;
    transition-duration: 0;
    display: none!important;
}

.header--logo {
    float: left;
    width: 158px;
/*    margin: 5px 10px;*/
    transform: scale(0.75) translate(40px, 25px);
    transform-origin: top left;
    fill: #1a1a1a;
    text-decoration: none;
    border: none;
    position: relative;
    height: auto;
}

.header--logo:before,
.reef-logo-animated:before {
    content: "";
    width: 75px;
    height: 75px;
    position: absolute;
    pointer-events: none;
    border: 1.5px solid #1a1a1a;
    border-radius: 10rem;
    left: -14px;
    top: -19px;
    transition: all .8s ease;
/*    transition-delay: .4s;*/
    opacity: 0;
}

body[below-top='true'] .header--logo:before,
.reef-logo-animated.playing:before
 {
        animation: revealCircle 1s forwards;
        animation-timing-function: cubic-bezier(1,-0.06, 1, 1);
    animation-iteration-count: 1;
/*    animation-delay: .4s;*/
    animation-fill-mode: both;
    opacity: 1;
/*   opacity: 1;
   clip-path: circle(63.4% at 79% 56%);*/
}


body:not([below-top='true']) .header--logo:before {
    transition: all .1s ease;
    transition-delay: 0;
}


.reef-logo-svg-letter  {
    opacity: 1;
    transition: opacity .4s ease;
    fill: #1a1a1a;
}

body[below-top='true'] .letter-collapsible,
.reef-logo-animated.playing .letter-collapsible {
    opacity: 0;
}

.reef-logo-svg-letter.letter-r   {
   
}
.reef-logo-svg-letter.letter-e1   {
   transition-delay: 200ms;
}
.reef-logo-svg-letter.letter-e2  {
   transition-delay: 100ms;
}
.reef-logo-svg-letter.letter-f   {
   transition-delay: 0ms;
}

.reef-logo-svg-letter.letter-g   {
    transition: all .8s ease;
}
.reef-logo-svg-letter.letter-r2   {
    transition-delay: 0ms;
}
.reef-logo-svg-letter.letter-o   {
     transition-delay: 50ms;
}
.reef-logo-svg-letter.letter-u   {
    transition-delay: 100ms;
}
.reef-logo-svg-letter.letter-p   {
    transition-delay: 150ms;
}

body[below-top='true'] .letter-g,
.reef-logo-animated.playing .letter-g
 {
    transform: translateX(-30%);
}

body.menu-open .reef-logo-svg-letter,
body[below-top='true'] .reef-logo-svg-letter {
   fill: #1a1a1a;
}

body:not([below-top='true']) .reef-logo-svg-letter {
    transition: all .4s ease;
    transition-delay: 0;
}






/* menu */

.header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
/*    padding-top: 4rem;*/
    padding-left: 2rem;
    padding-right: 2rem;
    color: #1c1c1c;
}


body.menu-open .header .menu {
    padding-top: 4rem;
}

/* menu icon */

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 15px;
    border: 1.5px solid #1a1a1a;
    border-radius: 10rem;
    position: relative;
    user-select: none;
    transform: translateX(-20px) scale(.75);
    transform-origin: right;
}

body.menu-open .header .menu-icon,
body[below-top='true'] .header .menu-icon {
    border-color: #1a1a1a;
}

.header .menu-icon .navicon {
    background: #1a1a1a;
    display: block;
    height: 0;
    position: relative;
    transition: background .2s ease-out;
    width: 27px;
}




.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
    background: #1a1a1a;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
    height: 1.25px;
}

.header .menu-icon .navicon:before {
    top: 5px;
}

.header .menu-icon .navicon:after {
    top: -5px;
}


body[below-top='true'] .header .menu-icon .navicon,
body[below-top='true'] .header .menu-icon .navicon:before,
body[below-top='true'] .header .menu-icon .navicon:after,
body.menu-open .header .menu-icon .navicon,
body.menu-open .header .menu-icon .navicon:before,
body.menu-open .header .menu-icon .navicon:after
 {
    background: #1a1a1a;
}




/* menu btn */

.header .menu-btn {
    display: none;
}

body.menu-open .header .menu {
    max-height: none;
}


#menu-bg {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: #D6634B;
    width: 100%;
    height: 0;
    z-index: -1;
    pointer-events: none;
    /*opacity: 0;*/
    /*transition: all .5s ease;*/
}
/*
.header .menu-btn:checked~.menu:before {
    opacity: 1;
}
*/


body.menu-open .header .menu-icon .navicon {
    background: transparent;
}

body.menu-open .header .menu-icon .navicon:before {
    transform: rotate(-45deg);
}

body.menu-open .header .menu-icon .navicon:after {
    transform: rotate(45deg);
}

body.menu-open .header .menu-icon:not(.steps) .navicon:before,
body.menu-open .header .menu-icon:not(.steps) .navicon:after {
    top: 0;
}


.header .menu li {
    text-align: left;
    font-size: 1.7rem;
    margin: 0 auto;
    max-width: 800px;
    cursor: pointer;
    /*font-weight: lighter;*/
    /*text-transform: uppercase;*/
/*    transition: all 1s ease;
    transform: translateY(-20px);*/
    /*opacity: 0;*/
}

.header .menu li:hover:after {
    right: -1rem;
}

.header .menu li:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(/img/menu-arrow.png);
    background-size: auto 40%;
    background-position: 100.5% 50%;
    z-index: -1;
    right: 0;
    top: 10%;
    background-repeat: no-repeat;
    transition: all .6s ease;
}


.header .menu li a {
    border: none;
    cursor: pointer;
    display: inline-block;
    background: #D6634B;

}


/*.header .menu li a:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    background: #1c1c1c!important;
    left: 0%;
    width: 0;
    bottom: 0;
    transition: all .5s ease;
}

.header .menu li.selected a:after {
    width: 20px;
    margin-left: -10px;
}
*/
/*.header .menu li:hover a:after {
    background: white;
    width: 100px;
    margin-left: -50px;
}
*/
/* 48em = 768px */

@media (min-width: 48em) {

    .header .menu {
        padding-left: 2rem;
        padding-right: 2rem;
     }

    .header .menu li {
        font-size: 7vh;
    }

    /*  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
*/
    .header--logo__mobile {
        display: none;
    }

    .header--logo__desktop {
        display: block;
    }
}



@font-face {
    font-family: 'PolySansReef Neutral';
    src: url('PolySansReef-Neutral.woff2') format('woff2'),
        url('PolySansReef-Neutral.woff') format('woff'),
        url('PolySansReef-Neutral.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Neutral';
    src: url('./type/PolySansReef-NeutralItalic.woff2') format('woff2'),
        url('../type/PolySansReef-NeutralItalic.woff') format('woff'),
        url('../type/PolySansReef-NeutralItalic.ttf') format('truetype');
    font-weig.ht: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Slim';
    src: url('./type/PolySansReef-SlimItalic.woff2') format('woff2'),
        url('../type/PolySansReef-SlimItalic.woff') format('woff'),
        url('../type/PolySansReef-SlimItalic.ttf') format('truetype');
    font-weig.ht: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Slim';
    src: url('./type/PolySansReef-Slim.woff2') format('woff2'),
        url('../type/PolySansReef-Slim.woff') format('woff'),
        url('../type/PolySansReef-Slim.ttf') format('truetype');
    font-weig.ht: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Neutral';
    src: url('./type/PolySansReef-NeutralItalic_1.woff2') format('woff2'),
        url('../type/PolySansReef-NeutralItalic_1.woff') format('woff'),
        url('../type/PolySansReef-NeutralItalic_1.ttf') format('truetype');
    font-weig.ht: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Median';
    src: url('./type/PolySansReef-Median.woff2') format('woff2'),
        url('../type/PolySansReef-Median.woff') format('woff'),
        url('../type/PolySansReef-Median.ttf') format('truetype');
    font-weig.ht: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Median';
    src: url('./type/PolySansReef-MedianItalic.woff2') format('woff2'),
        url('../type/PolySansReef-MedianItalic.woff') format('woff'),
        url('../type/PolySansReef-MedianItalic.ttf') format('truetype');
    font-weig.ht: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Median';
    src: url('./type/PolySansReef-Median_1.woff2') format('woff2'),
        url('../type/PolySansReef-Median_1.woff') format('woff'),
        url('../type/PolySansReef-Median_1.ttf') format('truetype');
    font-weig.ht: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Slim';
    src: url('../type/PolySansReef-Slim_1.woff2') format('woff2'),
        url('../type/PolySansReef-Slim_1.woff') format('woff'),
        url('../type/PolySansReef-Slim_1.ttf') format('truetype');
    font-weig.ht: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Neutral';
    src: url('./type/PolySansReef-Neutral_1.woff2') format('woff2'),
        url('../type/PolySansReef-Neutral_1.woff') format('woff'),
        url('../type/PolySansReef-Neutral_1.ttf') format('truetype');
    font-weig.ht: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Median';
    src: url('./type/PolySansReef-MedianItalic_1.woff2') format('woff2'),
        url('../type/PolySansReef-MedianItalic_1.woff') format('woff'),
        url('../type/PolySansReef-MedianItalic_1.ttf') format('truetype');
    font-weig.ht: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PolySansReef Slim';
    src: url('../type/PolySansReef-SlimItalic_1.woff2') format('woff2'),
        url('../type/PolySansReef-SlimItalic_1.woff') format('woff'),
        url('../type/PolySansReef-SlimItalic_1.ttf') format('truetype');
    font-weig.ht: 300;
    font-style: italic;
    font-display: swap;
}






/* IMAGE BUTTONS WITH HOVER */



.img-button {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 1rem 0;
    /*background: blue;*/
    overflow: hidden;
    font-size: 0;
    margin-bottom: 2rem;
}


.img-button .main-image {
    position: relative;
    width: 100%;
    height: 200px;
    top: 0;
    left: 0;
    object-position: middle;
    object-fit: cover;
    transform-origin: center;
    transition: all 2s ease;
    transform: scale(1);
    z-index: 1;
}


.img-button figcaption {
    position: relative;
    cursor: pointer;
    width: 100%;
    transform-origin: center;
    z-index: 2;
    padding: 1rem 0;
    font-size: initial;

    transition: all .5s ease;
    height: 100%;
    background: transparent;
    color: #1a1a1a;

}


.img-button__caption-icon {
    display: block;
    margin-bottom: 1rem;
    max-height: 55px;
    max-width: 140px;
    position: relative;
    object-position: left;
    object-fit: contain;
    filter: invert(1);
}

.img-button__icon {
    display: none;

    position: absolute;
    width: 50%;
    height: 30%;
    left: 25%;
    top: 35%;
    object-position: center;
    object-fit: contain;
    z-index: 1;
}

.img-button__link {
    font-weight: bold;
    text-transform: uppercase;
    border: none;
}




@media (min-width: 48em) {



    .img-button__caption-icon {
        max-width: 150px;
        max-height: none;
        filter: invert(0);
    }


    .img-button {
        margin-bottom: 0;
        padding: 0;
    }

    .img-button.aspect-square {
        padding-top: 100% !important;
    }

    .img-button.aspect-sixteen-nine {
        padding-top: 56.25% !important;
        /* 16:9 Aspect Ratio */
    }

    .img-button.aspect-four-three {
        padding-top: 75% !important;
        /* 4:3 Aspect Ratio */
    }

    .img-button.aspect-three-two {
        padding-top: 75% !important;
        /* 3:2 Aspect Ratio */
    }

    .img-button.aspect-eight-five {
        padding-top: 62.5% !important;
        /* 8:5 Aspect Ratio */
    }

    .img-button .main-image {
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        height: 100%;
    }

    .img-button figcaption {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        background: rgba(0, 0, 0, .5);
        padding: 2rem 1rem;
        color: white;
        /*transform: translateY(100%);*/
    }


    .img-button:hover figcaption {
        /*transform: translateY(0);*/
        opacity: 1;
    }


    .img-button__icon {
        display: none;
        transition: opacity .8s ease;
    }

    .img-button:hover .img-button__icon {
        opacity: 0;
    }


    .img-button.zoom-img:hover .main-image {
        transform: scale(1.1);
    }


    .img-button__link {
        position: absolute;
        bottom: 1.5rem;
        transition: transform .3s ease .5s;
        transform: translateY(100px);
    }

    .img-button:hover .img-button__link {
        transform: translateY(0);
    }

}


.col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-offset-0, .col-md-offset-1, .col-md-offset-10, .col-md-offset-11, .col-md-offset-12, .col-md-offset-2, .col-md-offset-3, .col-md-offset-4, .col-md-offset-5, .col-md-offset-6, .col-md-offset-7, .col-md-offset-8, .col-md-offset-9 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.row {
    position: relative;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}





/* VIDEO EMBED */

/* Embedded content with flexible width and proportional height. */

.revere-media {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 */
}

.revere-media iframe,
.revere-media video {
    position: absolute;
    width: 100%;
    height: 100%;
}




/* FORM */



input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
    font-size: 0.875em;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: #999;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999;
    font-size: 0.875em;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
    color: #999;
}

input::placeholder,
textarea::placeholder {
    color: #999;
    font-size: 0.875em;
}

input:focus::placeholder,
textarea::focus:placeholder {
    color: #999;
}

input::-ms-placeholder,
textarea::-ms-placeholder {
    color: #999;
    font-size: 0.875em;
}

input:focus::-ms-placeholder,
textarea:focus::-ms-placeholder {
    color: #999;
}

/* on hover placeholder */

input:hover::-webkit-input-placeholder,
textarea:hover::-webkit-input-placeholder {
    color: black;
    font-size: 0.875em;
}

input:hover:focus::-webkit-input-placeholder,
textarea:hover:focus::-webkit-input-placeholder {
    color: black;
}

input:hover::-moz-placeholder,
textarea:hover::-moz-placeholder {
    color: black;
    font-size: 0.875em;
}

input:hover:focus::-moz-placeholder,
textarea:hover:focus::-moz-placeholder {
    color: black;
}

input:hover::placeholder,
textarea:hover::placeholder {
    color: black;
    font-size: 0.875em;
}

input:hover:focus::placeholder,
textarea:hover:focus::placeholder {
    color: black;
}

input:hover::placeholder,
textarea:hover::placeholder {
    color: black;
    font-size: 0.875em;
}

input:hover:focus::-ms-placeholder,
textarea:hover::focus:-ms-placeholder {
    color: black;
}


form {
    position: relative;
    width: 100%;
    /*margin: 50px auto 100px auto;*/
}

form label {
    display: none;
}



input {
    font-size: 0.875em;
    width: 100%;
    height: 50px;
    padding: 0px 15px 0px 15px;

    background: transparent;
    outline: none;
    color: white;

    border: solid 1px white;
    border-bottom: none;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

input:hover {
    background: white;
    color: black;
}

textarea {
    width: 100%;
    max-width: 100%;
    height: 110px;
    max-height: 110px;
    padding: 15px;

    background: transparent;
    outline: none;

    color: white;
    font-size: 0.875em;

    border: solid 1px white;

    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
    background: white;
    color: black;
}

input[type='submit'] {
    /*width: 502px;*/

    padding: 0;
    margin: 0px 0px 0px 0px;

    font-size: 0.875em;
    color: white;

    outline: none;
    cursor: pointer;

    border: solid 1px white;
    border-top: none;
}

input[type='submit']:hover {
    color: black;
}






.slideshow {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 50vh;
    /*padding-top: 45%;*/
    z-index: 1;
    background: #1c1c1c;
}



.slideshow.slideshow--fullscreen .pagination {
    display: none;
}



.slideshow.slideshow--fullscreen {
/*    margin-top: -50px;*/
}

.slideshow .slideshow-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow .slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow .slide {
    display: none;
    overflow: hidden;
    position: absolute;
/*    top: -1px;*/
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;

}

.slideshow .slide.is-active {
    display: block;
}

.slideshow .slide.is-loaded {
    opacity: 1;
}
/*
.slideshow .slide.slideshow-slide-has-video {
    cursor: url(/img/play-icon.png), auto;
}

*/
.slideshow .slide .caption {
    padding: 2rem;
}

.slideshow .slide .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    z-index: 1;
    background-size: cover;
    image-rendering: optimizeQuality;

    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 2s;
}


.slideshow.slideshow--fullscreen .slide .image-container {
/*    transition: all 1s ease-in-out;
    animation: grow 8s ease-in infinite;
    animation-direction: alternate;*/
}

.slideshow .slide .image-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.slideshow .slide .image {
    width: 100%;
    width: 100%;
    object-fit: cover;
    height: 100%;
    transform-origin: center;
}

/*.slideshow.slideshow--fullscreen {
    transition: all 1s ease-in-out;
    animation: grow 8s ease-in infinite;
    animation-direction: alternate;
}*/


.slideshow .slide.is-active .image {
    transform: scale(1);
}



/* ARROW SCROLL PROMPT */
/*.slideshow .scrollPrompt {
    display: none;
    position: absolute;
    bottom: 1rem;
    font-size: 2rem;
    left: 50%;
    margin-left: -15px;
    z-index: 1;
      -moz-animation: bounce 3s infinite;
      -webkit-animation: bounce 3s infinite;
      animation: bounce 3s infinite;
}
.slideshow .scrollPrompt svg {
    fill: white;
    width: 30px;
    height: 30px;
}*/
.slideshow .scrollPrompt {
    display: none;
    position: absolute;
    bottom: 0;
    height: 3rem;
    text-align: center;
    left: 50%;
    width: 100px;
    margin-left: -50px;
    z-index: 1;
    transition: all .4s ease;
}


.slideshow .scrollPrompt::before {
    content: "Scroll";
    font-size: 1rem;
    font-family: 'PolySansReef Slim', sans-serif;
    font-weight: bold;
    color: inherit;
}
.slideshow .scrollPrompt::after {
    content: "";
    position: absolute;
    left: 25px;
    width: 50px;
    background-image: url(/img/HeadingImage_Arrow.svg);
    background-size: contain;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    top: -110px;
}

body[below-top='true'] .slideshow .scrollPrompt {
    transform: translateY(-50px);
    opacity: 0;
}

.scrollPrompt.white {
    filter: invert(1);
}





.slideshow .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: left;
    align-items: center;

    margin-left: 10vw;
}




@media only screen and (max-width: 64em) {
    .slideshow .slide-content {
        margin-left: 0;
    }

}

.slideshow .slide .title {
/*    display: none;*/
/*    font*/
    line-height: 5rem;
}




.slideshow.slideshow-visible-title .slide .title {
    margin: 0 auto 15px;
    max-width: 1000px;
    /*font: 600 10px/1.2 'PolySansReef Slim', sans-serif;*/
    /*letter-spacing: 0.35em;*/
    /*text-transform: uppercase;*/
    display: block;
-webkit-text-shadow: 2px 2px 47px 8px rgba(0,0,0,0.29);
-moz-text-shadow: 2px 2px 47px 8px rgba(0,0,0,0.29);
text-shadow: 2px 2px 47px 8px rgba(0,0,0,0.29);
}



.slideshow .slide .text {
    margin: 2rem 0;
}

.slideshow .slide .text > p {
/*    display: none;*/
    font-size: 1.5rem;
    line-height: 120%;
    margin: 0;
    max-width: 45ch;
-webkit-text-shadow: 2px 2px 47px 8px rgba(0,0,0,0.29);
-moz-text-shadow: 2px 2px 47px 8px rgba(0,0,0,0.29);
text-shadow: 2px 2px 47px 8px rgba(0,0,0,0.29);
}

.slideshow.slideshow-visible-text .slide .text {
    margin: 0 auto;
    max-width: 1000px;
    font-size: 18px;
    line-height: 120%;
    display: block;

}

.slideshow .pagination {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 100%;
    height: 12px;
    cursor: default;
    z-index: 2;
    text-align: center;
}

.slideshow .pagination .item {
    display: inline-block;
    padding: 15px 5px;
    position: relative;
    width: 46px;
    height: 32px;
    cursor: pointer;
    text-indent: -999em;
    z-index: 1;
}

.slideshow .pagination .item+.page {
    margin-left: -2px;
}

.slideshow .pagination .item::before {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 5px;
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
    width: 0;
    background: #fff;
    z-index: 2;
    transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
    background-color: #fff;
}

.slideshow .arrows .arrow {
    margin: -33px 0 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    cursor: pointer;
    z-index: 3;
}


.slideshow .arrows .prev .svg,
.slideshow .arrows .next .svg {
    -webkit-filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.75));
    -moz-filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(1px 1px 6px rgba(0, 0, 0, 0.75));
}


.slideshow .arrows .arrow:hover {
    /*cursor: none;*/
}

.slideshow .arrows .prev {
    left: 30px;
}

.slideshow .arrows .prev:hover .svg {
    left: -10px;
}

.slideshow .arrows .next {
    right: 30px;
}

.slideshow .arrows .next:hover .svg {
    left: 10px;
}

.slideshow .arrows .svg {
    position: relative;
    left: 0;
    width: 14px;
    height: 26px;
    fill: #fff;
    transition: left 0.2s ease;
}




@media only screen and (max-width: 48em) {




    .large {
/*        font-size: 1rem;*/
/*        line-height: 1.5rem;*/
    }


    .slideshow.slideshow-visible-title .slide .title {
/*        display: none;*/
    }

  .slideshow .arrows .prev {
      left: 0;
  }

  .slideshow .arrows .next {
      right: 0;
  }


}



/* REEF CASE STUDY */



#project-intro {
    padding: 2rem 0 0 0;
}


body[data-page='project'] .video_wrapper {
    height: auto;
    margin: 2rem 0 0 0;
}


/*.text-large, .text-large p, .text-large .p {
    font-size: 1.3rem!important;
    line-height: 1.7rem;
    letter-spacing: -0.03rem;
}*/

.text-normal, .text-normal p, .text-normal .p {
    font-size: 1rem;
}


@media (min-width: 48em) {

    #project-intro {
        padding: 4rem 0 0 0;
    }

/*    .text-large, .text-large p, .text-large .p {
        font-size: 1.9rem!important;
        line-height: 120%;
    }*/

    .slideshow.slideshow--fullscreen {
        height: 100vh;
        height: 100vh;
        padding-top: 0;
/*        margin-top: -120px; */
    }

    .slideshow.slideshow--fullscreen .scrollPrompt {
        display: block;
    }

    .slideshow.slideshow-visible-title .slide .title {
        /*font-size: 2rem;*/
    }


  body[data-page='project'][below-top='true'] .slideshow {
        /*opacity: 0;*/
    }

  body[data-page='project'] .slideshow {
    /*transition: opacity 2s ease;*/
  }





/*    body[data-page='project'] #project-intro {
        transform: translateY(0);
        transition: transform .5s ease;
    }

    body[data-page='project'][below-top='true'] #project-intro {
        transform: translateY(-50vh);
        margin-bottom: -50vh;
    }*/
}



.case-study__tag-header {
    /*text-transform: uppercase;*/
    margin: 25px 0 12px 0;
    font-weight: bold;
}

.case-study__tags > * {
    /*font-weight: bold;*/
    margin: 0;
    margin-top: -0.5rem;
    padding: 0;
    text-transform: capitalize;
    line-height: 1.2rem;
/*    letter-spacing: 0.02rem;*/
}


.case-study-text {
    padding: 0rem 0;
}

body[data-page='esg'] .case-study-text {
    padding: 2rem 0;
    /*max-width: 900px;*/
}


.case-study-text.table {
    border-top: 1px solid #1a1a1a;
    padding: 1rem 0;

}

.case-study-text  .text-large > *, .case-study-text  .text-large {
    margin-top: 1rem;
}

.case-study-text .col-md-12 .text-large, .case-study-text .col-md-12 .text-large > * {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.case-study-text img {
    margin-bottom: 3rem;
}


img.case-study__logo {
    height: 50px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
    object-position: left;
    max-width: 200px;
    margin-top: 1.5rem;
    filter: invert(1);
}



@media only screen and (min-width: 64em) {
    .sidebar-left {
        border-right: 1px solid #1c1c1c;
    }
}





.contact-label {
    font-size: .8rem;
    text-transform: uppercase;
    line-height: 3.2rem;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
    z-index: 2;

    margin-bottom: -2rem;
}

@media only screen and (min-width: 64em) {

.contact-label {
    margin-bottom: 0;
}

.contact-label:before {
    content: "";
    width: 250px;
    background: #D5D0CC;
    z-index: -1;
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
}

.contact-label:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(/img/Contact_Arrow.svg);
    background-size: contain;
    background-position: right;
    z-index: -2;
    right: 0;
/*    top: 10%;*/
    background-repeat: no-repeat;
    transition: all .6s ease;
}


}




#fullwidth-video {
    height: 100%;
    min-height: 100%;
    width: 100vw;
    min-width: 100%;
    position: relative;
    z-index: 2;
}

#fullwidth-video .fullwidth-video-bg {
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    bottom:
        0px;
    right: 0px;
    overflow: hidden;
    background-size: cover;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 0% 50%;
}

.sldtext {
    z-index: 2;
}

#fullwidth-video video {
    margin: auto;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%);
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/** For Edge**/
@supports (-ms-ime-align:auto) {
    #fullwidth-video video {
        object-fit: none;
        margin: none;
        position: inherit;
        z-index: 1;
        top: 50%;
        left: 0%;
        transform: translate(0%, -50%);
        height: auto;
        width: 100%;
    }
}


video {
    max-width: 100%;
}

/* VIDEO PLYR */




.video_wrapper .plyr--video {
    display: flex;
    justify-content: center;
    align-items: center;
    /* <---- NEW    */
    background: black;
    width: 100%;
    width: 100vw;
    height: 100%;
    max-height: 100vh;
}


body .plyr--video .plyr__controls {
    z-index: 2;
}

body .plyr--video .plyr__control,
body .plyr--video .plyr__control.plyr__tab-focus,
body .plyr--video .plyr__control:hover,
body .plyr--video .plyr__control[aria-expanded=true] {
    background: none !important;
    border-radius: 0;
    color:rgb(245, 244, 243)
}

body .plyr>button[data-plyr="play"] {
    color: #383D51 !important;
}

.plyr input[type=range] {
    color:rgb(245, 244, 243)!important;
}

.plyr__control.plyr__tab-focus {
    box-shadow: none;
}

body .plyr>button[data-plyr="play"]:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*transform: rotateZ(-6deg);*/
    background:rgb(245, 244, 243);
    z-index: -1;
}




#blogGalleryMainImage {
    margin-top: 15px;
    margin-bottom: 1rem;
    /*max-height: 50vh;*/
    object-fit: contain;
    object-position: bottom right;
}


.post-in-list {
    margin: 3rem 0;
}

.post-in-list:last-of-type {
    margin-bottom: -2rem;
}

.post-meta {
    font-size: .8rem;
    margin-bottom: 1rem;
    margin-top: .5rem;
    padding: 0 2rem 0 0;
    display: inline-block;
}


.post-readmore, .breadcrumb {
    font-size: .8rem;
}

.description, .description p {
    line-height: 1.4rem;
    padding-right: 2rem;
}


.thumb-wrapper {
    display: flex;
    overflow-x: hidden;
    flex-direction: row;
    margin-top: 1rem;
    /*padding-bottom: 1rem;*/
}

@media screen and (min-width: 1000px) {
    .thumb-wrapper {
        margin-top: 4rem;
    }
}

.thumb-wrapper--post--wrapper {
    width: 100%;
    max-width: 420px;
    float: right;
}

.thumb-wrapper--post {
    margin-top: 0;
    justify-content: flex-start;
    padding: 0 5px;
    width: 100%;
    overflow-x: scroll;
    scroll-behavior: smooth;
}

.thumb-wrapper--post::-webkit-scrollbar {
    height: 0;
}

.thumb-wrapper--post-arrow {
    background-image: url('/img/long-arrow.png');
    background-size: 300%;
    background-repeat: no-repeat;
    background-position: left;
    width: 45%;
    float: left;
    height: 40px;
    cursor: pointer;
}

.thumb-wrapper--post-arrow__right {
    transform:rotate(180deg);
    float: right;
}


.thumb-img {
    width: auto;
    /*max-width: 20%;*/
    min-width: none;
    /*display: inline-block;*/
    margin-right: 2rem;
    border-bottom: none;
    cursor: pointer;
}




.thumb-wrapper--post .thumb-img {
    margin-top: 5px;
    margin-right: 5px;
}



.thumb-wrapper--arrow {
    background-image: url('/img/long-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 45%;
    float: left;
    height: 25px;
    cursor: pointer;
}

.thumb-wrapper--arrow__right {
    transform:rotate(180deg);
    float: right;
}


.thumb-wrapper--related .thumb-img{
    margin:0 2rem 0 0;
    max-width: 100%;
    min-width: 0;
    width: 25%;
}

@media only screen and (max-width: 64em) {
    .thumb-wrapper--related .thumb-img{
        width: 50%!important;
    }

    .thumb-wrapper--related .thumb-img:first-of-type {
        margin-left:0;
    }

    .thumb-wrapper--related .thumb-img:last-of-type {
        margin-right:0;
    }


   .thumb-wrapper--related .p {
        font-size: 12px;
    }
}


@media only screen and (min-width: 64em) {
    .thumb-wrapper--related .thumb-img{
        margin:0 0 0 2rem;
    }


}


.thumb-wrapper--related--arrrow--wrapper {
    width: 100%;
    max-width: 420px;
    float: right;
    margin-bottom: 1rem;
}

.thumb-wrapper--related-arrow {
    background-image: url('/img/long-arrow.png');
    background-size: 300%;
    background-repeat: no-repeat;
    background-position: left;
    width: 25%;
    float: left;
    height: 25px;
    cursor: pointer;
}

.thumb-wrapper--related-arrow__right {
    transform:rotate(180deg);
    float: right;
}



.thumb-img img.selected {
    outline: 1px solid #1a1a1a;
    outline-offset: 3px;
}

.thumb-img img {
    margin-bottom: 5px;
    /*min-width: 200px;*/
}


.thumb-wrapper--post .thumb-img img {
    object-fit: contain;
    height: 60px;
    min-width: none!important;
    width: auto;
}


.thumb-img a, .thumb-img h3 {
    text-decoration: none;
    font-weight: normal;
    border-bottom: none;
    line-height: 125%;
}

.postTitle {
/*    margin-top:2rem;*/
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: inherit;
    /*font-weight: bold;*/
    text-decoration: none;
    /*text-transform: uppercase;*/
}

.postTitle a {
    text-decoration: none;
    border-bottom: none;
}


.icon-wrapper {
    padding: 1rem;
    display: block;
    position: relative;
}

.icon-wrapper:before {
    content: "";
    background-position: left;
    height: 2rem;
    background-size: 1rem;
    left: 0;
    top: 0;
    width: 1rem;
    position: absolute;
    background-repeat: no-repeat;
}


.icon-home:before {
    background-image:url('/img/home-icon.png');
}

.icon-left-right:before {
    background-image:url('/img/related-icon.png');
}


.signature-wrap img {
   width: 12rem; height: auto; mix-blend-mode: multiply; margin: 3rem 0;
}


.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}




@media only screen and (min-width: 64em) {
    .side-borders:nth-child(odd) {
        border-right: none;
    }
}

@media only screen and (min-width: 75em) {

    .side-borders:nth-child(odd), .side-borders:nth-child(even) {
        border-right: none;
    }

    .side-borders:nth-child(3n) {
      border-right: 1px solid #1c1c1c;
    }
}

.side-borders:last-child {
    border-right: 1px solid #1c1c1c!important;
}


.sticky-header {
    height: 3rem;
    border-top: 1px solid #1c1c1c;
    border-bottom: 1px solid #1c1c1c;
    position: -webkit-sticky;
    position: sticky;
    top: 79px;
    z-index: 9;
    background: #D5D0CC;
    text-align: center;
    line-height: 3rem;
    text-transform: uppercase;
    font-size: .9rem;
    letter-spacing: 0.1rem;
    font-family: 'PolysansReef Neutral';
}

@media (max-width: 48em) {
    .sticky-header {
        top: 78px;
    }
}

.sticky-header-arrow {
    font-size: 0;
    background-image: url(/img/About_Arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 120px;
    height: 100%;
    position: absolute;
    top:0;
    left: 2rem;
    text-decoration: none;
    border:none;
    outline: none;

    transition: all .5s ease;
    transform: scaleX(-1) translateX(0);
}

.sticky-header-arrow:hover {
    transform: scaleX(-1) translateX(1rem);
}

@media screen and (max-width: 48em) {
.sticky-header-arrow {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    width: 60px;
    height: 80%;
    top: 10%;
}
}

.sticky-header-arrow.next {
    right: 2rem;
    left: auto;
    transform: translateX(0);

}

.sticky-header-arrow.next:hover {
    transform: translateX(1rem);

}

.side-borders {
    border-left: 1px solid #1c1c1c;
    border-right: 1px solid #1c1c1c;
    margin-bottom: 5rem;
}

.bottom-border {
     border-bottom: 1px solid #1c1c1c;
}

.reef-project {
    position: relative;
}



.reef-project .h2 {
    line-height: 2rem;
    height: 4rem;
    padding-right: 4rem;
}

.reef-project .location {
    text-align: right;
    margin-bottom: .5rem;
/*    font-size: 1.2rem;*/
}

.reef-project img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}



.circle-view {
    position: absolute;
    top:0;
    right: 1rem;
    border:0;
    border-radius: 10rem;
    border: 1px solid #D6634B;
    transition: width .3s;
    transition-timing-function:  cubic-bezier(0.75, 0.14, 0.15, 0.98);
    font-size: 0;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0);
    height: 2rem;
    line-height: 2rem;
    width: 2rem;
    padding: 0 .8rem;
    background: none;
    letter-spacing: 0.06rem;
}




.circle-view:before {
    opacity: 0;
    transition: all .3s ease-out;
    content: "VIEW";
    width: 100%;
    top: 0;
    position: absolute;
    line-height: 2rem;
    left: 0;
    max-width: none;
    font-size: .7rem;
    margin: 0 auto;
    color: #D5D0CC;
    display: inline-block;
}

.reef-project:hover .circle-view {
    background: #D6634B;
    line-height: 1rem;
    width: 5rem;
    color: rgba(255, 255, 255, 1);
}

.reef-project:hover .circle-view:before {
    opacity: 1;
    transition-delay: .2s;
}


@media screen and (max-width: 48em) {
    .reef-project .circle-view {
        background: #D6634B;
        line-height: 1rem;
        width: 5rem;
        color: rgba(255, 255, 255, 1);
    }

    .reef-project .circle-view:before {
        opacity: 1;
        transition-delay: .2s;
    }
}




.button {
    display: flex;
    width: fit-content;

    background: #1C1C1C;
    font-size: .8rem;
    text-transform: uppercase;
    line-height: 2rem;
    padding: .3rem 2.4rem;
    letter-spacing: 1px;
    color:#D5D0CC;
    transition: all .3s ease-out;
    border:0;
    border-radius: 10rem;
    font-family: 'PolysansReef Neutral';

}

.centered {
    margin: 0 auto;
}

.button:hover {
    background: #D6634B;
    color:white;
}