@charset "UTF-8";

 #text-box-container {
            /*height: 100%;*/
            margin: 20;
            /*font-family: Arial, sans-serif;*/
            display: flex;
            justify-content: center;
            align-items: center;
           /*background-color: #f0f0f0;*/
        }
    
     #text-box {
            width: 80%;
            padding: 20px;
            /*background-color: #fff;*/
            /*border: 1px solid #ccc;*/
            /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
            font-size: 20px;
            text-align: center;
            /*border-radius: 10px;*/
            line-height: 1.5;
            overflow: hidden;
            word-wrap: break-word;
        }

        #text-box i {
            font-style: italic;
        }

        #text-box b {
            font-weight: bold;
            display: block;
            margin-top: 1px;
            line-height: 1.5;
        }
    #text-box span {
        font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif"; 
            font-weight: bold;
            font-size: 80px;
            color: #E41E33;
        }

/* [1] The container */
.img-hover-zoom {
  /*height: 300px;  [1.1] Set it as per your need */
  overflow: hidden; /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.img-hover-zoom img {
  transition: transform 2s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.img-hover-zoom:hover img {
  transform: scale(1.5);
}

::placeholder {
    font-size: 16px;
  color: #888;;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color: #888;;
}

::-ms-input-placeholder { /* Microsoft Edge */
 color: #888;;
}


.barlow{
    font-family: 'Barlow Semi Condensed', sans-serif;
    }
strong, h3, b, .my-caption a{
    font-weight: 500;
}




.show_more_container {
    width: 100%;
    text-align: right;
    clear: both;
    margin-top: -40px;
}

#store-item-link, .media, .storeitemsmenu, .search-artists, .search-media, .search-store, .search-works, .search-solo, .search-news, .search-external, .search-group{
    display:none;
    
}

.dates, .grey {color: #4a4f51;}



/*century gothic elements reset*/
.minor-caption strong, #footer strong, #mobile-footer strong, figcaption strong {
    font-weight: bold;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: white;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
nav ul {
	list-style: none;
}


blockquote{
	margin-left: 10px;
    margin-right: 10px;
}


blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #E2E2E2;
margin-bottom: 30px;
	padding: 0;
	clear: both;
}
input, select {
	vertical-align: middle;
}


p {
margin-bottom: 25px;
}

.cursor-link
{
    cursor: pointer;
}


.cycle-slideshow img { display: none }
.cycle-slideshow img.first { display: block }


/*fade animations - initial set up move-ins*/


.fade-up {
	position: relative;
	z-index: 999;
	opacity: 0;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-animation: fadein 1s 1s 1 forwards ease-in-out;
	-moz-animation: fadein 1s 1s 1 forwards ease-in-out;
	animation: fadein 1s 1s 1 forwards ease-in-out;
}
 @-webkit-keyframes fadein {
 0% {
 -webkit-transform: translateY(30px);
 opacity: 0;
}
 100% {
 -webkit-transform: translateY(0);
 opacity: 1;
}
}
 @-moz-keyframes fadein {
 0% {
 -moz-transform: translateY(30px);
 opacity: 0;
}
 100% {
 -moz-transform: translateY(0);
 opacity: 1;
}
}
 @keyframes fadein {
 0% {
 transform: translateY(200px);
 opacity: 0;
}
 100% {
 transform: translateY(0);
 opacity: 1;
}
}
/*---------------------------*/
.fade-down {
	position: relative;
	z-index: 999;
	opacity: 0;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-animation: fadeindown 1s 1s 1 forwards ease-in-out;
	-moz-animation: fadeindown 1s 1s 1 forwards ease-in-out;
	animation: fadeindown 1s 1s 1 forwards ease-in-out;
}
 @-webkit-keyframes fadeindown {
 0% {
 -webkit-transform: translateY(-200px);
 opacity: 0;
}
 100% {
 -webkit-transform: translateY(0);
 opacity: 1;
}
}
 @-moz-keyframes fadeindown {
 0% {down
 -moz-transform: translateY(-200px);
 opacity: 0;
}
 100% {
 -moz-transform: translateY(0);
 opacity: 1;
}
}
 @keyframes fadeindown {
 0% {
 transform: translateY(-200px);
 opacity: 0;
}
 100% {
 transform: translateY(0);
 opacity: 1;
}
}
/*---------------------------*/

/*---------------------------*/
.fade-right {
	position: relative;
	z-index: 999;
	opacity: 0;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
	-webkit-animation: fadeinright 1s 1s 1 forwards ease-in-out;
	-moz-animation: fadeinright 1s 1s 1 forwards ease-in-out;
	animation: fadeinright 1s 1s 1 forwards ease-in-out;
}
 @-webkit-keyframes fadeinright {
 0% {
 -webkit-transform: translateX(-200px);
 opacity: 0;
}
 100% {
 -webkit-transform: translateX(0);
 opacity: 1;
}
}
 @-moz-keyframes fadeinright {
 0% {
 -moz-transform: translateX(-200px);
 opacity: 0;
}
 100% {
 -moz-transform: translateX(0);
 opacity: 1;
}
}
 @keyframes fadeinright {
 0% {
 transform: translateX(-200px);
 opacity: 0;
}
 100% {
 transform: translateX(0);
 opacity: 1;
}
}
/*---------------------------*/
.main-text .call-to-action-link a{
    color: #e41e33;
    font-weight: normal;
    text-decoration: none
}

.main-text .call-to-action-link a:hover{
    color: #000000;
     font-weight: normal;
    text-decoration: none

}

/*FLEX ITEMS SET UP*/ 
.mobile-hide{
	display:none;
}
#exhibition-accordian{
	display:none;
}

