/************************************************************************************
RESET
*************************************************************************************/

html, body, div, form, h1, h2, h3, h4, h5, h6, p, table, ul, li, button, map, object,
a, b, br, em, i, img, span, strong {
	margin: 0;
	padding: 0;
}

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

* {
  box-sizing: border-box;
}

/************************************************************************************
GENERAL STYLING
*************************************************************************************/

body {
	background: #fff;
	font-family: 'Catamaran', sans-serif;
	font-weight: 200;
	font-style: normal;
	font-size: 18px;
  letter-spacing: .8px;
	line-height: 1.4;
	color: #333;
	text-align: left;
  overflow-x: hidden;
}

a:link, a:visited {
	color: #333;
	text-decoration: none;
	transition: transform .4s;
	display: inline-block;
	position: relative;

	outline: none;
}

a:active {
	outline: none;
}

h1 {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
	padding: 4% 0 3%;
	line-height: 1.1;
}

h2 {
  font-size: 24px;
  font-weight: 900;
	text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4% 0 0;
}

h3 {
	font-size: 20px;
	font-weight: 200;
	letter-spacing: 2px;
	margin: 4% 0 0;
}

@media screen and (min-width: 750px) {
  h2, h3 {
    margin: 38px 0 0;
  }
}


b, strong {
	font-weight: 700;
}

small {
  font-weight: 200;
}

em {
	font-family: 'Merriweather', serif;
	font-weight: 700;
	font-style: italic;
	font-size: 20px;
	letter-spacing: .5px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

hr {
  border-width: 0;
  border-top: 2px solid #333;
}

/************************************************************************************
RSEPONSIVE IMAGES
*************************************************************************************/

.responsive-image {
  margin: 0;
  max-width: 100%;
}

.responsive-image picture {
  display: block;
}

.responsive-image img {
  display: block;
  width: 100%;
  height: auto;
}

.responsive-image figcaption {
  margin-top: 10px;
  font-size: 16px;
	letter-spacing: 1px;
}

/************************************************************************************
GRID
*************************************************************************************/

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

@media (min-width: 750px) {

  .row {
    display: flex;
		flex-flow: wrap;
  	column-gap: 4%;
  }

  .one.column           { width: 4.66666666667%; }
  .two.columns          { width: 13.3333333333%; }
  .three.columns        { width: 22%;            }
  .four.columns         { width: 30.6666666667%; }
  .five.columns         { width: 39.3333333333%; }
  .six.columns          { width: 48%;            }
  .seven.columns        { width: 56.6666666667%; }
  .eight.columns        { width: 65.3333333333%; }
  .nine.columns         { width: 74.0%;          }
  .ten.columns          { width: 82.6666666667%; }
  .eleven.columns       { width: 91.3333333333%; }
  .twelve.columns       { width: 100%; }
}

/************************************************************************************
HEADER
*************************************************************************************/

.header {
	height: 200px;
  overflow-x: hidden;
}

.logo {
  float: left;
  margin: 65px 0 0;
  width: 120px;
  height: 64px;
}

#menu {
  float: right;
}

.menu ul {
  margin-top: 30vh;
}

.menu li {
	display: block;
	list-style: none;
}

.menu a {
	letter-spacing: 1px;
	text-transform: uppercase;
  font-size: 25px;
  margin-bottom: 10px;
}

.menu .lang {
	font-family: 'PT Sans', sans-serif;
	font-weight: 400;
}

.hamburger {
	display: block;
  width: 40px;
  height: 10px;
  margin-top: 70px;
  cursor: pointer;
}

.hamburger .dash {
  width: 40px;
  height: 3px;
  background: #333;
}

.hamburger .dash:first-of-type {
  margin-bottom: 6px;
}

.overlay {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  background-color: #fff;
  text-align: center;
  overflow-x: hidden;
  transition: 0.5s;
}

.menu .close {
  display: block;
  margin-top: 20px;
}

.menu-line {
  display: none;
}

@media screen and (min-width: 900px) {

  .header .columns {
    padding: 0;
  }

  .overlay {
    height: 100%;
    background-color: transparent;
    position: static;
    overflow: hidden;
  }

  .hamburger {
    display: none;
  }

  .menu .close {
    display: none;
  }

  .menu {
    padding: 0 0 3px;
    text-align: right;
    margin-top: 60px;
    position: relative;
  }

  .menu::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    display: block;
    height: 4px;
    width: 5000px;
    background: #333;
  }

	.menu ul {
		position: static;
		margin: 12px 0 0;
	}

	.menu li {
		display: inline;
    margin-left: 10px;
	}

  .menu li:first-of-type {
    margin-left: 0;
  }

	.menu a {
    position: relative;
		font-size: 18px;
		margin-bottom: 0;
    padding-top: 6px;
    border-top: 2px solid transparent;
    transition: .3s;
	}

  .menu a:before {
    content:  "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: #333;
    transition:  .4s;
  }

  .menu a:hover:before {
    width: 100%;
  }

  .menu-line {
    display: block;
    width: 30%;
    height: 4px;
    background: #333;
    position: absolute;
    right: 0;
    top: 110px;
  }

}

