#goliathus .images{
    width: 400px;
    height: 500px;
    position: absolute;
    perspective:1000px;
}

#goliathus .images .image{
    width: 33.33333333333333%;
    height: 100%;
    position: absolute;
    top:0;
    left:0;
    overflow:hidden;
    transition:300ms;
    box-sizing:border-box;
}

#goliathus .images .image:nth-child(1){
    transform-origin:100% 50%;
}

#goliathus .images .image:nth-child(2){
    left:33.33333333333333%;
}

#goliathus .images .image:nth-child(3){
    left:66.66666666666666%;
    transform-origin:0 50%;
}

#goliathus .images .image img{
    position: absolute;
    max-width:400px;
}

#goliathus .images .image:nth-child(2) img{
    left:calc(-100%);
}

#goliathus .images .image:nth-child(3) img{
    left:calc(-200%);
}

#goliathus .images .image:nth-child(1){
    animation: fly_left 1s infinite;
}

#goliathus .images .image:nth-child(3){
    animation: fly_right 1s infinite;
}

#goliathus .images:hover .image:nth-child(1){
    transform:rotateY(45deg);
    box-shadow:-10px 0 30px rgba(0,0,0,0.1);
}

#goliathus .images:hover .image:nth-child(3){
    transform:rotateY(-45deg);
    box-shadow:10px 0 30px rgba(0,0,0,0.1);
}

@keyframes fly_left {
    0% {
        transform:rotateY(0deg);
        box-shadow:-10px 0 30px rgba(0,0,0,0);
    }
    50% {
        transform:rotateY(45deg);
        box-shadow:-10px 0 30px rgba(0,0,0,0);
    }
    100% {
        transform:rotateY(0deg);
        box-shadow:-10px 0 30px rgba(0,0,0,0);
    }
}

@keyframes fly_right {
    0% {
        transform:rotateY(0deg);
        box-shadow:10px 0 30px rgba(0,0,0,0);
    }
    50% {
        transform:rotateY(-45deg);
        box-shadow:10px 0 30px rgba(0,0,0,0);
    }
    100% {
        transform:rotateY(0deg);
        box-shadow:10px 0 30px rgba(0,0,0,0);
    }
}

#goliathus a {
    position: absolute;
    color: transparent;
    transition: all .3s ease;
}

#goliathus a:hover {
    color: white;
}

#goliathus a span {
    display: none;
}

#goliathus a:hover span {
    display: block;
    position: absolute;
    width: 130px;
    text-align: center;
    padding: 10px;
    color: white;
    background-color: #000000;
    mix-blend-mode: overlay;
}

#goliathus a:after{
    content: "";
    height: 20px;
    width: 20px;
    border-radius: 25px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 4px black;
    position: absolute;
    transition: all .3s ease;
}

#goliathus a.left:after {
    margin-left: 170px;
}

#goliathus a.right:after {
    margin-left: -60px;
}

#goliathus a:hover:after {
    transform: scale(1.4);
    border: 3px solid rgba(255, 255, 255, 0.7);
}

#goliathus a[href$='publications'] {
    margin-top: 210px;
    margin-left: -8px;
}

#goliathus a[href$='blog'] {
    margin-top: 210px;
    margin-left: 300px;
}

#goliathus a[href$='photographs'] {
    margin-top: 320px;
    margin-left: 305px;
}

#goliathus a[href$='about'] {
    margin-top: 380px;
    margin-left: 263px;
}

#goliathus a[href$='sentinels'] {
    margin-top: 320px;
    margin-left: -15px;
}



.heart::after {
    content: "";
    /*kosong, for it to exist*/
    background-color: red;
    border-radius: 50%;
    /*perfect round curve*/
    height: 60px;
    /*dimension of the shape*/
    position: absolute;
    width: 60px;
    /*dimension of the shape*/
    transition: all 1s ease;
    /*length of animation*/
}