.three-column-artfair-flex h2{
    margin-bottom: 0px;
    font-size: 1.3em;
    line-height: 1.1em;
    }

.h2Mod {
    font-size: 22px;
    letter-spacing: 0.02em;
}

.three-column-artfair-flex .dates{
    margin-bottom: 0px;
    margin-top: 5px;
    font-size: 1em;
    line-height: 1.1em;
    
    }
.three-column-artfair-flex .minor-heading, .email-list .minor-heading{
    border: none;
    }
.email-list .minor-heading{
    padding-left: 0px;   
}
.email-list a{
    padding-left: 0px; 
    font-family: 'Open Sans Condensed', sans-serif;
        font-size: 18px;
        font-weight: 300;
    letter-spacing: 0.04em;
}



.three-column-flex .flex-parent, .three-column-artfair-flex .flex-parent {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*background-color: blue;*/
	justify-content:flex-start;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.three-column-flex .flex-item, .three-column-artfair-flex .flex-parent {
	width: 100%;
	/*background-color: lightblue;*/
	align-content: space-between;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.three-column-flex .photo-credit, .three-column-artfair-flex .photo-credit {
    display: none;
}

     .converted-to-four .flex-item .call-to-action-link{
        margin-left: 10px;
    }

.artwork-flex .flex-parent, .extras-flex .flex-parent{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*background-color: blue;*/
	justify-content: space-around;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.artwork-flex .flex-item, .extras-flex .flex-item{
	width: 48%;
	/*background-color: lightblue;*/
	align-content: space-between;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.extras-flex img{
    width: 100%;
}


.extras-flex .minor-img{

    background: #B521E1;
}


.sub-nav-flex-parent {
	display: flex;
	flex-wrap: flex;
	flex-direction:row;
/*
    background-color: pink;*/
    padding-top: 8px;
    padding-bottom: 8px;
justify-content:center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
    margin-left: auto;
    margin-right: auto;
	
}
.sub-nav-flex-item {

	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	align-content: flex-end;
   
	margin-left: 10px;
	margin-right: 25px;
}



.artist-sub-nav a:hover{
	text-decoration: none;
}

.flex-item:nth-child(even){
	background-color:
rgba(0,0,0,0.07);
	padding-bottom: 10px;
}

.artwork-flex .flex-item:nth-child(even), .extras-flex .flex-item:nth-child(even){
	background-color:
rgba(255,255,255,1.00);
	padding-bottom: 10px;
}

.artist-flex .flex-item{
	background: white;
}

/*------------------------------------*/

.minor-inner-flex {
	display: flex;
	flex-wrap: wrap;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.minor-inner-flex .inner-item {
	/*background-color: lightpink;
    width: 100%;*/
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.minor-inner-flex .minor-img {
	width: 100%;
	order: -1;
}

.minor-inner-flex .news-minor-img {
	width: 100%;
	order: -2;
}
.minor-text {
	width: 100%;
	margin-top: 0px;
	padding: 10px 30px 10px 10px;
}

.date-words {
	width: 100%;
	margin-top: 0px;
	padding: 10px 30px 10px 10px;
}
.minor-heading {
	border-left: 1px solid rgba(255,0,4,1.00);
	padding-left: 10px;
    padding-right: 10px;

	padding-top: 10px;
	margin-top: -5px;
	letter-spacing: 0.01em;
	font-weight: normal;
	font-size: 1.2em;
	width: 100%;
	order: -3;
	padding-bottom: 10px;
}
.photo-credit, .news-photo-credit {
	font-family: 'Barlow Semi Condensed', sans-serif;
	font-size: 11px;
	font-weight: 400;
	width: 10%;
	display:block;

}


.photo-credit {
	order: -1;
	
}


.news-photo-credit {
order: -2;
    display: none;
}


figcaption .photo-credit {
	width: 100%;
}
.rotate90 {
	/*background-color: coral;*/
	display: block;
	position: relative;
	-ms-transform: rotate(90deg); /* IE 9 */
	-webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
	transform: rotate(90deg);
	height: 40px;
	width: 400px;
	left: -200px;
	top: 180px;
	overflow: auto;
}

.minor-caption {
	color: black;
	padding: 10px;
	font-family: 'century-gothic', sans-serif;
    font-weight: 400;
    font-size: 0.6em;
	margin-top: 10px;
	width: 100%;
	line-height: 1.3em;
	order: -1;
	margin-bottom: 10px;
	clear: both;
}

.centered-h1 {

   dispaly:block;
    margin: auto;
    margin-bottom: 10px;
    text-align: center;
}

.centered-h1 h1{
    font-size: 1.2em;

}

.footer-flex {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.footer-inner-flex {
	padding-right: 5px;
	padding-left: 5px;
}
.footer-inner-flex:nth-child(2) {
	margin-left: auto;
}
.social-link {
	height: 20px;
}
.cls-1 {
	-webkit-transition: 1s;
	transition: 1s;
}
.signup{
	display:none;
}
svg:hover .cls-1, svg:hover {
	fill: #4A4F51;
}

.artwork-flex .minor-heading{
    border-left-style: none;

	/*font-family: 'century-gothic', sans-serif;*/
    font-weight: 400;
	font-size: 1em;
    text-align: center;
    order: 2;
}

.artist-flex .flex-parent {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*background-color: blue;*/
	justify-content: flex-start;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.artist-flex .flex-item {
	width: 50%;
	/*background-color: lightblue;*/
	align-content: space-between;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.artist-flex .minor-heading {
	order: -1;
}

.artist-flex .minor-img{
	width:95%;
}

.artist-flex .flex-item a, .artwork-flex .flex-item a, .extras-flex .flex-item a{
	text-decoration: none;
	color: black;
}

.artist-flex .flex-item a:hover, .artwork-flex .flex-item a:hover, .extras-flex .flex-item a:hover {
	text-decoration: none;
	color: #e41e33;
}

/*END OF FLEXBOX SET UPS*/

#artist-sub-nav {
	display:none;
  
}

#header-image {
	display: none;
}
#mobile-header-image {
	display: block;
}
#menu-logo {
    position: fixed;
    z-index: 20000;
    top: 12px;
    left: 10px;
    width: 80%;
    max-width: 190px;
    margin-left: 4px;
    margin-top: -2px;
}
a {
	color: #e41e33;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
a:hover {
	color: #4a4f51;
	text-decoration: underline;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
a:visited {
	color: #e41e33;
}

body {
	font-family: 'Barlow Semi Condensed', sans-serif;
	/*font-size: 17px;*/
	font-weight: 400;
	line-height: 1.4em;
}

.larger-text {
	font-size: 1.1em;
}
.full-width-image {
	width: 100%;
	margin-bottom: 20px;
}

h1, .artist-name{
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 0.95em;
	letter-spacing: 0.2em;
	
}

.artist-name{
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.artist-name a{
	color: black;
}

h2 {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 30px;
	font-weight: 300;
	line-height: 1.3em;
	letter-spacing: 0.1em;
	margin-bottom:  0.4em;
}
.h1_smaller_tighter{
    letter-spacing: 1em;
    margin-top: -15px;
}

section {
	margin-bottom: 20px;

}

.virticle_spacer{
    height: 50px;
    clear: both;
    }
.px_virticle_spacer{
    height: 1px;
    clear: both;
    }


.dates {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 24px;
	font-weight: 300;
	line-height: 1.2em;
	letter-spacing: 0.2em;

    margin-bottom: 30px;
}
.display-none {
	display: none;
}

#main-wrapper {
    width: 100%;
    /*max-width: 1366px;*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
}

#semi-logo-container {
	display: none;
}



#logo, #top_extras {
	display: none;
}
#content, #admin-content {
	z-index: 1;
}
.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}
#header-image, #mobile-header-image{
	position: relative;
	width: 100%;
}
#header-image img, #mobile-header-image img {
	width: 100%;
	height: auto;
}
#inner-content {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
    margin-top: 2em;
}
#footer, #mobile-footer {
	display: none;
	position: fixed;
	bottom: 0px;
	width: 100%;
	/*background-color: rgba(255,255,255,0.9);*/
     background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
	z-index: 900;
	color: #e41e33;
	height: 50px;
	border-top: 1px solid #e41e33;
	font-family: 'century-gothic', sans-serif;
    font-weight: 400;
	font-size: 0.7em;
	line-height: 1.2em;
}
#mobile-footer {
	display: flex;
	flex: auto;
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	padding-top: 10px;
	font-size: 0.6em;
	font-weight: bold;
}
#mobile-footer .footer-inner-flex {
	padding-left: 5px;
	padding-right: 5px;
}

.exhib-title {

	text-transform: uppercase;
}


.exhib-title h2 a{
	color: #4a4f51;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

.exhib-title h2 a:hover{
	color: #e41e33;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}




article {

}


.cycle-caption {
	display: none;
	position: absolute;
	color: white;
	bottom: 15px;
	right: 0px;
	z-index: 700;
	padding: 10px;
	/*background-color: rgba(74,79,81,0.5);*/
     background-color: rgba(74,79,81,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
	border-right: 1px solid #E41E33;
	font-size: 0.9em;
	/*border-top-left-radius: 12px;*/
	border-bottom-left-radius: 0px;
	font-family: 'Barlow Semi Condensed', sans-serif;
font-weight: 600;
text-align: right;
	line-height: 1.3em;
    border-top-left-radius: 12px;
   
}

/* display paused text on top of paused slideshow */
.cycle-paused:after {
    content: 'Paused';
    color: white;
     background-color: rgba(74,79,81,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
/*border-top-right-radius: 12px;*/
    padding: 10px;
    z-index: 500;
    position: absolute;
    bottom: 15px;
    left: 0px;
   /* background-color: rgba(74,79,81,0.5);*/
    border-left: 1px solid #E41E33;
    border-top-right-radius: 12px;
}

#alt-caption {
        font-size: 0.7em;
}

#alt-caption h2 {
        font-size: 1.2em;
    font-weight: 700;
}

figcaption {
	color: black;
	padding: 10px;
	font-family: 'century-gothic', sans-serif;
    font-weight: 400;
	border-left: 1px solid #E41E33;
    font-size: 0.7em;
	margin-top: -6px;
	line-height: 1.4em;
}

.call-to-action-link {
	float: right;
	display: block;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 0px;
	line-height: 2em;
	
}
.float-left {
	float: left;
	
}

.call-to-action-link a {
	padding: 0 0 4px 0;
	text-decoration: none;
	color: #e41e33;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	border-bottom: 1px solid #E41E33;
	
}


.call-to-action-link a:hover {
	color: #4a4f51;
}

.exhib-short-links a:last-of-type{
    margin-left: 20px;
}



.figure-right {
	position: static;
	width: 50%;
	float: right;
	margin-left: 2%;
}

.mobile-to-wide {

	width: 100%;
	
}

.figure-left {
	position: static;
	width: 35%;
	float: left;
	margin-right: 2%;
}

.video-link {
	position: static;
	width: 96%;
	float: left;
	margin-right: 2%;
	margin-left: 2%;
}


figure img {
	width: 100%;
}
#map {
	/*filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="g"><feColorMatrix type="matrix" values="0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0.3 0.3 0.3 0 0 0 0 0 1 0"/></filter></svg>#g');
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
 filter: progid:DXImageTransform.Microsoft.BasicImage(grayScale=1);*/
	
}

.artists-list-in-page ul{
	list-style: none;
	}

.artists-list-in-page a{
	color: black;
	}

.artists-list-in-page a:hover{
	color: #e41e33;
	}


.artists-list-in-page li{
	display: inline-block;
	width: auto;
	line-height: 1.5em;
	}
.artists-list-in-page li:not(:last-child):after{
	color: #e41e33;
	opacity: 1;
	content: "|";
	padding-left: 10px;
	padding-right: 5px;
	}
.artists-list-in-page ul:nth-last-child():after{
	content: "";
}

.biogcvheading {

	padding-top: 30px;
	margin-top: -5px;
	letter-spacing: 0.01em;
	font-weight: normal;
	font-size: 1.4em;
padding-bottom: 10px;
 }
 .tdbiogr1 {
	 vertical-align:top;
	 width:80px;
 }
 
  .tdbiogr3 {
	 vertical-align:top;
 }


.hide {
	display: none;
}


.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
	align: center;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	max-width: 700px;
	
}

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

.left-border {
	border-left: 1px solid #E41E33;
	padding-left: 10px;
}


  .embed-container { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; overflow: hidden; 
  max-width: 100%;
               
} 
        

.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; 
  height: 100%; 
          }

.mobile-video-header{
margin-top: 51px;}


/* in page product styling*/

.my-product{
    margin-left: 10px;
    margin-right: 10px;
    /*background-color: brown;*/
    /*border: 1px solid #ddd;*/
    position: relative;
    /*min-height: 350px;*/
}

.my-product .inner-item{

    text-align: center;
    /*background-color: brown;*/

} 



.my-button-group button {
 
    border: none;
    /*display: block;*/
    float: left;
    background-color: #eee;
    color: #888;
    line-height: 38px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 14px;
    margin-bottom: 0px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.my-button-group button:hover {
    color: #444;
    background-color: #ddd;
    text-decoration: none;
    cursor: pointer;
}

.my-product-thumb {
    /*border: 1px solid #ddd;*/

}
.my-caption {
   text-align: center;
width:90%;
    margin-left: auto;
    margin-right: auto;
    /*height: 150px;*/
    margin-bottom: 15px;
    }




.staff-flex figure{
       float:left;
        margin-right: 15px;
        width: 25%;
    }
    
     .staff-flex img{
       width: 100%;
    }
     
    .staff-flex .call-to-action-link {
        float: left;
        margin-top: 15px;
    }
    
    .staff-flex .clear {
    margin-bottom: 15px;
    }
    
     .staff-flex .no-image {
    margin-bottom: 15px;
         clear: both;
    }
    
    .staff-flex .minor-heading {
        border:none;
        padding-left: 0px;
    }
.staff-flex:nth-child(even){
	background: #F6F6F6}
.staff-flex article{
    padding: 10px;
    margin-bottom: 15px;
}

/*FORMS*/

.form-control {

}

label {
    color: #333;
}
.btn-send {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}


.help-block.with-errors {
    color: #ff5050;
    margin-top: 5px;
}

input:invalid, textarea:invalid {
    background-color: rgba(61, 61, 61, 0.09);
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn.disabled, .btn:disabled {
    opacity: .65;
}

.btn-send {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.form-control {
    display: block;
    width: 100%;
    padding: 10px 10px 10px 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


#contact-form{
    width: 97%;
}

form .btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    float: left;
    width:100%;
    margin-top: 25px;
    margin-bottom: 25px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight:700;
}

.d-none {
    display: none;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    width: 98.5%;
    font-size: 20px;
    font-weight: 500;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    margin-top: -4px;
}

.black-plain-link, .black-plain-link h1, .black-plain-link h2 {
    color: black;
    text-decoration: none;
    cursor: pointer;
    
}

.black-plain-link, .black-plain-link h1:hover, .black-plain-link h2:hover {
    color: black;
    text-decoration: none !important;
    cursor: pointer;
    
}



/* END OF GLOBAL SET UPS */
/* TAILOR FOR GROWING SCREENS and ORIENTATIONS */

.active a{
    color: blue;
}

.art-buy {
    text-align: center;
 
}
.art-buy a {
    color: #E41E33 !important;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: bold;
    text-decoration: none;
}

.art-buy a:hover {
    color: #888 !important;
    text-decoration: none;
}

.privacy-text p {
    font-size: 15px;
}

@media only screen and (min-width : 450px ) {
	.mobile-hide {
	display:block;
}
  
    
    
     .cycle-caption h2{
        font-size: 18px;
    }
	
.three-column-flex .flex-parent, .three-column-artfair-flex .flex-parent {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*	background-color: pink;*/
	justify-content: space-between;
}
.three-column-flex .flex-item, .three-column-artfair-flex .flex-item {
	width: 48%;
	/*background-color: lightblue;*/
	margin-bottom: 30px;
}
	.artwork-flex .flex-parent, .extras-flex .flex-parent{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*background-color: blue;*/
	justify-content: space-around;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.artwork-flex .flex-item, .extras-flex .flex-item {
	width: 48%;
	/*background-color: lightblue;*/
	align-content: space-between;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
	.artwork-flex .minor-img, .extras-flex .minor-img{
		width: 100%;
	}	
	
	
	.flex-item:nth-child(even){
	background-color:
rgba(0,0,0,0);
}
	
.signup{
	display:flex;
}	

.minor-caption{
	margin-top: -10px;
	clear:both;
	width: 100%;
		order:0;
	}
.minor-heading{
	order: 0;
}
.photo-credit {
	display: block;
	order:-1;
}
	
	.news-photo-credit {
	order: -1;
}
	
	
.minor-inner-flex .minor-img {
	width: 100%;
	order: -1;
}
	
.news-minor-inner-flex .minor-img {
	width: 80%;
	order: -1;
}	
	

	.artist-flex .flex-item {
	width: 30%;
		margin-right: 3.3%;
	
}
	.artist-flex .minor-img{
		width:100%;
	}
	
	
	/*-------------------*/
	
.call-to-action-link a {
	margin-bottom: 10px;
	border-bottom: 1px solid #E41E33;
}	
	
#header-image {
	display: block;
}

	
#mobile-header-image {
	display: none;
}
.cycle-caption {
	display: block;
}
.figure-right {
	position: static;
	width: 35%;
	float: right;
	margin-left: 2%;
}
.figure-left {
	position: static;
	width: 35%;
	float: left;
	margin-right: 2%;
}
#footer {
	display: flex;
}
#mobile-footer {
	display: none;
}
	.left {
	text-align: left;
		float: left;
}
    
    
 .staff-flex figure{
       float:left;
        margin-right: 15px;
        width: 25%;
    }
    
     .staff-flex img{
       width: 100%;
    }

.staff-flex:nth-child(even){
	background: white;}
    
.staff-flex article{
    padding: 0px;

}   
    }

@media only screen and (min-width: 767px) {
    
  
    /*font sizes for laptop desktops*/
    
    h1 {
        font-size: 22px; 
    }
    
    h2{
    font-size:25px;
        line-height: 1em;
        letter-spacing: 0.1em;
    
    }
    
 .larger_h2 {
    font-size:28px !important;
    
    }
    
 .exhibition_title {
    font-size:30px;
        line-height: 1em
    
    }
    
    
     .cycle-caption h2{
        font-size: 24px;
    }
    
    .dates {
        font-size: 1.5em 
    }
    
    body {
        /*font-size: 14px;*/
    }
    
     /*END font sizes for laptop desktops*/
	
	.video-link {
	position: static;
	width: 50%;
	float: left;
		margin-left: 0px;

}
.three-column-flex .flex-parent, .three-column-artfair-flex .flex-parent {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*background-color: purple;*/
	justify-content: flex-start;
}
.three-column-flex .flex-item, .three-column-artfair-flex .flex-item {
	width: 33.333%;
	/*background-color: lightblue;*/
	margin-bottom: 30px;
}
    
    .three-column-flex .photo-credit, .three-column-artfair-flex .photo-credit{
    display: block;
}
    
.artwork-flex .flex-parent, .extras-flex .flex-parent{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	/*background-color: blue;*/
	justify-content:flex-start;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.artwork-flex .flex-item, .extras-flex .flex-item{
	width: 25.0%;
	/*background-color: lightblue;*/
	align-content: space-between;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	margin-right: 0%;
}	

.extras-flex .flex-item{
	width: 20.0%;

}	
	
.minor-inner-flex .minor-img {
	width: 85%;

}
    .minor-inner-flex .news-minor-img {
	width: 90%;
	order: -2;
}
	
	
	
.artwork-flex .flex-item .minor-img{
		width: 90%;
	margin-right: auto;
    margin-left: auto; 
	}
    
.extras-flex .flex-item .minor-img{
		width: 100%;
	margin-right: auto;
    margin-left: auto; 
	}
	
.photo-credit {

	width: 10%;
}
    
	.news-photo-credit {
	display: block;
}    
    
.rotate90 {
	/*background-color: coral;*/
	display: block;
	position: relative;
	-ms-transform: rotate(90deg); /* IE 9 */
	-webkit-transform: rotate(90deg); /* Chrome, Safari, Opera */
	transform: rotate(90deg);
	height: 40px;
	width: 400px;
	left: -200px;
	top: 180px;
	overflow: auto;

}
	
	.artist-flex .flex-item {
	width: 25%;
		margin-right: 0%;
	
}
	.artist-flex .minor-img{
		width:90%;
		
	}
	
     .converted-to-four .flex-item{
        width: 24.8%;
    }
    
      .converted-to-four .flex-item .call-to-action-link{
        margin-left: 10px;
    }
	
#menu-logo {
	display: none;
}
#main-wrapper {
    width: 95%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -30px;
}
#header-wrapper {
    position: fixed;
    z-index: 100;
    top: 0px;
    /*background-color: white;*/
     background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
    margin-right: auto;
    margin-left: auto;
    height: 26px;
    width:95%;
    max-width: 1800px;
}
    #admin-header-wrapper {
    position: fixed;
    z-index: 100;
    top: 0px;
    background-color: white;
    margin-right: auto;
    margin-left: auto;
    height: 34px;
    width:95%;
    max-width: 1800px;
}
    
#semi-logo-container {
	display: block;
    width:100%;
    max-width: 1800px;
    /*background-color: chocolate;*/
    height: 0px;
}
#logo {
    display: block;
    position: relative;
    /*top: 12px;*/
    left:0px;
    /*background-color: white;*/
     background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
    /*z-index: 1000;
    height: 30px;*/
    padding-top: 12px;
    height: 30px;
  
}
#inner-logo-container{
    width:100%;
        max-width:10000px;
        margin-left: auto;
        margin-right: auto;
    -webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
        /*background-color: yellow;*/
 }
    
    #admin-inner-logo-container {
    FONT-WEIGHT: 100;
    width: 100%;
    max-width: 10000px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    background-color: rgba(255,255,255,0.75);
    padding-top: 10px;
    /* padding-bottom: 20px; */
}
    