/************************************************************************************
FOOTER
*************************************************************************************/

footer {
  padding: 4% 0 4%;
}

footer p {
  text-align: right;
  font-size: 14px;
}

.footer-links {
  margin: 2% 0;
}

.logos img {
	display: inline;
	margin-right: 20px;
}

.one-pixel {
  border-top: 1px solid #333;
  margin-top: 50px;
}

@media screen and (max-width: 749px) {
  footer p {
    text-align: left;
  }

  .footer-links div {
    margin-top: 20px;
  }

	.logos {
		margin-top: 50px;
	}
}


/************************************************************************************
HOME PAGE
*************************************************************************************/

.slider-wrapper {
  overflow-x: hidden;
}

.slider {
  padding-top: 0;
  background-color: #fff;
}

#slides {
  position: relative;
  height: calc(100vh - 60px);
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.slide {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
}

.showing {
  opacity: 1;
  z-index: 2;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 100%;
  background-size: cover;
  border-top: 2px solid #333;
}

.slide-image:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.slide-text {
  position: absolute;
  top: 50vh;
  right: 0;
  font-family: 'Catamaran', sans-serif;
  font-weight: 900;
  font-size: 5vh;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: right;
}

.slide-text:after {
  display: block;
  position: absolute;
  content: "";
  top: -20px;
  left: 0;
  width: 1000px;
  height: 8px;
  background: #333;
}

@media screen and (max-width: 749px) {

  #slides {
    margin-bottom: 8%;
  }

  .slide-text {
    position: absolute;
    top: 80vh;
    right: 0;
    font-size: 4vh;
    background: rgba(255,255,255,.7);
  }

  .slider-right-line {
    position: absolute;
    top: calc(180px + 80vh);
  }

  .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .slide-image:before {
    width: 100%;
  }
}

.heckmann {
  position: absolute;
  right: 5px;
  top: 302px;
  transform: rotateZ(90deg);
  z-index:  1000;
}

@media screen and (max-width: 749px) {
  .heckmann {
    top: 330px;
    right: -110px;
  }
}

.heckmann h1{
  font-weight: 700;
}

.heckmann-wrapper {
  position: relative;
}

.heckmann-wrapper .heckmann {
  right: -144px;
  top: 99px;
}

.home-categories {
  padding-top: 4%;
}

.home-categories .top-left-line {
  width: 40%;
  height: 3px;
  background-color: #333;
}

.home-categories a h3 {
  position: relative;
  display: inline-block;
}

.home-categories a h3:after {
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #333;
  transition:  .3s;
}

.home-categories a:hover h3:after {
  content:"";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
}

@media screen and (max-width: 749px) {
  .home-categories a {
    margin-bottom: 8%;
  }
}

.home-text {
  text-align: justify;
  margin: 6% 0;
  padding: 3% 0;
}

.home-text p {
  margin-bottom: 20px;
}

.home-text p:last-of-type {
  margin-bottom: 0;
}

.home-text .column-with-square {
  position: relative;
  height: 100%;
}

.home-text .column-with-square:after {
  content:"";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 50px;
  height: 50px;
  background: #333;
}

@media screen and (max-width: 749px) {
  .home-text {
    text-align: left;
    margin-bottom: 8%;
  }

  .home-text .six.columns {
    margin-bottom: 20px;
  }

  .home-text .column-with-square:after {
    display: none;
  }
}

