/********************* 
TT V2 
**********************/

/* Universal Styles */
div#bg_white {
	background-color: rgba(255,255,255,1);
}

section#main_content {
	width: 85%;
	margin: 0 auto;
}

section.white_page {
	width: 100%;

	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.circle_container {
	/*
	Turn Off
	transition: top 0.5s linear;
	-webkit-transition: top 0.5s linear;
	-moz-transition: top 0.5s linear;
	-o-transition: top 0.5s linear;
	-ms-transition: top 0.5s linear;
	*/

	/*Turn On*/
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;

	border-radius: 1000px;
	-webkit-border-radius: 1000px;
	-moz-border-radius: 1000px;
	-o-border-radius: 1000px;
	-ms-border-radius: 1000px;
}

.blade {
	cursor: pointer;

	border-radius: 100%;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-o-border-radius: 100%;
	-ms-border-radius: 100%;

	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);

	/* Circle's Styles */
	position: absolute; 
	top: 50%;
	left: 50%;
}

.black_blade {
	width: 600px;
	height: 600px;

	border: 7px solid rgba(0,0,0,0);
	border-top: solid 7px rgba(0,0,0,0);
	border-bottom: solid 7px rgba(0,0,0,0);

	transition: background-color 0.5s linear, transform 0.5s linear;
	-webkit-transition: background-color 0.5s linear, -webkit-transform 0.5s linear;
	-moz-transition: background-color 0.5s linear, -moz-transform 0.5s linear;
	-o-transition: background-color 0.5s linear, -o-transform 0.5s linear;
	-ms-transition: background-color 0.5s linear, -ms-transform 0.5s linear;
}

.darkgrey_blade {
	width: 290px;
	height: 290px;

	border: 7px solid rgba(77, 77, 77, 0);
	border-left: solid 7px rgba(77, 77, 77, 0);
	border-right: solid 7px rgba(77, 77, 77, 0);

	transition: background-color 0.2s linear, transform 0.2s linear;
	-webkit-transition: background-color 0.2s linear, -webkit-transform 0.2s linear;
	-moz-transition: background-color 0.2s linear, -moz-transform 0.2s linear;
	-ms-transition: background-color 0.2s linear, -ms-transform 0.2s linear;
	-o-transition: background-color 0.2s linear, -o-transform 0.2s linear;
}

.categorie_port:hover .black_blade {
	transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-o-transform: rotate(360deg);

	background-color: rgba(0,0,0,1);
}

.categorie_port:hover .darkgrey_blade {
	transform: scale(2);
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);

	background-color: rgba(77, 77, 77, 1);
}

.circle_container a {
	cursor: crosshair;
}

/*
Header
*/

header#main_header {
	padding: 50px 0px;

	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/*
Slideshow
*/
section#slide_show,
section#slide_show #slide_show_view,
section#slide_show .slide {
	width: 100%;
	height: 460px;

	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

section#slide_show #s1,
section#slide_show #s3 {
	width: 100%;
	height: 475px;
}

section#slide_show .slide {
	padding: 0px 130px;
	left: 50%;

	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

section#slide_show .slide .text_container h2 {
	line-height: 50px;
}

section#slide_show div.text_container,
section#slide_show div.image_container,
section#slide_show .slide > img {
	position: relative;
	top: 50% !important;

	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

section#slide_show section#arrows {
	width: 94%;
}

/* Tabs */
section#tabs {
	/*width: 835px;*/
	width: 80%;
	margin: 50px auto 0px auto;
}

section#tabs .tab {
	width: 100%;
	height: auto;

	margin: 50px auto 0px auto;

	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;

	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
}

.tab:first-child img {
	max-width: 60%;
	max-height: 100%;
}

.tab:last-child img {
	max-width: 100%;
	max-height: 100%;
	position: relative;
	top: 0px;
	left: 0px;

	transform: initial;
  	-webkit-transform: initial;
  	-moz-transform: initial;
  	-ms-transform: initial;
  	-o-transform: initial;
}

.tab h3 {
	font-size: 2.1em;
	padding-bottom: 20px;
	margin-bottom: 0px;
	color: blue;
	border-bottom: 4px solid #000;
	line-height: 60px;
	width: 100% !important;
	text-align: center;
	float: none !important;
}

.tab img {
	margin: 0px auto 10px auto;
	display: block;
	float: none !important;
}

.tab p {
	font-size: 1.1em;
	line-height: 43px;
	width: 100% !important;
	float: none !important;
}

.tab p a {
	opacity: 0;
}

.tab a.TSS_button {
	font-family: 'HelsinkiRegular';
	font-size: 1.6em;
	text-decoration: none;
	display: block;
	float: right;
	margin-top: 30px;

	border: 3px solid #0000B2;
	padding: 13px;
	opacity: 1;

	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
}

.tab a.TSS_button:hover { 
	background-color: #0000B2;
	color: #FFF;
}

.tab:last-child img {
	margin-top: 30px;
}

#social_media {
	margin: 150px auto;
}

/*
About
*/

#main_content #mc_about {
	margin-top: 50px;
}

/*
The Service Store
*/

/* White Page for The Service Store */
.service_WP {
	width: 80% !important;
	margin: 100px auto 0px auto;
	padding: 37.5px 15px !important;
}

.service_WP .icon {
	width: 75px;
	height: 75px;
	font-size: 3.25em;
	line-height: 75px;
}

div#main_service_icon {
	margin-top: -37.5px;
}

h3#service_title {
	margin-bottom: 85px;
	/*margin-bottom: 35px;*/
	/*proportionate margin-bottom: 25px;*/
}

h3#service_title div#main_text {
	font-size: 3.75em;
	margin-left: 100px;
	text-shadow: 0px 0px 2px #000;
    line-height: 60px;

	/*text-shadow: 0px -1px 1px #000;*/
	/*proportionate: font-size: 5em;*/
	/*proportionate: margin-left: 125px;*/
}

#store_selection {
	width: 100%;
}

.the_service_store h2 {
	font-size: 3em;
	margin-bottom: 40px
}

.the_service_store h3#category_title {
	font-size: 1.8em;
	padding-bottom: 40px;
}

#store_selection .categorie_port:nth-child(3n+3) {
	margin-right: 159px;
}

#store_selection .categorie_port:nth-child(3n+4) {
	margin-right: 0px;
}

footer#main_footer {
	width: 100%;
	padding: 20px 40px;
	
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

@media screen and (max-width: 1405px) {	
	header#main_header img {
    	max-width: 465px;
    	max-height: 100%;
	}
}