/*.logo-shrink{
        width:100%;
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}*/
    
    #top_extras{
    display: block;
    position: absolute;
    top: 8px;
    right: 220px;
    height: 30px;
        color: #888;
        z-index: 1001;
        -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
    #burger{
        display: inline-block;
        position: relative;
        top:-30px;
         -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
    }
    
        #top_extras a{
    text-decoration: none;
            color: #888;
            margin-left:20px;
            
}
    
            #top_extras a:hover{
                color: #E41E33;
}
    
    
    

#semi-logo {
    display: block;
    position: relative;
    right:0;
    float: right;
  width: 220px;
    /* -webkit-filter: drop-shadow( -3px 3px 4.4px rgba(0, 0, 0, .4));
  filter: drop-shadow( -3px 3px 4.4px rgba(0, 0, 0, .4));*/
    z-index: 2000;
    
    
    /*background-color: cyan;*/
}


    #content {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: 70px;/*max-width: 1366px;*/
}
    
        #admin-content {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: 70px;
}
    
#inner-content {
	width: 98%;
	max-width: 1240px;
}
    
    
    #admin-inner-content {
	width: 98%;
	
}
    
    
#header-image img {
	width: 100%;
	height: auto;
}
	
#header-image {
	display: block;
}

#mobile-header-image {
	display: none;
}
	