.design-is {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.design-is .top-border {
  height: 30px;
  border-left: 8px solid #333;
}

.design-is p {
  font-family: 'Catamaran', sans-serif;
  font-size: 16px;
  font-weight: 200;
  text-align: center;
  line-height: 1.6;
  text-transform: uppercase;
  padding-top: 10px;
}

.design-is img {
  width: 30%;
  margin: 40px auto 0;
}

.design-is .bottom-border {
  height: 30px;
  border-right: 8px solid #333;
  margin-bottom: 8px;
}

@media screen and (max-width: 749px) {
  .design-is {
    margin: 8% 0;
  }
}

.details {
  text-align: center;
  position: relative;
  margin: 8% 0 4%;
}

.details:before {
  content: "DETAILS";
  position: absolute;
  height: 8px;
  left:-185px;
  top: 135px;
  transform: rotateZ(270deg);
  border-right: 200px solid #333;
  padding-right: 10px;
  line-height: 10px;
  font-size: 18px;
}

.details a {
  position: relative;
}

.details a:before {
  content: "";
  position:  absolute;
  bottom:  -12px;
  left: 40%;
  height: 2px;
  width: 20%;
  background: #333;
}

.details a:after {
  content:"";
  position: absolute;
  bottom: -16px;
  left: 40%;
  width: 0%;
  height: 2px;
  background: #333;
  transition:  .3s;
}

.details a:hover:after {
  content:"";
  position: absolute;
  bottom: -16px;
  left: 40%;
  width: 20%;
  height: 2px;
  background: #333;
}



@media screen and (max-width: 749px) {
  .details {
    margin-top: 20%;
  }

  .details:before {
    content: "DETAILS";
    position: absolute;
    height: 8px;
    left: 0px;
    top: -20px;
    transform: rotateZ(0deg);
    border-right: 0;
    border-left: 50px solid #333;;
    padding-left: 10px;
    line-height: 10px;
    font-size: 18px;
  }

  .details a {
    margin-bottom: 10%;
  }

  .details a:before {
    bottom:  -6px;
  }

  .details a:after {
    display: none;
  }
}

.sketch-title {
  display: block;
  margin-top: 4%;
  border-bottom: 6px solid #333;
  height: 0;
}

.sketch-box {
  position: relative;
  margin-top: 4%;
  padding: 0;
  margin-bottom: 100px;
}

#sketch-slides {
  position: relative;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.sketch {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
}

.sketch:first-of-type {
  position: relative;
}

.showing-sketch {
  opacity: 1;
  z-index: 2;
}

.four-lines {
  display: block;
  position: absolute;
  top: 50%;
  left: -80px;
  width: 80px;
  height: 20px;
  border-top: 4px solid #333;
  border-bottom: 4px solid #333;
}

.four-lines:before {
  content: "";
  position: absolute;
  top: -36px;
  left: 0;
  width: 80px;
  height: 20px;
  border-top: 4px solid #333;
  border-bottom: 4px solid #333;
  box-sizing: border-box;
}

/************************************************************************************
DEFAULT PAGES
*************************************************************************************/

.default-page-text {
	margin-top: -2px;
  margin-bottom: 4%;
  position: relative;
}

.default-page-text:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

/************************************************************************************
STYLING PAGES
*************************************************************************************/

.styling-intro {
  margin-top: -2px;
  margin-bottom: 4%;
  position: relative;
}

.styling-intro:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.styling-intro p {
  text-align: justify;
	margin: 2% auto;
}

.styling {
  margin-bottom: 4%;
}

.styling a:before {
  content: "";
  position: absolute;
  width: 30%;
  height: 4px;
  top: -4px;
  left: 0;
  background: #333;
}

.styling:first-of-type a:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 40%;
  top: 0;
  left: -4px;
  background: #333;
}

.styling h2 {
	margin-top: 10px;
	position: relative;
  font-size: 22px;
  font-weight: 200;
}

@media screen and (max-width: 749px) {
  .styling-intro {
    margin-bottom: 10%;
    border-top: 2px solid #333;
  }

  .styling-intro p {
    text-align: left;
  }

  .styling a {
    margin-bottom: 10%;
  }

	.styling a:before {
		display: none;
	}
}

/************************************************************************************
PROJECTS PAGE
*************************************************************************************/

.category-menu {
  list-style: none;
  width: 65.3333333333%;
  margin-top: -2px;
  padding: 10px 0;
  margin-bottom: 2%;
  position: relative;
}

.category-menu:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.category-menu li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

@media screen and (max-width: 749px) {
  .category-menu {
    width:  100%;
  }
  .category-menu li {
    display: block;
  }
}

.category-menu li a {
  position: relative;
}

.category-menu li a:before {
  content:  "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #333;
  transition:  .4s;
}

.category-menu li a:hover:before {
    width: 100%;
}

.category-menu li.active a {
  border-bottom: 2px solid #333;
}

.projects {
  display: flex;
  flex-flow: wrap;
  column-gap: 4%;
}

.projects a {
  position: relative;
  width: 30.6666666667%;
  margin-bottom: 4%;
}

@media screen and (max-width: 749px) {
  .projects a {
    width: 100%;
    margin-bottom: 10%;
  }
}

