/* 
font-family: 'Abhaya Libre', serif;
font-family: 'Open Sans', sans-serif;
*/

/* general styles */
html, body, h1, h2, h3, h4, p, form, ul, li, ol{
  margin: 0px;
  padding: 0px;
}
html, body{
  width: 100%;
  height: 100%;
}
body{
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6em;
  color: rgb(52,47,46);
  background-color: #FFF;
}

a{
  outline: 0;
  color: inherit;
  text-decoration: none;
}

img{
  border: 0;
}

textarea{ 
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  resize: none;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
sub { 
  top: 0.4em; 
}

.clear{
  display: block;
  clear: both;
  min-height: 0px !important;
}


div.container{
  width: 100%;
}
div.centerContent{
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  position: relative;
}

.text-center{
  text-align: center;
}

.textTable{
  display: table;
  height: 100%;
  width: 100%;
  text-align: center;
}
.textCell{
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.text-center{
  text-align: center;
}
.uppercase{
  text-transform: uppercase;
}

.mainButton,
.fakeButton{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 25px;
  padding-right: 30px;
  height: 50px;
  line-height: 48px;
  border-radius: 25px;
  box-sizing: border-box;
  font-size: 0.7em;
  font-weight: 600;
  background-color: rgb(235,230,225);
  position: relative;
  cursor: pointer;
  border: solid 1px rgb(235,230,225);
  -webkit-appearance: none;
  white-space: nowrap;
}
.mainButton.blank,
.fakeButton.blank{
  padding-left: 0px;
  padding-right: 0px;
  background: none;
  border: none;
  line-height: 50px;
}
.mainButton span.fa-solid,
.fakeButton span.fa-solid{
  display: inline-block;
  padding-right: 20px;
  transition: all 0.5s;
}
.mainButton.next{
  padding-left: 20px;
}
.mainButton.prev{
  padding-right: 20px;
}

.mainButton.next span.fa-solid,
.mainButton.prev span.fa-solid{
  font-size: 1.6em;
  padding-right: 0px;
}
.mainButton.prev span.fa-solid{
  padding-right: 10px;
  padding-left: 10px;
}
.mainButton.next span.fa-solid{
  padding-left: 10px;
  padding-right: 10px;
}
.mainButton.outline,
.fakeButton.outline{
  background: none;
  border: solid 1px rgb(76,72,71);
  color: rgb(76,72,71);
}
.mainButton.outline-light,
.fakeButton.outline-light{
  background: none;
  border: solid 1px rgb(237,234,229);
  color: rgb(237,234,229);
}

.mainButton:hover{
  background: none;
  border: solid 1px rgb(76,72,71);
}
.mainButton.blank{
  background: none;
  border: none;
}
.mainButton.outline:hover{
  background-color: rgb(235,230,225);
}
.mainButton:hover span.fa-solid{
  padding-right: 10px;
  padding-left: 10px;
}
.mainButton.prev:hover span.fa-solid{
  padding-right: 20px;
  padding-left: 0px;
}
.mainButton.next:hover span.fa-solid{
  padding-left: 20px;
  padding-right: 0px;
}

.itemNav{
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}
.itemNav .mainButton{
  min-width: 150px;
  box-sizing: border-box;
}
.itemNav .backDot{
  font-size: 0.7em;
  height: 50px;
  line-height: 50px;
}



.flex{
  display: flex;
  align-items: flex-start;
}
.justify-space-between{
  justify-content: space-between;
}
.justify-start{
  justify-content: flex-start;
}
.justify-center{
  justify-content: center;
}
.justify-end{
  justify-content: flex-end;
}
.align-stretch{
  align-items: stretch;
}
.align-center {
  align-items: center;
}
.align-content-between{
  align-content: space-between;
}
.align-content-end{
  align-content: flex-end;
}
.flex-wrap{
  flex-wrap: wrap;
}

img.imageFit,
img.imageContain{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
img.imageContain{
    object-fit: contain;
}

h1, .h1{
  font-family: 'Abhaya Libre', serif;
  font-weight: 400;
  font-size: 2.1em;
  line-height: 1.1em;
}
h2, .h2{
  font-family: 'Abhaya Libre', serif;
  font-weight: 400;
  font-size: 1.2em;
  text-transform: none;
}
h3, .h3{
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
h4, .h4{
  font-family: 'Abhaya Libre', serif;
  font-weight: 400;
  font-size: 1em;
}
.p{
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 1em;
}

/*      HEADER & MENU      */
header{
  left: 0px;
  right: 0px;
  box-sizing: border-box;
  position: absolute;
  font-size: 0.8em;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  background-color: #FFF;
  font-weight: 600;
  padding-top: 20px;
}
header.fixed{
  position: fixed;
  top: 0px;
  padding-top: 0px;
  padding-bottom: 20px;
  z-index: 3;
}
header a.logoHolder{
  width: 250px;
  position: absolute;
  left: 0px;
  top: 10px;
  z-index: 10;
}
header a.logoHolder img{
  display: block;
  width: 100%;
}
header div.menuInfo{
  position: absolute;
  right: 0px;
  top: 11px;
  z-index: 10;
  font-size: 1.2em;
}
header div.menuInfo a{
  padding-left: 15px;
}

div.menuHolder{
  margin-right: 90px;
}
div.menuHolder nav{
  position: relative;
}
div.menuHolder nav>ul{
  margin-top: 15px;
  height: 44px;
  text-align: right;
}
div.menuHolder nav ul li{
  position: relative;
  display: inline-block;
  list-style-type: none;
  text-transform: uppercase;
  height: 44px;
  line-height: 44px;
  padding-left: 40px;
  cursor: pointer;
  margin: 0px;
}
div.menuHolder nav ul li a{
  display: block;
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  color: inherit;
}
div.menuHolder nav ul li:hover ul{
  display: block;
}
div.menuHolder nav ul li ul{
  position: absolute;
  left: -8px;
  display: none;
  background-color: #FFF;
  padding-bottom: 10px;
}
div.menuHolder nav ul li ul li{
  position: relative;
  display: block;
  float: none;
  list-style-type: none;
  font-size: 0.85em;
  height: 36px;
  line-height: 36px;
  padding-left: 28px;
  padding-right: 28px;
  margin: 0px;
  background-color: #FFF;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 1px;
}
div.menuHolder nav ul li ul li:hover{
  background-color: #f2f2f2;
}
div.menuButton{
  display: none;
}

div.content{
    padding-top: 150px;

}

div.pageHeader{
    background-color: rgb(249,249,249);
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
}
div.pageHeader div.centerContent:after{
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: rgb(255,255,255);
  position: absolute;
  right: -140px;
  bottom: 35px;
}
div.spacer{
    width: 1px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(52,47,46);
    height: 70px;
    position: relative;
    margin-bottom: 25px;
}
div.pageHeader div.spacer{
  margin-top: 15px;
}
div.spacer:after{
    content: "";
    height: 9px;
    width: 9px;
    border-radius: 4.5px;
    position: absolute;
    left: -4px;
    bottom: 0px;
    background-color: rgb(52,47,46);
}

div.pageText{
  width: 50%;
  z-index: 2;
}
div.pageText h1{
  margin-bottom: 35px;
}
div.pageText h2{
  margin-bottom: 10px;
}
div.sideImage,
div.simpleImage{
  width: 28%;
  position: relative;
  z-index: 1;
}
div.sideImage:before{
  content: "";
  background-color: #FFF;
  width: 100%;
  height: 110%;
  position: absolute;
  left: -160px;
  top: -100px;
  z-index: 1;
  border-bottom-left-radius: 150px;
}
div.sideImage.left:before{
  left: auto;
  right: -160px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 150px;
}
div.sideImage img{
  display: block;
  width: 100%;
  margin-top: -140px;
  position: relative;
  z-index: 2;
}
div.case div.sideImage img {
  margin-top: -100px;
}

div.animate{
  width: 150px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
}
div.animate img{
  display: none;
  width: 100%;
}
div.animate img:first-child {
  display: block;
}

article ul li{
  margin-left: 20px;
}


/*      HOME      */
body.home,
body.home div.container{
  height: 100%;
}
div.pageVisual{
  background-image: url("../uploads/image/60_0_4x.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100%;
  position: relative;
}

div.pageVisual div.pageAnimation img{
  display: block;
  width: 120%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  div.pageVisual div.pageAnimation img{
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 768px) {
  div.pageVisual div.pageAnimation img{
    display: none;
  }
  /*div.pageVisual{*/
    /*padding-top: 38%;*/
  /*}*/
  div.pageVisual{
    background-size: 120% auto;
    animation-name: ZOOM-BG;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
}

@keyframes ZOOM-BG {
  100% {
    background-size: 100% auto;
  }
}

div.pageVisual div.contentHolder{
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
div.pageVisual div.typeWriter{
  position: absolute;
  top: 100px;
  font-family: 'Abhaya Libre', serif;
  font-size: 1.5em;
  z-index: 2;
}
div.pageVisual div.typeDot{
  position: absolute;
  left: 69px;
  top: 70px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #FFF;
  z-index: 1;
  display: none;
}
div.pageVisual div.typeDot.dot2{
  left: 210px;
}
div.pageVisual div.typeDot.dot3{
  left: 55px;
}

div.pageVisual img.juliIcon{
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: block;
  width: 80px;
}

div.content.home div.pageHeader{
  padding-bottom: 140px;
}
div.content.home div.pageHeader div.centerContent:after{
  background-color: rgb(255,255,255);
  right: auto;
  left: -140px;
}
div.content.home div.sideImage .mainButton{
  display: block;
  position: absolute;
  left: -160px;
  bottom: -100px;
}

div.caseHolder{
  padding-top: 80px;
  padding-bottom: 100px;
}
div.caseHolder h2.h3{
  margin-bottom: 60px;
}
div.caseHolder div.caseOverview{
  margin: 0px;
  column-count: 3;
  column-gap: 10%;
}
div.caseHolder a.caseItem:nth-child(3) span.imageHolder {
  padding-top: 155%;
}
div.caseHolder a.caseItem{
  display: block;
  width: 100%;
  margin-bottom: 60px;
  break-inside: avoid;
}
div.caseHolder a.caseItem:nth-child(3){
  break-after: always;
  -moz-column-break-after: always;
  -webkit-column-break-after: always;
}
div.content.home div.caseHolder div.spacer{
  height: 120px;
  margin-top: -80px;
}

div.instagramBar{
  background-color: rgb(52,47,46);
  padding-top: 70px;
  padding-bottom: 70px;
  color: rgb(237,234,229);
  text-align: center;
}
div.instagramHolder{
  width: 58%;
}
div.instagramHolder a{
  display: block;
  float: left;
  margin-right: 2%;
  width: 23.5%;
  height: 0px;
  padding-top: 29.38%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
div.instagramHolder a:last-of-type{
  margin: 0px;
}

div.instagramBar div.instagramDivider{
  height: 1px;
  width: 10%;
  position: absolute;
  background-color: rgb(237,234,229);
  left: 63%;
  top: 50%;
}
div.instagramBar div.instagramDivider:after{
  content: "";
  height: 9px;
  width: 9px;
  border-radius: 4.5px;
  position: absolute;
  right: 0px;
  top: -4px;
  background-color: rgb(237,234,229);
}
div.instagramBar a.instagramText{
  display: block;
  height: 100%;
  position: absolute;
  right: 5%;
  top: 0px;
  bottom: 0px;
  width: 17%;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 0.7em;
  line-height: 2em;
  text-transform: uppercase;
}
div.instagramBar a.instagramText span.textCell{
  text-align: left;
}
div.storyHolder {
  margin-top: 80px;
  margin-bottom: 60px;
}
div.storyHolder h2,
div.storyText h2{
  margin-bottom: 20px;
}
div.storyHolder h2{
  text-align: center;
  margin-bottom: 80px;
}

div.storyHolder div.storyOverview{
  position: relative;
}
div.storyHolder div.storyOverview:before{
  content: "";
  width: 160px;
  height: 160px;
  border-radius: 80px;
  background-color: rgb(249,249,249);
  position: absolute;
  right: -80px;
  top: -80px;
}



/*    OVER JULI   */
div.overons div.pageHeader{
  padding-bottom: 120px;
}
div.overons div.pageHeader div.sideImage img:first-child{
  z-index: 2;
}
div.overons div.pageHeader div.sideImage img:last-child{
  z-index: 1;
  position: absolute;
  left: -100px;
  top: 180px;
  width: 70%;
}
div.overons div.pageHeader h1{
  margin-bottom: 10px;
}
div.overons div.textRow h2{
  margin-bottom: 0px;
}
div.overons h3,
div.overons .h3{
  font-weight: 400;
}

div.textRow{
  padding-top: 80px;
  padding-bottom: 80px;
}
div.textRow.employee{
  background-color: rgb(235,230,225);
  padding-top: 60px;
  padding-bottom: 60px;
}
div.textRow.employee.grey{
  background-color: rgb(249,249,249);
}
div.textRow:not(.employee) div.simpleImage{
  width: 35%;
  position: relative;
}
div.textRow div.simpleImage{
  margin-left: -100px;
}
div.textRow div.simpleImage.small{
  position: absolute;
  bottom: -60px;
  right: 0px;
}
div.textRow div.simpleImage.small img{
  position: absolute;
  width: 70%;
  right: -50%;
  bottom: 0px;
}
div.simpleImage img{
  display: block;
  width: 100%;
}
div.textRow div.pageText{
  margin-left: 100px;
}
div.textRow div.pageText .mainButton{
  margin-top: 40px;
}
div.textRow.employee div.pageText {
  width: 60%;
}
div.textRow.employee div.pageText h3,
div.textRow div.pageText .h3{
  margin-bottom: 30px;
}
div.textRow.employee div.pageText div.twocols{
  column-count: 2;
  column-gap: 40px;
}
div.textRow.employee div.pageText p.hashtags{
  color: rgb(158,114,89);
  font-size: 0.95em;
  margin-top: 40px;
}


div.videoHolder{
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  border-radius: 36px;
  border: solid #000 1px;
  overflow: hidden;
}
div.videoBorder{
  position: relative;
  border-radius: 33px;
  border: solid #FFF 8px;
  overflow: hidden;
  box-sizing: border-box;
}
div.videoWrapper{
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 56.25%;
  z-index: 2;
}
div.videoWrapper img,
div.videoWrapper video,
div.videoWrapper iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  border-radius: 30px;
}
div.videoWrapper img{
  z-index: 10;
  cursor: pointer;
}
div.videoWrapper svg{
  position: absolute;
  width: 80px;
  height: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 11;
  pointer-events: none;
}

div.textRow:last-child{
  /*padding-top: 0px;*/
}
div.textRow:last-child div.pageText {
  width: 40%;
}
div.textRow:last-child div.pageText:before{
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background-color: rgb(249,249,249);
  position: absolute;
  left: -80px;
  top: 0px;
}


/*    STORIES   */
div.stories div.pageHeader{
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 80px;
}
div.storyOverview{
  column-gap: 5%;
}
a.storyItem{
  width: 30%;
  margin-bottom: 60px;
}
a.storyItem span.imageHolder{
  display: block;
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 122.5%;
  margin-bottom: 20px;
}
a.storyItem span.title{
  font-family: 'Abhaya Libre', serif;
  display: block;
  margin-top: 5px;
  font-size: 1.3em;
  margin-bottom: 15px;
}
a.storyItem span.intro{
  display: block;
  margin-bottom: 15px;
  min-height: 100px;
}

div.story div.pageHeader{
  padding-top: 60px;
  padding-bottom: 200px;
  margin-bottom: 0px;
}
img.storyImage{
  width: 100%;
  display: block;
  margin-top: -150px;
  margin-bottom: 60px;
}
div.storyText{
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.quote{
  font-family: 'Abhaya Libre', serif;
  font-weight: 400;
  font-size: 1.5em;
  line-height: 1.48em;
  text-align: center;
  color: rgb(158,114,89);
  margin-top: 70px;
  margin-bottom: 70px;
}
div.storyImages img{
  width: 48%;
}

div.content.landing div.storyImages{
  margin-bottom: 80px;
}


/*    CASES   */
div.cases div.pageHeader{
  padding-top: 60px;
  padding-bottom: 60px;
  margin-bottom: 80px;
}
div.caseOverview{
  margin-bottom: 50px;
  column-gap: 10.1%;
}
a.caseItem{
  width: 26.6%;
  margin-bottom: 30px;
}
a.caseItem span.imageHolder{
  display: block;
  position: relative;
  width: 100%;
  height: 0px;
  padding-top: 82.35%;
}
a.caseItem span.imageHolder span.mouseOver{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(52,47,46,0.85);
  display: none;
}
a.caseItem:hover span.imageHolder span.mouseOver{
  display: flex;
}

a.caseItem span.title{
    font-family: 'Abhaya Libre', serif;
    display: block;
    margin-top: 5px;
    font-size: 1.1em;
}

div.case div.pageHeader{
  padding-top: 60px;
  padding-bottom: 100px;
  margin-bottom: 80px;
}
div.case img{
  width: 100%;
  height: auto;
  display: block;
}
div.case div.bigLeft{
  width: 70%;
  margin-left: -5%;
}
div.caseExtraText{
  padding-left: 20%;
  padding-right: 5%;
  width: 100%;
  box-sizing: border-box;
  margin-top: 70px;
}
div.bigPortrait{
  width: 71.5%;
  margin-top: 70px;
}

div.case div.smallRight{
  width: 28%;
  box-sizing: border-box;
  padding-right: 5%;
}
div.case div.smallRight.photography{
  margin-bottom: 150px;
}
div.case div.smallRight img{
  margin-top: 70px;
}
div.case div.bigCenter,
div.case div.extraImages div.flex.justify-center,
div.case .quote{
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
}
div.case div.extraImages div.flex.justify-start{
  width: 100%;
  margin-top: 70px;
  column-gap: 60px;
}
div.case div.extraImages div.flex.justify-start img{
  width: 28%;
}

div.case div.videoRow{
  margin-top: 70px;
  padding-bottom: 0px;
}

/*      WERKWIJZE   */
div.werkwijzeHolder{
  background-color: rgb(232,227,221);
  padding-top: 100px;
  padding-bottom: 40px;
}
div.werkwijzeText{
  background-color: #FFF;
  border-bottom-left-radius: 150px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-bottom: 100px;
  margin-bottom: 20px;
}
div.werkwijzeText div.heading{
  background-color: rgb(52,47,46);
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1em;
  font-size: 0.85em;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  box-sizing: border-box;
}
div.werkwijzeText div.block{
  margin-top: 80px;
  position: relative;
}
div.werkwijzeText div.block:after{
  content: "";
  position: absolute;
  right: 0px;
  bottom: -40px;
  height: 1px;
  width: 110px;
  background-color: rgb(52,47,46);
}
div.werkwijzeText div.block:last-child:after{
  display: none;
}

div.werkwijzeText div.block h2,
div.werkwijzeText div.block div{
  padding-left: 110px;
  padding-right: 110px;
}
div.werkwijzeText div.block h2{
  font-size: 1.8em;
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
div.werkwijzeText h2:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  content: "\f111";
  position: absolute;
  left: 80px;
  top: 0px;
}

div.werkwijzeText h2 span{
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6em;
  display: inline-block;
  padding-right: 10px;
}
div.werkwijzeText div.block div.extraTextHolder{
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgb(249,249,249);
  margin-top: 20px;
  padding-left: 30px;
}
div.werkwijzeText div.block:nth-child(odd) div.extraTextHolder {
  margin-left: 80px;
  padding-left: 30px;
}
div.werkwijzeText div.block:nth-child(even) div.extraTextHolder {
  margin-right: 80px;
  padding-left: 110px;
}

div.werkwijzeFooter{
  padding-bottom: 50px;
}

  /*      CONTACT    */
div.content.contact div.pageHeader{
  background-color: rgb(232,227,221);
  padding-bottom: 150px;
  padding-top: 100px;
  margin-bottom: 0px;
}
div.content.contact div.pageHeader div.centerContent:after{
  background-color: rgb(245,243,241);
  right: auto;
  left: -140px;
}
div.contactInfo{
  text-transform: uppercase;
  font-size: 0.75em;
  line-height: 1em;
  letter-spacing: 1px;
  margin-top: 40px;
}
div.contactInfo p{
  margin-bottom: 15px;
}
div.contactInfo p a span{
  display: inline-block;
  border-bottom: solid 1px rgb(52,47,46);
  padding-bottom: 2px;
}
div.contactInfo em{
  padding-right: 20px;
  font-size: 1.2em;
}
div.contactInfo span span{
  text-transform: none;
}

div.contactImage .imageHolder{
  width: 30%;
  margin-left: 15%;
  margin-top: -120px;
}
div.contactImage .imageHolder img{
  display: block;
  width: 100%;
}

/*      FOOTER      */
footer{
  background-color: rgb(241,238,234);
  padding-top: 80px;
  border: 20px solid #FFF;
}
div.footerCol{
  width: 30%;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
div.footerCol:nth-child(1) p{
  font-family: 'Abhaya Libre', serif;
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 25px;
}

div.footerCol:nth-child(2){
  width: 17%;
}
div.footerCol img{
  display: block;
  width: 100%;
  margin-top: 10px;
}
div.footerCol:nth-child(3) p{
  width: 50%;
  margin: 0px;
  margin-bottom: 5px;
  box-sizing: border-box;
  white-space: nowrap;
  font-size: 0.9em;
}
div.footerCol:nth-child(3) p:nth-child(odd){
  font-style: italic;
  font-family: 'Abhaya Libre', serif;
  color: rgb(158,114,89);
  text-align: right;
  padding-right: 25px;
  font-size: 1.1em;
}
div.footerCol p.socials a{
  display: inline-block;
  padding-right: 10px;
}

div.copyright{
  font-size: 0.7em;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
  letter-spacing: 1px;
}
div.copyright br{
  display: none;
}
div.copyright p{
  display: inline;
}
div.copyright a:hover{
  text-decoration: underline;
}