@keyframes rotating {
    0% {
        transform: rotate(-20deg);
    }
    50% {
        transform: rotate(-30deg);
    }
    100% {
        transform: rotate(-20deg);
    }
}

.maxh30 {
    max-height: 30rem;
}

.maxh15 {
    max-height: 15rem;
}

.visibility-hidden {
    visibility: hidden;
}

.raleway {
    font-family: 'Raleway', sans-serif;
}

.playfair-display {
    font-family: 'Playfair Display', serif;
}

.mh-320 {
    max-height: 320px;
}

#gallery .caption {
    display: none;
}

.menu__list {
    position: relative;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.menu__link {
    font-size: 1.05em;
    padding: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu__link:hover,
.menu__link:focus {
    outline: none;
}

/* Valentine */
.menu--valentine .menu__item {
    position: relative;
}

.menu--valentine .menu__link {
    position: relative;
    display: block;
    min-width: 100px;
    color: #b5b5b5;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.menu--valentine .menu__link:hover,
.menu--valentine .menu__link:focus {
    color: #929292;
}

.menu--valentine .menu__item--current .menu__link {
    /* color: #d94f5c; */
    color: black;
}

.menu--valentine .menu__item::before,
.menu--valentine .menu__item::after,
.menu--valentine .menu__link::before,
.menu--valentine .menu__link::after {
    content: '';
    position: absolute;
    /* background: #d94f5c; */
    background: black;
    -webkit-transform-origin: 350% 350%;
    transform-origin: 350% 350%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.menu--valentine .menu__item::before,
.menu--valentine .menu__item::after {
    top: 0;
    width: 2px;
    height: 100%;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
}

/* left line */
.menu--valentine .menu__item::before {
    left: 0;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

/* right line */
.menu--valentine .menu__item::after {
    right: 0;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.menu--valentine .menu__link::before,
.menu--valentine .menu__link::after {
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

/* top line */
.menu--valentine .menu__link::before {
    top: 0;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

/* bottom line */
.menu--valentine .menu__link::after {
    bottom: 0;
}

.menu--valentine .menu__item--current::before,
.menu--valentine .menu__item--current::after,
.menu--valentine .menu__item--current .menu__link::before,
.menu--valentine .menu__item--current .menu__link::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}














































.canvas {
    margin-top: -90px;
    margin-left: -90px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 300px;
    position: relative;
}
.canvas .total-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    margin-top: -45px;
    font-size: 16px;
}
.canvas .total-counter.fader {
    animation: fade-in 1400ms forwards;
}
.canvas .clap-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 60px;
    height: 60px;
    /*border: 1px solid rgba(0, 0, 0, 0.15);*/
    border-radius: 50%;
    z-index: 2;
    background: #fff;
    cursor: pointer;
}
.canvas .clap-container .clap-icon {
    font-size: 25px;
    color: #03a87c;
    width: 30px;
    height: 30px;
}
/*.canvas .clap-container:hover {
    border: 1px solid #03a87c;
}*/
.canvas .clap-container.scale {
    animation: scaleAndBack 700ms forwards;
}
.canvas .click-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 132px;
    background-color: #03a87c;
    border-radius: 50%;
    z-index: 1;
}
.canvas .click-counter .counter {
    font-family: sans-serif;
    font-size: 14px;
    color: #fff;
}
.canvas .click-counter.first-active {
    animation: first-bump-in 1s forwards;
}
.canvas .click-counter.active {
    animation: bump-in 1s forwards;
}
.canvas .clap-container-sonar {
    width: 60px;
    height: 60px;
    background: #03a87c;
    border-radius: 50%;
    position: absolute;
    opacity: 0;
    z-index: 0;
}
.canvas .hover-active {
    animation: sonar-wave 2s forwards;
}
.canvas .particles-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    position: absolute;
    /* border: 1px solid gray; */
    /* z-index: 3; */
}
.canvas .particles-container .triangle {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 10px solid red;
    border-bottom: 4px solid transparent;
    position: absolute;
}
.canvas .particles-container .triangle .square {
    width: 5px;
    height: 5px;
    background: #03a87c;
    position: absolute;
    left: -15px;
    top: 0;
}
.canvas .particles-container .pop-top {
    animation: pop-top 1s forwards;
}
.canvas .particles-container .pop-top-left {
    animation: pop-top-left 1s forwards;
}
.canvas .particles-container .pop-top-right {
    animation: pop-top-right 1s forwards;
}
.canvas .particles-container .pop-bottom-right {
    animation: pop-bottom-right 1s forwards;
}
.canvas .particles-container .pop-bottom-left {
    animation: pop-bottom-left 1s forwards;
}

@keyframes sonar-wave {
    0% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes pop-top {
    0% {
        transform: translate(0, 0) rotate(0);
        opacity: 0.4;
    }
    100% {
        transform: translate(0, -100px) rotate(0);
        opacity: 0;
    }
}
@keyframes pop-top-left {
    0% {
        transform: translate(0, 0) rotate(-55deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(-100px, -50px) rotate(-55deg);
        opacity: 0;
    }
}
@keyframes pop-top-right {
    0% {
        transform: translate(0, 0) rotate(55deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(100px, -50px) rotate(55deg);
        opacity: 0;
    }
}
@keyframes pop-bottom-right {
    0% {
        transform: translate(0, 0) rotate(135deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(70px, 80px) rotate(135deg);
        opacity: 0;
    }
}
@keyframes pop-bottom-left {
    0% {
        transform: translate(0, 0) rotate(-135deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(-70px, 80px) rotate(-135deg);
        opacity: 0;
    }
}
@keyframes first-bump-in {
    0% {
        transform: translateY(-65px);
        opacity: 1;
    }
    50% {
        transform: translateY(-80px);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}
@keyframes bump-in {
    0% {
        transform: translateY(-80px) scale(0.9);
        opacity: 1;
    }
    50% {
        transform: translateY(-80px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}
@keyframes scaleAndBack {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}





#mobileMenuContainer {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 70px;
    width: 70px;
    background-color: black;
    border-top-left-radius: 70px;
}

#nav-container {
  margin-left: auto;
  position: relative;
  z-index: 1;
}

#nav-toggle {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
    position: fixed;
    bottom: 10px;
    right: 10px;
}

#nav-toggle span {
  background-color: white;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  display: block;
  position: absolute;
  left: 0;
  content: '';
  transition: .3s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 4px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#nav-toggle span:nth-child(2) {
  top: 14px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#nav-toggle span:nth-child(3) {
  top: 24px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

#nav-toggle.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 3px;
  left: 4px;
}

#nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 25px;
  left: 4px;
}

#nav-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transition: .3s;
  -webkit-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
}

#nav-overlay.open {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

#nav-fullscreen {
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  transition: ease-in-out 0.25s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: sans-serif;
  font-size: 5vh;
  background: black;
}
#nav-fullscreen ul {
  list-style: none;
}
#nav-fullscreen a {
  color: white;
  text-decoration: none;
}

#nav-fullscreen.open {
  visibility: visible;
  opacity: 1;
  transition: ease-in-out 0.5s;
  transition-delay: 0.25s;
}







/**
Sentinelles
 */

#sentinelles_container img.sentinelle_element {
    height: 100px;
    width: 100px;
    border-radius: 100px;
    filter: grayscale(100%);
    transition: all .4s ease;
}

#sentinelles_container img:hover,#sentinelles_container img.active {
    filter: grayscale(0%);
    cursor: pointer;
}

#goliath_path {
    position: absolute;
}

#goliath_path img {
    transform: rotate(180deg);
    padding-right: 50%;
    height: 100px;
    margin-top: 0;
    transition: margin-top .3s ease-out;
}