.projects a img {
  margin-bottom: 10px;
}

.projects h2 {
  position: relative;
  font-size: 22px;
  font-weight: 200;
  margin-top: 0;
  border-bottom: 4px solid #333;
  padding-bottom: 5px;
  transition: .3s;
}

.projects h2:after {
  content: "";
  position: absolute;
  background: #d5dddd;
  width: 0;
  height: 6px;
  bottom: -5px;
  left: 0;
  transition: .5s ease-in-out;
}

.projects h3 {
  margin-top: 10px;
}

.projects a:hover h2:after {
  width: 100%;
}

@media screen and (max-width: 749px) {

  .category-menu:before {
    width: 100%;
  }

  .view {
    display: none !important;
  }

  .home .row:first-of-type {
    margin-top: 0;
  }

  .projects .row {
    margin-bottom: 8%;
  }

  .projects h2 {
    margin-top: 0;
  }
}


.project-item {
  transition: opacity 0.3s ease;
}

.project-item[style*="display: none"] {
  display: none !important;
}

.category-menu li {
  cursor: pointer;
}

.category-menu li.active a {
  /* Your active state styling */
}

/************************************************************************************
PROJECT PAGE
*************************************************************************************/

.container.project .row:first-of-type .twelve.columns {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -2px;
  position: relative;
}

.container.project .row:first-of-type .twelve.columns:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.project .top-line {
  width: 100%;
  height: 4px;
  background: #333;
}

.project h1 {
  margin: 0;
	margin-bottom: 4%;
  border-top:  4px solid #333;
  padding-top: 10px;
  text-align: center;
  line-height: 1.1;
}

.project p {
  margin: 8% 0;
}

.project-details {
  margin: 2% 0 4%;
}

.project-details p {
  line-height: 1.3;
  width: 90%;
}

.project-description p {
  width: 60%;
  margin: 2% auto;
  text-align: justify;
}

.project-description p:last-of-type {
  margin: 2% auto 8%;
}

.project-description p.after-title {
  margin: 8% auto 2%;
}

.project-description p.after-title:only-of-type {
  margin: 8% auto;
}

.images-column-two,
.images-column-three {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.gallery-item {
  padding-bottom: 4%;
}

.images-column-two img {
  position: relative;
  width: 48%;
  margin-bottom: 4%;
  align-self: start;
}

.images-column-three img {
  position: relative;
  width: 30.6666666667%;
  margin-bottom: 4%;
  align-self: start;
}

.images-column div:first-of-type:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 50%;
  height: 3px;
  background: #333;
}

@media screen and (max-width: 749px) {

  .container.project .row:first-of-type .twelve.columns:before {
    width: 100%;
  }

  .project h1 {
    text-align: left;
  }

  .project-details {
    margin-bottom: 10%;
  }

  .project-details p {
    margin: 4% 0 0;
    font-size: 16px;
		width: 100%;
  }

  .project-description p {
    margin: 6% 0;
    width: 100%;
    text-align: left;
  }

  .project-description p:first-of-type {
    margin: 6% 0;
  }

  .project-description p:last-of-type {
    margin: 6% 0 8%;
  }

  .four.images-column img,
  .six.images-column img {
    margin-top: 4%;
  }

  .images-column-two img,
  .images-column-three img {
     width:  100%;
  }

}

/************************************************************************************
ABOUT
*************************************************************************************/

.container.about .row:first-of-type {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -2px;
  position: relative;
}

.container.about .row:first-of-type:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;

}

.about .row {
  margin-bottom: 4%;
}

.about h2 {
  font-weight: 700;
  margin-bottom: 0;
  font-size:  20px;
  letter-spacing: .5px;
}

.about p {
  margin: 2% auto;
}

.languages {
  margin-top:  100px;
}

.languages h1 {
	margin: 0 0 4%;
	font-family: 'PT Sans', serif;
}

.languages p {
	text-align: justify;
}

.russian h1 {
	letter-spacing: 2px;
}

@media screen and (max-width: 749px) {

  .about {
    margin-top: 50px;
  }

  .about .row {
    margin-bottom: 10%;
  }
}

/************************************************************************************
AWARDS
*************************************************************************************/

.awards-intro {
	margin-top: -2px;
  margin-bottom: 4%;
  position: relative;
}

.awards-intro:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.awards-intro p {
  text-align: justify;
	margin: 2% auto;
}

.awards p {
  margin: 20% 0;
  border-left: 4px solid #333;
  padding-left:  50px;
}

.awards p img {
  margin-bottom: 20px;
}