.cycle-caption {
	display: block;
	}
	
#footer {

    height: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
}
    
    .social-link {
	height: 20px;
}
/* NAV CSS beyond  min767px MEDIA QUERY  then bigger sreens*/
    
/* DESKTOP / LAPTOP NAV SIZE CHANGERS*/ 
    
     .anchor-offset{
	position:relative;
	top:-150px;
         color: rgba(135,16,18,0.00);
}
    
 
        .external-anchor-offset{
	position:relative;
	top:-700px; 
} 

    
    #artist-sub-nav {
        display:block;
    position: relative;
      background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    top: 0px;
 
    }
    
    
    #nav, #artist-sub-nav, .call-to-action-link {
        font-family: 'Open Sans Condensed', sans-serif;
        font-size: 18px;
        font-weight: 300;
    letter-spacing: 0.04em;
        /*margin-top: 12px;*/
      
}
    #logo img {
	width: 190px;
	margin-left: 7px;
        margin-top: -3px;
}
    
        #adminlogo img {
	width: 400px;
	margin-left: 7px;
        margin-top: -3px;
}
    

    .menu, .white-menu{
 padding-top: 8px;
    }
    
    /* -------------------------*/   
    
.menu {
     width: inherit;
    position: relative;
    background-color: rgba(74,79,81,0.55);
     /* background-color: rgba(255, 255, 255, 0.15);*/
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: auto;
    margin-right: auto;
}
    
    /*menu has its class swapped by 'is on screen.js' so for colour changes only*/
    
