/*
 *---------------------------------------------------------------
 * LAYOUT & UTILITIES
 *---------------------------------------------------------------
 *
 */

@import url('https://fonts.googleapis.com/css?family=Itim');

@import url("https://use.typekit.net/grt8gha.css");

.resp_wid {
	background: red;
	padding:2px 3px;
	bottom:5px;
	left: 5px;
	display: block;
	z-index: 999999;
	position: fixed;
}

.resp_wid:after {
	content: " mobile ->";
}

html {
	@import url('https://fonts.googleapis.com/css?family=Patrick+Hand');
	font-family: 'Patrick Hand', cursive, serif;
    box-sizing: border-box;
    height: 100%;
    font-size: 100%;
/* 	background: #d64c4c; */
}

body {
	font-family: 'Patrick Hand', cursive, serif;
    /*font-size: 0.75em;*/ /*12px*/
    font-size: 0.875em; /*14px*/
    /*font-size: 1em;*/ /*16px*/
    color: #1a321a;
    -webkit-font-smoothing: antialiased;
    height:100%;
    width: 100%;
}

::selection {
    background-color:#333;
    color:#fff;
}

*, *:before, *:after {
    box-sizing: inherit;
}

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

.clear:before, .clear:after {
    content:'';
    display:table;
}

.clear:after {
    clear:both;
}

.fl {
    float:left;
}

.fr {
    float:right;
}

.w_90 {
    width:90%;
}

.w_80 {
    width:80%;
}

.w_70 {
    width:70%;
}

.w_60 {
    width:60%;
}

.w_50, .half {
    width:50%;
}

.w_40 {
    width:40%;
}

.w_33_3, .third {
    width:33.3333333%;
}

.w_30 {
    width:30%;
}

.w_25, .quarter {
    width:25%;
}

.w_20, .fifth {
    width:20%;
}

.w_16_6, .sixth {
    width:16.6666666%;
}

.w_12_5, .eighth {
    width:12.5%;
}

.w_10, .tenth {
    width:10%;
}

.holding {
	margin: 0 auto;
}

/*
 *---------------------------------------------------------------
 * SITE LINKS
 *---------------------------------------------------------------
 *
 */

a:link {
    text-decoration: none;
    color:#2c82c9;
}

a:visited {
    text-decoration: none;
    color:#2c82c9;
}

a:hover {
    color: #d64c4c;
}

a:active {
/*     text-decoration: underline; */
}

/* Stop iPhone changing numbered links to telephone numbers */

a[href^=tel] {
    text-decoration:inherit;
    color: inherit;
}

p {
	font-family: 'Patrick Hand', cursive, serif;
	font-size: 1.5em;
}

.pages_block ul li {
	font-size: 1.5em;
}

.pages_block ul {
	padding: 0 20px;
}

/*
 *---------------------------------------------------------------
 * TEXT COLOURS
 *---------------------------------------------------------------
 *
 */

h1 {
    color:#2c82c9;
}

h2 {
    color: #63b5f6;
}

h3 {
    color: #9475cd;
}

.pages_block h3 {
	color: #2c82c9;
	font-size: 1.5em;
	margin-bottom: 0px;
}

h4 {
    color: red;
}

h5 {
	font-family: 'Itim', cursive, serif;
    margin: 0;
    font-weight: normal;
    font-size: 3.0em;
    color: #f44336;
}

h6 {
	font-family: 'Itim', cursive, serif;
    color: #fac02c;
}

.c_1 {
    color: #000;
}

.c_2 {
    color: #fff;
}

.c_3 {
    color:#2c82c9;
}

.c_4 {
    color: #bb1cc9;
}

.c_5 {
    color: #13c975;
}

.c_6 {
    color: #c92a12;
}

/*
 *---------------------------------------------------------------
 * BACKGROUND COLOURS
 *---------------------------------------------------------------
 *
 */

.bg_c_1 {
    background-color: #000;
}

.bg_c_2 {
    background-color: #fff;
}

.bg_c_3 {
    background-color: #2c82c9;
}

.bg_c_4 {
    background-color: #bb1cc9;
}

.bg_c_5 {
    background-color: #13c975;
}

.bg_c_6 {
    background-color: #c92a12;
}

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

fieldset {
    border: none;
    padding: 0;
}

