/* 
resize press and works thumb images to 400px in admin
add logo font when confirmed
*/

:root {
  --peach-brand: #dca680;
  --grey-brand: #787567;
  
  --grey-beige: #837f6f; /* #A6A28E;*/
  --grey-silver: #928f7d; /*#aba793;*/
  --grey-cement: #969280;
  --beige-light: #fcfbfa; /*#f8f6f2; #FCFAF5;*/
  --brown-leather: #a59a90;
  --brown-walnut: #786553;
  --brown-walnut--light: #ACA49C;
  --brown-walnut--dark: #6D5846;
  --brown-tan: #EFEBE1;
  --brown-tan--light: #F3EEE0;

  --white: #fff;

  --color-link-hover: var(--peach-brand);

  --state-disabled: #e4e4e4;
  --state-error: #DE3737;
  --state-success: #1e9882;

  --font-family-1: 'Alegreya Sans', sans-serif;
  --font-family-2: 'Alegreya Regular', serif;
  --font-size-base: 18px;

  --spacing: 10px;
  --spacing-2: calc(var(--spacing) * 2);
  --spacing-3: calc(var(--spacing) * 3);
  --spacing-half: calc(var(--spacing) / 2);

  --header-height: 46px;
}


* {
	box-sizing: border-box; 
}

/*html {
  scroll-behavior: smooth;
}*/

html, body  { 
	height: 100%;
	width: 100%;
}