.white-menu {
	
	background-color: rgba(255,255,255,1);

}
    .menu li a, .white-menu li a {
	float: left;
	display: block;
	padding: 0px 10px 9px 10px;
	text-decoration: none;
	color: white;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

nav li {
	display: inline-block;
}
nav li:first-child {
	border-left: none;
}
nav li:last-child {
	border-right: none;
}



nav ul.menu li:first-child a {
}
/*ul.sub-menu li:first-child a {
	
	}*/

.menu li a:visited {
	color: white;
    
}
    
    .white-menu li a {
	color: #e41e33;
}
.white-menu li a:visited {
	color: #e41e33;
}

/* MAIN MENU NORMAL STATE - DROP SHADOW WITH MORE OPACITY */
.menu li a,
.white-menu li a {
	float: left;
	display: inline-block;
	padding: 0px 8px 9px 9px;
	color: #fff;

	text-align: center;
	
	border-radius: 4px;
	text-shadow: 0 0 16px rgba(228, 228, 228, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

/* MAIN MENU HOVER STATE - STRONGER GLOW ONLY, NO SHADOW */
.menu li a:hover,
.white-menu li a:hover {
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-shadow: 0 0 16px rgba(228, 228, 228, 1);
	box-shadow: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

/* ARTIST SUB-NAV HOVER STATE - GREY DEFAULT, RED ON HOVER */
#artist-sub-nav a {
	color: #4a4f51;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}

#artist-sub-nav a:hover {
	color: #e41e33;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
    
    
    
.wide-text-columns {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
	-moz-column-count: 2; /* Firefox */
	column-count: 2;
	-webkit-column-gap: 40px; /* Chrome, Safari, Opera */
	-moz-column-gap: 40px; /* Firefox */
	column-gap: 40px;
	/*-webkit-column-rule: 1px solid rgba(255,255,255,0.20); /* Chrome, Safari, Opera */
	/*-moz-column-rule: 1px solid rgba(255,255,255,0.20); /* Firefox */
	/*column-rule: 1px solid rgba(255,255,255,0.20);*/
}
    .wide-text-columns div{
    -webkit-column-break-inside: avoid;
    }
    
    .figure-right {
	position: static;
	width: 28%;
	float: right;
	margin-left: 2%;
}
    
.main-text a{
    color: #000000;
    font-weight: 500;
    text-decoration: underline;
}

.main-text a:hover{
    color: #e41e33;
    font-weight: 500;
    text-decoration: none;
    }
    
    .staff-flex {
        display: block;

    }
    
    
    .staff-flex figure{
       float:left;
        margin-right: 15px;
        width: 15%;
    }
    
     .staff-flex img{
       width: 100%;
    }
     
    .staff-flex .call-to-action-link {
        float: left;
        margin-top: 15px;
    }
    
    .staff-flex .clear {
    margin-bottom: 15px;
    }
    
     .staff-flex .no-image {
    margin-bottom: 30px;
         clear: both;
    }
    
    .staff-flex .minor-heading {
        border:none;
        padding-left: 0px;
    }
    
   
}
    
	
@media screen and (max-width: 1126px) and (min-width: 767px) {
#semi-logo-container{
	display: none;
    position: relative;
    right: 0;
}
	.left {
	text-align: left;
		float:left;
}
    .menu li a, .white-menu li a{
        padding: 0px 4px 9px 5px;
    }
    
    #top_extras .icon-text-hide {
        display: none;
    }
    
     #top_extras{
        right: 0px;
    }
  
    
    }