@media screen and (max-width: 749px) {
  .awards p {
    margin: 20% 0;
    border-left: 0;
    padding-left: 0;
  }
}

/************************************************************************************
PUBLICATIONS
*************************************************************************************/

.publications-intro {
	margin-top: -2px;
  margin-bottom: 4%;
  position: relative;
}

.publications-intro:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.publications-intro p {
  text-align: justify;
	margin: 2% auto;
}

.publication {
	margin-bottom: 4%;
}

.publication a img {
  margin-bottom: 10px;
}

.publication h2 {
  position: relative;
  font-size: 22px;
  font-weight: 200;
  margin-top: 0;
  border-bottom: 4px solid #333;
  padding-bottom: 5px;
  transition: .3s;
	min-height: 96px;
  line-height: 1.3;
}

.publication h2:after {
  content: "";
  position: absolute;
  background: #d5dddd;
  width: 0;
  height: 6px;
  bottom: -5px;
  left: 0;
  transition: .5s ease-in-out;
}

.publication h3 {
  margin-top: 10px;
}

.publication a:hover h2:after {
  width: 100%;
}

@media screen and (max-width: 749px) {

	.publication {
    margin-bottom: 10%;
  }

  .publication h2 {
		display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    min-height: auto;
  }
}

/************************************************************************************
Contact
*************************************************************************************/

.contact-page {
	margin-top: -2px;
  margin-bottom: 4%;
  position: relative;
}

.contact-page:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.contact-page p {
  border-left: 4px solid #333;
	padding: 2% 0 2% 6%;
}

.contact-page p:first-of-type {
	margin-top: 20%;
	padding-top: 0;
}

.contact-page p:last-of-type {
	margin-bottom: 20%;
	padding-bottom: 0;
}

/************************************************************************************
GALLERY
*************************************************************************************/

/* GalleriesNow VR */
@media screen and (max-width: 768px) {
	#gn1_view_frame {
	height: 100vw;
	}
	@media screen and (orientation:landscape) {
		#gn1_view_frame {
			height: 100vh;
		}
	}
}

.gallery-intro {
	margin-top: -2px;
  margin-bottom: 4%;
  position: relative;
}

.gallery-intro:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.gallery-intro p {
  text-align: justify;
	margin: 2% auto;
}

.exhibition-listing {
	margin-bottom: 4%;
}


@media screen and (max-width: 749px) {

	.gallery-intro {
		margin-bottom: 8%;
	}

  .exhibition-listing {
    margin-bottom: 10%;
  }
}

.exhibition-listing a img {
  margin-bottom: 10px;
}

.exhibition-listing h2 {
  position: relative;
  font-size: 22px;
  font-weight: 200;
  margin-top: 0;
  border-bottom: 4px solid #333;
  padding-bottom: 5px;
  transition: .3s;
	line-height: 1.3;
	min-height: 68px;
}

.exhibition-listing h2:after {
  content: "";
  position: absolute;
  background: #d5dddd;
  width: 0;
  height: 6px;
  bottom: -5px;
  left: 0;
  transition: .5s ease-in-out;
}

.exhibition-listing h3 {
  margin-top: 10px;
}

.exhibition-listing a:hover h2:after {
  width: 100%;
}

@media screen and (max-width: 749px) {

  .exhibition-listing {
    margin-bottom: 8%;
  }

  .exhibition-listing h2 {
    margin-top: 0;
		min-height: auto;
  }
}

/************************************************************************************
EXHIBITION PAGE
*************************************************************************************/

.exhibition .row:first-of-type .twelve.columns {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -2px;
  position: relative;
}

.exhibition .row:first-of-type .twelve.columns:before {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  display: block;
  width: 2000px;
  height: 2px;
  background: #333;
}

.exhibition h1 {
  margin: 0;
	margin-bottom: 4%;
  border-top:  4px solid #333;
  padding-top: 10px;
  text-align: center;
  line-height: 1.1;
}

.exhibition-details p {
  margin: 8% 0;
}

.exhibition-details {
  margin: 2% 0 4%;
}

.exhibition-details p {
  line-height: 1.3;
  width: 90%;
}

.gallery-item {
  padding-bottom: 4%;
}


@media screen and (max-width: 749px) {

  .container.exhibition .row:first-of-type .twelve.columns:before {
    width: 100%;
  }

  .exhibition h1 {
    text-align: left;
  }

  .exhibition-details {
    margin-bottom: 10%;
  }

  .exhibition-details p {
    margin: 4% 0 0;
    font-size: 16px;
		width: 100%;
  }

}