@font-face {
  font-family: 'Alegreya Sans';
  src: 
    url('../../static/fonts/alegreya-sans/alegreyasans-light-webfont.woff2') format('woff2'),
    url('../../static/fonts/alegreya-sans/alegreyasans-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;

}

@font-face {
  font-family: 'Alegreya Sans';
  src:
    url('../../static/fonts/alegreya-sans/alegreyasans-lightitalic-webfont.woff2') format('woff2'),
    url('../../static/fonts/alegreya-sans/alegreyasans-lightitalic-webfont.woff') format('woff');
  font-weight: 300;
  font-style: italic;

}

@font-face {
  font-family: 'Alegreya Sans';
  src: 
    url('../../static/fonts/alegreya-sans/alegreyasans-regular-webfont.woff') format('woff'),
    url('../../static/fonts/alegreya-sans/alegreyasans-regular-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Alegreya Sans';
  src: 
    url('../../static/fonts/alegreya-sans/alegreyasans-italic-webfont.woff') format('woff'),
    url('../../static/fonts/alegreya-sans/alegreyasans-italic-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Alegreya Sans';
  src: url('../../static/fonts/alegreya-sans/alegreyasans-medium-webfont.woff2') format('woff2'),
       url('../../static/fonts/alegreya-sans/alegreyasans-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;

}

@font-face {
  font-family: 'Alegreya Sans';
  src: url('../../static/fonts/alegreya-sans/alegreyasans-mediumitalic-webfont.woff2') format('woff2'),
       url('../../static/fonts/alegreya-sans/alegreyasans-mediumitalic-webfont.woff') format('woff');
  font-weight: 500;
  font-style: italic;

}

@font-face {
  font-family: 'Alegreya Sans';
  src: 
    url('../../static/fonts/alegreya-sans/alegreyasans-bold-webfont.woff') format('woff'),
    url('../../static/fonts/alegreya-sans/alegreyasans-bold-webfont.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Alegreya Sans';
  src: url('../../static/fonts/alegreya-sans/alegreyasans-bolditalic-webfont.woff') format('woff'),
    url('../../static/fonts/alegreya-sans/alegreyasans-bolditalic-webfont.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Alegreya Regular';
  src: 
    url('../../static/fonts/alegreya-serif/alegreya-italic-webfont.woff') format('woff'),
    url('../../static/fonts/alegreya-serif/alegreya-italic-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Alegreya Regular';
  src: 
    url('../../static/fonts/alegreya-serif/alegreya-regular-webfont.woff') format('woff'),
    url('../../static/fonts/alegreya-serif/alegreya-regular-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*@font-face {
  font-family: 'alegreyaregular';
  src: 
    url('../../static/fonts/alegreya-serif/alegreya-bold-webfont.woff') format('woff'),
    url('../../static/fonts/alegreya-serif/alegreya-bold-webfont.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

}*/


body {
	background-color: var(--beige-light);
	line-height: 1.5;
  display: flex;
  flex-direction: column;
}

body, input, textarea, button, select {
  color: var(--grey-brand);
  font-family: var(--font-family-1);
  font-size: var(--font-size-base);
  font-weight: 400;

}

/* GLOBAL STYLES */

a {
  color: var(--brown-walnut);
  text-decoration: none;
}

a:hover {
  color: var(--peach-brand);
  transition: all 0.15s ease-in;
  outline: none;  
}

a:focus {
  outline: none;	
}

.heading-link-unset {
  color: var(--grey-silver);
}

.link-unset:hover {
  color: var(--grey-brand);
}

img, video {
	max-width: 100%;
	height: auto;
}

input[type="submit"] {
	cursor: pointer;
}

textarea {
	vertical-align: top;
}

.show-on-screen-readers {
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px,0px 0px, 0px 0px);
}

ul {
  list-style-type: disc;
}

ul li {
  padding-bottom: var(--spacing);
}

.ul-reset {
  list-style-type: none;
}

.main ul {
	padding-bottom: 10px;
}

.object-position-bottom {
  object-position: bottom;
}

/* END GLOBAL STYLES */

/* GRID */

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

@media (min-width: 600px) {
  .flex-sm {
    display: flex;
    flex-wrap: wrap;
  }
  .flex-nowrap {
    flex-wrap: nowrap;
  }
}

@media (min-width: 740px) {
  .flex-mid {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-nowrap {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .flex-lg {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-nowrap {
    flex-wrap: nowrap;
  }
}

.margin-left-auto {
  margin-left: auto;
}

.margin-right-auto {
  margin-right: auto;
}

.row {
  margin-left: -28px;
  margin-right: -28px;
}

@media(max-width: 599px) {
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.row-sm {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.col {
  padding-left: 28px;
  padding-right: 28px;
}

@media(max-width: 599px) {
  .col {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.col-sm {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.row-lg {
  margin-left: -15px;
  margin-right: -15px;
}

.col-lg {
  padding-left: 15px;
  padding-right: 15px;
}

@media(min-width: 600px) {
  .col-lg {
    padding-left: 36px;
    padding-right: 36px;
  }
  
  .row-lg {
    margin-left: -36px;
    margin-right: -36px;
  }
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333%;
}

.col-8 {
  width: 66.33%;
}

.col-9 {
  width: 75%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 600px) {
  .col-3-sm {
    width: 25%;
  }

  .col-4-sm {
    width: 33.33%;
  }

  .col-5-sm {
    width: 41.667%;
  }

  .col-6-sm {
    width: 50%;
  }

  .col-7-sm {
    width: 58.333%;
  }

  .col-8-sm {
    width: 66.33%;
  }

  .col-9-sm {
    width: 75%;
  }
}

@media (min-width: 940px) {
  .col-3-mid {
    width: 25%;
  }

  .col-4-mid {
    width: 33.33%;
  }

  .col-5-mid {
    width: 41.667%;
  }

  .col-6-mid {
    width: 50%;
  }

  .col-7-mid {
    width: 58.333%;
  }

  .col-8-mid {
    width: 66.33%;
  }

  .col-9-mid {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .col-3-lg {
    width: 25%;
  }

  .col-4-lg {
    width: 33.33%;
  }

  .col-5-lg {
    width: 41.667%;
  }

  .col-6-lg {
    width: 50%;
  }

  .col-7-lg {
    width: 58.333%;
  }

  .col-8-lg {
    width: 66.33%;
  }

  .col-9-lg {
    width: 75%;
  }
}


/* END GRID */

/* TYPOGRAPHY */

strong, b, .font-bold {
	font-weight: bold;
}

em, i {
	font-style: italic;
}

p {
	margin: 0 0 10px 0;
}

.font-lg {
  font-size:  110%;
}

.font-xl {
  font-size:  120%;
}

h6, .h6 {
	font-size: 100%;
}

h5, .h5 {
	font-size: 105%;
}

h4, .h4 {
	font-size: 110%;
}

h3, .h3 {
	font-size: 130%;
}

h2, .h2 {
	font-size: 150%;
}

h1, .h1 {
	font-size: 170%;
}

h1, .h1, h2, .h2 {
  font-weight: 300;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
}

.heading-primary {
  color: var(--brown-walnut--dark);
	margin: 10px 0 15px 0;
  font-weight: 300;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

@media (max-width: 599px) {
  .heading-primary {
    font-size: 140%;
  }
}

.small-font {
	font-size: 90%;
}

.smaller-font {
	font-size: 80%;
}

.large-font {
	font-size: 110%;
}

.larger-font {
	font-size: 120%;
}

.italic-font {
	font-style: italic;
}

.uppercase-style {
  letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 90%;
}

.uppercase-style-tag {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 70%;
  font-weight: 400;
}

/* end TYPOGRAPHY */


/* COLORS */

/*a {
	color: var(--blue-brand);
}

a:hover {
  color: var(--peach-brand);
 transition: all 0.15s ease-in;
}

*/.uppercase-style {
	color: var(--grey-beige);
}

.bio-section-title:hover {
	color: var(--grey-silver);
}

/* end COLORS */

/* TRANSITIONS */

.menu li:hover {
	transition: all 0.15s ease-in;
}

/* end TRANSITIONS */

/* -------------------------------------*/
/* FORMS */

/* Forms: Overrides for browser quirks */

input, select, textarea {
  box-shadow: none; /* removes red border on active input: Firefox */
  border-radius: 0; /* removes border-radius on iOS */
}

input[type="submit"].btn {
  -webkit-appearance: none;
}

select {
  border-radius: 0; /* fixes for desktop Safari */
  background-image: none !important;
}

/* Forms: Text Inputs, Selects, Textareas, Buttons */

.input-text, textarea, select, button {
  border-radius: 2px;
  padding: 8px 16px;
}

.input-text, textarea, select {
  background-color: transparent;
  border: 1px solid var(--brown-tan);
  width: 100%;
  display: block;
}

.input-text:focus, textarea:focus, select:focus {
  border-color: transparent;
  border-bottom-color: var(--peach-brand);
  outline: 0;
  transition: all 0.2s ease-in;
}

::placeholder {
  color: var(--grey-cement);
}

textarea {
  vertical-align: top;
  min-height: 120px;
  resize: vertical;
}

textarea::placeholder {
  transform: translateY(80px);
}

/* Forms: Errors */

.form-error, .form-success, .form-info {
  font-size: 80%;
  display: none;
  padding: 0 2px 0 0;
}

.form-info {
  color: var(--grey-beige);
}

.form-error {
  color: var(--state-error);
}

.form-success {
  color: var(--state-success);
}

/* Forms: Notify */

.notify-success, .notify-error {
  color: var(--white);
  font-size: 90%;
  border-radius: 5px;
  padding: 5px 15px;
  display: block;
  margin-bottom: 20px;
}

.notify-success {
  background-color: var(--state-success);
}

.notify-error {
  background-color: var(--state-error);
}

button:focus {
  opacity: 0.8;
  transition: all 0.2s ease-in;
  outline: 1px solid #ccc;
}

.btn {
  color: var(--white);
  background-color: var(--brown-leather);
  border: 1px solid var(--brown-leather);
  border-radius: 5px;
  letter-spacing: 1px;
  font-size: 90%;
  text-transform: uppercase;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.btn:hover, .btn:focus {
  color: var(--white);
  opacity: 0.8;
  transition: all 0.2s ease-in;
}

.btn-icon-right {
  margin-inline-start: 7.5px;
}

.btn--sm {
  font-size: 80%;
  padding: 5px 10px;
}

.btn-reset {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  text-align: left;
  text-transform: inherit;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer; 
}

/* Forms: Padding between sections */

.field-block {
  margin-bottom: 20px;
}

/* Forms: Errors */

.form-error, .form-success, .form-info {
  font-size: 80%;
  display: none;
  padding: 2px 0 0 0;
}

.form-info {
  color: var(--grey-brand);
}

.form-error {
  color: var(--state-error);
}

.form-success {
  color: green;
}

/* Form: Notifications */

.notify-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  cursor: pointer;
}

/* main layout styles */
.wrap {
	min-height: 100%; /* style for sticky footer */
}

.header-inner, .main, .container, .footer-block {
  width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
            
.main {
	padding-top: 80px;
	padding-bottom: 34px;
  flex-grow: 1;
}

@media(min-width: 600px) {
  .main {
    padding-top: 62px;
  }
}

/* Modifier class for full-width sections */
.main--full-width {
  max-width: none;
  padding: var(--header-height) 0 0 0;
  margin: 0;
}

.header {
  background-color: var(--beige-light);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 5000;
  height: var(--header-height);
  /*box-shadow: inset 0px -2px 1px rgba(0,0,0,0.02);*/
}

.header, .menu ul {
  /*background: var(--brown-tan);*/
  /*background: #f2efe9;*/ /* MAKE VARIABLE IF SHE LIKES THIS  */
}

.logo-block {
  font-size: 140%;
  font-family: 'Gayathri', sans-serif;
  font-weight: 700;
  margin-top: 10px;
/*  text-shadow: 1px 2px 1px rgba(0,0,0,0.1);*/
  text-transform: uppercase;
}

.logo-block a {
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  transition: all 0.2s ease-in;
  display: block;
}

.logo-block-link {
  color: var(--brown-walnut--dark);
}

.logo-block a:hover {
  transition: all 0.2s ease-in;
}

/*.logo-block a:after {
  content: "";
  width: 10px;
  height: 3px;
  background: rgba(120,101,83, 0.2);
  opacity: 0;
  position: absolute;
  top: 100%; left: 0; right: 0;
  margin: 1px auto 0 auto;
}*/

.logo-block a span:last-of-type {
  padding-left: 5px;
}

.logo-block a:hover:after {
  width: 100%;
  opacity: 1;
  transition: all 0.4s ease-in;
}


@media (min-width: 600px) {
  .logo-block {
    font-size: 170%;
    margin-top: 6px;
  }
}


.nav {
  margin-left: auto;
}

.menu {
/*  font-size: 90%;*/
}

.menu li {
  position: relative;
  padding-bottom: 0;
}

.menu > li {
  border-bottom: 3px solid;
  border-color: transparent;
}

.menu li a {
  padding: 10px 25px;
  color: inherit;
  display: block;
}

.menu a:hover {
  color: var(--brown-tan);
	background: var(--brown-walnut--light);
}

.menu li.menu-active {
	border-bottom: 3px solid;
	border-bottom-color: var(--brown-walnut--light);
}

.menu ul {
  display: none;
  z-index: 20;
  position: absolute;
  top: 48px; left: 0; /* top value depends on header height */
  min-width: 150px; /* adjust according to width of longest menu item text */
}

.menu li li {
  display: block;
}

.menu li li a {
  border-bottom: 1px solid var(--beige-light);
}

.menu li.has-ul {
  cursor: pointer;
}

.menu ul ul {
  position: static;
}

.menu li.has-ul > a:after, .nav li.clicked > a:after {
  font-family: 'icomoon';
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  padding-left: 8px;
}

.menu li.has-ul > a:after {
  content: "\e902";
}

.menu li.clicked > a:after {
  content: "\e905";
}

.menu-link {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 7px; right: 10px;
}

.menu-link-icon {
	font-size: 19px;
	display: block;
	padding: 5px;
	background: var(--brown-walnut);
	color: var(--brown-tan);
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.1), inset -1px -1px 3px rgba(255, 255, 255, 0.1);
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);	
}

@media only screen and (min-width: 950px) {
  .menu {
    right: 0 !important; /* tied to the above media query, important is required */
    display: flex !important;
  }
}

@media only screen and (max-width: 949px) {
  .menu-link {
    display: inline-block;
  }

  .menu {
    width: 200px;
    position: fixed;
    top: var(--header-height);
    overflow-y: auto;
    right: -300px;
    bottom: 0;
    padding-bottom: 46px;
    background: var(--brown-tan);
    transition: all 0.2s ease-in;
  }
  
  .menu > li {
    border-top: 1px solid var(--beige-light);
  }

  .menu-slide {
    right: 0;
    transition: all 0.4s ease-in;
  }

  .menu ul {
    position: static;
  }

  .menu li, .menu li a {
    display: block;
  }
}

.footer {
  /*background-color: var(--brown-tan);
  background: #f2efe9;*/ /* Make var if she likes it */
  background-color: var(--beige-light);
  font-size: 80%;
  padding: 4px 0;
  position: relative;
  z-index: 60;
  margin-top: calc(var(--spacing) * 6);
}

.footer-row {
  width: 100%;
  align-items: center;
}

.footer-social-col {
  margin-left: auto;
}

.footer-social-block {
  display: flex;
  align-items: center;
}

.footer-credit-block {
  background-color: var(--brown-tan);
  position: absolute;
  padding: 10px 25px 10px 10px;
  top: -158px;
  width: 250px;
  right: 0;
  display: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
} 

.footer-credit-close {
  position: absolute;
  right: 0;
  top: 0;
  padding: 7.5px;
}

.footer-credit-close:hover .icon-x {
  color: var(--color-link-hover);
}

.footer-social-each--text {
  /*margin-top: 4px;*/
}

.footer-social-each--icon {
  position: relative;
  top: 3px;
}

.footer-social-link {
  color: var(--grey-brand);
  display: block;
}

/*.footer-social-link:hover, .footer-social-link:focus {
  color: var(--brown-walnut);
}*/

.footer-social-link svg:hover {
  fill: #074648;
}

.footer-social-icon {
  font-size: 15px;
  display: block;
}

.footer-social-icon.icon-instagram, .footer-social-icon.icon-facebook {
  font-size: 14px;
}

@media (max-width: 599px) {
  .footer {
    padding: 14px 0;
  }

  .footer-copyright {
    margin-bottom: 20px;
  }
}

/*@media (min-width: 600px) {
  .footer-block {
    height: 30px;
  }
}*/

/* cms styles */

/* preprend with CMS selector */
/* set a max-width if necessary on img-left and img-right and change on media query */

/*
ol, ul  {
	padding-left:20px;
	list-style-position: inside;
}

ol {
	list-style-type: decimal;
}

ul {
	list-style-type: disc;
}

.img-left, .img-right, .img-full {
	display: block;
}

.img-left {
	float: left;
	padding: 0 10px 0 0;
}

.img-right {
	float: right;
	padding: 0 0 0 10px;
}

.img-full {
	padding: 0 0 10px 0;
	margin-left: auto;
	margin-right: auto;
}
*/

/* end cms styles */

/* end main layout styles */

/* PLUGIN OVERRIDES: BXSLIDER */

.bx-wrapper .bx-controls-direction a {
  text-indent: inherit;
  width: auto;
  height: auto;
}

.bx-wrapper .bx-next, .bx-wrapper .bx-prev {
  background-image: none;
  font-size: 0;
  line-height: 1;
}

.bx-wrapper .bx-prev {
  left: -70px;
}

.bx-wrapper .bx-next {
  right: -60px;
}

.bx-wrapper .bx-prev:after, .bx-wrapper .bx-next:after {
  border-radius: 2px;
  font-family: "icomoon";
  font-size: 32px;
  padding: 5px;
  display: block;
}

.bx-wrapper .bx-prev:after {
  content: "\e903";
}

.bx-wrapper .bx-next:after {
  content: "\e904";
}

/* PLUGIN OVERRIDES: GLIGHTBOX */

.glightbox-clean .gprev.gbtn, .glightbox-clean .gnext.gbtn {
  width: 58px;
}

.glightbox-clean .gprev.gbtn {
  left: 0;
} 

.glightbox-clean .gnext.gbtn {
  right: 0;
}


/* optional top description for a page */
.main-desc {
	margin: 30px 0;
}
/* end optional top description for a page */

.main-desc {
	max-width: 620px;
}

.work-desc {
  max-width: 960px;
  margin: 0 0 var(--spacing-3) 0;
}

.main-block {
	margin: 20px 0 20px;
}

/*@media (min-width: 600px) {
  .main-block {
    margin: 30px 0 0 0;
  }
}*/


/* image content block */

.img-content {
	padding: 0 0 15px 0; 
}

.img-content:last-of-type {
	margin-bottom: 0;
}

.content-type {
  font-size: 70%;
}

.content-desc {
  margin: 5px 0 0 0;
  font-size: 80%;
}

.content-desc-work {
  margin: 25px 0 0 0;
  font-size: 90%;
}

.content-link {
  font-size: 90%;
  font-weight: 500;
  padding-top: var(--spacing-half);
}

.heading-primary-col {
  min-width: 300px;
}

.heading-primary--tag {
  margin-bottom: 0;
}

.img-area {
  margin-bottom: 15px;
}

/*.img-area-thumb {
	display: block;
}*/

/*.works-block .img-area-thumb, .press-block .img-area-thumb {
	max-width: 300px;
  width: 100%;
}*/

/*.content-title {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
}

.content-title a {
  color: var(--grey-brand);
}

.content-title a:hover {
  color: var(--grey-beige);
}

.content-meta {
  color: var(--grey-beige);
}

.content-area-publication {
  font-weight: 500;
}

.content-area-author {
  font-size: 90%;
}

.content-area-date {
  color: var(--grey-cement);
  font-size: 90%;
  margin: 0 0 20px 0;
}

.content-link-block {
  margin-top: 10px;
}

.content-link {
  color: var(--peach-brand);
  font-size: 80%;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content-link:hover, .content-link:focus {
  color: var(--blue-brand);
}

@media (min-width: 600px) {
  .img-area {
    padding-right: 30px;
    width: 350px;
    margin-bottom: 0;
  }
}

@media (min-width: 740px) {
  .content-area {
    width: 50%;
  }
}
*/
/* end image content block */

/* HOME page */

.body--home .main {
  padding-left: 0;
  padding-right: 0;
  padding-top: var(--header-height);
  padding-bottom: 0;
  max-width: none;
}

.home-bxslider {
  display: flex;
  align-items: flex-start;
}

.bx-wrapper .bx-viewport {
  left: 0;
}

.home-bxslider-each {
  padding: 0;
  object-fit: cover;
  width: 100vw;
  height: calc(100vh - var(--header-height));
}

.home-bxslider-block {
  height: calc(100vh - var(--header-height));
}

@media (max-width: 599px) {
  .home-bxslider-block {
    padding-top: calc(var(--spacing) * 4);
  }

}

@media only screen and (orientation: portrait) {
  .home-bxslider-block {
    height: auto;
  }

  .home-bxslider-each {
    object-fit: contain;
    object-position: center;
    height: auto;
  }
} 

.home-section {
  padding-top: var(--spacing);  
}

.home-section--recent {
  padding-top: var(--spacing-3);
}

@media(min-width: 640px) {
  .home-section {
    padding-top: var(--spacing-2);  
  }  

  .home-section--about {
    padding-top: var(--spacing-3);  
  }
}

@media(min-width: 640px) {
  .home-section--recent {
    padding-top: calc(var(--spacing) * 4);
  }
}

.home-section .heading-primary {
  margin-bottom: var(--spacing-half);
}

.show-each {
  margin-bottom: calc(var(--spacing) * 4.5);
  display: block;
}

.show-img {
  display: block;
}

.show-title {
  font-size: 80%;
  text-transform: uppercase;
  font-weight: 700;
  margin: var(--spacing) 0 0 0;
  line-height: 1.3;
  display: block;
}

.show-meta {
  font-size: 80%;
}

.show-desc {
  font-size: 90%;
  padding: 5px 0 0 0;
}

.show-works--year {
  font-weight: 600;
}

@media(min-width: 600px) {
  .show-year {
    margin: var(--spacing) 0 0 auto;
  } 
}

.home-about-img img {
  display: block;
}

.home-about-text {
  font-size: 90%;
/*  column-count: 2;
  column-gap: 30px;*/
}

.home-about-text--bio {
  font-family: var(--font-family-2);
}

.home-about-text--cv {
  padding-left: var(--spacing-2);
}

.home-collage-img {
  display: block;
  margin-bottom: var(--spacing-half);
}

.home-collage-text {
  font-weight: 700;
  text-align: center;
}

.home-section--featured {
  padding-bottom: var(--spacing-3);
}

/* end HOME page */


/* BIO page */

.bio-content {
    display: inline-block;
    vertical-align: top;
    width: 60%;
    padding: 0 0 0 30px;
}

.bio-img {
  display: block;
}

.bio-cv-block {
  padding: 30px 0 0 0;   
  display: none;
}

.heading-cv-highlights {
  font-size: 100%;
  text-transform: uppercase;
  font-weight: 500;
  /*font-family: "Merriweather", serif;*/
  margin: 30px 0;
}

@media(min-width: 600px) {
  .heading-cv-highlights {
    text-align: right;
  }
}

.bio-section-each {
  margin-bottom: 30px;
}   

.bio-section-each:last-of-type {
  margin-bottom: 0;
}

.bio-snippet {
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  width: 100%
}

.date-timeline {
  color: var(--grey-beige);
  font-weight: 700;
}

.about-timeline {
  flex: 1;
}

.about-timeline div, .about-timeline p {
  margin-bottom: 5px;
}


.date-timeline {
/*    width: 45px;*/
    padding: 8px 10px 0 5px;
}

.about-timeline {
  background: var(--brown-tan--light);
  padding: 18px 16px 16px 16px;
}

.artist-statement-block {
  margin: 56px 0 0 0;
}

.bio-heading-artist-statement {
  margin-bottom: 14px;
}

.bio-snippet-title {
	line-height: 1;
}

.bio-cv-row {
  display: flex;
}

.bio-link-col {
  margin-right: auto;
}

@media(max-width: 599px) {
  .bio-link-col {
    order: 2;
    margin-top: 10px;
  }

  .bio-cv-row {
    flex-direction: column;
  }
}

.bio-link {
	margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.bio-link .btn-icon-right {
  margin-left: auto;
}

.bio-section-title {
  font-size: 110%;
  border-bottom: 1px solid var(--grey-brand);
  padding-inline-end: 25px;
  padding-bottom: 5px;
  position: relative;
  cursor: pointer;
}

.bio-section-title:after {
	content: "\e902";
	position: absolute;
	bottom: 2px;
  right: 0;
	font-size: var(--font-size-base);
	font-family: 'icomoon';
	}

.bio-section-title-open:after {
	content: "\e905";
}

.bio-section-content {
    display: none;
}

/* end BIO page */


/* WORKS LANDING page */

/*.body--artworks .main {
  padding-top: 62px;
}

.works-banner {
  position: relative;
  margin: 0 0 10px 0;
}

.works-banner-img {
  display: block;
  width: 100%;
}

.works-banner-heading {
  font-size: 120%;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}

@media(min-width: 600px) {
  .works-banner-heading {
    font-size: 160%;
  }
}

.works-banner .works-img-filter-icon {
  font-size: 34px;
}

@media(max-width: 599px) {
  .works-landing-row {
    margin-left: -7.5px;
    margin-right: -7.5px;
  }  

  .works-landing-row > .col {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}


.works-img-filter-block {
  color: var(--grey-brand);
  position: relative;
  display: block;
  margin-bottom: 20px;
}


.works-img-filter-block:hover .works-img-filter-overlay, .works-img-filter-block:focus .works-img-filter-overlay {
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 0.2s linear;
}

.works-img-filter-block:hover .works-img-filter-icon, .works-img-filter-block:focus .works-img-filter-icon {
  opacity: 0.8;
  transform: translateX(-2px);
  transition: all 0.2s ease-in;
}

.works-img-filter-text-block {
  margin-top: 10px;
}


.works-img-filter-text {
  font-size: 100%;
  text-transform: uppercase;  
  line-height: 1.3;
}

.works-img-filter-icon {
  font-size: 28px;
  margin-left: auto;
  opacity: 0;
  transform: translateX(20px);
}

@media(max-width: 599px) {
  .works-img-filter-icon {
    display: none;
  }
}

.works-img-filter {
  display: block;
}

@media(min-width: 940px) {
  .works-img-filter-col {
    width: 20%;
  }
}



.works-img-filter-overlay {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.2s ease-in;
}

@media (max-width: 599px) {
  .works-img-filter-block {
    margin-bottom: 15px;
  }
}
*/

/* end WORKS LANDING page */

/* WORKS page */

/* WORK page */


.breadcrumb-block {
  padding: 10px 0 0 0;
}

.img-landscape {
  width: 530px;
}

.img-portrait {
  width: 360px;
}

.img-modal {
  display: flex;
  align-items: flex-end;
}

/*.filter-block--works {
  width: 130px;
}*/

.filter-block-col .k-heading {
  color: var(--color-link-hover);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.filter-block-col .k-heading:hover {
  color: var(--grey-silver);
}

.work-img-content-block {
  margin: 30px 0 0 0;
}

.work-img-content-block .img-content {
  scroll-margin-top: 64px;
}

.work-memorabilia-heading {
  border-top: 1px solid var(--brown-walnut--light);
  display: flex;
  align-items: baseline;
  padding-top: var(--spacing-3);
  margin-bottom: var(--spacing-2);
  cursor: pointer;
}

.work-memorabilia-heading:hover, .work-memorabilia-heading:focus {
  color: var(--peach-brand);
}

.work-memorabilia-icon {
  font-size: 70%;
  margin-left: var(--spacing);
  font-family: 'icomoon';
}

.work-memorabilia-icon:before {
  content: "\e902";
}

.work-memorabilia-icon--toggle:before {
  content: "\e905";
}

.work-memorabilia-content {
  height: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}

.work-memorabilia-content--toggle {
  height: auto;
  max-height: 1000000px;
  display: flex;
  opacity: 1;
  overflow: visible;
  transition: all 0.3s linear;
}

.work-icon-zoom {
	margin: 5px 0 0 0;
}

/*.work-bxslider-block {
  display: none;
}*/

/* Modal Plugin Overrides */

@media (max-width: 768px) {
  .glightbox-clean .gdesc-inner, .glightbox-modern .gdesc-inner {
    flex-direction: column;
  }

  .glightbox-clean .gslide-desc, .glightbox-modern .gslide-desc {
    padding-left: 0 !important;
  }
}

@media (min-width: 600px) {
  .gslide-image {
    padding: 0 15px;
  }
}

.glightbox-clean .gprev, .glightbox-modern .gprev, .glightbox-clean .gnext, .glightbox-modern .gnext {
  top: 45%;
}

.glightbox-clean .gdesc-inner, .glightbox-modern .gdesc-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 7px 0;
}

.glightbox-clean .gslide-work-size, .glightbox-modern .gslide-work-size {
  padding: 0 20px;
}

.glightbox-clean .gslide-work-year, .glightbox-modern .gslide-work-year, .glightbox-clean .gslide-work-medium, .glightbox-modern .gslide-work-medium {
  padding-right: 20px;
}

.glightbox-clean .gslide-image img.zoomable, .glightbox-modern .gslide-image img.zoomable {
  padding: 10px 0 0 0;
}

.glightbox-clean .gslide-title, .glightbox-modern .gslide-title {
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font-family-1);
  font-weight: 700;
  margin-bottom: var(--spacing);
}

.glightbox-mobile .glightbox-container .gslide-title {
  font-size: 80%;
}

.glightbox-clean .gslide-desc, .glightbox-modern .gslide-desc {
  font-family: var(--font-family-1);
  font-size: 80%;
  padding-left: 20px;
}

.glightbox-clean .gslide-description, .glightbox-modern .gslide-description {
  color: var(--white);
  background: transparent;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: var(--white);
}

@media only screen and (max-width: 768px) {
  .glightbox-clean .gprev.gbtn, .glightbox-modern .gprev.gbtn {
    left: 15px;
  }

  .glightbox-clean .gnext.gbtn, .glightbox-modern .gnext.gbtn {
    right: 15px;
  }

  .glightbox-clean .gclose, .glightbox-modern .gclose {
    right: 15px;
    top: 15px;
    width: auto;
    height: auto;
    padding: 10px;
  }
}

@media only screen and (min-width: 600px) {
  /*.img-modal img {
    padding-inline-end: 10px;
  }*/

  .work-block .content-area {
    display: flex;
    align-items: center;
  }
}

@media only screen and (min-width: 950px) {
  .work-block .content-area {
    width: 70%;
    width: calc(100% - 530px); /* matches image width + 30px padding */
  }

  /*.work-block .img-area {
    width: 350px;
  }*/

  /*.work-bxslider-block {
    display: block;
  }*/
}

/*@media only screen and (max-height: 500px) {
  .work-bxslider-block {
    display: none;
  }
}*/

            
/* end WORK page */

/* PRESS page */

.press-author {
  font-weight: 500;
}

@media(min-width: 600px) {
  .press-block > .row-lg {
    margin-left: -56px;
    margin-right: -56px;
  }
  .press-block .show-each {
    padding-left: var(--spacing-3);
    padding-right: var(--spacing-3);
  }
}


/* end PRESS page */


/* CONTACT page */

.contact-img {
  width: 100%;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 599px) {
  .contact-img {
    margin-bottom: 15px;
  }
}

.contact-email {
	position: relative;
}

.contact-social-block {
  padding: 10px 0 0 0;
}

.contact-social-each {
  color: var(--grey-brand);
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
  text-transform: unset;
  font-size: 120%;
}

.contact-social-each:first-of-type {
  font-size: 130%;
}

/*.contact-social-each:hover, .contact-social-each:focus {
  color: var(--brown-walnut);
}*/

.contact-social-icon {
  margin: 0 20px 0 0;
  font-size: var(--font-size-base);
}

@media (max-width: 949px) {
  .contact-form {
    margin-top: 20px;
  }
}

.contact-form-btn {
  margin-left: auto;
}

/* end CONTACT page */


/* PAGINATION */

.pagination {
	font-size: 110%;
	font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  position: relative;
  left: -4px;
}

.pagination-each {
	padding: 0 10px;
  margin-top: 15px;
}

.pagination-each.current {	
  color: var(--peach-brand);
}

.pagination-each.disabled {  
  color: var(--state-disabled);
  cursor: default;
}

.pagination-each.prev, .pagination-each.next {
  font-size: 20px;
  position: relative;
  top: 5px;
  padding: 0;
} 

.pagination-meta {
  margin: 15px 0 0 0;
}

/* end PAGINATION */

/* FILTERS styling */
.filter-block {
  text-transform: uppercase;
  font-size: 90%;
}

.k-heading {
  color: var(--grey-silver);
  letter-spacing: 1px;
  font-weight: 700;
  padding: 5px 0px 0px 0;
  cursor: pointer;
}

.k-heading:hover, .k-heading:focus {
  color: var(--color-link-hover);
}

.k-heading-icon {
  font-size: 80%;
}

.filter-each-block {
  transition: all 0.3s linear;
  display: none;
}

.filter-each {
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: var(--spacing-half);
  margin-bottom: var(--spacing-half);
  /*background-color: var(--brown-tan);
  background-color: #f2efe9;*/ /* variables if she likes it */
  border-bottom: 1px solid transparent;
	display: inline-block;
  color: var(--brown-leather);
}

@media (min-width: 940px) {
  .filter-each {
    margin-right: var(--spacing);
  }
}

@media (min-width: 1200px) {

  .filter-each {
    margin-left: calc(var(--spacing) * 1.7);
    margin-right: calc(var(--spacing) * 1.7);
  }

  .filter-each-block--press .filter-each {
    margin-left: calc(var(--spacing) * 1.3);
    margin-right: calc(var(--spacing) * 1.3);
  }
}

/*.filter-each:hover, .filter-each:focus {
  color: var(--brown-walnut);
}*/

.filter-each:hover, .filter-each:focus {
  opacity: 0.8;
}

.filter-each--active  {
/*  background-color: transparent;*/
  border-bottom: 1px solid;
}

.filter-each--active:hover, .filter-each--active:focus {
  opacity: 1;
} 


.filter-each:last-of-type {
  border: none;
}

.js-filters-toggle {
  display: block;
}

@media (min-width: 1200px) {
  .filter-each-block {
    display: block;
    visibility: hidden;
    opacity: 0;
  }

 .js-filters-toggle {
    visibility: visible;
    opacity: 1;
  }

  /*.filter-block-col {
    text-align: right;
    margin-left: auto;
  }*/

  .filter-block {
    display: flex;
    align-items: baseline;
    /*flex-direction: row-reverse;*/
  }

  .filter-block-col .k-heading {
    font-size: 120%;
  }
}

/* end FILTERS styling */


/* TOGGLE styling */
.js-toggle {
	cursor: pointer;
}

.js-toggle-block {
	display: none;
}
/* end TOGGLE styling */


/* SLIDER - WORK  */

/*.work-bxslider-block {
  position: fixed;
  right: 0;
  width: 65px;
  top: 50%;
  transform: translateY(-50%);
}

.work-bxslider-block li img {
  margin: 0 0 5px 0;
  transition: all 0.1s ease-in;
}

.work-bxslider-block li img:hover {
  transition: all 0.1s ease-in;
}

.work-bxslider-block .bx-wrapper .bx-controls-direction a {
  margin-top: -10px;
}

.work-bxslider-block .bx-wrapper .bx-prev {
  left: -5px;
}

.work-bxslider-block .bx-wrapper .bx-next {
  right: 5px;
}

.work-bxslider-block .bx-wrapper .bx-prev:after {
  content: "\e905";
}

.work-bxslider-block .bx-wrapper .bx-next:after {
  content: "\e902";
}

.work-bxslider-block .bx-prev:after, .work-bxslider-block .bx-next:after {
  color: var(--grey-brand);
  background-color: transparent; 
  font-size: 16px;
}
*/
/* end SLIDER - WORK  */


/* ZOOM LENS overrides */

.zoomLens {
	border: 1px solid rgba(0,0,0,0.1) !important;
}

.zoomContainer {
	overflow: hidden;
}

/* end ZOOM LENS overrides */


/* MEDIA QUERIES */

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

	.bio-img {
		margin-top: 0;
	}

	.bio-content {
		display: block;
		width: 100%;
		padding: 10px 0 0 0;
	}
}

@media only screen and (min-width: 740px) {
	.content-area {
		max-width: 540px;
	}	
  .about-block .img-area {
    width: 400px;
  }

  .bio-link {
    width: 370px;
  }
}

@media only screen and (max-width: 599px) {f
  .content-area {
    padding-top: 20px;
  }

  /*.works-block .img-area-thumb, */.press-block .img-area-thumb {
		width: 330px;
	}

	.bio-snippet-title {
		margin-bottom: 10px;
	}
}

/* END MEDIA QUERIES */

/* OVERRIDES  */
/* Keep at end of file  */
.margin-reset {
  margin: 0;
}

.js-hide {
  display: none;
}