
/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------------------------ Primary style ----------------------------------------------------------------------- */
/*----------------------------------------------------------------------------------------------------------------------------------------------------*/

html * {-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}

/* makes sure that div sizings include the padding in the total width*/
*, *:after, *:before {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}

/*sets basic parameters like font size, color etc*/
body {font-size: 16px; font-family: 'Catamaran';color: #fff;margin: 0 auto; background-color: #E1E4E5;}

/* Default text colours */
a {text-decoration: none}
a:hover{text-decoration: underline} 

		  
/* ------ Fonts & Sizes ------------ */
h1		{font-size: 4em; color: #ffffff; padding: 0; line-height: 1; font-weight: bold; font-variant: small-caps}
h2		{font-size: 2em; color: #ffffff; padding: 0; line-height: 1; font-weight: normal}
a 		{font-size: 1em; color: #000000; padding: 0; line-height: 1}

p 		{font-size: 1em; color: #000000; padding: 0; padding-top: 10px; line-height: 1}
p.foot  {font-size: 1em; color: #B0B0B0 ; padding: 25px; border-top: 1px solid #A8A8A8;}
p:link 	{text-decoration: none }		  
p:visited {text-decoration: none }		  

@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) {
	p{font-size: 1.5em}
	h2{font-size: 3em}
	}








/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------- Main Classes -------------------------------------------------------------- */
/*----------------------------------------------------------------------------------------------------------------------------------------------------*/

.Content 			{max-width:1800px;	padding: 10px;	margin:0 auto; 	text-align:left; 	background-color: #E1E4E5; padding-top: 6vh;}
.ContentFW 			{width: 100%;		padding: 0px;	margin:0 auto; 	text-align:left;	background-color: #E1E4E5;}
.ContentFWSVG 			{width: 100%;		padding: 0px;	margin:0 auto; 	text-align:left;	background-color: #ffffff;}

.toptext 			{max-width: 1000px;	padding: 50px;	margin-bottom: 	50px;	text-align: left;		}	
.toptext h2 		{color: #222222}	




#mobile-indicator {display: none;}
#landscape-indicator {display: none;}
#tablet-indicator {display: none;}
#desktop-indicator {display: none;}



/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------------------------ PHOTO GALLERY LAYOUT ----------------------------------------------------------- */
/*-------------------------------------------------------------------- AND CRAZY COLUMNS ------------------------------------------------------------ */
/*----------------------------------------------------------------------------------------------------------------------------------------------------*/

.photogallery {position: relative; overflow: hidden}
#lightgallery {padding: 5vw}

#photos {padding-top: 3em;line-height: 0;
   -webkit-column-count: 2;-webkit-column-gap:   40px;
   -moz-column-count:    2;-moz-column-gap:      40px;
   column-count:         2;column-gap:           40px;
}
  
#photos img {width: 100% !important;height: auto !important;margin-top: 20px;margin-bottom: 20px;}
#photos div {width: 100% !important;height: auto !important;overflow:hidden;}

@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) { 
  #lightgallery {padding: 2vw}
  
  #photos {
	-moz-column-gap: 1vw;-webkit-column-gap: 1vw;column-gap: 1vw;
	-moz-column-count: 1;-webkit-column-count: 1 ;column-count: 1;
	
  }
  
  #photos img {min-width: auto;width: 100%;margin-top: 1vw;margin-bottom: 1vw;}
}




/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ----------------------------------------------------------- Header / Hero Image ------------------------------------------------------------------ */
/*----------------------------------------------------------------------------------------------------------------------------------------------------*/

/*Container for Hero image at top of page*/
.Header-Hero {
	position: relative;
	text-align: center;
	/*margin-bottom: 10vh;*/
	box-shadow: 0 2vh 4vh rgba(0, 0, 0, 0.5);
	max-height: 100%;
	overflow: hidden;
}
.Header-Hero img{
	width: 100%;
}

/*centered text*/
.HeaderText-Center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-bottom: 1px solid #ffffff;
	border-top: 1px solid #ffffff;
}

.headercovercontainer{width: 100%;height: 90px;margin: 0 auto}


.nextbuttoncontainer{position: absolute;bottom: 0;left: 50%;min-width: 100%;line-height: 2em;}
.nextbutton{position: relative;left: -50%;background: #fff;opacity: 0.4;margin-top: 20px;min-width: 100%;}

@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) {
	.headercovercontainer{height: 120px}
	.nextbuttoncontainer{visibility:hidden;}
	.Header-Hero{margin-bottom: 2vh;}
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------- COLLECTIONS PAGE -------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------------*/

.collection	{position: relative;text-align: center;float: middle; padding: 50px;}	
.collection.first{padding-top: 100px;}
.collection.last{padding-bottom: 100px;}
.collection.dark 	{background: #13121b}
.collection.light 	{background: #ffffff}
.darkimg 	{width: 70%; border: 25px solid #ffffff; background: #ffffff}
.lightimg 	{width: 70%; border: 25px solid #13121b; background: #13121b}
.collection_text {position: absolute;top: 50%; left: 50%;transform: translate(-50%, -50%); padding: 15px; width: calc(70% - 50px - 70px); background-color: rgba(0,0,0,0.5)}

@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) {
.collection {width: 100%; padding-right: 0px; padding-left: 0px; padding-top: 25px; padding-bottom: 25px;}
.collection.first{padding-top: 50px;}
.collection.last{padding-bottom: 50px;}
.collection.dark 	{background: #ffffff}
.collection.light 	{background: #ffffff}
.collection img {width: 100%;}
.collection_text {width: calc(100% - 50px - 70px)}
.darkimg {border: none}
.lightimg {border: none}
.collection_text {width: 100%}
}



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

.ContentHome 	{
	text-align:center;
	background-color: #E1E4E5;
	padding-left: 5%;
	padding-right: 5%;
	padding-top: 75px;
	padding-bottom: 75px;
	
	vertical-align: middle;
	
	min-height: 100%;
	
}

.homeGrid {
	display: grid;
	grid-template-columns: 50% 50%;
	/*border: 1px solid #000;*/
	box-shadow: 0 1vh 2vh rgba(0, 0, 0, 0.5);
}

@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) {
	.homeGrid 		{grid-template-columns: 100%;}
	.ContentHome 	{padding-left: 0%;padding-right: 0%; padding-top: 0;}
	}

.homeGridCell {
	position: relative; 	
}



.homeimg {width: 100%; border-width: 50px; border-style: solid}
.homeimg.right 	{border-color: #ffffff; background: #ffffff}
.homeimg.left 	{border-color: #13121b; background: #13121b}



.home_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 15px; 
	width: calc(100% - 100px); 
	background-color: rgba(0,0,0,0.5);
	text-align: center;
	}



/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------- ABOUT PAGE -------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------------------------------------------------------------------*/
.ContentFW.aboutpage {padding-top: 90px;}

.about_textcell {position: relative; 	background: #ffffff; padding: 5%; display: flex;justify-content: center;align-items: center;}
.about_textcell h2 {color: #222222;}
.about_textcell a {text-decoration: underline}

.about_imgcell	{position: relative;text-align: center;float: middle; padding: 40px;background: #13121b;}	
.about_imgcell	img {width: 90%;border: 25px solid #ffffff; background: #ffffff}	



/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------DRAWINGS GALLERY-----------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------------------------*/

.chart 	{width: 100%;}
.chart img {width: 100%;}
.chartoverlay {position: absolute; bottom: 95%; left: 5%; right: 0; overflow: hidden; width: 90%; height:0; transition: .5s;}

.svgcontainer{margin: auto;margin-top: 10px;width: 100%;height: 1200px;}
.chartSVG {	height: 1500px;	width: 100%;}
.chartSVG_hover{height: 100%;width: 100%;}


/*PHONE*/
@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) { 
#mobile-indicator {display: block;}
.chartandtext 	{width: 100%; resize: horizontal;position: relative;padding: 5px;font-size: 1em; margin: 5px;}
.photogallery 	{width: 100%}
}

/*PHONE*/
@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) and (orientation: landscape) { 
#mobile-indicator {display: block;}
#landscape-indicator {display: block;}
}


/*IPAD*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)  {
#tablet-indicator {display: block;}	
.chartandtext 	{width: 49%;display: inline-block; resize: horizontal;position: relative;padding: 5px;font-size: 1em;}
.photogallery 	{height: 0; width: 49%; padding-bottom: 49%; display: inline-block; margin: 0px;}
.svgcontainer{	margin: auto; margin-top: 10px; width: 100%;height: 1000px;}
.chartSVG {	height: 1000px;	width: 100%;}
}


/*DESKTOP*/
@media only screen and (min-width: 1000px){
#desktop-indicator {display: block;}	
.chartandtext 	{width: 33%; display: inline-block; resize: horizontal;	position: relative;	padding: 5px;	font-size: 0.8em;}
.Photogallery 	{height: 0; width: 33%; padding-bottom: 33%; display: inline-block; margin: 0px; border: 1px solid #000;}

.svgcontainer	{margin: auto; margin-top: 10px;width: 100%;height: 1000px;}

.chartSVG {	height: 1000px;	width: 100%;}
.svgcontainer_span{	margin: auto;margin-top: 10px;width: 100%;height: 500px;}
.chartSVG_span{	height: 1800px;	width: 100%;}
.chart:hover .chartoverlay { bottom: 5%; height: 90%;}
}






/*----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------- SVG PAGE ---------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------------------------------------------------*/

.SVGInput_all {padding: 0; width: 100%;text-align: center;}	

.SVGInput_Section {display: inline-block; margin: 0 auto;padding: 0 auto;}
@media only screen and (min-device-width : 375px) and (max-device-width : 812px) and (-webkit-device-pixel-ratio : 3) {.SVGInput_Section {width=100%;}}

.SVGInputWithLabel {display: inline-block;width: 70px;text-align: left;}	
.SVGInputBox{width: 70px;height: 40px;text-align: left;padding-left: 5px;background-color: #ffffff;border: 1px solid #cecece;border-radius: 3px;}	
.SVGInputBox::-webkit-outer-spin-button,.SVGInputBox::-webkit-inner-spin-button { height:30px; margin: 0;}

.svgcontainer{margin: auto;margin-top: 2px;width: 100%;/*height: 70%;*/border: 1px solid #dddddd;mix-blend-mode: multiply;}
.chartSVG {height: 1000px;width: 100%;}


/*-----------BUTTONS------------*/
.jscolor{width: 70px;height: 40px;text-align: center;background-color: #ffffff;border: 1px solid #cecece;border-radius: 3px;color: #828282;font-weight: bold;}

.SVGButton{padding-right: 20px;padding-left: 20px;padding-top: 8px;padding-bottom: 8px;border-radius: 3px;color: #ffffff;width: 150px;height: 40px;text-align: center;
	background-color: #5990CC;margin-top: 0px;margin-bottom: 0px;	border: 1px solid #cecece;	transition: background-color .3s}

.SVGButton:hover, .SVGButton:focus{background-color: #416995;transition: background-color .3s}	
.SVGButton:active{background-color: #95B8DE;border: 0px;}		
.narrow{width: 40px;padding-left: 1px;padding-right: 1px;}
.narrow-ish{width: 50px;padding-left: 1px;padding-right: 1px;}
.SVGInputWithArrows{display: inline-block; vertical-align: bottom;}
.leftright{padding: 0px;width: 20px;}	
.updown{display: block;padding: 0px;height: 20px;width: 30px;vertical-align: center;}	
.inside{transform: translateX(-20px);width: 20px;}