label {
    padding: 0.5em 0;
    display: inline-block;
}

input, select, textarea {
    border:1px solid #d1d1d1;
    width:100%;
    padding: 0.5em;
    outline: none;
    transition: box-shadow 0.30s ease-in-out;
}

textarea {
    resize: none;
}

select {
    background: transparent url('../assets/down_arrow.svg') no-repeat right;
    background-size: contain;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 2px rgba(81, 203, 238, 1);
}

input[type="submit"] {
    width:20%;
    margin-top: 0.2em;
    background-color:#2c82c9;
    color: #fff;
    transition: background-color 0.8s ease;
}

input[type="submit"]:hover {
    background-color: #bb1cc9;
}

::-webkit-input-placeholder {
    color: #d1d1d1;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

::-moz-placeholder {
    color: #d1d1d1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent;
}

:-ms-input-placeholder {
    color: #d1d1d1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.error input, .error textarea, .error select{
	border: #e2c147 solid 1px;
	background-color: #fbf1cf;
	color: #e2c147;
}



.error input:focus {
	color: #c39a02;
}

.error  input[type="checkbox"]{
	border: #e2c147 solid 1px;
	background-color: #fbf1cf;
	color: black;
}



input[type="checkbox"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background: #FFF;
  height: 30px;
  width: 30px;
  border: 1px solid lightgray;
}

input[type="checkbox"]:checked {
  background: #2aa1c0;
}

input[type="checkbox"]:hover {
  filter: brightness(90%);
}

input[type="checkbox"]:disabled {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

input[type="checkbox"]:after {
  content: '';
  position: relative;
  left: 40%;
  top: 20%;
  width: 15%;
  height: 40%;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}

input[type="checkbox"]:checked:after {
  display: block;
}

input[type="checkbox"]:disabled:after {
  border-color: #7b7b7b;
}

/*
 *---------------------------------------------------------------
 * TABLES
 *---------------------------------------------------------------
 *
 */

table {
    padding:0.4em;
}

tr:nth-child(odd) {
    background: #f9f9f9;
}

th, td {
    border: 1px solid #d1d1d1;
    padding:0.6em;
    vertical-align: top;
}

/*
 *---------------------------------------------------------------
 * LIVE SEARCH
 *---------------------------------------------------------------
 *
 */

.search_box {
    background-color: #666;
    width:100%;
    text-align: center;
    display: none;
    height:54px;
    opacity: 0.8;
    position: fixed;
    z-index: 999;
}

.search_box input {
    width:60%;
    margin: 10px auto;
    padding: 6px;
}

.close_search {
    float:right;
    padding:10px 20px;
    margin: 2px;
    cursor: pointer;
}

.live_search {
    background-color: #666;
    left: -9999px;
    min-height: auto;
    position: relative;
    top:54px;
    z-index: 999;
}

.live_search.active {
    background-color: #666;
    min-height: 100%;
    left: auto;
    opacity: 0.9;
}

/*
 *---------------------------------------------------------------
 * HEADER
 *---------------------------------------------------------------
 *
 */
 
.site-header {
	width: 100%;
	background: #457ff5;
	float: left;
	display: block;
	clear: both;
	height: 100%;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.logo-hold {
	height: 70px;
	width: 100%;
	float: left;
}

a.logo {
	background: url('../assets/logo.png') no-repeat;
	background-size: contain;
	background-position: center center;
	width: 100%;
	height: 100%;
	display: block;
	color: transparent;
	font-size: 0;
}

.pad {
	padding: 0 40px; 
}

/*
 *---------------------------------------------------------------
 * Main Menu
 *---------------------------------------------------------------
 *
 */

.main_menu {
	background: #2e5271;
	list-style: none;
	display: none;
	margin: 0;
	padding: 0 10px;
	float: left;
	width: 100%;
}

.main_menu li {
	float: left;
	width: 100%;
}

.main_menu li a {
	font-family: 'Itim', cursive, serif;
	border-bottom: 1px solid #2c82c9;
	text-transform: uppercase;
	text-decoration: none;
	padding: 20px 10px;
	font-size: 0.9em;
	display: block;
	color: #FFFFFF;
}

.main_menu li:last-child a {
	border-bottom: 0px;
}

.main_menu li a:hover {
	color: #63b5f6;
	border-color: #FFFFFF;
}

.main_menu li a.rsp_nav_sub {
	display: none;
}

.main_menu.activate_menu, .activate_menu, li.activate_menu span.mn_sub_nav {
	display: block;
}

.rsp_nav {
	position: absolute;
	z-index: 9;
    display: block;
    height: 70px;
    width: 70px;
    right: 0px;
}

.rsp_nav span {
	background: #FFFFFF;
	width: 50px;
	height: 1px;
	display: block;
	margin: 10px;
}

.rsp_nav span:first-child {
	margin-top: 22px;
}

.rsp_nav:hover span {
	background: #72cbff;
}

.content {
	background: #FFFFFF;
	float: left;
	width: 100%;
}

/*
 *---------------------------------------------------------------
 * About Images Art Content
 *---------------------------------------------------------------
 *
 */
 
.aboutimages {
	margin-bottom: 40px;
	margin-top: 40px;
}

.aboutimages p, .aboutimages h1 {
	color: #d64c4c;
}

.aboutimages p:last-child {
	margin-bottom: 0px;
}

.aboutimages h1 {
	font-family: 'Itim', cursive, serif;
	font-size: 3.3em;
	margin: 0;
}

.aboutimages h2 {
	font-family: 'Itim', cursive, serif;
	color: #2c82c9;
	font-size: 2em;
	margin: 0;
}

/*
 *---------------------------------------------------------------
 * Footer Content
 *---------------------------------------------------------------
 *
 */

footer {
	background: #d64c4c;
	width: 100%;
	float: left;
	display: block;
}

.footer_content {
	line-height: 20px;
	min-height: 75px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	background: #d64c4c;
	color: #FFFFFF;
	padding: 20px 40px;;
}

.footer_content img {
	margin-top: 20px;
}

footer ul.foot_menu {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 48%;
	float: left;
}

.footer_address {
	width: 48%;
	float: left;
	margin-bottom: 30px;
}

footer ul.foot_menu li a {
	color: #FFFFFF;
	font-size: 1.2em;
}

.footer_content .copy {
	display: none;
}

/*
 *---------------------------------------------------------------
 * Putting On Your School Art Exibition!
 *---------------------------------------------------------------
 *
 */

.putting_on_your_exibition {
	background: url('../assets/blurred-backgroud.jpg') center center;
	background-size: cover;
	min-height: 200px;
	width: 100%;
	float: left;
	display: block;
}

.putting_on_your_exibition .holding {
	text-align: center;
	width: 80%;
}

.putting_on_your_exibition h6 {
	font-size: 2em;
	margin: 40px 0;
}

.putting_on_your_exibition .holding img {
	margin: 0 auto;
	display: block;
}

.putting_on_your_exibition .holding p {
	margin: 2em auto;
	width: 80%;
	color: #FFFFFF;
}

/*
 *---------------------------------------------------------------
 * Social 
 *---------------------------------------------------------------
 *
 */
 
 .connect.left_connect {
	 display: none;
 }

.connect {
	width: 50%;
	max-width: 250px;
	margin: 0 auto;
	display: block;}

.connect span {
	width: 100%;
	text-align: center;
	clear: both;
	display: block;
	margin: 20px 0;
	font-size: 1.1em;
	color: #FFF;
	float: left;
}

.connect a {
	width: 33.3%;
	float: left;
}

.connect a img {
	margin: 0 auto;
}

/*
 *---------------------------------------------------------------
 * SPLAT POINTS
 *---------------------------------------------------------------
 *
 */

.bullet_splats {
	font-size: 1.6em;
	width: 100%;
	margin-bottom: 20px;
	float: left;
	min-height: 66px;
}

.bullet_splats i {
	width: 100%;
	box-sizing: border-box;
	padding-right: 20px;
	min-height: 66px;
	padding-left: 70px;
	font-style: normal;
	display: block;
	clear: both;
	float: left;
}

.bullet_splats i.green {
	background: url('../assets/1.png') no-repeat;
	color: #7bb342;
}

.bullet_splats i.yellow {
	background: url('../assets/2.png') no-repeat;
	color: #fac02c;
}

.bullet_splats i.red {
	background: url('../assets/3.png') no-repeat;
	color: #f44336;
}

.bullet_splats i.purple {
	background: url('../assets/4.png') no-repeat;
	color: #9475cd;
}

.bullet_splats i.blue {
	background: url('../assets/5.png') no-repeat;
	color: #63b5f6;
}

div.fl.w_40, div.fr.w_40 {
	float: none;
	width: auto;
}

.we-help-schools-to {
	padding: 20px 0;
	width: 100%;
	max-width: 870px;
	display: block;
	margin: 0 auto;
	clear: both;
}

.we-help-schools-to h5 {
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 2em;
}

/*
 *---------------------------------------------------------------
 * Exhibitions Stories
 *---------------------------------------------------------------
 *
 */

.exhibitionstories {
	background: #9475cd;
	float: left;
	width: 100%;
	padding: 0 40px 20px 40px;
	display: block;
}

.exhibitionstories h5 {
	text-align: center;
	margin-top: 40px;
	color: #FFF;
	font-size: 2.2em;
}

.exhibitionstories p {
	text-align: center;
	color: #FFF;
}

ul.glide__slides {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

/*
 *---------------------------------------------------------------
 * Welcome To Images
 *---------------------------------------------------------------
 *
 */

.welcomeImages {
	background: url('../assets/background.jpg') no-repeat center center;
	background-size: cover;
	text-align: center;
	float: left;
	display: block;
	width: 100%;
	height: 300px;
	position: relative;
}

.welcomeImages.frames {
	background: url('../assets/frame-bg.jpg') no-repeat center center;
	background-size: cover;
	height: auto;
}

.welcomeImages.frames .outer-container {
	background: rgba(24, 24, 24, 0.3);
	position: relative;
	content: 'test';
}

.welcomeImages h1 {
	font-family: 'Itim', cursive, serif;
    text-transform: uppercase;
	text-align: center;
	font-size: 1.9em;
	color: #FFFFFF;
	margin: 0;
}

.welcomeImages h1 br {
	display: none;
}

.welcomeImages h2 {
	font-family: 'Itim', cursive, serif;
    text-transform: uppercase;
	text-align: center;
	font-size: 1.6em;
	color: #fac02c;
	margin: 0;
}

.welcomeImages p {
	text-align: center;
	color: #FFFFFF;
	font-size: 1.1em;
	margin: 0;
}

.outer-container {
    position : absolute;
    display: table;
    width: 100%;
    height: 100%;
    margin-top: 60px;
}

.inner-container {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.centered-content {
    display: inline-block;
    text-align: left;
    padding : 20px;
}

.welcomeImages .centered-content {
	padding: 180px 20px 60px 20px;
}

img.book-today {
	margin: 20px auto 0 auto;
	max-width: 245px;
	clear: both;
	width: 20%;
	display: none;
	margin-bottom: -40px;
}

/*
 *---------------------------------------------------------------
 * Exhibitions Stories -Gallery Names
 *---------------------------------------------------------------
 *
 */

h2.responsivGallery-name {
	margin: 0;
	font-size: 1.8em;
}

h3.responsivGallery-position {
	-webkit-font-smoothing: antialiased;
	font-weight: normal;
	font-family: 'Patrick Hand', cursive, serif;
	font-size: 1.5em;
	padding: 0;
	margin: 0px 0 14px 0;
}

/*
 *---------------------------------------------------------------
 * Internal Page Banner
 *---------------------------------------------------------------
 *
 */

.page_banner {
	background: #efefef url('../assets/bg-1.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 100px;
	float: left;
}

/*
 *---------------------------------------------------------------
 * Page h1 Styling
 *---------------------------------------------------------------
 *
 */

.pages_block h1 {
	padding-bottom: 20px;
	border-bottom: 1px solid #efefef;
}
	
.home .pages_block h1 {
	padding-bottom: 0px;
	border-bottom: 0px;
}



.contact_us {
		background-image: url('../assets/splat-5.png'), url('../assets/splat-6.png');
		background-position: right center, left center;
		background-repeat: no-repeat;
		
	background-color: #7bb342;
		text-align: center;
		display: block;
		width: 100%;
		float: left;
		color: #FFFFFF;
		padding: 20px 0;
}

.contact_us h2 {
	color: #FFFFFF;
	font-size: 1.8em;
}

.contact_us a, .x {
	background-color: #2c82c9;
	font-family: 'Patrick Hand', cursive, serif;
	transition: background-color 0.8s ease;
	cursor: pointer;
	border-radius: 3px;
	font-size: 1.5em;
	width: 150px;
	border: 0px;
	display: block;
	margin: 10px auto 20px auto;
	padding: 14px 0;
/* 	float: left; */
/* 	width: 100%; */
	color: #FFFFFF;
}

.x {
   background-color: #fac02c !important;
   text-align: center;
	color:white;
}

.contact_us a:hover {
	background: #d64c4c;
}

/*
 *---------------------------------------------------------------
 * Contact Us Form
 *---------------------------------------------------------------
 *
 */

.contacts {
	float: left;
	width: 100%;
}

.contacts label {
	font-size: 1.5em;
	margin: 10px 0;
	padding: 0;
}

.contacts .w_70 {
	float: left;
	width: 100%;
}

.contacts input.submit_field {
	font-family: 'Patrick Hand', cursive, serif;
	cursor: pointer;
	border-radius: 3px;
	font-size: 1.5em;
	max-width: 20%;
	border: 0px;
	margin: 10px 0 20px 0;
	float: left;
	width: 100%;
}

.contacts input.submit_field:hover {
	background: #d64c4c;
}

aside.w_30.fr {
	width: 100%;
	font-size: 1.4em;
	margin: 5px 0 10px 0;
}

.contacts textarea {
	min-height: 200px;
}








.aboutgraph, .post_content {
	background: #FFFFFF;
}

.top-nav form select {
	background: url('../assets/arrow-down.png') no-repeat;
	background-position: right 10px center;
	box-sizing: border-box;
	border-radius: 4px;
	border: 2px solid #2c82c9;
	font-family: 'Patrick Hand', cursive, serif;
	font-size: 1.5em;
	font-weight: 600;
	color: #2c82c9;
}

.top-nav select::-ms-expand {
    display: none;
}

.cc-color-override-530831885 .cc-btn {
    transition: background-color 0.8s ease;
	background-color: #2c82c9!important;
	border-radius: 4px;
}

.cc-color-override-530831885 .cc-btn:hover {
	background-color: #d64c4c!important;
}

















.gallery {
/* 	outline: red solid 1px; */
	box-sizing: border-box;
/* 	padding: 20px; */
	width: 100%;

}

.gallery_content {
	margin-bottom: 20px;
	width: 100%;
	display:block;
}

.gallery_content img {
	box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
	border: solid #FFF 4px;
	background: #FFFFFF;
	border-radius: 5px;
	margin: 0 auto;
}

.gallery_content span {
	font-size: 1.5em;
	margin-top: 20px;
	text-align: center;
	display: block;
	width: 100%;
}

.lb-data .lb-caption, .backButton.remove {
	display: none !important;
}


a.backButton {
	background: #2c82c9;
	color: #FFF;
	padding: 5px 10px;
	border-radius: 4px;
	margin-bottom: 20px;
	display: block;
	float: left;
	clear: both;
}

a.backButton:hover {
	background: #d64c4c;
}

.fancybox-caption {
	font-size: 1.4em !important;
	max-width: 1024px;
	margin: 0 auto;
}

.white_outer {
	box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
	background: #FFF;
	border-radius: 5px;
	max-width: 900px;
	margin: 0 auto;
}

.white_box {
	position: relative;
	text-align: left;
	float: left;
}

.white_box:after {
	position: absolute;
	background: url('../assets/splt.png') no-repeat center center;
	background-size: contain;
	height: 50px;
	width: 60px;
	content: '';
	display: none;
	right: -25px;
	top: -20px;
}


.white_box h4  {
	font-family: 'Itim', cursive, serif;
	font-size: 2em;
	margin: 0 0;
	color: #d64c4c;
	margin-bottom: 15px;
	
}

.white_box .white_padd {
	padding: 20px 30px;
}

.white_box .white_padd div {
	min-height: 420px;	
	position: relative;
	padding: 10px  0;
	width: 100%;
}

.welcomeImages .white_box p {
	text-align: left;
	font-size: 1.6em;
	color: #2c82c9;
}

.welcomeImages .white_box ul {
	padding: 20px 0 0 20px;
	margin: 0;
	font-size: 1.17em;
}

.welcomeImages .white_box a {
	position: absolute;
	background-color: #2c82c9;
	font-family: 'Patrick Hand', cursive, serif;
	transition: background-color 0.8s ease;
	text-align: center;
	cursor: pointer;
	border-radius: 3px;
	font-size: 1.5em;
	width: 100%;
	border: 0px;
	display: block;
	left: 0;
	color: #FFFFFF;
	bottom: 0;
	padding: 10px 0;
	margin: 0 auto;

}

.welcomeImages .white_box a:hover {
	background: #d64c4c;
}

.white_outer .bg_h4 {
	width: 100%;
	text-align: center;
	padding: 0 20px 20px 20px;
}

.white_outer .bg_h4 h4 {
	font-family: 'Itim', cursive, serif;
	font-size: 2em;
	color: #d64c4c;
	margin: 0;
}

@media screen and (min-width: 37.500em) /* 	600px */ {
	
	.welcomeImages h1 {
	    font-size: 2.5em;
	}
	
	.welcomeImages h2 {
		font-size: 2em;
	}
	
	.welcomeImages p {
		font-size: 1.3em;
	}

	.we-help-schools-to h5 {
		text-align: left;
	}
	
	.gallery_container {
		box-sizing: border-box;
		padding: 10px ;
		width: 50%;
		float: left;
	}
	
}

@media screen and (min-width: 50.000em) /* 	800px */ {

	.resp_wid:after {
		content: " 800px ->";
	}
	
	.logo-hold {
		box-sizing: border-box;
		height: 100px;
		padding: 10px;
	}

	.site-header {
		width: 220px;
		min-height: 100% !important;
		position: fixed;
		top: 0px;
		z-index: 10;
	}
	
	.section-right {
		margin-left: 220px;
	}

	ul#menu_0_0.main_menu {
		display: block !important;
	}
	
	.main_menu {
		padding: 20px 20px 10px 20px;
		background: none;
	}
	
	a#rsp_width_960.rsp_nav {
		display: none;
	}
	
	.main_menu li {
		margin-bottom: 10px;
	}
	
	.main_menu li a {
		border-bottom: 0px;
		line-height: 1em;;
		padding: 5px 0 0 0;
		display: inline-table;
		width: 100%;
	}
	
	.connect.left_connect {
		float: left;
		padding: 0 20px;
		max-width: 100%;
		display: block;
		width: 100%;
	}
	
	.connect.left_connect img {
		width: 65%;
	}
 
	.welcomeImages, {
		background-position: top center;
		height: 600px;
	}
	
	 .welcomeImages.frames {
		 height: 800px;
	 }

	.welcomeImages.frames .outer-container {
		position: absolute;
	}
	
	.pre_content {
		position: relative;
	}
	
	img.book-today {
		margin-top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100px;
		position: absolute;
		margin-bottom: -50px;
	}
	
	.outer-container {
		margin-top: 170px;
	}
	
	.home .content {
		margin: 0 auto;
		width: 85%;
		float: none;
		max-width: 750px;
	}
	
	.aboutimages {
		margin-bottom: 0px;
	}
	
	img.book-today {
		width: 170px;
	}
	
	.aboutgraph .content .pad {
		margin: 0 0;
		padding: 0;
	}
	
	.aboutimages {
		background-image: url('../assets/two-a.png'), url('../assets/three-a.png');
		background-position: left center, right center ;
		background-repeat: no-repeat;
		background-size: 15% ;
		margin: 0 auto;
		padding:  20px 0;
		width: 100%;
	}
	
	.aboutimages h1 {
		text-align: center;
		font-size: 3.8em;
	}
	
	.aboutimages h2 {
		text-align: center;
		font-size: 2.4em;
	}
	
	.home .graphic_hold {
		width: 350px;
		margin: 40px auto;
		padding: 0;
	}
	
	.pages_block {
		padding: 40px 40px;
		max-width: 1150px;
		margin: 0 auto;
		width: 100%;
	}
	
	.pages_block {
		padding: 40px 40px;
	}
	
	.aboutimages p {
		text-align: justify;
	}
	
	.exhibitionstories {
		padding: 0 20px 20px 20px;
	}
	
	.exhibitionstories .graph {
		background-image: url('../assets/ex_st.png');
		background-position:  top center;
		background-repeat: no-repeat;
		background-size: 90%;
	}
	
	.exhibitionstories h5 {
		line-height: 35px;
		font-size: 1.9em;
	}

	.exhibitionstories h5 span {
		clear: both;
		display: block;
		color: #fac02c;
		font-size: 1.5em;
	}
	
	.centered-content {
		padding: 0px;
	}
	
	img.book-today {
		display: block;
		width: 15%;
	}
	
	footer ul.foot_menu {
		float: left;
		width: 30%;
	}
	
	footer ul.foot_menu li {
		margin-bottom: 10px;
	}
	
	.footer_address {
		line-height: 21px;
		float: left;
		width: 30%;
	}
	
	.footer_content img {
		float: right;
		width: 36%;
	}
	
	.connect {
		display: none;
	}
	
	.footer_content .copy {
		font-family: 'Itim', cursive, serif;
		font-weight: 600;
		border-top: 1px solid #FFF;
		font-size: 1.3em;
		margin-top: 20px;
		padding-top: 20px;
		width: 100%;
		display: block;
	}
	
	.page_banner {
		height: 200px;
	}
	
	.top {
	  opacity: 1;
	}
	
	.hideme {
	    opacity:0.3;
	}
	
	.gallery_container {
		width: 33.3%;
		float: left;
	}
	
	
	.welcomeImages h1 br {
		display: block;
	}


}

@media screen and (min-width: 56.250em) /* 	900px */ {
	
	.resp_wid:after {
		content: " 900px ->";
	}
	
	.home .content {
		width:600px;
	}
	
	.home .graphic_hold {
		margin: 75px auto;
	}
	
	.aboutimages h1 {
		font-size: 4em;
	}
	
	.aboutimages h2 {
		font-size: 2.5em;
	}

	.bullet_splats {
		float: left;
		width: 100%;
		min-height: 100px;
	}
	
	.we-help-schools-to h5 {
		font-size: 3.5em;
		margin: 0 0 40px 0;
	}
	
	div.fl.w_40 {
		float: left;
	}
	
	div.fr.w_40 {
		float: right;
	}
	
	div.fl.w_40, div.fr.w_40 {
		width: 45%;
	}
	
	.welcomeImages h1 {
		text-align: center;
	}
	
	.welcomeImages p {
		text-align: center;
	}
	
	.aboutimages {
		background-size: 20% ;
	}

	.page_banner {
		height: 300px;
	}
	
	.contacts .w_70 {
		width: 60%;
	}
	
	aside.w_30.fr {
		width: 35%;
		margin-top: 20px;
	}
	

	
}


@media screen and (min-width: 62.500em) /* 	1000px */ {
	
	.resp_wid:after {
		content: " 1000px ->";
	}
	
	.welcomeImages {
		height: 800px;
	}

	.welcomeImages h1 {
	    font-size: 3em;
	}
	
	.welcomeImages h2 {
		font-size: 2.4em;
	}
	
	.welcomeImages p {
		font-size: 1.6em;
	}
	
	.aboutgraph .content .pad {
		margin: 0 0;
	}
	
	.aboutimages {
		padding: 100px 0;
	}
	
	.responsiveGallery-wrapper{
		min-height: 300px;
	}
	
	.exhibitionstories {
		height: 550px;
	}
	
	img.book-today {
		display: block;
		width: 15%;
		margin-bottom: -100px;
	}
	
	.exhibitionstories .graph {
		background-size: auto;
	}
	
	.white_box div {
		width: 50%;
		float: left;
	}
	
	.white_box:after {
		display: block;
	}
	
	.white_box .white_padd div {
		min-height: 380px;	
	}
	
}

@media screen and (min-width: 68.750em) /* 	1100px */ {
	
	.we-help-schools-to {
		background: url('../assets/child.png') no-repeat bottom center;
		background-size: 65%;
	}
	
	div.fl.w_40, div.fr.w_40 {
		width: 30%;
	}
	
	.we-help-schools-to .pad {
		padding: 30px 20px;
	}
	
	.we-help-schools-to {
		background-position: bottom center;
		max-width: 1150px;
	}
	
	.welcomeImages p {
		font-size: 2.4em;
	}
	
	.resp_wid:after {
		content: " 1100px ->";
	}
	
	.putting_on_your_exibition .holding p {
		width: 50%;
	}
	
	.home .content {
		width: 850px;
	}
	
	.aboutimages {
		background-image: url('../assets/about-graph.png');
		background-position: center center;
		background-size: contain;
	}
	
	.home .graphic_hold {
		width: 425px;
	}
	
	.aboutimages h1 {
		font-size: 4.7em;
	}
	
	.aboutimages h2 {
		font-size: 3em;
	}
	
	.site-header {
		width: 340px;
	}
	
	.section-right {
		margin-left: 340px;
	}
	
	.logo-hold {
		max-width: 100%;
		height: 200px;
	}
	
	a.logo {
		background-size: 230px;
	}
	
	.main_menu {
		padding: 20px 50px 50px 50px;
	}
	
	.main_menu li {
		margin-bottom: 20px;
	}
	
	.main_menu li a {
		font-size: 130%;
	}
	
	.connect.left_connect {
		padding: 0 35px;
	}
	
	.connect span {
		font-size: 135%;
	}
	
	.welcomeImages h1 {
		font-size: 3.3em;
	}

	.welcomeImages h2 {
		font-size: 2.8em;
	}
	
	.exhibitionstories h5 {
		line-height: 40px;
		font-size: 2.7em;
		margin-bottom: 40px;
	}
	
	.exhibitionstories {
		height: 600px;
		position: relative;
	}
	
	.exhibitionstories p {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 40px;
	}
	
	.putting_on_your_exibition .holding {
		padding: 75px 0;
	}
	
	.putting_on_your_exibition h6 {
		font-size: 3em;
	}
	
	.footer_content {
		padding: 90px 40px ;
		max-width: 1150px;
	}
	
	footer ul.foot_menu, .footer_address {
		width: 20%;
	}
	
	.footer_address {
		font-size: 1.5em;
		line-height: 31px;
		margin-left: 30px;
	}
	
	footer ul.foot_menu li a {
		font-size: 1.5em;
	}
	
	.footer_content img {
		margin-top: 0px;
		max-width: 508px;
		width: 52%;
	}
	
	.bullet_splats {
		font-size: 1.8em;
		margin-bottom: 40px;
	}
	
	.bullet_splats.red {
		margin-bottom: 0px;
	}
	
	.responsiveGallery-wrapper{
		min-height: 400px;
	}
	
	.aboutgraph {
		background-image: url('../assets/splat-1.png'), url('../assets/splat-2.png');
		background-position: right top 100px, left bottom 100px;
		background-repeat: no-repeat;
	}
	
	.exhibitionstories {
		background-image: url('../assets/splat-3.png'), url('../assets/splat-4.png');
		background-position: right top 100px, left bottom 100px;
		background-repeat: no-repeat;
	}
	
}

@media screen and (min-width: 78.125em) /* 	1250px */  {
	
	.we-help-schools-to {
		padding: 100px 0;
		background-position: center bottom -100px;
	}
	
	.exhibitionstories {
		padding: 100px 20px;
		min-height: 0px;
		height: auto;
	}
	
/*
		.welcomeImages h1 {
		font-size: 4em;
	}
*/

	.welcomeImages h2 {
		font-size: 3.3em;
	}
	
}

/*
 *---------------------------------------------------------------
 * PRODUCTS SLIDESHOW JS PLUGIN
 *---------------------------------------------------------------
 *
 */

/*.slide_container {
    width:100%;
}

.slide_container .slide .featured_items {
    width:230px;
    height:420px;
    float:left;
    margin-left: 20px;
    text-align: center;
}*/

/*
 *---------------------------------------------------------------
 * RESPONSIVE WIDTH 400px OR LESS
 *---------------------------------------------------------------
 *
 * To adjust responsive width change the setting in database and
 * also below...
 *
 */

/*@media (max-width: 960px) {

    .main_menu {
        display: none;
    }

    .main_menu li {
        display: block;
        width: 100%;
    }

    .menu_link {
        width: 20px;
        position: absolute;
        top:0.5em;
        right: 1em;
        padding: 0.5em 1.5em;
        cursor: pointer;
        font-weight: bold;
    }

    .toggled {
        display: block;
    }

    .rsp_title, .rsp_nav, .rsp_nav_sub {
        display: block;
    }
}*/