/* Minification failed. Returning unminified contents.
(6935,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '113f7c'
 */
/*
== malihu jquery custom scrollbar plugin ==
Plugin URI: http://manos.malihu.gr/jquery-custom-content-scroller
*/



/*
CONTENTS: 
	1. BASIC STYLE - Plugin's basic/essential CSS properties (normally, should not be edited). 
	2. VERTICAL SCROLLBAR - Positioning and dimensions of vertical scrollbar. 
	3. HORIZONTAL SCROLLBAR - Positioning and dimensions of horizontal scrollbar.
	4. VERTICAL AND HORIZONTAL SCROLLBARS - Positioning and dimensions of 2-axis scrollbars. 
	5. TRANSITIONS - CSS3 transitions for hover events, auto-expanded and auto-hidden scrollbars. 
	6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS 
		6.1 THEMES - Scrollbar colors, opacity, dimensions, backgrounds etc. via ready-to-use themes.
*/



/* 
------------------------------------------------------------------------------------------------------------------------
1. BASIC STYLE  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCustomScrollbar{ -ms-touch-action: pinch-zoom; touch-action: pinch-zoom; /* direct pointer events to js */ }
	.mCustomScrollbar.mCS_no_scrollbar, .mCustomScrollbar.mCS_touch_action{ -ms-touch-action: auto; touch-action: auto; }
	
	.mCustomScrollBox{ /* contains plugin's markup */
		position: relative;
		overflow: hidden;
		height: 100%;
		max-width: 100%;
		outline: none;
		direction: ltr;
	}

	.mCSB_container{ /* contains the original content */
		overflow: hidden;
		width: auto;
		height: auto;
	}



/* 
------------------------------------------------------------------------------------------------------------------------
2. VERTICAL SCROLLBAR 
y-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_inside > .mCSB_container{ margin-right: 30px; }

	.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-right: 0; } /* non-visible scrollbar */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{ margin-left: 0; } /* RTL direction/left-side scrollbar */

	.mCSB_scrollTools{ /* contains scrollbar markup (draggable element, dragger rail, buttons etc.) */
		position: absolute;
		width: 16px;
		height: auto;
		left: auto;
		top: 0;
		right: 0;
		bottom: 0;
	}

	.mCSB_outside + .mCSB_scrollTools{ right: -26px; } /* scrollbar position: outside */
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_scrollTools, 
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ /* RTL direction/left-side scrollbar */
		right: auto;
		left: 0;
	}
	
	.mCS-dir-rtl > .mCSB_outside + .mCSB_scrollTools{ left: -26px; } /* RTL direction/left-side scrollbar (scrollbar position: outside) */

	.mCSB_scrollTools .mCSB_draggerContainer{ /* contains the draggable element and dragger rail markup */
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0; 
		height: auto;
	}

	.mCSB_scrollTools a + .mCSB_draggerContainer{ margin: 20px 0; }

	.mCSB_scrollTools .mCSB_draggerRail{
		width: 2px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
	}

	.mCSB_scrollTools .mCSB_dragger{ /* the draggable element */
		cursor: pointer;
		width: 100%;
		height: 30px; /* minimum dragger height */
		z-index: 1;
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ /* the dragger element */
		position: relative;
		width: 4px;
		height: 100%;
		margin: 0 auto;
		-webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px;
		text-align: center;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{ width: 12px; /* auto-expanded scrollbar */ }
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 8px; /* auto-expanded scrollbar */ }

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown{
		display: block;
		position: absolute;
		height: 20px;
		width: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}

	.mCSB_scrollTools .mCSB_buttonDown{ bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
3. HORIZONTAL SCROLLBAR 
x-axis
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_horizontal.mCSB_inside > .mCSB_container{
		margin-right: 0;
		margin-bottom: 30px;
	}
	
	.mCSB_horizontal.mCSB_outside > .mCSB_container{ min-height: 100%; }

	.mCSB_horizontal > .mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; } /* non-visible scrollbar */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal{
		width: auto;
		height: 16px;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.mCustomScrollBox + .mCSB_scrollTools.mCSB_scrollTools_horizontal,
	.mCustomScrollBox + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{ bottom: -26px; } /* scrollbar position: outside */

	.mCSB_scrollTools.mCSB_scrollTools_horizontal a + .mCSB_draggerContainer{ margin: 0 20px; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 2px;
		margin: 7px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{
		width: 30px; /* minimum dragger width */
		height: 100%;
		left: 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 12px; /* auto-expanded scrollbar */
		margin: 2px auto;
	}
	
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 8px; /* auto-expanded scrollbar */
		margin: 4px 0;
	}

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{
		display: block;
		position: absolute;
		width: 20px;
		height: 100%;
		overflow: hidden;
		margin: 0 auto;
		cursor: pointer;
	}
	
	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{ left: 0; }

	.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{ right: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
4. VERTICAL AND HORIZONTAL SCROLLBARS 
yx-axis 
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_container_wrapper{
		position: absolute;
		height: auto;
		width: auto;
		overflow: hidden;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin-right: 30px;
		margin-bottom: 30px;
	}
	
	.mCSB_container_wrapper > .mCSB_container{
		padding-right: 30px;
		padding-bottom: 30px;
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 20px; }
	
	.mCSB_vertical_horizontal > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 20px; }
	
	/* non-visible horizontal scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden + .mCSB_scrollTools.mCSB_scrollTools_vertical{ bottom: 0; }
	
	/* non-visible vertical scrollbar/RTL direction/left-side scrollbar */
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ right: 0; }
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 20px; }
	
	/* non-visible scrollbar/RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden + .mCSB_scrollTools ~ .mCSB_scrollTools.mCSB_scrollTools_horizontal{ left: 0; }
	
	.mCS-dir-rtl > .mCSB_inside > .mCSB_container_wrapper{ /* RTL direction/left-side scrollbar */
		margin-right: 0;
		margin-left: 30px;
	}
	
	.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden > .mCSB_container{ padding-right: 0; }
	
	.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden > .mCSB_container{ padding-bottom: 0; }
	
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{
		margin-right: 0; /* non-visible scrollbar */
		margin-left: 0;
	}
	
	/* non-visible horizontal scrollbar */
	.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside > .mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{ margin-bottom: 0; }



/* 
------------------------------------------------------------------------------------------------------------------------
5. TRANSITIONS  
------------------------------------------------------------------------------------------------------------------------
*/

	.mCSB_scrollTools, 
	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
		transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	}
	
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, /* auto-expanded scrollbar */
	.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar, 
	.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail{
		-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
		transition: width .2s ease-out .2s, height .2s ease-out .2s, 
					margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, 
					margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s,
					opacity .2s ease-in-out, background-color .2s ease-in-out; 
	}



/* 
------------------------------------------------------------------------------------------------------------------------
6. SCROLLBAR COLORS, OPACITY AND BACKGROUNDS  
------------------------------------------------------------------------------------------------------------------------
*/

	/* 
	----------------------------------------
	6.1 THEMES 
	----------------------------------------
	*/
	
	/* default theme ("light") */

	.mCSB_scrollTools{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }
	
	.mCS-autoHide > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 0; filter: "alpha(opacity=0)"; -ms-filter: "alpha(opacity=0)"; }
	
	.mCustomScrollbar > .mCustomScrollBox > .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollbar > .mCustomScrollBox ~ .mCSB_scrollTools.mCSB_scrollTools_onDrag,
	.mCustomScrollBox:hover > .mCSB_scrollTools,
	.mCustomScrollBox:hover ~ .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox > .mCSB_scrollTools,
	.mCS-autoHide:hover > .mCustomScrollBox ~ .mCSB_scrollTools{ opacity: 1; filter: "alpha(opacity=100)"; -ms-filter: "alpha(opacity=100)"; }

	.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.4);
		filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; 
	}

	.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.85);
		filter: "alpha(opacity=85)"; -ms-filter: "alpha(opacity=85)"; 
	}
	.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.9);
		filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp,
	.mCSB_scrollTools .mCSB_buttonDown,
	.mCSB_scrollTools .mCSB_buttonLeft,
	.mCSB_scrollTools .mCSB_buttonRight{
		background-image: url(mCSB_buttons.png); /* css sprites */
		background-repeat: no-repeat;
		opacity: 0.4; filter: "alpha(opacity=40)"; -ms-filter: "alpha(opacity=40)"; 
	}

	.mCSB_scrollTools .mCSB_buttonUp{
		background-position: 0 0;
		/* 
		sprites locations 
		light: 0 0, -16px 0, -32px 0, -48px 0, 0 -72px, -16px -72px, -32px -72px
		dark: -80px 0, -96px 0, -112px 0, -128px 0, -80px -72px, -96px -72px, -112px -72px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonDown{
		background-position: 0 -20px;
		/* 
		sprites locations
		light: 0 -20px, -16px -20px, -32px -20px, -48px -20px, 0 -92px, -16px -92px, -32px -92px
		dark: -80px -20px, -96px -20px, -112px -20px, -128px -20px, -80px -92px, -96px -92px, -112 -92px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonLeft{
		background-position: 0 -40px;
		/* 
		sprites locations 
		light: 0 -40px, -20px -40px, -40px -40px, -60px -40px, 0 -112px, -20px -112px, -40px -112px
		dark: -80px -40px, -100px -40px, -120px -40px, -140px -40px, -80px -112px, -100px -112px, -120px -112px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonRight{
		background-position: 0 -56px;
		/* 
		sprites locations 
		light: 0 -56px, -20px -56px, -40px -56px, -60px -56px, 0 -128px, -20px -128px, -40px -128px
		dark: -80px -56px, -100px -56px, -120px -56px, -140px -56px, -80px -128px, -100px -128px, -120px -128px
		*/
	}

	.mCSB_scrollTools .mCSB_buttonUp:hover,
	.mCSB_scrollTools .mCSB_buttonDown:hover,
	.mCSB_scrollTools .mCSB_buttonLeft:hover,
	.mCSB_scrollTools .mCSB_buttonRight:hover{ opacity: 0.75; filter: "alpha(opacity=75)"; -ms-filter: "alpha(opacity=75)"; }

	.mCSB_scrollTools .mCSB_buttonUp:active,
	.mCSB_scrollTools .mCSB_buttonDown:active,
	.mCSB_scrollTools .mCSB_buttonLeft:active,
	.mCSB_scrollTools .mCSB_buttonRight:active{ opacity: 0.9; filter: "alpha(opacity=90)"; -ms-filter: "alpha(opacity=90)"; }
	

	/* theme: "dark" */

	.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.85); }

	.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: rgba(0,0,0,0.9); }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px 0; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-2", "dark-2" */

	.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 4px;
		margin: 6px auto;
	}

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px 0; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{	background-position: -32px -20px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -40px -40px; }

	.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -56px; }
	
	
	/* theme: "dark-2" */

	.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px;
	}

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px 0; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -20px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -40px; }

	.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thick", "dark-thick" */

	.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		width: 4px;
		background-color: #fff; background-color: rgba(255,255,255,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 6px;
		background-color: #fff; background-color: rgba(255,255,255,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 4px;
		margin: 6px 0;
	}

	.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 6px;
		margin: 5px auto;
	}

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px 0; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{	background-position: -16px -20px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{	background-position: -20px -40px; }

	.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -56px; }


	/* theme: "dark-thick" */
	
	.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.75);
		-webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px;
	}

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px 0; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -20px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -40px; }

	.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -100px -56px; }
	
	/* ---------------------------------------- */
	


	/* theme: "light-thin", "dark-thin" */
	
	.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.1); }

	.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 2px; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{ width: 100%; }

	.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 2px;
		margin: 7px auto;
	}


	/* theme "dark-thin" */
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{	background-position: -80px 0; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -20px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -40px; }

	.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -56px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.15); }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger{ height: 14px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		width: 14px;
		margin: 0 1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 14px; }
	
	.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 14px;
		margin: 1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		width: 16px; /* auto-expanded scrollbar */
		height: 16px;
		margin: -1px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{ width: 4px; /* auto-expanded scrollbar */ }
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{
		height: 16px; /* auto-expanded scrollbar */
		width: 16px;
		margin: 0 -1px;
	}
	
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 4px; /* auto-expanded scrollbar */
		margin: 6px 0;
	}
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{ background-position: 0 -72px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{ background-position: 0 -92px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{ background-position: 0 -112px; }
	
	.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{ background-position: 0 -128px; }
	
	
	/* theme "rounded-dark", "rounded-dots-dark" */
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.15); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -80px -72px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -80px -92px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -80px -112px; }
	
	.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -80px -128px; }
	
	
	/* theme "rounded-dots", "rounded-dots-dark" */
	
	.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail{ width: 4px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		background-color: transparent;
		background-position: center;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==");
		background-repeat: repeat-y;
		opacity: 0.3;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		height: 4px;
		margin: 6px 0;
		background-repeat: repeat-x;
	}
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{ background-position: -16px -72px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{ background-position: -16px -92px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -20px -112px; }
	
	.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{ background-position: -20px -128px; }
	
	
	/* theme "rounded-dots-dark" */
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=");
	}
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -96px -72px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -96px -92px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -100px -112px; }
	
	.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{ background-position: -100px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "3d", "3d-dark", "3d-thick", "3d-thick-dark" */
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-y;
		background-image: -moz-linear-gradient(left, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(left, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to right, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		background-repeat: repeat-x;
		background-image: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
		background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0)));
		background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
		background-image: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0) 100%);
	}
	
	
	/* theme "3d", "3d-dark" */
	
	.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 70px; }
	
	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 70px; }
	
	.mCS-3d.mCSB_scrollTools, 
	.mCS-3d-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 16px; -moz-border-radius: 16px; border-radius: 16px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 8px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.5), inset -1px 0 1px rgba(255,255,255,0.2);
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 	 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }

	.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 8px; }

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 8px;
		margin: 4px 0;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.5), inset 0 -1px 1px rgba(255,255,255,0.2);
	}

	.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		width: 100%;
		height: 8px;
		margin: 4px auto;
	}
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "3d-dark" */
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: #000; background-color: rgba(0,0,0,0.1);
		box-shadow: inset 1px 0 1px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); }
	
	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "3d-thick", "3d-thick-dark" */
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools{
		opacity: 1;
		filter: "alpha(opacity=30)"; -ms-filter: "alpha(opacity=30)"; 
	}
	
	.mCS-3d-thick.mCSB_scrollTools, 
	.mCS-3d-thick-dark.mCSB_scrollTools, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; }
	
	.mCSB_inside + .mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCSB_inside + .mCS-3d-thick-dark.mCSB_scrollTools_vertical{ right: 1px; }
	
	.mCS-3d-thick.mCSB_scrollTools_vertical, 
	.mCS-3d-thick-dark.mCSB_scrollTools_vertical{ box-shadow: inset 1px 0 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5); }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{
		bottom: 1px;
		box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.5);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		box-shadow: inset 1px 0 0 rgba(255,255,255,0.4);
		width: 12px;
		margin: 2px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4); }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #555; }
	
	.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 12px;
		width: auto;
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #000; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }

	.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{	background-position: -40px -128px; }
	
	
	/* theme: "3d-thick-dark" */
	
	.mCS-3d-thick-dark.mCSB_scrollTools{ box-shadow: inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{ box-shadow: inset 0 1px 1px rgba(0,0,0,0.1), inset 0 0 14px rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 1px 0 0 rgba(255,255,255,0.4), inset -1px 0 0 rgba(0,0,0,0.2); }
	 
	.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{ box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.2); }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,  
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #777; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{
		background-color: #fff; background-color: rgba(0,0,0,0.05);
		box-shadow: inset 1px 1px 16px rgba(0,0,0,0.1);
	}
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }
	
	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme: "minimal", "minimal-dark" */
	
	.mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		right: 0; 
		margin: 12px 0; 
	}
	
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools.mCSB_scrollTools_horizontal, 
	.mCustomScrollBox.mCS-minimal-dark + .mCSB_scrollTools + .mCSB_scrollTools.mCSB_scrollTools_horizontal{
		bottom: 0; 
		margin: 0 12px; 
	}
	
	/* RTL direction/left-side scrollbar */
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal.mCSB_scrollTools_vertical, 
	.mCS-dir-rtl > .mCSB_outside + .mCS-minimal-dark.mCSB_scrollTools_vertical{
		left: 0; 
		right: auto;
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: transparent; }
	
	.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger{ height: 50px; }
	
	.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger, 
	.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger{ width: 50px; }
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #fff; background-color: rgba(255,255,255,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	
	/* theme: "minimal-dark" */
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.2);
		filter: "alpha(opacity=20)"; -ms-filter: "alpha(opacity=20)"; 
	}
	
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{
		background-color: #000; background-color: rgba(0,0,0,0.5);
		filter: "alpha(opacity=50)"; -ms-filter: "alpha(opacity=50)"; 
	}
	
	/* ---------------------------------------- */
	
	
	
	/* theme "light-3", "dark-3" */
	
	.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{
		width: 6px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ width: 6px; }

	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 6px;
		margin: 5px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		width: 12px;
	}
	
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded + .mCSB_draggerRail, 
	.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "dark-3" */
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	/* ---------------------------------------- */
	
	
	
	/* theme "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark" */
	
	.mCS-inset.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{
		width: 12px;
		background-color: #000; background-color: rgba(0,0,0,0.2);
	}

	.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ 
		width: 6px;
		margin: 3px 5px;
		position: absolute;
		height: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{
		height: 6px;
		margin: 5px 3px;
		position: absolute;
		width: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	
	.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{
		width: 100%;
		height: 12px;
		margin: 2px 0;
	}
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp{ background-position: -32px -72px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown{ background-position: -32px -92px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -40px -112px; }
	
	.mCS-inset.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight{ background-position: -40px -128px; }
	
	
	/* theme "inset-dark", "inset-2-dark", "inset-3-dark" */
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.1); }
	
	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp{ background-position: -112px -72px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown{ background-position: -112px -92px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft{ background-position: -120px -112px; }

	.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight, 
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight{	background-position: -120px -128px; }
	
	
	/* theme "inset-2", "inset-2-dark" */
	
	.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail, 
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{
		background-color: transparent;
		border-width: 1px;
		border-style: solid;
		border-color: #fff;
		border-color: rgba(255,255,255,0.2);
		-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
	}
	
	.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{ border-color: #000; border-color: rgba(0,0,0,0.2); }
	
	
	/* theme "inset-3", "inset-3-dark" */
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{ background-color: #fff; background-color: rgba(255,255,255,0.6); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{ background-color: #000; background-color: rgba(0,0,0,0.6); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.75); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.85); }
	
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #000; background-color: rgba(0,0,0,0.9); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.75); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.85); }
	
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
	.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar{ background-color: #fff; background-color: rgba(255,255,255,0.9); }
	
	/* ---------------------------------------- */

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('Fonts/fontawesome-webfont.eot?v=4.7.0');src:url('Fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('Fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('Fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('Fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('Fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

/*@font-face {
    font-family: 'Antenna';
    src: url('Fonts/subset-FordAntenna-Light.eot');
    src: url('Fonts/subset-FordAntenna-Light.eot?#iefix') format('embedded-opentype'), url('Fonts/subset-FordAntenna-Light.woff') format('woff'), url('Fonts/subset-FordAntenna-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Antenna';
    src: url('Fonts/subset-FordAntenna-Regular.eot');
    src: url('Fonts/subset-FordAntenna-Regular.eot?#iefix') format('embedded-opentype'), url('Fonts/subset-FordAntenna-Regular.woff') format('woff'), url('Fonts/subset-FordAntenna-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Antenna';
    src: url('Fonts/subset-FordAntenna-Medium.eot');
    src: url('Fonts/subset-FordAntenna-Medium.eot?#iefix') format('embedded-opentype'), url('Fonts/subset-FordAntenna-Medium.woff') format('woff'), url('Fonts/subset-FordAntenna-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Antenna';
    src: url('Fonts/subset-FordAntenna-Bold.eot');
    src: url('Fonts/subset-FordAntenna-Bold.eot?#iefix') format('embedded-opentype'), url('Fonts/subset-FordAntenna-Bold.woff') format('woff'), url('Fonts/subset-FordAntenna-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Antenna';
    src: url('Fonts/subset-FordAntenna-Black.eot');
    src: url('Fonts/subset-FordAntenna-Black.eot?#iefix') format('embedded-opentype'), url('Fonts/subset-FordAntenna-Black.woff') format('woff'), url('Fonts/subset-FordAntenna-Black.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}*/



@font-face {
    font-family: 'Ford F-1';
    src: url('Fonts/subset-FordF1-Bold.woff2') format('woff2'), url('Fonts/subset-FordF1-Bold.woff') format('woff'), url('Fonts/subset-FordF1-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ford F-1';
    src: url('Fonts/subset-FordF1-Light.woff2') format('woff2'), url('Fonts/subset-FordF1-Light.woff') format('woff'), url('Fonts/subset-FordF1-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ford F-1';
    src: url('Fonts/subset-FordF1-Medium.woff2') format('woff2'), url('Fonts/subset-FordF1-Medium.woff') format('woff'), url('Fonts/subset-FordF1-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ford F-1';
    src: url('Fonts/subset-FordF1-Regular.woff2') format('woff2'), url('Fonts/subset-FordF1-Regular.woff') format('woff'), url('Fonts/subset-FordF1-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ford F-1';
    src: url('Fonts/subset-FordF1-Semibold.woff2') format('woff2'), url('Fonts/subset-FordF1-Semibold.woff') format('woff'), url('Fonts/subset-FordF1-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
/* General Bootstrap */

html {
    font-size: 5.20833333vw;
    font-weight: 400;
    font-family: 'Ford F-1' !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
}

    html.lock {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

body {
    position: relative;
    min-height: 100vh;
    font-size: 0;
    background-color: white;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none !important;
    -webkit-font-smoothing: antialiased;
}

    *:focus {
        outline: none !important;
    }

a {
    text-decoration: none;
}

b,
strong {
    font-weight: 600;
}

.clearfix {
    clear: both;
}

.vcenter {
    font-size: 0;
}

    .vcenter > * {
        display: inline-block;
        vertical-align: middle;
    }

    .vcenter:before {
        content: '';
        display: inline-block;
        height: 100%;
        width: 0;
        vertical-align: middle;
    }

.font * {
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.font img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

/* Social Icons */

a.social-icon {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    display: inline-block;
}

    a.social-icon:before {
        font-family: FontAwesome;
        font-size: inherit;
        color: inherit;
        line-height: inherit;
    }

    a.social-icon.facebook:before {
        content: '\f09a';
    }

    a.social-icon.facebook-square:before {
        content: '\f082';
    }

    a.social-icon.facebook-official:before {
        content: '\f230';
    }

    a.social-icon.twitter:before {
        content: '\f099';
    }

    a.social-icon.twitter-square:before {
        content: '\f081';
    }

    a.social-icon.youtube:before {
        content: '\f16a';
    }

    a.social-icon.instagram:before {
        content: '\f16d';
    }

    a.social-icon.linkedin:before {
        content: '\f0e1';
    }

    a.social-icon.facebook:hover,
    a.social-icon.facebook-square:hover,
    a.social-icon.facebook-official:hover {
        color: #3c5a96;
    }

    a.social-icon.facebook:active,
    a.social-icon.facebook-square:active,
    a.social-icon.facebook-official:active {
        color: #253e6f;
    }

    a.social-icon.twitter:hover,
    a.social-icon.twitter-square:hover {
        color: #1dcaff;
    }

    a.social-icon.twitter:active,
    a.social-icon.twitter-square:active {
        color: #00aced;
    }

    a.social-icon.youtube:hover {
        color: #e03130;
    }

    a.social-icon.youtube:active {
        color: #b11618;
    }

    a.social-icon.instagram:hover {
        color: #EE583F;
    }

    a.social-icon.instagram:active {
        color: #BD3381;
    }

    a.social-icon.linkedin:hover {
        color: #1176b5;
    }

    a.social-icon.linkedin:active {
        color: #0f496a
    }

/* Loading */

.loading {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,.75);
    display: none;
}

.load {
    width: 150px;
    height: 150px;
    animation: loading 3s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    margin-top: -75px;
}

    .load .loading-inner {
        stroke-dashoffset: 0;
        stroke-dasharray: 300;
        stroke-width: 10;
        stroke-miterlimit: 10;
        stroke-linecap: round;
        animation: loading-circle 2s linear infinite;
        stroke: #ff6f00;
        fill: transparent;
    }

@keyframes loading {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loading-circle {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -600;
    }
}

/* General */

.btn-default {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    min-width: 2.72rem;
    height: .55rem;
    padding-left: .2rem;
    padding-right: .75rem;
    text-align: center;
    background-color: #123f7c;
    cursor: pointer;
}

    .btn-default.white {
        background-color: #f5f8fb;
    }

    .btn-default:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 100%;
    }

    .btn-default:after {
        content: '';
        position: absolute;
        width: .55rem;
        height: 100%;
        top: 0;
        right: 0;
        background-color: #ff6f00;
    }

    .btn-default span {
        display: inline-block;
        vertical-align: middle;
        font-weight: 800;
        font-size: .14rem;
        line-height: 1.2em;
        letter-spacing: .02em;
        color: white;
    }

    .btn-default.white span {
        color: #142031;
    }

    .btn-default span:after {
        content: '\f105';
        position: absolute;
        top: 50%;
        right: .22rem;
        font-family: fontAwesome;
        font-weight: 300;
        font-size: .24rem;
        line-height: 1em;
        color: white;
        z-index: 2;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

.btn-round {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    min-width: 2.72rem;
    height: .93rem;
    padding-left: .82rem;
    padding-right: 1.2rem;
    text-align: center;
    background-color: #ff6f00;
    border-radius: .5rem;
    cursor: pointer;
}

    .btn-round.white {
        background-color: #f5f8fb;
    }

    .btn-round:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 0;
        height: 100%;
    }

    .btn-round span {
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
        font-size: .25rem;
        line-height: 1.2em;
        color: white;
    }

    .btn-round.white span {
        color: #ff6f00;
    }

        .btn-round.white span:after {
            color: #ff6f00;
        }

    .btn-round span:after {
        content: '\f105';
        position: absolute;
        top: 50%;
        font-family: fontAwesome;
        font-weight: 300;
        font-size: .3rem;
        line-height: 1em;
        color: white;
        margin-left: .38rem;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

/* Lines */

.lined > *:not(.lines) {
    z-index: 2;
}

.lines {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

    .lines div {
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        background-color: rgba(111,114,116, .1);
    }

        .lines div:nth-child(1) {
            left: 14.286%;
        }

        .lines div:nth-child(2) {
            left: 28.571%;
        }

        .lines div:nth-child(3) {
            left: 42.857%;
        }

        .lines div:nth-child(4) {
            left: 57.143%;
        }

        .lines div:nth-child(5) {
            left: 71.429%;
        }

        .lines div:nth-child(6) {
            left: 85.714%;
        }

/* Header */

header {
    position: absolute;
    width: 86.458%;
    height: .9rem;
    left: 6.771%;
    padding-left: 2rem;
    background-color: white;
    z-index: 10;
}

    header .logo {
        position: absolute;
        width: 1rem;
        left: .43rem;
        top: .41rem;
    }

        header .logo img {
            width: 100%;
        }

    header .menu-container {
        position: relative;
        height: 100%;
    }

        header .menu-container .menu {
            height: 100%;
            padding-right: 4rem;
        }

        header .menu-container .menu-item {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            height: 100%;
        }

            header .menu-container .menu-item + .menu-item:before {
                content: '';
                position: absolute;
                width: 4px;
                height: 4px;
                top: 50%;
                left: -2px;
                margin-top: -2px;
                border-radius: 2px;
                background-color: #d0d9e5;
            }

            header .menu-container .menu-item a {
                position: relative;
                display: inline-block;
                vertical-align: middle;
                padding: .1rem .3rem;
                height: 100%;
            }

                header .menu-container .menu-item a span {
                    font-weight: 800;
                    font-size: .14rem;
                    line-height: 1.2em;
                    letter-spacing: .02em;
                    color: #2c3035;
                }

    header .search {
        position: absolute;
        width: 1.1rem;
        height: 100%;
        right: 0;
        top: 0;
    }

        header .search:before {
            content: '';
            position: absolute;
            width: 1px;
            height: .5rem;
            left: 0;
            top: 50%;
            margin-top: -.25rem;
            background-color: #f2f2f2;
        }

        header .search a {
            display: block;
            width: 100%;
            height: 100%;
            text-align: center;
        }

            header .search a img {
                width: .22rem;
            }

    header .menu-container a.active:after {
        content: '';
        position: absolute;
        width: calc(100% - .6rem);
        height: .04rem;
        left: .3rem;
        bottom: 0;
        background-color: #ff6f00;
    }

    header .menu-container a.active span {
        color: #ff6f00;
    }

    header .search a:hover {
        opacity: .6;
    }

    header .menu-container .menu-item a:hover span {
        color: #ff6f00;
    }

    header .menu-container .btn-config {
        position: absolute;
        top: 50%;
        right: .18rem;
        padding-left: .75rem;
        padding-right: .2rem;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

        header .menu-container .btn-config:after {
            right: auto;
            left: 0;
        }

        header .menu-container .btn-config span:after {
            content: '';
            width: .24rem;
            height: .24rem;
            top: 50%;
            right: auto;
            left: .16rem;
            margin-top: -.12rem;
            font-size: 0;
            line-height: 0;
            transform: none;
            -webkit-transform: none;
            -ms-transform: none;
            -moz-transform: none;
            -o-transform: none;
            background-image: url(Icons/icon-gear.png);
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

/* Main Banner */

section.main-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

    section.main-banner .owl-carousel,
    section.main-banner .owl-carousel .owl-stage-outer,
    section.main-banner .owl-carousel .owl-stage,
    section.main-banner .owl-carousel .owl-item {
        height: 100%;
    }

        section.main-banner .owl-carousel .item {
            position: relative;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

            section.main-banner .owl-carousel .item .content {
                width: 58%;
                margin-left: 18.25%;
                opacity: 0;
            }

                section.main-banner .owl-carousel .item .content .text {
                    font-weight: 300;
                    font-size: .82rem;
                    line-height: 1.07em;
                    letter-spacing: -.025em;
                    color: white;
                }

                    section.main-banner .owl-carousel .item .content .text b,
                    section.main-banner .owl-carousel .item .content .text strong {
                        font-weight: 800;
                    }

                section.main-banner .owl-carousel .item .content .description {
                    font-size: .2rem;
                    line-height: 1.3em;
                    color: #fff;
                }

                section.main-banner .owl-carousel .item .content * + .description {
                    margin-top: .2rem;
                }

                section.main-banner .owl-carousel .item .content .preview-text {
                    display: none;
                }

                section.main-banner .owl-carousel .item .content .btn-detail {
                    display: inline-block;
                    margin-top: .2rem;
                }

                    section.main-banner .owl-carousel .item .content .btn-detail img {
                        width: .82rem;
                    }

    section.main-banner .slide-box {
        position: absolute;
        width: 3.1rem;
        height: 1.2rem;
        right: 6.771%;
        bottom: 1.96rem;
        z-index: 2;
        opacity: 0;
    }

        section.main-banner .slide-box .buttons {
            display: inline-block;
            vertical-align: top;
            width: .6rem;
            height: 100%;
        }

            section.main-banner .slide-box .buttons a {
                position: relative;
                display: block;
                width: 100%;
                height: 50%;
            }

            section.main-banner .slide-box .buttons .next {
                background-color: #ff5a00;
            }

                section.main-banner .slide-box .buttons .next:before {
                    content: '\f105';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    font-family: fontAwesome;
                    font-weight: 300;
                    font-size: .24rem;
                    line-height: 1em;
                    color: white;
                    transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                    -ms-transform: translate(-50%, -50%);
                    -moz-transform: translate(-50%, -50%);
                    -o-transform: translate(-50%, -50%);
                }

            section.main-banner .slide-box .buttons .prev {
                background-color: #ff6f00;
            }

                section.main-banner .slide-box .buttons .prev:before {
                    content: '\f104';
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    font-family: fontAwesome;
                    font-weight: 300;
                    font-size: .24rem;
                    line-height: 1em;
                    color: white;
                    transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                    -ms-transform: translate(-50%, -50%);
                    -moz-transform: translate(-50%, -50%);
                    -o-transform: translate(-50%, -50%);
                }

        section.main-banner .slide-box .content {
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: calc(100% - .6rem);
            height: 100%;
        }

            section.main-banner .slide-box .content .preview {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                padding: .1rem .24rem;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

            section.main-banner .slide-box .content .text {
                position: relative;
                max-height: 5.25em;
                font-weight: 600;
                font-size: .18rem;
                line-height: 1.05em;
                letter-spacing: -.02em;
                color: white;
                overflow: hidden;
            }

        section.main-banner .slide-box .bar {
            position: absolute;
            width: 0;
            height: 3px;
            left: 0;
            bottom: 0;
            background-color: #ff6f00;
            z-index: 2;
        }

    section.main-banner .language-box {
        position: absolute;
        width: 86.458%;
        height: .9rem;
        left: 6.771%;
        bottom: 0;
        z-index: 2;
        opacity: 0;
    }

        section.main-banner .language-box .lang-item {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: calc(50% - 3px);
            height: 100%;
            padding: .1rem .6rem .1rem .33rem;
            background-color: rgba(9,41,83,.42);
        }

            section.main-banner .language-box .lang-item + .lang-item {
                margin-left: 6px;
            }

            section.main-banner .language-box .lang-item:after {
                content: '\f105';
                position: absolute;
                top: 50%;
                right: .3rem;
                font-family: fontAwesome;
                font-weight: 300;
                font-size: .3rem;
                line-height: 1em;
                color: white;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }

            /*section.main-banner .language-box .lang-item.world {
    background-color: rgba(9,41,83,.42);
}*/

            section.main-banner .language-box .lang-item.world img {
                width: .5rem;
            }

            section.main-banner .language-box .lang-item.country img {
                width: .55rem;
            }

            section.main-banner .language-box .lang-item span {
                font-weight: 600;
                font-size: .21rem;
                line-height: 1.2em;
                letter-spacing: .015em;
                color: white;
            }

            section.main-banner .language-box .lang-item img + span {
                margin-left: .16rem;
            }

            section.main-banner .language-box .lang-item.world span:before {
                content: '';
                position: absolute;
                width: .54rem;
                height: calc(100% - 8px);
                left: 4px;
                top: 4px;
                background-color: rgba(255,255,255,.07);
            }

            section.main-banner .language-box .lang-item.country span:before {
                content: '';
                position: absolute;
                width: .56rem;
                height: calc(100% - 8px);
                left: 4px;
                top: 4px;
                background-color: rgba(255,255,255,.04);
            }

/* Main Slider */

section.slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

    section.slider .owl-carousel,
    section.slider .owl-carousel .owl-stage-outer,
    section.slider .owl-carousel .owl-stage,
    section.slider .owl-carousel .owl-item {
        height: 100%;
    }

        section.slider .owl-carousel .item {
            position: relative;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

            section.slider .owl-carousel .item .content {
                width: 50%;
                margin-left: 18.25%;
                opacity: 0;
            }

                section.slider .owl-carousel .item .content .index span {
                    font-weight: 900;
                    font-size: .89rem;
                    line-height: 1.12em;
                    position: relative;
                    color: white;
                    -webkit-text-fill-color: transparent;
                    -webkit-text-stroke-width: 1px;
                    -webkit-text-stroke-color: white;
                }

                section.slider .owl-carousel .item .content .text {
                    font-weight: 300;
                    font-size: .89rem;
                    line-height: 1.12em;
                    color: white;
                }

                    section.slider .owl-carousel .item .content .text b,
                    section.slider .owl-carousel .item .content .text strong {
                        font-weight: 900;
                    }

                section.slider .owl-carousel .item .content * + .text {
                    margin-top: .25rem;
                }

                section.slider .owl-carousel .item .content .description {
                    font-size: .2rem;
                    line-height: 1.3em;
                    color: #fff;
                    padding-right: 30%;
                }

                section.slider .owl-carousel .item .content * + .description {
                    margin-top: .24rem;
                }

                section.slider .owl-carousel .item .content .preview-text {
                    display: none;
                }

                section.slider .owl-carousel .item .content .btn-detail {
                    display: inline-block;
                    margin-top: .32rem;
                }

                    section.slider .owl-carousel .item .content .btn-detail img {
                        width: .82rem;
                    }

    section.slider .slide-box {
        position: absolute;
        width: 5.52rem;
        height: auto;
        padding: .32rem;
        right: 0;
        bottom: 0;
        z-index: 2;
        background-color: #000;
    }

        section.slider .slide-box .content {
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: 100%;
            height: 100%;
        }

            section.slider .slide-box .content .img-container {
                display: inline-block;
                width: 1.34rem;
                height: 1.24rem;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                vertical-align: middle;
            }

            section.slider .slide-box .content .preview {
                display: inline-block;
                width: calc(100% - 1.34rem);
                height: 1.24rem;
                vertical-align: middle;
                padding-left: .38rem;
                padding-right: .14rem;
                padding-bottom: .2rem;
                padding-top: .14rem;
            }

                section.slider .slide-box .content .preview:before {
                    content: '';
                    display: inline-block;
                    height: 100%;
                    width: 0;
                    vertical-align: middle;
                }

                section.slider .slide-box .content .preview .text {
                    display: inline-block;
                    width: 100%;
                    font-weight: 600;
                    font-size: .18rem;
                    line-height: 1.05em;
                    color: white;
                    overflow: hidden;
                }

                section.slider .slide-box .content .preview .custom-dots {
                    display: inline-block;
                    width: calc(100% + .26rem);
                    height: 12px;
                    margin-left: -.075rem;
                    margin-right: -.075rem;
                }

                    section.slider .slide-box .content .preview .custom-dots .owl-dot {
                        display: inline-block;
                        padding: .04rem .075rem;
                        cursor: pointer;
                    }

                        section.slider .slide-box .content .preview .custom-dots .owl-dot span {
                            display: inline-block;
                            width: 100%;
                            height: 2px;
                            background-color: white;
                            opacity: .3;
                        }

                        section.slider .slide-box .content .preview .custom-dots .owl-dot.active span {
                            opacity: 1;
                        }

        section.slider .slide-box .bar {
            position: absolute;
            width: 0;
            height: 3px;
            left: 0;
            bottom: 0;
            background-color: #ff6f00;
            z-index: 2;
        }

    section.slider .language-box {
        position: absolute;
        width: 86.458%;
        height: .9rem;
        left: 6.771%;
        bottom: 0;
        z-index: 2;
        opacity: 0;
    }

        section.slider .language-box .lang-item {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: calc(50% - 3px);
            height: 100%;
            padding: .1rem .6rem .1rem .33rem;
            background-color: rgba(9,41,83,.42);
        }

            section.slider .language-box .lang-item + .lang-item {
                margin-left: 6px;
            }

            section.slider .language-box .lang-item:after {
                content: '\f105';
                position: absolute;
                top: 50%;
                right: .3rem;
                font-family: fontAwesome;
                font-weight: 300;
                font-size: .3rem;
                line-height: 1em;
                color: white;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }

            /*section.slider .language-box .lang-item.world {
    background-color: rgba(9,41,83,.42);
}*/

            section.slider .language-box .lang-item.world img {
                width: .5rem;
            }

            section.slider .language-box .lang-item.country img {
                width: .55rem;
            }

            section.slider .language-box .lang-item span {
                font-weight: 600;
                font-size: .21rem;
                line-height: 1.2em;
                letter-spacing: .015em;
                color: white;
            }

            section.slider .language-box .lang-item img + span {
                margin-left: .16rem;
            }

            section.slider .language-box .lang-item.world span:before {
                content: '';
                position: absolute;
                width: .54rem;
                height: calc(100% - 8px);
                left: 4px;
                top: 4px;
                background-color: rgba(255,255,255,.07);
            }

            section.slider .language-box .lang-item.country span:before {
                content: '';
                position: absolute;
                width: .56rem;
                height: calc(100% - 8px);
                left: 4px;
                top: 4px;
                background-color: rgba(255,255,255,.04);
            }

/* Switch Slider */

section.switch-slider {
    position: relative;
    padding-top: 1.2rem;
    padding-bottom: .6rem;
    text-align: center;
    overflow: hidden;
}

    section.switch-slider .intro {
        z-index: 2;
        position: relative;
    }

        section.switch-slider .intro .title {
            font-weight: 300;
            font-size: .6rem;
            line-height: 1.1em;
            letter-spacing: -.01em;
            color: #003479;
        }

        section.switch-slider .intro .text {
            font-size: .17rem;
            line-height: 1.35em;
            letter-spacing: .01em;
            color: #4c5663;
        }

        section.switch-slider .intro * + .text {
            margin-top: .3rem;
        }

        section.switch-slider .intro * + .btn-default {
            margin-top: .4rem;
        }

        section.switch-slider .intro * + .btn-round {
            margin-top: .4rem;
        }

    section.switch-slider .slider {
        position: relative;
        height: 0;
        margin-left: 7.82%;
        margin-right: 7.82%;
        padding-top: 7rem;
        font-size: 0;
        text-align: center;
        z-index: 1;
    }

        section.switch-slider .slider > div, section.switch-slider .slider > li {
            height: 100%;
            transform: scale(1);
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
        }

        section.switch-slider .slider img {
            max-width: 100%;
        }

        section.switch-slider .slider .item {
            position: absolute;
            width: 20%;
            left: 0px;
            top: 0px;
            cursor: pointer;
            transition: all 0.6s ease-in-out;
            -webkit-transition: all 0.6s ease-in-out;
            -moz-transition: all 0.6s ease-in-out;
            -ms-transition: all 0.6s ease-in-out;
            -o-transition: all 0.6s ease-in-out;
        }

            section.switch-slider .slider .item.active {
                width: 60%;
                left: 20%;
            }

            section.switch-slider .slider .item.right {
                left: 80%;
            }

            section.switch-slider .slider .item img {
                width: 80%;
                transition: all 0.6s ease-in-out;
                -webkit-transition: all 0.6s ease-in-out;
                -moz-transition: all 0.6s ease-in-out;
                -ms-transition: all 0.6s ease-in-out;
                -o-transition: all 0.6s ease-in-out;
            }

                section.switch-slider .slider .item img.active-img {
                    position: absolute;
                    width: 100% !important;
                    height: auto;
                    left: 0px;
                    top: 50%;
                    transform: translate(0,-50%);
                    -webkit-transform: translate(0,-50%);
                    -moz-transform: translate(0,-50%);
                    -ms-transform: translate(0,-50%);
                    -o-transform: translate(0,-50%);
                    opacity: 0;
                }

                section.switch-slider .slider .item img.active-img-slide {
                    top: calc(50% + 20px);
                    transition: all 0.4s ease-in-out;
                    -webkit-transition: all 0.4s ease-in-out;
                    -moz-transition: all 0.4s ease-in-out;
                    -ms-transition: all 0.4s ease-in-out;
                    -o-transition: all 0.4s ease-in-out;
                }

                section.switch-slider .slider .item img.active-img-bg {
                    transition: all 0.6s ease-in-out;
                    -webkit-transition: all 0.6s ease-in-out;
                    -moz-transition: all 0.6s ease-in-out;
                    -ms-transition: all 0.6s ease-in-out;
                    -o-transition: all 0.6s ease-in-out;
                }

        section.switch-slider .slider .inner-container {
            position: relative;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
        }

        section.switch-slider .slider .title {
            font-weight: 800;
            font-size: .4rem;
            color: #e0e2e4;
            line-height: 1em;
            letter-spacing: -.01em;
            margin-top: -.2em;
        }

        section.switch-slider .slider .item.right:hover img, section.switch-slider .slider .item.left:hover img {
            transition-delay: 0s !important;
            -webkit-transition-delay: 0s !important;
            -moz-transition-delay: 0s !important;
            -ms-transition-delay: 0s !important;
            -o-transition-delay: 0s !important;
            width: 90%;
        }

        section.switch-slider .slider .item:not(.active):hover .title {
            opacity: 0;
        }

        section.switch-slider .slider .item.active .title {
            margin-top: -7em;
        }

        section.switch-slider .slider .item.active img.passive-img {
            opacity: 0;
        }

        section.switch-slider .slider .item.active img.active-img {
            opacity: 1;
        }

        section.switch-slider .slider .item img.passive-img {
            transition-delay: 0.4s;
            -webkit-transition-delay: 0.4s;
            -moz-transition-delay: 0.4s;
            -ms-transition-delay: 0.4s;
            -o-transition-delay: 0.4s;
        }

        section.switch-slider .slider .item.active img.passive-img {
            transition: none;
            -webkit-transition: none;
            -moz-transition: none;
            -ms-transition: none;
            -o-transition: none;
        }

        section.switch-slider .slider .item.active img.active-img-slide {
            top: 50%;
            transition-delay: 0.3s;
            -webkit-transition-delay: 0.3s;
            -moz-transition-delay: 0.3s;
            -ms-transition-delay: 0.3s;
            -o-transition-delay: 0.3s;
        }

        section.switch-slider .slider .item.active img.active-img-bg {
            transition-delay: 0.6s;
            -webkit-transition-delay: 0.6s;
            -moz-transition-delay: 0.6s;
            -ms-transition-delay: 0.6s;
            -o-transition-delay: 0.6s;
        }

    section.switch-slider .intro .btn-round {
        margin-bottom: 1.5rem;
    }

/* Category Highlight */
section.category-highlight {
    position: relative;
    padding-bottom: 1.14rem;
}

    section.category-highlight .container {
        display: inline-block;
        width: 100%;
        padding-left: 9%;
        padding-right: 9%;
    }

    section.category-highlight .intro {
        z-index: 2;
        position: relative;
        text-align: center;
        padding-left: 19%;
        padding-right: 19%;
    }

        section.category-highlight .intro .title {
            font-weight: 900;
            font-size: .79rem;
            line-height: 1.12em;
            color: #435967;
        }

        section.category-highlight .intro .text {
            font-weight: 500;
            font-size: .2rem;
            line-height: 1.7em;
            color: #435967;
        }

        section.category-highlight .intro * + .text {
            margin-top: .24rem;
        }

        section.category-highlight .intro * + .btn-default {
            margin-top: .3rem;
        }

        section.category-highlight .intro * + .btn-round {
            margin-top: .3rem;
        }

        section.category-highlight .intro * + .btn-round {
            margin-top: .4rem;
        }

    section.category-highlight * + .category-list {
        margin-top: .3rem;
    }

    section.category-highlight .category-list {
        width: calc(100% + .4rem);
        display: inline-block;
        margin-left: -.20rem;
        margin-right: -.20rem;
    }

        section.category-highlight .category-list .category-item {
            width: 33.333%;
            display: inline-block;
            position: relative;
            padding: .25rem;
        }

            section.category-highlight .category-list .category-item .item-cont {
                display: inline-block;
                width: 100%;
                padding-bottom: 83.33%;
                background-position: center;
                background-size: cover;
                background-repeat: no-repeat;
                position: relative;
            }

                section.category-highlight .category-list .category-item .item-cont:before {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0,0,0,.3);
                    background: -moz-linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                    background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
                    z-index: 1;
                }

                section.category-highlight .category-list .category-item .item-cont .content {
                    position: absolute;
                    padding: .4rem;
                    bottom: 0rem;
                    left: 0rem;
                    z-index: 2;
                    transition: .3s all ease;
                }

                    section.category-highlight .category-list .category-item .item-cont .content .title {
                        display: inline-block;
                        width: 100%;
                        font-weight: 700;
                        font-size: .26rem;
                        line-height: 1.3em;
                        color: white;
                    }

                    section.category-highlight .category-list .category-item .item-cont .content .index {
                        display: inline-block;
                        width: 100%;
                        font-weight: 700;
                        font-size: .16rem;
                        line-height: 2.12em;
                        color: white;
                        transition: .3s all ease;
                    }

/* Main Services */
section.main-services {
    position: relative;
    padding-bottom: .8rem;
    text-align: center;
    background-color: #131e2e;
}

    section.main-services .boxes {
        height: 6.9rem;
    }

    section.main-services .item {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 25%;
        height: 100%;
        padding-left: .2rem;
        padding-right: .2rem;
        text-align: center;
        background-color: #0a203e;
        overflow: hidden;
    }

        section.main-services .item .bg {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }

        section.main-services .item span {
            position: relative;
            font-weight: 600;
            font-size: .34rem;
            line-height: 1.2em;
            color: white;
            z-index: 2;
        }

            section.main-services .item span:after {
                content: '';
                position: absolute;
                width: .1rem;
                height: .1rem;
                left: 50%;
                top: 100%;
                margin-top: .15rem;
                margin-left: -.05rem;
                border-radius: .1rem;
                background-color: white;
            }

    section.main-services * + .btn-default {
        margin-top: .8rem;
    }

/* Main Tech */

section.main-tech {
    position: relative;
    padding-top: 1.68rem;
    padding-bottom: 1.46rem;
    text-align: center;
    background-color: #131e2e;
    background-image: url(Images/main-tech-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    section.main-tech .intro {
        position: relative;
        width: 62.5%;
        margin-left: auto;
        margin-right: auto;
        z-index: 2;
    }

        section.main-tech .intro .title {
            position: relative;
            display: inline-block;
            vertical-align: bottom;
            width: 60%;
            font-weight: 300;
            font-size: .6rem;
            line-height: 1.2em;
            letter-spacing: -.01em;
            color: white;
            text-align: left;
        }

            section.main-tech .intro .title:before {
                content: '';
                position: absolute;
                width: .05rem;
                height: .86rem;
                left: .05rem;
                top: 100%;
                margin-top: .3rem;
                background-color: #ff6f00;
            }

            section.main-tech .intro .title b,
            section.main-tech .intro .title strong {
                font-weight: 800;
            }

        section.main-tech .intro .description {
            display: inline-block;
            vertical-align: bottom;
            width: 40%;
            padding-left: .1rem;
            padding-bottom: .1rem;
            font-size: .17rem;
            line-height: 1.2em;
            letter-spacing: .005em;
            color: #a0acc0;
            text-align: right;
        }

    section.main-tech .boxes {
        counter-reset: boxCount;
    }

    section.main-tech * + .boxes {
        margin-top: .94rem;
    }

    section.main-tech .box {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 27.37%;
        height: 0;
        padding-top: 19.01%;
        overflow: hidden;
    }

        section.main-tech .box.large {
            width: 45.26%;
        }

        section.main-tech .box:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: .61;
            background-image: linear-gradient(rgba(25,31,41,0) 47%, rgb(25,31,41) 100%);
        }

        section.main-tech .box .bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        section.main-tech .box span {
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 0;
            padding: .4rem .5rem;
            font-weight: 600;
            font-size: .28rem;
            line-height: 1.2em;
            letter-spacing: .005em;
            color: white;
            text-align: left;
            z-index: 2;
        }

            section.main-tech .box span:before {
                counter-increment: boxCount;
                content: counter(boxCount);
                position: absolute;
                left: .52rem;
                top: .2rem;
                font-weight: 400;
                font-size: .14rem;
                line-height: 1.2em;
                letter-spacing: .03em;
                color: white;
            }

    section.main-tech * + .btn-default {
        margin-top: .86rem;
    }

/* Main News */

section.main-news {
    position: relative;
    padding-top: 1.68rem;
    padding-bottom: 1.46rem;
    text-align: center;
    background-color: white;
}

    section.main-news:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 0;
        left: 0;
        bottom: 0;
        padding-top: 26%;
        background-color: #eef2f4;
        z-index: 1;
    }

    section.main-news .intro {
        position: relative;
        width: 62.5%;
        margin-left: auto;
        margin-right: auto;
        z-index: 2;
    }

        section.main-news .intro .title {
            position: relative;
            display: inline-block;
            vertical-align: bottom;
            width: 60%;
            font-weight: 300;
            font-size: .6rem;
            line-height: 1.2em;
            letter-spacing: -.01em;
            color: #003479;
            text-align: left;
        }

            section.main-news .intro .title b,
            section.main-news .intro .title strong {
                font-weight: 800;
            }

        section.main-news .intro .description {
            display: inline-block;
            vertical-align: bottom;
            width: 40%;
            padding-left: .1rem;
            padding-bottom: .15rem;
            font-size: .17rem;
            line-height: 1.2em;
            letter-spacing: .005em;
            color: #5d6269;
            text-align: right;
        }

    section.main-news .boxes {
        position: relative;
        width: 62.5%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    section.main-news * + .boxes {
        margin-top: .9rem;
    }

    section.main-news .boxes .box-container {
        display: inline-block;
        vertical-align: top;
        width: calc(50% - .25rem);
    }

        section.main-news .boxes .box-container:nth-child(2n) {
            margin-left: .5rem;
            padding-top: 1.3rem;
        }

    section.main-news .boxes .box {
        position: relative;
        display: block;
    }

        section.main-news .boxes .box:before {
            content: '';
            position: absolute;
            width: calc(100% + .3rem);
            height: calc(100% + .3rem);
            left: -.15rem;
            top: -.15rem;
            background-color: white;
            z-index: 0;
        }

        section.main-news .boxes .box + .box {
            margin-top: .94rem;
        }

        section.main-news .boxes .box .content {
            position: relative;
            padding: .48rem .52rem .58rem .52rem;
            background-color: #19263d;
            z-index: 2;
        }

            section.main-news .boxes .box .content:before {
                content: '';
                position: absolute;
                width: .55rem;
                height: .55rem;
                left: .54rem;
                top: 100%;
                margin-top: -.28rem;
                background-color: #14417d;
            }

            section.main-news .boxes .box .content:after {
                content: '\f105';
                position: absolute;
                top: 100%;
                left: .79rem;
                margin-top: -.02rem;
                font-family: fontAwesome;
                font-weight: 300;
                font-size: .24rem;
                line-height: 1em;
                color: white;
                z-index: 2;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -o-transform: translateY(-50%);
            }

            section.main-news .boxes .box .content .date {
                font-weight: 600;
                font-size: .13rem;
                line-height: 1.2em;
                color: #67737e;
            }

            section.main-news .boxes .box .content * + .date {
                margin-top: .1rem;
            }

            section.main-news .boxes .box .content .title {
                font-weight: 500;
                font-size: .3rem;
                line-height: 1.2em;
                color: white;
            }

            section.main-news .boxes .box .content * + .title {
                margin-top: .14rem;
            }

        section.main-news .boxes .box .image {
            position: relative;
            width: 100%;
            height: 0;
            padding-top: 57.29%;
            overflow: hidden;
        }

            section.main-news .boxes .box .image .bg {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                z-index: 0;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

    section.main-news * + .btn-default {
        margin-top: .86rem;
    }

    /* Main Social */

    section.main-news + section.main-social {
        padding-top: .2rem;
    }

section.main-social {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1.2rem;
    background-color: #eef2f4;
}

    section.main-social .intro {
        position: relative;
        display: block;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

        section.main-social .intro .title {
            font-weight: 300;
            font-size: .6rem;
            line-height: 1.2em;
            letter-spacing: -.04em;
            color: #003479;
        }

        section.main-social .intro .text {
            font-size: .17rem;
            line-height: 1.2em;
            letter-spacing: .01em;
            color: #6e747c;
        }

        section.main-social .intro * + .text {
            margin-top: .26rem;
        }

    section.main-social .tabs {
        position: relative;
        display: block;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
    }

    section.main-social * + .tabs {
        margin-top: .46rem;
    }

    section.main-social .tab-menu {
        position: relative;
        text-align: center;
    }

        section.main-social .tab-menu a {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: .78rem;
            height: .68rem;
            margin-left: .05rem;
            margin-right: .05rem;
            background-color: #e2e9ed;
        }

            section.main-social .tab-menu a:after {
                content: attr(data-followercount);
                position: absolute;
                width: 100%;
                height: .25rem;
                background-color: #000;
                color: #FFF;
                font-size: .13rem;
                line-height: .25rem;
                font-weight: 600;
                top: calc(100% - .25rem);
                left: 0;
                opacity: 0;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                transition: all .1s ease-in-out;
                -webkit-transition: all .1s ease-in-out;
                -moz-transition: all .1s ease-in-out;
                -ms-transition: all .1s ease-in-out;
                -o-transition: all .1s ease-in-out;
            }

            section.main-social .tab-menu a.active:after {
                top: 100%;
                opacity: 1;
            }

            section.main-social .tab-menu a.facebook:after {
                background-color: #38538e;
            }

            section.main-social .tab-menu a.youtube:after {
                background-color: #d00202;
            }

            section.main-social .tab-menu a.instagram:after {
                background-color: #1c1819;
            }

            section.main-social .tab-menu a.linkedin:after {
                background-color: #006599;
            }

            section.main-social .tab-menu a .fa {
                font-size: .3rem;
                line-height: 1em;
            }

            section.main-social .tab-menu a .fa-facebook {
                color: #4367b3;
            }

            section.main-social .tab-menu a .fa-youtube-play {
                color: #ff0000;
            }

            section.main-social .tab-menu a .fa-instagram {
                color: #231f20;
            }

            section.main-social .tab-menu a .fa-linkedin {
                color: #0077b5;
            }

            section.main-social .tab-menu a.facebook.active {
                background-color: #4367b3;
            }

            section.main-social .tab-menu a.youtube.active {
                background-color: #ff0000;
            }

            section.main-social .tab-menu a.instagram.active {
                background-color: #231f20;
            }

            section.main-social .tab-menu a.linkedin.active {
                background-color: #0077b5;
            }

            section.main-social .tab-menu a.active .fa {
                color: white !important;
            }

    section.main-social * + .tab-container {
        margin-top: .65rem;
    }

    section.main-social .tab-container .item {
        display: none;
    }

        section.main-social .tab-container .item.active {
            display: block;
        }

    section.main-social .tab-container .owl-item {
        padding-left: .05rem;
        padding-right: .05rem;
    }

    section.main-social .tab-container .box {
        position: relative;
        width: 100%;
        padding-bottom: .68rem;
        background-color: white;
    }

        section.main-social .tab-container .box .top {
            position: relative;
            height: .74rem;
            padding-left: .16rem;
            padding-right: .6rem;
        }

            section.main-social .tab-container .box .top .logo {
                display: inline-block;
                vertical-align: middle;
                width: .44rem;
            }

            section.main-social .tab-container .box .top .content {
                width: calc(100% - .44rem);
                padding-left: .12rem;
            }

                section.main-social .tab-container .box .top .content .title {
                    font-weight: 600;
                    font-size: .14rem;
                    line-height: 1.2em;
                    letter-spacing: .01em;
                    color: black;
                    word-break: break-word;
                }

                section.main-social .tab-container .box .top .content .text {
                    font-size: .12rem;
                    line-height: 1.2em;
                    letter-spacing: .01em;
                    color: black;
                }

                section.main-social .tab-container .box .top .content * + .text {
                    margin-top: .02rem;
                }

            section.main-social .tab-container .box .top .detail {
                position: absolute;
                width: .26rem;
                right: .16rem;
                top: 50%;
                margin-top: -.03rem;
            }

                section.main-social .tab-container .box .top .detail img {
                    width: 100%;
                }

        section.main-social .tab-container .box .image {
            display: block;
            width: 100%;
            height: 0;
            padding-top: 84.46%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        section.main-social .tab-container .box .icon {
            position: absolute;
            left: 50%;
            bottom: .34rem;
            font-size: .4rem;
            line-height: 1em;
            color: #cdd3d6;
            transform: translate(-50%, 50%);
            -webkit-transform: translate(-50%, 50%);
            -ms-transform: translate(-50%, 50%);
            -moz-transform: translate(-50%, 50%);
            -o-transform: translate(-50%, 50%);
        }

    section.main-social .tab-container .video-box {
        position: relative;
        width: 100%;
        height: 0;
        padding-top: 56.14%;
        cursor: pointer;
    }

        section.main-social .tab-container .video-box:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            cursor: pointer;
        }

        section.main-social .tab-container .video-box iframe {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

    section.main-social .tab-container .owl-dots {
        margin-top: .5rem;
        text-align: center;
    }

        section.main-social .tab-container .owl-dots .owl-dot {
            display: inline-block;
            vertical-align: middle;
            width: .12rem;
            height: .12rem;
            margin-left: .05rem;
            margin-right: .05rem;
            border-radius: .1rem;
            background-color: #cdd7e2;
        }

            section.main-social .tab-container .owl-dots .owl-dot.active {
                background-color: #8ba1be;
            }

            section.main-social .tab-container .owl-dots .owl-dot:hover {
                background-color: #123f7c;
            }

/* Dealers */

section.dealers {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 30.21%;
}

    section.dealers .marker-container {
        display: none;
    }

    section.dealers .map-container {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

        section.dealers .map-container .map {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        section.dealers .map-container .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: url(Images/dealer-bg.jpg);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

    section.dealers.map-active .map-container .overlay {
        display: none;
    }

    section.dealers .infobox-container {
        width: 237px !important;
        padding: 22px 28px;
        background-color: white;
        border: 2px solid #bcc4cb;
    }

        section.dealers .infobox-container:before {
            content: '';
            position: absolute;
            width: 13px;
            height: 12px;
            right: 100%;
            top: 34px;
            background-image: url(Icons/icon-infobox-triangle.png);
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        section.dealers .infobox-container > img {
            position: absolute !important;
            width: 26px !important;
            right: -2px;
            bottom: 100%;
            margin: 0 !important;
        }

    section.dealers .infobox > * + * {
        margin-top: 6px;
    }

    section.dealers .infobox .title {
        word-break: break-word;
        font-family: Antenna;
        font-weight: 600;
        font-size: 22px;
        line-height: 1.2em;
        letter-spacing: -.01em;
        color: #003479;
    }

    section.dealers .infobox .text,
    section.dealers .infobox .phone,
    section.dealers .infobox .type {
        font-family: Antenna;
        font-size: 13px;
        line-height: 1.38em;
        letter-spacing: -.01em;
        color: black;
    }

        section.dealers .infobox .phone + .type,
        section.dealers .infobox .type + .phone {
            margin-top: 0;
        }

    section.dealers .infobox a {
        color: inherit;
    }

    section.dealers .content {
        position: absolute;
        top: 50%;
        left: 50%;
        text-align: center;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transition: .2s top ease;
        -webkit-transition: .2s top ease;
        -ms-transition: .2s top ease;
        -moz-transition: .2s top ease;
        -o-transition: .2s top ease;
    }

    section.dealers.map-active .content {
        top: 28%;
    }

    section.dealers .content .title {
        font-weight: 600;
        font-size: .6rem;
        line-height: 1.2em;
        letter-spacing: -.02em;
        color: #003479;
    }

    section.dealers.map-active .content .title {
        display: none;
    }

    section.dealers:not(.map-active) .content * + .filter {
        margin-top: .3rem;
    }

    section.dealers .content .filter > * {
        margin-left: .05rem;
        margin-right: .05rem;
    }

    section.dealers .content .filter .btn-find {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        min-width: 2.47rem;
        height: .66rem;
        padding-left: .2rem;
        padding-right: .86rem;
        text-align: center;
        background-color: #123f7c;
    }

        section.dealers .content .filter .btn-find:before {
            content: '';
            display: inline-block;
            vertical-align: middle;
            width: 0;
            height: 100%;
        }

        section.dealers .content .filter .btn-find:after {
            content: '';
            position: absolute;
            width: .66rem;
            height: 100%;
            top: 0;
            right: 0;
            background-color: #ff6f00;
        }

        section.dealers .content .filter .btn-find span {
            display: inline-block;
            vertical-align: middle;
            font-weight: 800;
            font-size: .14rem;
            line-height: 1.2em;
            letter-spacing: .02em;
            color: white;
        }

            section.dealers .content .filter .btn-find span:after {
                content: '';
                position: absolute;
                width: .18rem;
                height: .26rem;
                top: 50%;
                right: .24rem;
                margin-top: -.13rem;
                z-index: 2;
                background-image: url(Icons/icon-find.png);
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

    section.dealers .content .filter .select2-container {
        display: inline-block;
        vertical-align: middle;
        width: 2.47rem !important;
        text-align: left;
    }

        section.dealers .content .filter .select2-container .select2-selection--single {
            height: auto;
            border-radius: 0;
            border: none;
            background-color: #bcc4cb;
        }

            section.dealers .content .filter .select2-container .select2-selection--single .select2-selection__rendered {
                padding-left: .28rem;
                padding-right: .6rem;
                padding-top: .25rem;
                padding-bottom: .25rem;
                font-weight: 800;
                font-size: .14rem;
                line-height: 1.2em;
                letter-spacing: .02em;
                color: white;
            }

    section.dealers .content .filter .select2-container--default .select2-selection--single .select2-selection__placeholder {
        font-weight: 800;
        font-size: .14rem;
        line-height: 1.2em;
        letter-spacing: .02em;
        color: white;
    }

    section.dealers .content .filter .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: auto;
        width: auto;
        top: 50%;
        right: .25rem;
    }

        section.dealers .content .filter .select2-container--default .select2-selection--single .select2-selection__arrow:before {
            content: '\f107';
            display: inline-block;
            font-family: fontAwesome;
            font-weight: 300;
            font-size: .2rem;
            line-height: 1.2em;
            color: white;
            transition: .3s all ease;
            -webkit-transition: .3s all ease;
            -ms-transition: .3s all ease;
            -moz-transition: .3s all ease;
            -o-transition: .3s all ease;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
        }

    section.dealers .content .filter .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before {
        transform: translateY(-50%) rotate(180deg);
        -webkit-transform: translateY(-50%) rotate(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        -o-transform: translateY(-50%) rotate(180deg);
    }

    section.dealers .content .filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
        display: none;
    }

.select2-dropdown {
    border: none;
    border-radius: 0;
    background-color: #b5bdc4;
}

.select2-container--default .select2-results {
    max-height: 2rem;
    overflow: auto;
}

    .select2-container--default .select2-results .select2-results__options {
        max-height: unset;
        overflow: hidden;
    }

.select2-results__option {
    padding: .18rem .6rem .18rem .28rem;
    font-weight: 800;
    font-size: .14rem;
    line-height: 1.2em;
    letter-spacing: .02em;
    color: white;
}

    .select2-results__option + .select2-results__option {
        border-top: #bac2c9;
    }

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #9ea9b2;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0;
}

.mCSB_scrollTools {
    opacity: 1;
    width: .33rem;
    text-align: left;
}

    .mCSB_scrollTools .mCSB_draggerContainer {
        height: calc(100% - .36rem);
        top: .18rem;
        bottom: auto;
    }

    .mCSB_scrollTools .mCSB_draggerRail {
        display: inline-block;
        width: 5px;
        background-color: #c4cbd2;
    }

    .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        display: inline-block;
        width: 5px;
        background-color: white;
    }

/* Footer */

footer {
    position: relative;
    height: 1rem;
    padding-left: 3rem;
    padding-right: 1.74rem;
    z-index: 5;
    border-top: 1px solid #f2f7f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    footer .logo {
        position: absolute;
        left: 1.74rem;
        top: -0.15rem;
    }

        footer .logo img {
            width: 1rem;
        }

    footer .left {
        width: 60%;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

        footer .left .footer-top span {
            padding-left: 0 !important;
        }

        footer .left .footer-top {
            padding-left: 0 !important;
            padding-bottom: .10rem;
        }


        footer .left * {
            position: relative;
            padding-right: 0.1rem;
            font-weight: 400;
            font-size: .13rem;
            line-height: 1.2em;
            letter-spacing: .02em;
            color: #343434;
            word-break: break-word;
            display: inline-block;
        }

            footer .left * a:before {
                content: '';
                position: absolute;
                width: 3px;
                height: 3px;
                left: -1px;
                top: 50%;
                margin-top: -1px;
                border-radius: 3px;
                background-color: #dcdfe4;
            }

            footer .left * a {
                padding-left: .13rem;
            }
        footer .left .footer-menu a:first-child:before {
            display:none;
        }
        footer .left .footer-menu a:first-child{
            padding-left:0;
        }

        footer .left .mail {
            text-decoration: underline;
        }

    footer .right {
        width: 40%;
        text-align: right;
    }

        footer .right .social {
            display: inline-block;
            vertical-align: middle;
            white-space: nowrap;
        }

            footer .right .social a {
                position: relative;
                padding-left: 0.13rem;
                padding-right: 0.1rem;
                font-weight: 400;
                font-size: .13rem;
                line-height: 1.2em;
                letter-spacing: .02em;
                color: #343434;
            }

                footer .right .social a:last-child {
                    padding-right: 0;
                }

                footer .right .social a + a:before {
                    content: '';
                    position: absolute;
                    width: 3px;
                    height: 3px;
                    left: -1px;
                    top: 50%;
                    margin-top: -1px;
                    border-radius: 3px;
                    background-color: #dcdfe4;
                }

        footer .right .footer-image {
            display: inline-block;
            vertical-align: middle;
            margin-left: .3rem;
        }

            footer .right .footer-image img {
                max-width: .6rem;
                max-height: .6rem;
            }

/* General Banner */

section.general-banner {
    position: relative;
    height: 8.26rem;
}

    section.general-banner .owl-carousel,
    section.general-banner .owl-stage-outer,
    section.general-banner .owl-stage,
    section.general-banner .owl-item {
        height: 100%;
    }

    section.general-banner .item {
        position: relative;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        section.general-banner .item .content {
            padding-top: .4rem;
            width: 29%;
            margin-left: 18.25%;
        }

            section.general-banner .item .content .title {
                font-size: .52rem;
                line-height: 1.07em;
                letter-spacing: -.025em;
                color: white;
            }

            section.general-banner .item .content .text {
                font-size: .2rem;
                line-height: 1.5em;
                letter-spacing: -.005em;
                color: white;
            }

            section.general-banner .item .content * + .text {
                margin-top: .24rem;
            }

            section.general-banner .item .content b,
            section.general-banner .item .content strong {
                font-weight: 800;
            }

    section.general-banner .owl-dots {
        position: absolute;
        width: 63.5%;
        left: 18.25%;
        bottom: 1.2rem;
        padding-left: .04rem;
        transform: translateY(50%);
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -moz-transform: translateY(50%);
        -o-transform: translateY(50%);
    }

    section.general-banner .owl-dot {
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background-color: rgba(255,255,255,.3);
    }

        section.general-banner .owl-dot + .owl-dot {
            margin-top: .13rem;
        }

        section.general-banner .owl-dot.active {
            background-color: rgba(255,255,255,1) !important;
        }

        section.general-banner .owl-dot:hover {
            background-color: rgba(255,255,255,.5);
        }

/* General Banner */

section.general-detail-banner {
    position: relative;
    height: 7.34rem;
}

    section.general-detail-banner .owl-carousel,
    section.general-detail-banner .owl-stage-outer,
    section.general-detail-banner .owl-stage,
    section.general-detail-banner .owl-item {
        height: 100%;
    }

    section.general-detail-banner .item {
        position: relative;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        text-align: right;
    }

        section.general-detail-banner .item .content {
            width: 39.81%;
            margin-right: 7.13%;
            text-align: left;
            background-color: rgba(0,0,0,.7);
            padding: .48rem .61rem .56rem .61rem;
            margin-top: .6rem;
        }

            section.general-detail-banner .item .content .title {
                font-size: .8rem;
                line-height: 1.3em;
                color: white;
            }

            section.general-detail-banner .item .content .text {
                font-size: .2rem;
                line-height: 1.7em;
                color: white;
            }

            section.general-detail-banner .item .content * + .text {
                margin-top: .24rem;
            }

            section.general-detail-banner .item .content b,
            section.general-detail-banner .item .content strong {
                font-weight: 800;
            }

            section.general-detail-banner .item .content .list-items {
                display: inline-block;
                width: 100%;
                color: white;
                font-weight: 600;
                font-size: .2rem;
                line-height: 1.7em;
                font-family: Open Sans, sans-serif;
                position: relative;
            }

                section.general-detail-banner .item .content .list-items ul {
                    display: inline-block;
                    width: 100%;
                    padding-left: .2rem;
                }

                    section.general-detail-banner .item .content .list-items ul li {
                        width: 50%;
                        float: left;
                        position: relative;
                        padding-right: .1rem;
                        margin-bottom: .1rem;
                    }

    section .general-detail-banner .owl-dots {
        position: absolute;
        width: 63.5%;
        left: 18.25%;
        bottom: 1.2rem;
        padding-left: .04rem;
        transform: translateY(50%);
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -moz-transform: translateY(50%);
        -o-transform: translateY(50%);
    }

    section.general-detail-banner .owl-dot {
        display: block;
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background-color: rgba(255,255,255,.3);
    }

        section.general-detail-banner .owl-dot + .owl-dot {
            margin-top: .13rem;
        }

        section.general-detail-banner .owl-dot.active {
            background-color: rgba(255,255,255,1) !important;
        }

        section.general-detail-banner .owl-dot:hover {
            background-color: rgba(255,255,255,.5);
        }

/* General Content */

section.general-content {
    position: relative;
    padding-top: .9rem;
    padding-bottom: 2rem;
    background-color: white;
}

    section.general-content .content {
        position: relative;
        display: block;
        width: 63.5%;
        margin-left: 18.25%;
    }

        section.general-content .content .title {
            font-size: .46rem;
            line-height: 1.24em;
            letter-spacing: -.015em;
            color: #003479;
        }

        section.general-content .content .text {
            font-size: .17rem;
            line-height: 1.7em;
            letter-spacing: .005em;
            color: #6e747c;
        }

        section.general-content .content * + .text {
            margin-top: .25rem;
        }

        section.general-content .content .text p + p {
            margin-top: 1.7em;
        }

/* Content Box */

section.content-box {
    position: relative;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    background-color: white;
}

    section.content-box .intro {
        display: block;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

        section.content-box .intro .title {
            font-weight: 300;
            font-size: .6rem;
            line-height: 1.2em;
            letter-spacing: -.025em;
            color: #003479;
        }

        section.content-box .intro .text {
            font-size: .17rem;
            line-height: 1.2em;
            letter-spacing: .01em;
            color: #6e747c;
        }

        section.content-box .intro * + .text {
            margin-top: .32rem;
        }

    section.content-box .boxes {
        display: block;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
    }

    section.content-box * + .boxes {
        margin-top: .9rem;
    }

    section.content-box .boxes .box {
        position: relative;
        width: 100%;
    }

        section.content-box .boxes .box .content {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: 50%;
            padding: .5rem 1.1rem .5rem 1.8rem;
            z-index: 2;
        }

        section.content-box .boxes .box:nth-child(even) .content {
            padding: .5rem 1.8rem .5rem 1.1rem;
        }

        section.content-box .boxes .box .content .title {
            font-weight: 600;
            font-size: .45rem;
            line-height: 1.2em;
            letter-spacing: -.025em;
            color: #003479;
        }

        section.content-box .boxes .box .content .text {
            font-size: .17rem;
            line-height: 1.53em;
            letter-spacing: .01em;
            color: #6e747c;
        }

        section.content-box .boxes .box .content * + .text {
            margin-top: .3rem;
        }

        section.content-box .boxes .box .content * + .btn-default {
            margin-top: .4rem;
        }

        section.content-box .boxes .box .image {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: 50%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

            section.content-box .boxes .box .image img {
                width: calc(100% - .1rem);
            }

                section.content-box .boxes .box .image img.overflow {
                    position: absolute;
                    width: auto;
                    height: 100%;
                    top: 0;
                    left: 0;
                }

        section.content-box .boxes .box:nth-child(odd) .image img.overflow {
            right: 0;
            left: auto;
        }

        section.content-box .boxes .box:nth-child(odd) .image {
            text-align: right;
        }

        section.content-box .boxes .box:nth-child(odd):before {
            content: '';
            position: absolute;
            width: 1px;
            height: 3.9rem;
            left: 0;
            top: 50%;
            margin-top: -1.95rem;
            background-color: #e6ebec;
        }

        section.content-box .boxes .box:nth-child(even):before {
            content: '';
            position: absolute;
            width: 1px;
            height: 3.9rem;
            right: 0;
            top: 50%;
            margin-top: -1.95rem;
            background-color: #e6ebec;
        }

        section.content-box .boxes .box:first-child:before {
            content: '';
            position: absolute;
            width: 1px;
            height: 5.1rem;
            left: 0;
            top: 0;
            margin-top: 0;
            background-color: #e6ebec;
        }

        section.content-box .boxes .box:first-child:after {
            content: '';
            position: absolute;
            width: 6.25rem;
            height: 1px;
            left: 0;
            top: 0;
            background-color: #e6ebec;
        }

        section.content-box .boxes .box:last-child:before {
            height: 5.1rem;
            top: auto;
            bottom: 0;
            margin-top: 0;
        }

        section.content-box .boxes .box:last-child:after {
            content: '';
            position: absolute;
            width: 6.25rem;
            height: 1px;
            bottom: 0;
            background-color: #e6ebec;
        }

        section.content-box .boxes .box:last-child:nth-child(odd):after {
            left: 0;
        }

        section.content-box .boxes .box:last-child:nth-child(even):after {
            right: 0;
        }

/* Image Text Boxes*/

section.image-text-boxes {
    position: relative;
    padding-top: 1.3rem;
    background-color: white;
}

    section.image-text-boxes .intro {
        display: block;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

        section.image-text-boxes .intro .subtitle {
            font-weight: 900;
            font-size: .36rem;
            line-height: 1.44em;
            color: #F4601F;
        }

        section.image-text-boxes .intro .title {
            font-weight: 900;
            font-size: .7rem;
            line-height: 1.52em;
            color: #435868;
        }

        section.image-text-boxes .intro .text {
            font-weight: 600;
            font-size: .2rem;
            line-height: 1.2em;
            color: #435868;
        }

        section.image-text-boxes .intro * + .text {
            margin-top: .15rem;
        }

        section.image-text-boxes .intro * + .btn-default,
        section.image-text-boxes .intro * + .btn-round {
            margin-top: .61rem;
        }

    section.image-text-boxes .boxes {
        display: block;
        width: 87.07%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 1.3rem;
    }

    section.image-text-boxes * + .boxes {
        margin-top: 1.69rem;
    }

    section.image-text-boxes .boxes .box {
        position: relative;
        width: 100%;
    }

    section.image-text-boxes .boxes * + .box {
        margin-top: 1.5rem;
    }

    section.image-text-boxes .boxes .box .content {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 49.87%;
        padding: 1.49rem 1.26rem 1.93rem 1.38rem;
        z-index: 2;
        min-height: 6rem;
    }

        section.image-text-boxes .boxes .box .content .title {
            font-weight: 900;
            font-size: .57rem;
            line-height: 1.37em;
            color: white;
        }

        section.image-text-boxes .boxes .box .content .text {
            font-size: .18rem;
            line-height: 1.66em;
            color: white;
        }

        section.image-text-boxes .boxes .box .content * + .text {
            margin-top: .3rem;
        }

        section.image-text-boxes .boxes .box .content * + .btn-round,
        section.image-text-boxes .boxes .box .content * + .btn-default {
            margin-top: .4rem;
        }

    section.image-text-boxes .boxes .box .image {
        position: absolute;
        width: 54.31%;
        height: 100%;
        right: 0;
        top: -.8rem;
        overflow: hidden;
    }

        section.image-text-boxes .boxes .box .image img {
            position: absolute;
        }

    section.image-text-boxes .boxes .box:nth-child(even) .content {
        margin-left: 50.11%;
    }

    section.image-text-boxes .boxes .box:nth-child(even) .image {
        left: 0;
        right: auto;
    }

/* News */

section.news {
    position: relative;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    text-align: center;
}

    section.news .boxes {
        position: relative;
        width: 62.5%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

        section.news .boxes .box {
            position: relative;
            display: inline-block;
            vertical-align: top;
            width: calc(50% - .25rem);
        }

            section.news .boxes .box:nth-child(2n) {
                margin-left: .5rem;
            }

            section.news .boxes .box:nth-child(n+3) {
                margin-top: .5rem;
            }

            section.news .boxes .box:before {
                content: '';
                position: absolute;
                width: calc(100% + .3rem);
                height: calc(100% + .3rem);
                left: -.15rem;
                top: -.15rem;
                background-color: white;
                z-index: 0;
            }

            section.news .boxes .box .content {
                position: relative;
                padding: .48rem .52rem .58rem .52rem;
                background-color: #19263d;
                z-index: 2;
            }

                section.news .boxes .box .content:before {
                    content: '';
                    position: absolute;
                    width: .55rem;
                    height: .55rem;
                    left: .54rem;
                    top: 100%;
                    margin-top: -.28rem;
                    background-color: #14417d;
                }

                section.news .boxes .box .content:after {
                    content: '\f105';
                    position: absolute;
                    top: 100%;
                    left: .79rem;
                    margin-top: -.02rem;
                    font-family: fontAwesome;
                    font-weight: 300;
                    font-size: .24rem;
                    line-height: 1em;
                    color: white;
                    z-index: 2;
                    transform: translateY(-50%);
                    -webkit-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                    -moz-transform: translateY(-50%);
                    -o-transform: translateY(-50%);
                }

                section.news .boxes .box .content .date {
                    font-weight: 600;
                    font-size: .13rem;
                    line-height: 1.2em;
                    color: #67737e;
                }

                section.news .boxes .box .content * + .date {
                    margin-top: .1rem;
                }

                section.news .boxes .box .content .title {
                    font-weight: 500;
                    font-size: .3rem;
                    line-height: 1.2em;
                    color: white;
                }

                section.news .boxes .box .content * + .title {
                    margin-top: .14rem;
                }

            section.news .boxes .box .image {
                position: relative;
                width: 100%;
                height: 0;
                padding-top: 57.29%;
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
            }

    section.news * + .btn-default {
        margin-top: .86rem;
    }

/* Calendar */

section.calendar {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    background-color: #eef2f4;
}

    section.calendar .container {
        position: relative;
        width: 62.5%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    section.calendar .title {
        font-weight: 600;
        font-size: .5rem;
        line-height: 1.3em;
        letter-spacing: -.025em;
        color: #003479;
        text-align: center;
    }

    section.calendar .text {
        font-size: .17rem;
        line-height: 1.53em;
        letter-spacing: .01em;
        color: #6e747c;
        text-align: center;
    }

        section.calendar .text.sub {
            font-weight: 600;
            color: black;
        }

    section.calendar .title + .text {
        margin-top: .24rem;
    }

    section.calendar .text + .text {
        margin-top: .64rem;
    }

    section.calendar * + .boxes {
        margin-top: .72rem;
    }

    section.calendar .boxes .box {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: calc(25% - .08rem);
        margin-left: .1rem;
        padding: .4rem .3rem .7rem .3rem;
        text-align: center;
        background-color: white;
    }

        section.calendar .boxes .box:nth-child(4n-3) {
            margin-left: 0;
        }

        section.calendar .boxes .box:nth-child(n+5) {
            margin-top: .86rem;
        }

        section.calendar .boxes .box .flag {
            position: absolute;
            width: .5rem;
            top: -.14rem;
            left: 50%;
            margin-left: -.25rem;
            box-shadow: 0 .03rem .08rem rgba(0,0,0,.15);
        }

        section.calendar .boxes .box .content .name {
            font-size: .19rem;
            line-height: 1.32em;
            letter-spacing: -.015em;
            color: #003479;
        }

        section.calendar .boxes .box .content .country {
            font-weight: 600;
            font-size: .19rem;
            line-height: 1.32em;
            letter-spacing: -.015em;
            color: #003479;
        }

        section.calendar .boxes .box .date {
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 0;
            padding: .12rem;
            font-weight: 600;
            font-size: .14rem;
            line-height: 1.2em;
            letter-spacing: -.005em;
            color: #78808c;
            background-color: #eef2f4;
            border: .05rem solid white;
        }

/* Language Popup */

.language-popup {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-align: center;
    background-color: white;
    background-image: url(Images/language-popup-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 100;
}

    .language-popup.active {
        display: block;
    }

    .language-popup .logo {
        position: absolute;
        width: 1rem;
        top: .36rem;
        left: 50%;
        margin-left: -.5rem;
    }

    .language-popup .close {
        position: absolute;
        width: .43rem;
        height: .43rem;
        top: 3px;
        right: 3px;
        text-align: center;
        background-color: #092953;
    }

        .language-popup .close img {
            width: .09rem;
        }

    .language-popup .popup-container {
        position: relative;
        width: 53.9%;
        max-height: 100%;
        overflow: auto;
    }

    .language-popup .intro {
        position: relative;
        text-align: center;
    }

        .language-popup .intro .title {
            font-weight: 800;
            font-size: .45rem;
            line-height: 1.2em;
            letter-spacing: -.01em;
            color: #143663;
        }

        .language-popup .intro .text {
            font-weight: 300;
            font-size: .26rem;
            line-height: 1.35em;
            letter-spacing: -.005em;
            color: #737f86;
        }

        .language-popup .intro * + .text {
            margin-top: .16rem;
        }

    .language-popup * + .boxes {
        margin-top: .9rem;
    }

    .language-popup .boxes .box {
        display: inline-block;
        vertical-align: middle;
        width: calc(33.3333% - 6px);
        height: .76rem;
        margin-left: 4px;
        margin-top: 4px;
        padding-left: .2rem;
        padding-right: .2rem;
        text-align: left;
        background-color: white;
        box-shadow: 0 .02rem .04rem rgba(0,0,0,.04);
    }

        .language-popup .boxes .box:nth-child(3n-2) {
            margin-left: 0;
        }

        .language-popup .boxes .box:nth-child(-n+3) {
            margin-top: 0;
        }

        .language-popup .boxes .box img {
            width: .36rem;
            box-shadow: 0 .03rem .08rem rgba(0,0,0,.15);
        }

        .language-popup .boxes .box .country {
            width: calc(100% - .36rem - 1.1rem);
            padding-left: .14rem;
            font-weight: 800;
            font-size: .15rem;
            line-height: 1.2em;
            letter-spacing: .005em;
            color: black;
            word-break: break-word;
        }

        .language-popup .boxes .box .languages {
            display: inline-block;
            vertical-align: middle;
            width: 1.1rem;
            text-align: right;
        }

            .language-popup .boxes .box .languages a {
                display: inline-block;
                vertical-align: middle;
                width: .34rem;
                height: .34rem;
                text-align: center;
                border: 1px solid #e9eced;
                border-radius: 2px;
            }

                .language-popup .boxes .box .languages a + a {
                    margin-left: .03rem;
                }

                .language-popup .boxes .box .languages a span {
                    font-weight: 800;
                    font-size: .12rem;
                    line-height: 1.2em;
                    letter-spacing: -.01em;
                    color: #1f6291;
                }

                .language-popup .boxes .box .languages a:hover {
                    border-color: #1f6291;
                    background-color: #1f6291;
                }

                    .language-popup .boxes .box .languages a:hover span {
                        color: white;
                    }

/* Popup */

.popup-wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(0,0,0,.8);
    z-index: 150;
}

    .popup-wrapper.active {
        display: block;
    }

    .popup-wrapper .popup-container {
        position: relative;
        width: 6.7rem;
        padding-top: .32rem;
        padding-bottom: .42rem;
        padding-left: .6rem;
        padding-right: .6rem;
        background-color: white;
    }

    .popup-wrapper .text {
        font-weight: 400;
        font-size: .24rem;
        line-height: 1.42em;
        color: #003479;
    }

    .popup-wrapper .btn-default {
        border: 2px solid #ff6f00;
    }

        .popup-wrapper .btn-default span {
            color: #003479;
        }

    .popup-wrapper * + .btn-default {
        margin-top: .24rem;
    }

    .popup-wrapper .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        padding: .15rem;
        background-color: #fd6f21;
    }

        .popup-wrapper .btn-close img {
            width: .25rem;
        }

.h1-tag {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
}


/* Cookie */

.cookie {
    display: block;
    position: fixed;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    text-align: center;
    z-index: 150;
    padding: .4rem 0;
    background: #ffffff;
}

    .cookie.active {
        display: block;
    }

    .cookie .cookie-container {
        max-width: 9.58rem;
        margin: 0 auto;
        padding: 0 0.6rem;
    }

        .cookie .cookie-container .content p {
            font-weight: 400;
            font-size: 0.14rem;
            line-height: 1.6em;
            color: #425968;
        }

        .cookie .cookie-container .content a {
            color: #003478;
            text-decoration: none;
            cursor: pointer;
        }

        .cookie .cookie-container .content * + p {
            margin-top: .2rem
        }

        .cookie .cookie-container .buttons {
            margin-top: .32rem
        }

        .cookie .cookie-container .btn-default:not(:nth-child(1)) {
            margin-left: .08rem
        }

        .cookie .cookie-container .btn-default {
            padding: 0;
            min-width: 2.71rem
        }

            .cookie .cookie-container .btn-default::after {
                content: none;
            }

            .cookie .cookie-container .btn-default span {
                font-weight: 500;
                font-size: 0.16rem;
                line-height: 1.6em;
            }

                .cookie .cookie-container .btn-default span::after {
                    content: none;
                }

            .cookie .cookie-container .btn-default.cookie-blue {
                background-color: #003478;
            }

            .cookie .cookie-container .btn-default.cookie-white {
                background-color: #ffffff;
                border: 1px solid #003478;
            }

                .cookie .cookie-container .btn-default.cookie-white span {
                    color: #003478;
                }


/*Slider*/

.filter-slider {
    position: relative;
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-color: white;
    padding-top: .80rem;
    border-top: .2rem solid #df6b37;
}

    .filter-slider .owl-carousel {
        display: block;
    }

    .filter-slider .filter-item {
        font-size: 0;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
        margin-top: .82rem;
        margin-bottom: 1vw;
    }

    .filter-slider .filter-img {
        display: inline-block;
        vertical-align: bottom;
        width: 44.8%;
        padding-right: .2rem;
        margin-top: 1.4rem;
    }

        .filter-slider .filter-img img {
            width: auto;
            max-width: 100%;
        }

    .filter-slider .item-info {
        display: inline-block;
        vertical-align: middle;
        width: 55.2%;
        background: white;
        text-align: center;
        box-shadow: 0.5vw 0.5vw 0.8vw rgba(119, 118, 121,.21);
        padding-bottom: 3.2vw;
    }

    .filter-slider .item-name {
        font-family: Antenna, Open Sans;
        font-weight: 800;
        font-size: .28rem;
        line-height: 1em;
        color: #415867;
        padding: .49rem .49rem;
        /*border-bottom: 1px solid rgba(66,89,104,.11);*/
    }

    .filter-slider .item-props {
        font-size: 0;
        padding-left: .2rem;
        padding-right: .2rem;
        text-align: left;
    }

    .filter-slider .item-prop {
        font-size: 0;
        width: calc(25% - 0.1rem);
        padding-top: .2rem;
        padding-bottom: .2rem;
        padding-left: .05rem;
        padding-right: .05rem;
        margin-left: .05rem;
        margin-right: .05rem;
        margin-bottom: .2rem;
        text-align: center;
        border: 1px solid rgba(66,89,104,.11);
        border-radius: 0.4vw;
        display: inline-block;
        vertical-align: top;
    }

        .filter-slider .item-prop > div {
            display: inline-block;
            vertical-align: top;
            width: 100%;
            color: #415867;
            font-family: Antenna, Open Sans;
            font-weight: 700;
            font-size: .14rem;
            line-height: 1.2em;
        }

        .filter-slider .item-prop .item-prop-rs-text {
            font-size: .22rem;
        }

        .filter-slider .item-prop .item-prop-small {
            font-size: .18rem;
        }

        /*        .filter-slider .item-prop:nth-child(3n+3) {
            margin-right: 0;
        }
*/
        .filter-slider .item-prop div.item-prop-image {
            position: relative;
            width: 100%;
            padding-top: 36%;
            text-align: center;
        }

            .filter-slider .item-prop div.item-prop-image > img {
                position: absolute;
                top: 0px;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -o-transform: translate(-50%, -50%);
                display: inline-block;
            }

        .filter-slider .item-prop:nth-child(1) div.item-prop-image > img {
            width: 3.59vw;
        }

        .filter-slider .item-prop:nth-child(2) div.item-prop-image > img {
            width: 3.65vw;
        }

        .filter-slider .item-prop:nth-child(3) div.item-prop-image > img {
            width: 2.8vw;
        }

        .filter-slider .item-prop:nth-child(4) div.item-prop-image > img {
            width: 2.6vw;
        }

        .filter-slider .item-prop:nth-child(5) div.item-prop-image > img {
            width: 2.5vw;
        }

        .filter-slider .item-prop:nth-child(6) div.item-prop-image > img {
            width: 2.3vw;
        }

        .filter-slider .item-prop:nth-child(7) div.item-prop-image > img {
            width: 2.1vw;
        }

        .filter-slider .item-prop:nth-child(8) div.item-prop-image > img {
            width: 3.2vw;
        }

    .filter-slider .item-info .btn-detail {
        padding: 6% 7%;
    }

    .filter-slider .filter-nav {
        position: absolute;
        top: 50%;
        left: 5%;
        width: 90%;
        height: 0;
        z-index: 2;
    }

    .filter-slider .nav-control {
        font-size: 4.58vw;
        font-weight: 400;
        color: #e5541c;
        cursor: pointer;
    }

        .filter-slider .nav-control:hover {
            opacity: .8;
        }

        .filter-slider .nav-control:active {
            opacity: 1;
            color: #e33f00;
        }

        .filter-slider .nav-control.disabled {
            color: white;
            opacity: .4;
            cursor: default;
        }

        .filter-slider .nav-control:after {
            font-family: FontAwesome;
            font-weight: inherit;
            font-size: inherit;
            color: inherit;
        }

        .filter-slider .nav-control.left {
            float: left;
        }

        .filter-slider .nav-control.right {
            float: right;
        }

        .filter-slider .nav-control.left:after {
            content: '\f104';
        }

        .filter-slider .nav-control.right:after {
            content: '\f105';
        }

    .filter-slider .owl-dots {
        position: relative;
        width: 100%;
        left: 0;
        bottom: 0;
        text-align: center;
        font-size: .14rem;
        margin-top: .7rem;
        margin-bottom: .7rem;
    }

    .filter-slider .owl-dot {
        display: inline-block;
        vertical-align: middle;
        width: 1em;
        height: 1em;
        margin-left: .4em;
        margin-right: .4em;
        border: .18182em solid #415867;
        border-radius: 50%;
    }

        .filter-slider .owl-dot.active {
            background: #415867;
        }

    .filter-slider .blocks {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        font-size: .625vw;
        width: 1.1667em;
        height: 1em;
        margin-right: .8em;
        margin-top: -.1667em;
        background: #415867;
    }

        .filter-slider .blocks:before {
            content: '';
            position: absolute;
            width: .1667em;
            height: 100%;
            top: 0;
            left: 50%;
            margin-left: -.0833em;
            background: white;
        }

        .filter-slider .blocks:after {
            content: '';
            position: absolute;
            width: 100%;
            height: .1667em;
            top: 50%;
            left: 0;
            margin-top: -.0833em;
            background: white;
        }

    .filter-slider .selection-wrapper {
        position: relative;
        margin-top: 1.08rem;
    }

    .filter-slider ul.selection-container {
        width: 40.1vw;
        z-index: 3;
        box-shadow: .8vw 1vw 3.65vw rgba(119,118,121,.21);
    }

        .filter-slider ul.selection-container > li {
            width: 33.3333%;
        }

            .filter-slider ul.selection-container > li:last-child {
                cursor: pointer;
            }

            .filter-slider ul.selection-container > li.big {
                font-size: 1vw;
                padding: .8855555em;
            }

    .filter-slider .filter-popup {
        position: absolute;
        width: 73%;
        left: 13.5%;
        top: 0;
        background: #f7f7f7;
        z-index: 3;
        font-family: Antenna, Open Sans;
        font-weight: 400;
        font-size: 1.146vw;
        color: #415867;
        padding: 2.72em 2.91em;
        display: none;
    }

        .filter-slider .filter-popup.active {
            display: block;
        }

    .filter-slider .filter-popup-close {
        position: absolute;
        top: 1.8em;
        right: 1.8em;
        font-size: 1.042vw;
        color: #415867;
        width: 2.9em;
        height: 2.9em;
        border-radius: 50%;
        cursor: pointer;
        border: 1px solid rgba(64,88,104,.21);
    }

        .filter-slider .filter-popup-close:hover {
            background-color: #f2f2f2;
        }

        .filter-slider .filter-popup-close:after {
            content: '\f00d';
            font-family: FontAwesome;
            font-size: inherit;
            color: inherit;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            -webkit-transform: translate(-50%,-50%);
            -moz-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
            -o-transform: translate(-50%,-50%);
        }

    .filter-slider .filter-popup-item:not(:last-child) {
        /*margin-bottom: 1.2em;*/
    }

    .filter-slider .filter-popup-title {
        font-weight: 800;
        color: #e5541c;
        margin-bottom: .3em;
    }

    .filter-slider .filter-popup-model {
        display: inline-block;
        line-height: 1em;
        margin-bottom: 1.2em;
        padding: .73em 1em;
        margin-right: .75em;
        cursor: pointer;
        border: 1px solid rgba(64,88,104,.11);
    }

        .filter-slider .filter-popup-model:hover {
            border: 1px solid rgba(64,88,104,.05);
            box-shadow: 0 1em 3em rgba(65,88,103,.16);
        }

        .filter-slider .filter-popup-model:active {
            border: 1px solid rgba(64,88,104,.11);
            box-shadow: none;
        }

        .filter-slider .filter-popup-model.selected {
            box-shadow: none;
            border: none;
            background: #f4e5dd;
            color: #e5541c;
            cursor: default;
        }

    /* Headings and Texts */

    .filter-slider .pre-heading {
        font-family: Antenna, Open Sans;
        font-weight: 800;
        font-size: 1.667vw;
        line-height: 1.2em;
        text-align: center;
        color: #f36221;
        margin-bottom: .3em;
    }

    .filter-slider .heading,
    .filter-slider .heading-small,
    .filter-slider .heading-exsmall,
    .filter-slider .heading-mini {
        font-family: Antenna, Open Sans;
        font-weight: 800;
        text-align: center;
        color: #425968;
        line-height: 1.29em;
    }

        .filter-slider .heading.white,
        .filter-slider .heading-small.white,
        .filter-slider .heading-exsmall.white,
        .filter-slider .heading-mini.white {
            color: white;
        }

    .filter-slider .heading {
        font-size: .62rem;
    }

    /* Select Ul */

    .filter-slider ul.selection-container {
        position: relative;
        list-style: none;
        font-size: 0;
        font-family: Antenna, Open Sans;
        font-weight: 600;
        color: #425968;
        background-color: white;
        margin-left: auto;
        margin-right: auto;
    }

        .filter-slider ul.selection-container > li {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            font-size: .729vw;
            padding: 2em 0px;
            letter-spacing: 0.025em;
            text-align: center;
        }

            .filter-slider ul.selection-container > li + li {
                border-left: 1px solid #e7e7e7;
            }

    .filter-slider .selection {
        position: relative;
        font-family: Antenna, Open Sans;
        font-size: .729vw;
        font-weight: 600;
        color: #425968;
        padding: .5em 1.29em;
    }

        .filter-slider .selection > span,
        .filter-slider ul.selection-container > li > span {
            display: block;
            font-size: inherit;
            color: inherit;
            position: relative;
        }

        .filter-slider .selection > ul,
        .filter-slider ul.selection-container > li > ul {
            font-size: inherit;
            color: inherit;
            list-style: none;
            padding: 0;
            display: none;
            background: white;
            border-radius: 0;
            position: absolute;
            top: 100%;
            left: 50%;
            height: auto;
            min-width: 100%;
            max-height: 20em;
            transform: translateX(-50%);
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            -moz-transform: translateX(-50%);
            -o-transform: translateX(-50%);
        }

            .filter-slider .selection > ul > li,
            .filter-slider ul.selection-container > li > ul li {
                font-size: inherit;
                color: inherit;
                cursor: pointer;
                text-align: left;
                padding: 1.2em 2em;
                border-top: 1px solid rgba(29,29,29,.06);
            }

                .filter-slider .selection > ul > li + li,
                .filter-slider ul.selection-container > li > ul li + li {
                    margin-top: 0;
                }

                .filter-slider ul.selection-container > li > ul li span {
                    position: relative;
                    display: block;
                    font-size: inherit;
                    color: inherit;
                    z-index: 2;
                }

        .filter-slider .selection li,
        .filter-slider .selection span,
        .filter-slider ul.selection-container li,
        .filter-slider ul.selection-container span {
            cursor: default;
            white-space: nowrap;
        }

        .filter-slider .selection > ul + span,
        .filter-slider ul.selection-container > li > ul + span {
            padding-right: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: inline-block;
        }

            .filter-slider .selection > ul + span:after,
            .filter-slider ul.selection-container > li > ul + span:after {
                font-family: FontAwesome;
                content: '\f107';
                position: static;
                top: -.08em;
                right: 0;
                line-height: inherit;
                font-size: 1.29em;
                font-weight: 100;
                color: #f36221;
                display: inline-block;
                margin-left: .5em;
                transition: .3s all ease;
                -webkit-transition: .3s all ease;
                -ms-transition: .3s all ease;
                -moz-transition: .3s all ease;
                -o-transition: .3s all ease;
            }

        .filter-slider .selection.active > ul,
        .filter-slider ul.selection-container > li.active > ul {
            display: block;
        }

            .filter-slider .selection.active > ul + span:after,
            .filter-slider ul.selection-container > li.active > ul + span:after {
                transform: rotate(180deg);
                -webkit-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                -moz-transform: rotate(180deg);
                -o-transform: rotate(180deg);
            }

        .filter-slider .selection:hover > span,
        .filter-slider .selection.active > span,
        .filter-slider ul.selection-container > li:hover > span,
        .filter-slider ul.selection-container > li.active > span {
            color: #5a7a8e;
        }

        .filter-slider .selection > ul li:hover,
        .filter-slider ul.selection-container > li > ul li:hover {
            background: rgba(66,89,104,.05);
        }

        .filter-slider .selection > ul li:active,
        .filter-slider ul.selection-container > li > ul li:active {
            background: rgba(66,89,104,.15);
        }

        .filter-slider .selection.colored,
        .filter-slider .selection span.colored,
        .filter-slider ul.selection-container li.colored,
        .filter-slider ul.selection-container > li span.colored {
            color: #05379b;
        }

        .filter-slider .selection:hover span.colored,
        .filter-slider .selection.active span.colored,
        .filter-slider ul.selection-container > li:hover span.colored,
        .filter-slider ul.selection-container > li.active span.colored {
            color: #1c61e9;
        }

        .filter-slider .selection .blocks,
        .filter-slider ul.selection-container .blocks {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            font-size: .625vw;
            width: 1.1667em;
            height: 1em;
            margin-right: .8em;
            margin-top: -.1667em;
            background: #415867;
        }

            .filter-slider .selection .blocks:before,
            .filter-slider ul.selection-container .blocks:before {
                content: '';
                position: absolute;
                width: .1667em;
                height: 100%;
                top: 0;
                left: 50%;
                margin-left: -.0833em;
                background: white;
            }

            .filter-slider .selection .blocks:after,
            .filter-slider ul.selection-container .blocks:after {
                content: '';
                position: absolute;
                width: 100%;
                height: .1667em;
                top: 50%;
                left: 0;
                margin-top: -.0833em;
                background: white;
            }

        .filter-slider .selection .mCSB_inside > .mCSB_container,
        .filter-slider ul.selection-container .mCSB_inside > .mCSB_container {
            margin-right: 0 !important
        }

        .filter-slider .selection .mCSB_scrollTools,
        .filter-slider ul.selection-container .mCSB_scrollTools {
            width: 1.286em;
            background: #f4f4f4;
        }

        .filter-slider .selection .mCSB_scrollTools,
        .filter-slider ul.selection-container .mCSB_scrollTools {
            opacity: 1;
            filter: "alpha(opacity=100)";
            -ms-filter: "alpha(opacity=100)";
        }

            .filter-slider .selection .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
            .filter-slider ul.selection-container .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
                width: .714em;
                background: #f1622f;
                margin-top: .6em;
            }

                .filter-slider .selection .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover,
                .filter-slider ul.selection-container .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:hover {
                    background: #f55220;
                }

                .filter-slider .selection .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:active,
                .filter-slider ul.selection-container .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar:active {
                    background: #f55220;
                }

            .filter-slider .selection .mCSB_scrollTools .mCSB_draggerContainer,
            .filter-slider ul.selection-container .mCSB_scrollTools .mCSB_draggerContainer {
                padding-top: .6em;
                padding-bottom: .6em;
            }

            .filter-slider .selection .mCSB_scrollTools .mCSB_draggerRail,
            .filter-slider ul.selection-container .mCSB_scrollTools .mCSB_draggerRail {
                display: none;
            }

    .filter-slider .mCSB_scrollTools,
    .filter-slider .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
    .filter-slider .mCSB_scrollTools .mCSB_buttonUp,
    .filter-slider .mCSB_scrollTools .mCSB_buttonDown,
    .filter-slider .mCSB_scrollTools .mCSB_buttonLeft,
    .filter-slider .mCSB_scrollTools .mCSB_buttonRight {
        transition: none;
        -webkit-transition: none;
        -ms-transition: none;
        -moz-transition: none;
        -o-transition: none;
    }

/* Product List Accordion */

section.product-list-accordion {
    position: relative;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    background-color: white;
}

    section.product-list-accordion .intro {
        display: block;
        width: 82%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

        section.product-list-accordion .intro .subtitle {
            font-weight: 900;
            font-size: .36rem;
            line-height: 1.44em;
            color: #F4601F;
        }

        section.product-list-accordion .intro .title {
            font-weight: 900;
            font-size: .7rem;
            line-height: 1.52em;
            color: #435868;
        }

        section.product-list-accordion .intro .text {
            font-weight: 600;
            font-size: .2rem;
            line-height: 1.2em;
            color: #435868;
        }

        section.product-list-accordion .intro .btn-round {
            height: 1.21rem;
            background-color: #1D3666;
            border-radius: 0;
        }

            section.product-list-accordion .intro .btn-round span {
                font-size: .3rem;
            }

        section.product-list-accordion .intro * + .text {
            margin-top: .15rem;
        }

        section.product-list-accordion .intro * + .btn-default,
        section.product-list-accordion .intro * + .btn-round {
            background-color: #1D3666;
            margin-top: .61rem;
        }

    section.product-list-accordion * + .intro {
        margin-top: 1.21rem;
    }

    section.product-list-accordion .product-models {
        display: block;
        width: 87.33%;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 0.15rem 0.3rem rgba(0,0,0,.1);
    }

    section.product-list-accordion * + .product-models {
        margin-top: .64rem;
    }

    section.product-list-accordion .product-models .product-item .header {
        width: 100%;
        display: inline-block;
        padding-left: .83rem;
        padding-right: .83rem;
        background-color: white;
        cursor: pointer;
        transition: all .4s ease-in-out;
    }

        section.product-list-accordion .product-models .product-item .header .product-name {
            display: inline-block;
            width: 100%;
            position: relative;
            font-weight: 700;
            font-size: 0.28rem;
            line-height: 1.85em;
            padding: .43rem .2rem;
            border-bottom: 1px solid #BBC2D1;
            transition: all .4s ease-in-out;
            color: #1d3666;
        }

            section.product-list-accordion .product-models .product-item .header .product-name .accordion-toggler {
                position: absolute;
                width: .4rem;
                height: .4rem;
                right: 0;
                top: 50%;
                background-color: #F36221;
                border-radius: 50%;
                margin-top: -.2rem;
                transition: all .4s ease-in-out;
            }

                section.product-list-accordion .product-models .product-item .header .product-name .accordion-toggler:before {
                    content: '';
                    position: absolute;
                    width: 1px;
                    height: .24rem;
                    background-color: #fff;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%,-50%) rotate(0);
                    transition: all .4s ease-in-out;
                }

                section.product-list-accordion .product-models .product-item .header .product-name .accordion-toggler:after {
                    content: '';
                    position: absolute;
                    height: 1px;
                    width: .24rem;
                    background-color: #fff;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%,-50%);
                    transition: all .4s ease-in-out;
                }

    section.product-list-accordion .product-models .product-item.active .header .product-name .accordion-toggler {
        background-color: #fff;
    }

        section.product-list-accordion .product-models .product-item.active .header .product-name .accordion-toggler:before {
            transform: translate(-50%,-50%) rotate(-90deg);
            background-color: #F36221;
        }

        section.product-list-accordion .product-models .product-item.active .header .product-name .accordion-toggler:after {
            background-color: #F36221;
        }

    section .product-list-accordion .product-models .product-item:last-child .header .product-name {
        border-color: transparent;
    }

    section.product-list-accordion .product-models .product-item.active .header {
        background-color: #1d3666;
    }

        section.product-list-accordion .product-models .product-item.active .header .product-name {
            border-color: transparent;
            color: white;
        }

    section.product-list-accordion .product-models .product-item .content {
        display: none;
        width: 100%;
        padding: .9rem 1.14rem .9rem .95rem;
        background-color: #F7F7F7;
    }

        section.product-list-accordion .product-models .product-item .content .props-left {
            display: inline-block;
            vertical-align: middle;
            width: 38.75%;
            font-size: 1.2rem;
            color: #1D3666;
            padding-right: 5%;
        }

            section.product-list-accordion .product-models .product-item .content .props-left .item-name {
                display: inline-block;
                width: 100%;
                line-height: 1.16em;
                font-weight: 700;
            }

            section.product-list-accordion .product-models .product-item .content .props-left .item-subtitle {
                display: inline-block;
                width: 100%;
                font-weight: 400;
                line-height: 1.16em;
            }

        section.product-list-accordion .product-models .product-item .content .props-right {
            display: inline-block;
            vertical-align: middle;
            width: 61.25%;
        }

            section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop {
                font-size: 0;
                width: calc(25% - 0.3rem);
                padding: .22rem .25rem;
                margin-left: .15rem;
                margin-right: .15rem;
                margin-bottom: .25rem;
                background-color: #fff;
                text-align: center;
                display: inline-block;
                vertical-align: top;
                box-shadow: 0 .06rem .12rem rgba(0,0,0,.08);
            }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(1) {
                    border-bottom: 3px solid #1C98FB;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(2) {
                    border-bottom: 3px solid #FC4246;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(3) {
                    border-bottom: 3px solid #FEBD00;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(4) {
                    border-bottom: 3px solid #BA3DC2;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(5) {
                    border-bottom: 3px solid #F36221;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(6) {
                    border-bottom: 3px solid #34B743;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(7) {
                    border-bottom: 3px solid #21A6F3;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop:nth-child(8) {
                    border-bottom: 3px solid #e06b34;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop .image {
                    display: inline-block;
                    width: 100%;
                    height: .67rem;
                }

                    section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop .image img {
                        width: auto;
                        max-width: .85rem;
                        max-height: .67rem;
                    }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop .prop-item-title {
                    font-size: .20rem;
                    color: #1D3666;
                    line-height: 1.2em;
                    font-weight: 400;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop .prop-item-text {
                    font-size: .20rem;
                    color: #1D3666;
                    line-height: 1.2em;
                    font-weight: 700;
                    letter-spacing: -.01rem;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop * + .prop-item-title {
                    margin-top: .16rem;
                }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop * + .prop-item-text {
                    margin-top: .05rem;
                }

/*Certificates*/

section.certificates {
    position: relative;
    display: block;
    padding-top: 1rem;
    padding-bottom: 1.15rem;
}

    section.certificates .container {
        position: relative;
        display: block;
        width: 100%;
        max-width: 14.6rem;
        padding-left: .3rem;
        padding-right: .3rem;
        margin-left: auto;
        margin-right: auto;
    }

    section.certificates .heading-mini {
        font-size: .33rem;
        font-weight: 800;
        letter-spacing: -.0015em;
        line-height: 1.2em;
        color: #425968;
        text-align: center;
    }

    section.certificates * + .text-default {
        margin-top: .36rem;
    }

    section.certificates .text-default {
        font-size: .18rem;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.5em;
        color: black;
    }

        section.certificates .text-default * {
            font-size: inherit !important;
            line-height: inherit !important;
            color: inherit !important;
        }

    section.certificates .certificates-container {
        position: relative;
        font-size: 0;
        display: block;
        background-color: #F5F5F5;
        transition: .3s all ease;
        -webkit-transition: .3s all ease;
        -ms-transition: .3s all ease;
        -moz-transition: .3s all ease;
        -o-transition: .3s all ease;
    }

    section.certificates * + .certificates-container {
        margin-top: 1.15rem;
    }

    section.certificates .certificates-container.active {
        background-color: #425968;
    }

    section.certificates .certificates-container + .certificates-container {
        margin-top: .15rem;
    }

    section.certificates .certificates-container .item-btn {
        position: relative;
        display: inline-block;
        line-height: 1.2em;
        font-family: Antenna, Open Sans;
        font-weight: 800;
        font-size: 0.16rem;
        color: #425968;
        text-align: left;
        width: 100%;
        cursor: pointer;
        padding-top: .35rem;
        padding-bottom: .35rem;
        padding-right: .45rem;
        padding-left: 1.15rem;
    }

        section.certificates .certificates-container .item-btn .file-count {
            position: absolute;
            right: .45rem;
            font-size: .12rem;
            font-weight: 800;
            color: #F36221;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
        }

        section.certificates .certificates-container .item-btn:before {
            font-family: FontAwesome;
            content: '\f067';
            position: absolute;
            left: .5rem;
            line-height: inherit;
            font-size: .2rem;
            font-weight: 100;
            color: #f36221;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transition: .3s all ease;
            -webkit-transition: .3s all ease;
            -ms-transition: .3s all ease;
            -moz-transition: .3s all ease;
            -o-transition: .3s all ease;
        }

    section.certificates .certificates-container.active .item-btn:before {
        content: '\f068';
    }

    section.certificates .certificates-container.active .item-btn {
        color: #FFFFFF;
    }

    section.certificates .certificates-container .item-container {
        position: relative;
        display: none;
        font-size: 0;
        max-width: 11.8rem;
        margin: auto;
    }

        section.certificates .certificates-container .item-container .box-items {
            display: block;
            width: calc(100% + .2rem);
            margin: -.25rem -.1rem;
            font-size: 0;
            padding-top: .36rem;
            padding-bottom: .79rem;
        }

            section.certificates .certificates-container .item-container .box-items .item {
                width: calc(25% - .2rem);
                position: relative;
                display: inline-block;
                vertical-align: top;
                min-height: 2.6rem;
                margin: .25rem .1rem;
                padding: .28rem .3rem .23rem .3rem;
                background-color: rgba(255,255,255,.07);
            }

                section.certificates .certificates-container .item-container .box-items .item .file-name {
                    position: relative;
                    height: .66rem;
                    font-family: Antenna, Open Sans;
                    font-weight: 600;
                    font-size: .14rem;
                    line-height: 1.57em;
                    text-align: center;
                    color: #fff;
                    overflow: hidden;
                    word-break: break-all;
                }

                section.certificates .certificates-container .item-container .box-items .item .file-size {
                    font-family: Antenna, Open Sans;
                    font-weight: 800;
                    font-size: .14rem;
                    line-height: 1.57em;
                    text-align: center;
                    color: #fff;
                }

                section.certificates .certificates-container .item-container .box-items .item * + .file-size {
                    padding-top: .28rem;
                    margin-top: .28rem;
                    border-top: 1px solid rgba(255,255,255,.07);
                }

                section.certificates .certificates-container .item-container .box-items .item .file-size .file-extension {
                    color: #96A8B2;
                }

                section.certificates .certificates-container .item-container .box-items .item .file-download {
                    display: block;
                    border-radius: .45rem;
                    font-family: Antenna, Open Sans;
                    width: 100%;
                    font-weight: 800;
                    font-size: .12rem;
                    line-height: 1.2em;
                    color: #ff6f00;
                    text-align: center;
                    margin-top: .31rem;
                    padding: .15rem;
                    border: .03rem solid #ff6f00;
                    transition: .3s all ease;
                    -webkit-transition: .3s all ease;
                    -ms-transition: .3s all ease;
                    -moz-transition: .3s all ease;
                    -o-transition: .3s all ease;
                }
/*Certificates*/


/* Manage Cookies */

section.manage-cookies {
    margin-top: .8rem;
    margin-bottom: 1.8rem;
}

    section.manage-cookies .container {
        width: 14.6rem;
        margin: 0 auto;
    }

        section.manage-cookies .container .title {
            font-weight: 400;
            font-size: 0.4rem;
            line-height: 1.6em;
            color: #425968;
        }

        section.manage-cookies .container .content {
            margin-top: .3rem;
        }

            section.manage-cookies .container .content p {
                font-weight: 400;
                font-size: 0.14rem;
                line-height: 1.6em;
                color: #425968;
            }

            section.manage-cookies .container .content * + p {
                margin-top: .2rem
            }

        section.manage-cookies .container .accordion-container {
            margin-top: .3rem;
        }

            section.manage-cookies .container .accordion-container .accordion-item {
                font-size: 25px;
                border-top: 1px solid #dcdcdc;
            }

                section.manage-cookies .container .accordion-container .accordion-item:last-child {
                    border-bottom: 1px solid #dcdcdc;
                }


                section.manage-cookies .container .accordion-container .accordion-item .title {
                    position: relative;
                    font-weight: 600;
                    font-size: 0.16rem;
                    line-height: 1.6em;
                    color: #425968;
                    padding: .2rem 0 .2rem .68rem;
                }

                    section.manage-cookies .container .accordion-container .accordion-item .title::before {
                        content: "";
                        background-image: url(Icons/chevron-down.svg);
                        background-size: contain;
                        background-position: center;
                        background-repeat: no-repeat;
                        position: absolute;
                        right: 0;
                        width: .24rem;
                        height: .24rem;
                    }

                section.manage-cookies .container .accordion-container .accordion-item.active .title::before {
                    content: "";
                    background-image: url(Icons/chevron-up.svg);
                    position: absolute;
                    right: 0;
                    width: .24rem;
                    height: .24rem;
                }


                section.manage-cookies .container .accordion-container .accordion-item .content {
                    display: none;
                    font-weight: 300;
                    font-size: 0.12rem;
                    line-height: 1.6em;
                    color: #425968;
                    padding: 0 0 .2rem 0;
                    margin: 0;
                }

                section.manage-cookies .container .accordion-container .accordion-item.active .content {
                    display: block;
                }

        section.manage-cookies .container .buttons {
            margin-top: .32rem
        }

        section.manage-cookies .container .btn-default:not(:nth-child(1)) {
            margin-left: .08rem
        }

        section.manage-cookies .container .btn-default {
            padding: 0;
            min-width: 32.9%;
            height: .55rem;
            border-radius: 0;
        }

            section.manage-cookies .container .btn-default::after {
                content: none;
            }

            section.manage-cookies .container .btn-default span {
                font-weight: 500;
                font-size: 0.16rem;
                line-height: 1.6em;
            }

                section.manage-cookies .container .btn-default span::after {
                    content: none;
                }

            section.manage-cookies .container .btn-default.cookie-oranage {
                background: #F36221 !important;
            }

            section.manage-cookies .container .btn-default.cookie-white {
                background: #ffffff;
                border: 1px solid #F36221;
            }

                section.manage-cookies .container .btn-default.cookie-white span {
                    color: #F36221;
                }

    section.manage-cookies .switch-container .switch {
        position: absolute;
        left: 0
    }


    section.manage-cookies .switch {
        position: relative;
        display: inline-block;
        width: .52rem;
        height: .3rem;
        top: 50%;
        transform: translateY(-50%);
    }

        section.manage-cookies .switch input:checked {
            opacity: 0;
            width: 0;
            height: 0;
        }

        section.manage-cookies .switch .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            -webkit-transition: .4s;
            transition: .4s;
            border-radius: .15rem;
        }

            section.manage-cookies .switch .slider:before {
                position: absolute;
                content: "";
                height: .22rem;
                width: .22rem;
                left: 4px;
                background-color: white;
                -webkit-transition: .4s;
                transition: .4s;
                border-radius: 50%;
                top: 50%;
                transform: translateY(-50%);
            }

        section.manage-cookies .switch input:checked ~ .slider {
            background-color: #215A96;
        }

            section.manage-cookies .switch input:checked ~ .slider:before {
                -webkit-transform: translateX(0.22rem) translateY(-50%);
                -ms-transform: translateX(0.22rem) translateY(-50%);
                transform: translateX(0.22rem) translateY(-50%);
            }




/* The End */

@media screen and (min-width: 901px) {
    .mobile-only {
        display: none !important;
    }

    /* Hovers */

    .btn-default:not(.white):hover {
        background-color: #10376a;
    }

        .btn-default:not(.white):hover:after {
            background-color: #ea5800;
        }

    .btn-default.white:hover {
        background-color: #cccccc;
    }

        .btn-default.white:hover:after {
            background-color: #ea5800;
        }

    section.main-banner .slide-box .buttons .next:hover {
        background-color: #d44600;
    }

    section.main-banner .slide-box .buttons .prev:hover {
        background-color: #d35400;
    }

    section.main-banner .language-box .lang-item:hover {
        background-color: #092953;
    }

    section.main-news .boxes .box:hover .content:before {
        background-color: #ff6f00;
    }

    section.news .boxes .box:hover .content:before {
        background-color: #ff6f00;
    }

    section.main-social .tab-menu a.facebook:hover {
        background-color: #4367b3;
    }

    section.main-social .tab-menu a.youtube:hover {
        background-color: #ff0000;
    }

    section.main-social .tab-menu a.instagram:hover {
        background-color: #231f20;
    }

    section.main-social .tab-menu a.linkedin:hover {
        background-color: #0077b5;
    }

    section.certificates .certificates-container .item-container .box-items .item .file-download:hover {
        background-color: #ff6f00;
        color: white;
    }

    section.main-social .tab-menu a:hover .fa {
        color: white !important;
    }

    section.main-services .item .bg,
    section.main-tech .box .bg,
    section.main-news .boxes .box .image .bg {
        transition: .3s all ease;
        -webkit-transition: .3s all ease;
        -ms-transition: .3s all ease;
        -moz-transition: .3s all ease;
        -o-transition: .3s all ease;
    }

    section.main-services .item:hover .bg,
    section.main-tech .box:hover .bg,
    section.main-news .boxes .box:hover .image .bg {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
    }

    .popup-wrapper .btn-default:hover {
        border-color: #ea5800;
    }

    .popup-wrapper .btn-close:hover {
        background-color: #ea5800;
    }

    section.category-highlight .category-list .category-item .item-cont:hover .content {
        padding-bottom: .6rem;
    }

        section.category-highlight .category-list .category-item .item-cont:hover .content .index {
            padding-bottom: .1rem;
        }
}

@media screen and (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

    /* General Bootstrap */

    html {
        font-size: 13.33333vw;
    }

    /* General */

    .btn-default {
        min-width: 5.8rem;
        max-width: 100%;
        height: 1.1rem;
        padding-right: 1.1rem;
    }

        .btn-default:after {
            width: 1.1rem;
        }

        .btn-default span {
            font-size: .29rem;
            letter-spacing: .02em;
        }

            .btn-default span:after {
                right: .44rem;
                font-size: .48rem;
            }

    /* Lines */

    .lines div {
        display: none;
    }

        .lines div:nth-child(1) {
            display: block;
            left: 33.3333%;
        }

        .lines div:nth-child(2) {
            display: block;
            left: 66.6666%;
        }

    /* Owl Dots */

    .owl-dots {
        margin-top: .45rem;
        text-align: center;
    }

        .owl-dots .owl-dot {
            display: inline-block;
            vertical-align: middle;
            width: 7px;
            height: 7px;
            border-radius: 5px;
            background-color: #d7dce3;
        }

            .owl-dots .owl-dot.active {
                background-color: #ef772f;
            }

            .owl-dots .owl-dot + .owl-dot {
                margin-left: .25rem;
            }

    /* Header */

    header {
        position: relative;
        width: 100%;
        height: 1.35rem;
        left: auto;
        padding-left: 0;
    }

        header .logo {
            width: 1.72rem;
            left: .45rem;
            top: .51rem;
            z-index: 3;
        }

        header .menu-container {
            display: none;
            position: fixed;
            width: 100%;
            height: calc(100% - 1.35rem);
            top: 1.35rem;
            padding-top: 1rem;
            padding-bottom: 1rem;
            background-color: #003378;
            z-index: 2;
            overflow: auto;
        }

            header .menu-container:before {
                content: '';
                display: inline-block;
                vertical-align: middle;
                height: 100%;
                width: 0;
            }

            header .menu-container .menu {
                display: inline-block;
                vertical-align: middle;
                width: 100%;
                height: auto;
                padding-left: .44rem;
                padding-right: .44rem;
                text-align: center;
            }

            header .menu-container .menu-item {
                display: block;
                height: auto;
                padding-top: .44rem;
                padding-bottom: .44rem;
            }

                header .menu-container .menu-item + .menu-item:before {
                    top: auto;
                    bottom: 100%;
                    left: 50%;
                    margin-left: -2px;
                    margin-top: 2px;
                    background-color: rgba(255,255,255,.1);
                }

                header .menu-container .menu-item a {
                    display: block;
                    padding: 0;
                    height: auto;
                }

                    header .menu-container .menu-item a span {
                        font-weight: 600;
                        font-size: .5rem;
                        letter-spacing: -.005em;
                        color: white;
                    }

        header .search {
            width: auto;
            height: auto;
            right: 1.1rem;
            top: .21rem;
        }

            header .search:before {
                display: none;
            }

            header .search a {
                padding: .25rem;
            }

                header .search a img {
                    width: .44rem;
                }

        header .btn-menu {
            position: absolute;
            width: .9rem;
            height: .9rem;
            top: .22rem;
            right: .2rem;
        }

            header .btn-menu img {
                position: absolute;
                top: 50%;
                left: 50%;
                transition: .3s all ease;
                -webkit-transition: .3s all ease;
                -ms-transition: .3s all ease;
                -moz-transition: .3s all ease;
                -o-transition: .3s all ease;
            }

            header .btn-menu .open {
                width: .4rem;
                transform: translate(-50%, -50%);
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                -moz-transform: translate(-50%, -50%);
                -o-transform: translate(-50%, -50%);
            }

            header .btn-menu .close {
                opacity: 0;
                width: .35rem;
                transform: translate(-50%, -50%) rotate(90deg);
                -webkit-transform: translate(-50%, -50%) rotate(90deg);
                -ms-transform: translate(-50%, -50%) rotate(90deg);
                -moz-transform: translate(-50%, -50%) rotate(90deg);
                -o-transform: translate(-50%, -50%) rotate(90deg);
            }

        header .menu-container a.active:after {
            display: none;
        }

        header .menu-container a.active span {
            color: #ff6f00 !important;
            text-decoration: underline;
        }

        header .search a:hover {
            opacity: 1;
        }

        header .menu-container a:hover span {
            color: #2c3035;
        }

        header.menu-active .menu-container {
            display: block;
        }

        header.menu-active .btn-menu .open {
            opacity: 0;
            transform: translate(-50%, -50%) rotate(-90deg);
            -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            -ms-transform: translate(-50%, -50%) rotate(-90deg);
            -moz-transform: translate(-50%, -50%) rotate(-90deg);
            -o-transform: translate(-50%, -50%) rotate(-90deg);
        }

        header.menu-active .btn-menu .close {
            opacity: 1;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
        }

        header .menu-container .btn-config {
            position: relative;
            top: auto;
            right: auto;
            margin-top: .5rem;
            padding-left: 1.3rem;
            transform: none;
            -webkit-transform: none;
            -ms-transform: none;
            113f7c -moz-transform: none;
            -o-transform: none;
            background-color: white;
        }

            header .menu-container .btn-config span {
                color: #113f7c;
            }

                header .menu-container .btn-config span:after {
                    width: .48rem;
                    height: .48rem;
                    left: .32rem;
                    margin-top: -.24rem;
                }

    /* Main Banner */

    section.main-banner {
        min-height: 10.5rem;
    }

        section.main-banner .owl-carousel .item {
            padding-top: 2rem;
        }

            section.main-banner .owl-carousel .item:before {
                display: none;
            }

            section.main-banner .owl-carousel .item .content {
                width: 100%;
                padding-left: .44rem;
                padding-right: .44rem;
                margin-left: 0;
            }

                section.main-banner .owl-carousel .item .content .text {
                    font-size: .9rem;
                    line-height: 1.1em;
                    letter-spacing: -.02em;
                    text-align: center;
                }

                section.main-banner .owl-carousel .item .content .description {
                    font-size: .28rem;
                    line-height: 1.43em;
                    text-align: center;
                }

                    section.main-banner .owl-carousel .item .content .description br {
                        display: none;
                    }

                    section.main-banner .owl-carousel .item .content .description p {
                        display: inline;
                    }

                section.main-banner .owl-carousel .item .content * + .description {
                    margin-top: .2rem;
                }

                section.main-banner .owl-carousel .item .content .btn-detail {
                    display: block;
                    width: 1.5rem;
                    margin-top: .3rem;
                    margin-left: auto;
                    margin-right: auto;
                }

                    section.main-banner .owl-carousel .item .content .btn-detail img {
                        width: 100%;
                        margin-left: -.25rem;
                    }

        section.main-banner .slide-box {
            display: none !important;
        }

        section.main-banner .language-box {
            width: 100%;
            height: 1.1rem;
            left: 0;
            padding-left: .44rem;
            padding-right: .44rem;
        }

            section.main-banner .language-box .lang-item {
                padding: .3rem .2rem;
                text-align: center;
            }

                section.main-banner .language-box .lang-item:after {
                    display: none;
                }

                section.main-banner .language-box .lang-item img {
                    position: absolute;
                    top: -.08rem;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                    -ms-transform: translate(-50%, -50%);
                    -moz-transform: translate(-50%, -50%);
                    -o-transform: translate(-50%, -50%);
                }

                section.main-banner .language-box .lang-item.world img {
                    width: .7rem;
                }

                section.main-banner .language-box .lang-item.country img {
                    width: .73rem;
                }

                section.main-banner .language-box .lang-item span {
                    font-size: .34rem;
                    letter-spacing: 0;
                }

                section.main-banner .language-box .lang-item.world span {
                    font-size: .29rem;
                }

                section.main-banner .language-box .lang-item img + span {
                    margin-left: 0;
                }

                section.main-banner .language-box .lang-item.world span:before {
                    display: none;
                }

                section.main-banner .language-box .lang-item.country span:before {
                    display: none;
                }

        section.main-banner .owl-dots {
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 1.9rem;
            padding-left: .44rem;
            padding-right: .44rem;
        }

    section.main-banner {
        min-height: 10.5rem;
    }

        section.main-banner .owl-carousel .item {
            padding-top: 2rem;
        }

            section.main-banner .owl-carousel .item:before {
                display: none;
            }

            section.main-banner .owl-carousel .item .content {
                width: 100%;
                padding-left: .44rem;
                padding-right: .44rem;
                margin-left: 0;
            }

                section.main-banner .owl-carousel .item .content .text {
                    font-size: .9rem;
                    line-height: 1.1em;
                    letter-spacing: -.02em;
                    text-align: center;
                }

                section.main-banner .owl-carousel .item .content .description {
                    font-size: .28rem;
                    line-height: 1.43em;
                    text-align: center;
                }

                    section.main-banner .owl-carousel .item .content .description br {
                        display: none;
                    }

                    section.main-banner .owl-carousel .item .content .description p {
                        display: inline;
                    }

                section.main-banner .owl-carousel .item .content * + .description {
                    margin-top: .2rem;
                }

                section.main-banner .owl-carousel .item .content .btn-detail {
                    display: block;
                    width: 1.5rem;
                    margin-top: .3rem;
                    margin-left: auto;
                    margin-right: auto;
                }

                    section.main-banner .owl-carousel .item .content .btn-detail img {
                        width: 100%;
                        margin-left: -.25rem;
                    }

        section.main-banner .slide-box {
            display: none !important;
        }

        section.main-banner .language-box {
            width: 100%;
            height: 1.1rem;
            left: 0;
            padding-left: .44rem;
            padding-right: .44rem;
        }

            section.main-banner .language-box .lang-item {
                padding: .3rem .2rem;
                text-align: center;
            }

                section.main-banner .language-box .lang-item:after {
                    display: none;
                }

                section.main-banner .language-box .lang-item img {
                    position: absolute;
                    top: -.08rem;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    -webkit-transform: translate(-50%, -50%);
                    -ms-transform: translate(-50%, -50%);
                    -moz-transform: translate(-50%, -50%);
                    -o-transform: translate(-50%, -50%);
                }

                section.main-banner .language-box .lang-item.world img {
                    width: .7rem;
                }

                section.main-banner .language-box .lang-item.country img {
                    width: .73rem;
                }

                section.main-banner .language-box .lang-item span {
                    font-size: .34rem;
                    letter-spacing: 0;
                }

                section.main-banner .language-box .lang-item.world span {
                    font-size: .29rem;
                }

                section.main-banner .language-box .lang-item img + span {
                    margin-left: 0;
                }

                section.main-banner .language-box .lang-item.world span:before {
                    display: none;
                }

                section.main-banner .language-box .lang-item.country span:before {
                    display: none;
                }

        section.main-banner .owl-dots {
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 1.9rem;
            padding-left: .44rem;
            padding-right: .44rem;
        }

    /* Main Banner */

    section.slider {
        min-height: 10.5rem;
    }

        section.slider .owl-carousel .item {
            padding-top: 2rem;
        }

            section.slider .owl-carousel .item:before {
                display: none;
            }

            section.slider .owl-carousel .item .content {
                width: 100%;
                padding-left: .44rem;
                padding-right: .44rem;
                margin-left: 0;
            }

                section.slider .owl-carousel .item .content .text {
                    font-size: .72rem;
                    line-height: 1.1em;
                    text-align: center;
                }

                section.slider .owl-carousel .item .content .description {
                    font-size: .28rem;
                    line-height: 1.43em;
                    text-align: center;
                }

                    section.slider .owl-carousel .item .content .description br {
                        display: none;
                    }

                    section.slider .owl-carousel .item .content .description p {
                        display: inline;
                    }

                section.slider .owl-carousel .item .content * + .description {
                    margin-top: .2rem;
                }

                section.slider .owl-carousel .item .content .btn-detail {
                    display: block;
                    width: 1.5rem;
                    margin-top: .3rem;
                    margin-left: auto;
                    margin-right: auto;
                }

                    section.slider .owl-carousel .item .content .btn-detail img {
                        width: 100%;
                        margin-left: -.25rem;
                    }

    section.slider {
        min-height: 10.5rem;
    }

        section.slider .owl-carousel .item {
            padding-top: 2rem;
        }

            section.slider .owl-carousel .item:before {
                display: none;
            }

            section.slider .owl-carousel .item .content {
                width: 100%;
                padding-left: .44rem;
                padding-right: .44rem;
                margin-left: 0;
            }

                section.slider .owl-carousel .item .content .index {
                    font-size: .72rem;
                    line-height: 1.1em;
                    text-align: left;
                }

                section.slider .owl-carousel .item .content .text {
                    font-size: .72rem;
                    line-height: 1.1em;
                    text-align: left;
                }

                section.slider .owl-carousel .item .content .description {
                    font-size: .28rem;
                    line-height: 1.43em;
                    text-align: left;
                    padding-right: 0;
                }

                    section.slider .owl-carousel .item .content .description br {
                        display: none;
                    }

                    section.slider .owl-carousel .item .content .description p {
                        display: inline;
                    }

                section.slider .owl-carousel .item .content * + .description {
                    margin-top: .28rem;
                }

                section.slider .owl-carousel .item .content .btn-detail {
                    display: block;
                    width: 1.5rem;
                    margin-top: .3rem;
                    margin-left: auto;
                    margin-right: auto;
                }

                    section.slider .owl-carousel .item .content .btn-detail img {
                        width: 100%;
                        margin-left: -.25rem;
                    }

        section.slider .slide-box .content .preview {
            padding-left: .42rem;
            padding-right: .2rem;
            padding-top: 0;
            padding-bottom: 0;
        }

            section.slider .slide-box .content .preview:before {
                content: none;
            }

            section.slider .slide-box .content .preview .text {
                font-size: .24rem;
                line-height: 1.5em;
            }

            section.slider .slide-box .content .preview * + .text {
                margin-top: .2rem;
            }

    /* Switch Slider */
    section .switch-slider {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
    }

        section.switch-slider .intro {
            padding-left: .44rem;
            padding-right: .44rem;
        }

            section.switch-slider .intro .title {
                font-size: .8rem;
                line-height: 1.15em;
                letter-spacing: -.025em;
            }

            section.switch-slider .intro .text {
                font-size: .28rem;
                line-height: 1.43em;
            }

            section.switch-slider .intro * + .text {
                margin-top: .25rem;
            }

            section.switch-slider .intro * + .btn-default {
                margin-top: .6rem;
            }

        section.switch-slider .slider {
            height: auto;
            margin-top: .8rem;
            padding-left: 0;
            padding-right: 0;
            padding-top: 0;
            margin-left: 0px;
            margin-right: 0px;
            font-size: 0;
            text-align: center;
        }

            section.switch-slider .slider > div {
                display: inline-block;
                vertical-align: middle;
                height: 100%;
                margin-top: .2rem;
            }

            section.switch-slider .slider img {
                max-width: 100%;
            }

                section.switch-slider .slider img.passive-img {
                    display: none !important;
                }

                section.switch-slider .slider img.active-img {
                    display: block !important;
                    opacity: 1 !important;
                }

                    section.switch-slider .slider img.active-img:not(.active-img-slide):not(.active-img-bg) {
                        position: relative !important;
                        top: 0px;
                        transform: none !important;
                        -webkit-transform: none !important;
                        -ms-transform: none !important;
                        -moz-transform: none !important;
                        -o-transform: none !important;
                    }

            section.switch-slider .slider .item img.active-img-slide {
                top: 50%;
            }

            section.switch-slider .slider .item {
                position: relative;
                width: 100%;
                left: auto !important;
                cursor: default;
                padding-bottom: 1rem;
                transition: none;
                -webkit-transition: none;
                -ms-transition: none;
                -moz-transition: none;
                -o-transition: none;
            }

                section.switch-slider .slider:not(.hover) .item:nth-child(2),
                section.switch-slider .slider .item.active {
                    width: 100%;
                }

            section.switch-slider .slider .inner-container {
                top: auto;
                transform: none;
                -webkit-transform: none;
                -ms-transform: none;
                -moz-transform: none;
                -o-transform: none;
            }

            section.switch-slider .slider .title {
                position: absolute;
                display: block;
                width: 100%;
                left: 0;
                top: 100%;
                margin-top: .2rem !important;
                font-size: .6rem;
                text-align: center;
                opacity: 1 !important;
            }

        section.switch-slider .intro .btn-round {
            margin-bottom: .32rem;
        }

    /* Category Highlight */
    section.category-highlight {
        padding-bottom: .76rem;
    }

        section.category-highlight .container {
            padding-left: 0;
            padding-right: 0;
        }

            section.category-highlight .container .intro {
                padding-left: 11%;
                padding-right: 11%;
            }

        section.category-highlight .intro .text {
            font-size: .32rem;
        }

        section.category-highlight .intro * + .text {
            margin-top: .32rem;
        }

        section.category-highlight * + .category-list {
            margin-top: .64rem;
        }

        section.category-highlight .category-list .category-item {
            width: 100%;
            padding-left: 0;
            padding-right: 0;
        }

            section.category-highlight .category-list .category-item .item-cont .content .index {
                font-size: .28rem;
                line-height: 1.5em;
            }

            section.category-highlight .category-list .category-item .item-cont .content .title {
                font-size: .36rem;
                line-height: 1.16em;
            }

            section.category-highlight .category-list .category-item .item-cont .content * + .title {
                margin-top: .04rem;
            }

        section.category-highlight .container .owl-item {
            padding-left: .2rem;
            padding-right: .2rem;
        }

        section.category-highlight .owl-dots {
            margin-top: .28rem;
        }

            section.category-highlight .owl-dots .owl-dot {
                width: .18rem;
                height: .18rem;
                border-radius: 50%;
                background-color: #fff;
                border: 1px solid #435967;
            }

                section.category-highlight .owl-dots .owl-dot.active {
                    background-color: #435967;
                }

                section.category-highlight .owl-dots .owl-dot + .owl-dot {
                    margin-left: .16rem;
                }

    /* Main Services */
    section .main-services {
        padding-bottom: 1.3rem !important;
        background-color: transparent;
    }

        section.main-services .boxes {
            height: auto;
        }

        section.main-services .owl-item {
            padding-left: .21rem;
            padding-right: .21rem;
        }

        section.main-services .item {
            display: block;
            width: 100%;
            height: 8.53rem;
        }

            section.main-services .item span {
                font-size: .58rem;
            }

                section.main-services .item span:after {
                    width: .18rem;
                    height: .18rem;
                    margin-left: -.09rem;
                }

    /* Main Tech */

    section.main-tech {
        padding-top: 1.2rem;
        padding-bottom: 1.3rem;
    }

        section.main-tech .intro {
            width: 100%;
            padding-left: .6rem;
            padding-right: .6rem;
        }

            section.main-tech .intro:before {
                content: '';
                position: absolute;
                width: .05rem;
                height: .86rem;
                left: 50%;
                top: 100%;
                margin-top: .36rem;
                margin-left: -.03rem;
                background-color: #ff6f00;
            }

            section.main-tech .intro .title {
                display: block;
                width: 100%;
                font-size: .8rem;
                line-height: 1.15em;
                letter-spacing: -.025em;
                text-align: center;
            }

                section.main-tech .intro .title:before {
                    display: none;
                }

            section.main-tech .intro .description {
                display: block;
                width: 100%;
                padding-left: 0;
                padding-bottom: 0;
                font-size: .28rem;
                line-height: 1.43em;
                text-align: center;
            }

            section.main-tech .intro * + .description {
                margin-top: .3rem;
            }

        section.main-tech * + .boxes {
            margin-top: .72rem;
        }

        section.main-tech .boxes .owl-item {
            padding-left: .21rem;
            padding-right: .21rem;
        }

        section.main-tech .box {
            display: block;
            width: 100%;
            height: 9rem;
            padding-top: 0;
        }

            section.main-tech .box.large {
                width: 100%;
            }

            section.main-tech .box:before {
                opacity: .7;
                background-image: linear-gradient(rgba(25,31,41,0) 20%, rgb(25,31,41) 100%);
            }

            section.main-tech .box span {
                padding: .56rem;
                font-size: .52rem;
                line-height: 1.115em;
                text-align: center;
            }

                section.main-tech .box span:before {
                    left: 50%;
                    top: -.1rem;
                    font-size: .36rem;
                    transform: translateX(-50%);
                    -webkit-transform: translateX(-50%);
                    -ms-transform: translateX(-50%);
                    -moz-transform: translateX(-50%);
                    -o-transform: translateX(-50%);
                }

        section.main-tech * + .btn-default {
            margin-top: .76rem;
        }

    /* Main News */

    section.main-news {
        padding-top: 1.2rem;
        padding-bottom: 1.3rem;
    }

        section.main-news:before {
            display: none;
        }

        section.main-news .intro {
            width: 100%;
            padding-left: .6rem;
            padding-right: .6rem;
        }

            section.main-news .intro .title {
                display: block;
                width: 100%;
                font-size: .8rem;
                line-height: 1.15em;
                letter-spacing: -.025em;
                text-align: center;
            }

            section.main-news .intro .description {
                display: block;
                width: 100%;
                padding-left: 0;
                padding-bottom: 0;
                font-size: .28rem;
                line-height: 1.43em;
                text-align: center;
            }

            section.main-news .intro * + .description {
                margin-top: .2rem;
            }

        section.main-news .boxes {
            width: 100%;
        }

        section.main-news * + .boxes {
            margin-top: .6rem;
        }

        section.main-news .boxes .owl-item {
            padding-left: .21rem;
            padding-right: .21rem;
        }

        section.main-news .boxes .box {
            position: relative;
            display: block;
        }

            section.main-news .boxes .box:before {
                display: none;
            }

            section.main-news .boxes .box .content {
                padding: .72rem .76rem .96rem .76rem;
            }

                section.main-news .boxes .box .content:before {
                    width: 1rem;
                    height: 1rem;
                    left: .8rem;
                    margin-top: -.5rem;
                }

                section.main-news .boxes .box .content:after {
                    left: 1.22rem;
                    margin-top: -.04rem;
                    font-size: .48rem;
                }

                section.main-news .boxes .box .content .date {
                    font-size: .26rem;
                    color: #69737d;
                }

                section.main-news .boxes .box .content * + .date {
                    margin-top: .2rem;
                }

                section.main-news .boxes .box .content .title {
                    font-size: .52rem;
                    line-height: 1.17em;
                }

                section.main-news .boxes .box .content * + .title {
                    margin-top: .2rem;
                }

        section.main-news * + .btn-default {
            margin-top: .8rem;
        }

        /* Main Social */

        section.main-news + section.main-social {
            padding-top: 1.2rem;
        }

    section.main-social {
        padding-top: 1.2rem;
        padding-bottom: 1.3rem;
    }

        section.main-social .intro {
            width: 100%;
            padding-left: .44rem;
            padding-right: .44rem;
        }

            section.main-social .intro .title {
                font-size: .8rem;
                line-height: 1.15em;
                letter-spacing: -.025em;
            }

            section.main-social .intro .text {
                font-size: .28rem;
                line-height: 1.43em;
                letter-spacing: .005em;
            }

            section.main-social .intro * + .text {
                margin-top: .24rem;
            }

        section.main-social .tabs {
            width: 100%;
        }

        section.main-social * + .tabs {
            margin-top: .58rem;
        }

        section.main-social .tab-menu {
            padding-left: .85rem;
            padding-right: .85rem;
        }

            section.main-social .tab-menu a {
                width: calc(25% - .12rem);
                height: 1.16rem;
                margin-left: 0;
                margin-right: 0;
            }

                section.main-social .tab-menu a:after {
                    height: .46rem;
                    font-size: .24rem;
                    line-height: .46rem;
                    top: calc(100% - .46rem) !important;
                    opacity: 0 !important;
                }

                section.main-social .tab-menu a.active:after {
                    top: 100% !important;
                    opacity: 1 !important;
                }

                section.main-social .tab-menu a + a {
                    margin-left: .16rem;
                }

                section.main-social .tab-menu a .fa {
                    font-size: .48rem;
                }

        section.main-social * + .tab-container {
            margin-top: 1.1rem;
        }

        section.main-social .tab-container .owl-item {
            padding-left: .21rem;
            padding-right: .21rem;
        }

        section.main-social .tab-container .box {
            padding-bottom: 1.5rem;
        }

            section.main-social .tab-container .box .top {
                height: 1.3rem;
                padding-left: .24rem;
                padding-right: 1.1rem;
            }

                section.main-social .tab-container .box .top .logo {
                    width: .95rem;
                }

                section.main-social .tab-container .box .top .content {
                    width: calc(100% - .95rem);
                    padding-left: .2rem;
                }

                    section.main-social .tab-container .box .top .content .title {
                        font-size: .25rem;
                        letter-spacing: .005em;
                    }

                    section.main-social .tab-container .box .top .content .text {
                        font-size: .23rem;
                        letter-spacing: -.005em;
                    }

                    section.main-social .tab-container .box .top .content * + .text {
                        margin-top: .04rem;
                    }

                section.main-social .tab-container .box .top .detail {
                    width: .43rem;
                    right: .36rem;
                    margin-top: -.06rem;
                }

            section.main-social .tab-container .box .icon {
                bottom: .75rem;
                font-size: .7rem;
            }

        section.main-social .tab-container .owl-dots {
            margin-top: .45rem;
        }

            section.main-social .tab-container .owl-dots .owl-dot {
                width: 7px;
                height: 7px;
                margin-left: 0;
                margin-right: 0;
                border-radius: 5px;
                background-color: #d7dce3;
            }

                section.main-social .tab-container .owl-dots .owl-dot + .owl-dot {
                    margin-left: .25rem;
                }

                section.main-social .tab-container .owl-dots .owl-dot.active {
                    background-color: #ef772f !important;
                }

                section.main-social .tab-container .owl-dots .owl-dot:hover {
                    background-color: #d7dce3;
                }

    /* Dealers */

    section.dealers {
        padding-top: 184%;
    }

        section.dealers .map-container .overlay {
            background-image: url(Images/dealer-bg-mobile.jpg);
        }

        section.dealers .infobox-container:before {
            display: none;
        }

        section.dealers .infobox .phone + .type,
        section.dealers .infobox .type + .phone {
            margin-top: 0;
        }

        section.dealers .content {
            width: 100%;
            left: 0;
            padding-left: .44rem;
            padding-right: .44rem;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transition: .2s all ease;
            -webkit-transition: .2s all ease;
            -ms-transition: .2s all ease;
            -moz-transition: .2s all ease;
            -o-transition: .2s all ease;
        }

        section.dealers.map-active .content {
            top: .44rem;
            transform: translateY(0);
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            -moz-transform: translateY(0);
            -o-transform: translateY(0);
        }

        section.dealers .content .title {
            font-size: .8rem;
            letter-spacing: -.025em;
        }

        section.dealers .content * + .filter {
            margin-top: .5rem;
        }

        section.dealers .content .filter > * {
            margin-left: 0;
            margin-right: 0;
        }

            section.dealers .content .filter > * + * {
                margin-top: .26rem;
            }

        section.dealers .content .filter .btn-find {
            display: block;
            width: 5.2rem;
            height: 1.1rem;
            min-width: unset;
            padding-left: .2rem;
            padding-right: 1.3rem;
            margin-left: auto;
            margin-right: auto;
        }

            section.dealers .content .filter .btn-find:after {
                width: 1.1rem;
            }

            section.dealers .content .filter .btn-find span {
                font-size: .29rem;
                letter-spacing: .01em;
            }

                section.dealers .content .filter .btn-find span:after {
                    width: .36rem;
                    height: .52rem;
                    right: .37rem;
                    margin-top: -.26rem;
                }

        section.dealers .content .filter .select2-container {
            display: block;
            width: 5.2rem !important;
            margin-left: auto;
            margin-right: auto;
        }

            section.dealers .content .filter .select2-container .select2-selection--single .select2-selection__rendered {
                padding-left: .4rem;
                padding-right: 1rem;
                padding-top: .38rem;
                padding-bottom: .38rem;
                font-size: .29rem;
                letter-spacing: 0;
            }

        section.dealers .content .filter .select2-container--default .select2-selection--single .select2-selection__placeholder {
            font-size: .29rem;
            letter-spacing: 0;
        }

        section.dealers .content .filter .select2-container--default .select2-selection--single .select2-selection__arrow {
            right: .39rem;
        }

            section.dealers .content .filter .select2-container--default .select2-selection--single .select2-selection__arrow:before {
                font-size: .5rem;
            }

    .select2-container--default .select2-results {
        max-height: 4rem;
    }

    .select2-results__option {
        padding: .3rem 1rem .3rem .4rem;
        font-size: .29rem;
        letter-spacing: 0;
    }

    /* Footer */

    footer {
        height: auto;
        padding-left: 0;
        padding-right: 0;
        padding-top: 1.8rem;
        border-top: 1px solid #e7ebec;
        flex-direction:column;
    }

        footer .logo {
            width: 1.72rem;
            left: 50%;
            top: -.87rem;
            margin-left: -.86rem;
        }

            footer .logo img {
                width: 100%;
            }

        footer .left {
            width: 100%;
            padding-top: .2rem;
            padding-left: .44rem;
            padding-right: .44rem;
            text-align: center;
        }

            footer .left > * {
                display: block;
                padding-left: 0;
                padding-right: 0;
                margin-top: .3rem;
                font-size: .26rem;
            }

                footer .left > * + *:before {
                    display: none;
                }

        footer .right {
            width: 100%;
            padding-left: .44rem;
            padding-right: .44rem;
            text-align: center;
        }

            footer .right .social {
                display: block;
            }

                footer .right .social a {
                    display: block;
                    padding-left: 0;
                    padding-right: 0;
                    font-size: .26rem;
                    text-decoration: underline;
                }

                    footer .right .social a + a {
                        margin-top: .3rem;
                    }

                        footer .right .social a + a:before {
                            display: none;
                        }

            footer .right .footer-image {
                margin-left: 0;
                margin-top: .5rem;
            }

                footer .right .footer-image img {
                    max-width: 2rem;
                    max-height: 2rem;
                }

        footer .copyright {
            display: block;
            width: 100%;
            margin-top: .6rem;
            padding: .39rem;
            font-size: .26rem;
            line-height: 1.2em;
            letter-spacing: .01em;
            color: #343434;
            text-align: center;
            border-top: 1px solid #e7ebec;
        }

    /* General Banner */

    section.general-banner {
        height: auto;
    }

        section.general-banner .owl-carousel,
        section.general-banner .owl-stage-outer,
        section.general-banner .owl-stage,
        section.general-banner .owl-item {
            height: auto;
        }

        section.general-banner .item {
            height: auto;
            padding: 2.2rem .44rem 2.4rem .44rem;
        }

            section.general-banner .item .content {
                width: 100%;
                padding-top: 0;
                margin-left: 0;
                text-align: center;
            }

                section.general-banner .item .content .title {
                    font-size: 1rem;
                    line-height: 1.1em;
                    letter-spacing: -.01em;
                }

                section.general-banner .item .content .text {
                    font-size: .28rem;
                    line-height: 1.43em;
                    letter-spacing: 0;
                }

                    section.general-banner .item .content .text br {
                        display: none;
                    }

                section.general-banner .item .content * + .text {
                    margin-top: .2rem;
                }

        section.general-banner .owl-dots {
            position: absolute;
            width: 100%;
            left: 50%;
            bottom: 1.26rem;
            padding-left: 0;
            margin-left: -2px;
        }

        section.general-banner .owl-dot {
            width: 4px;
            height: 4px;
        }

            section.general-banner .owl-dot + .owl-dot {
                margin-top: .16rem;
                margin-left: 0;
            }

    /* General Detail Banner */

    section.general-detail-banner {
        height: 139.46vw;
    }

        section.general-detail-banner .item .content {
            position: absolute;
            left: 0;
            bottom: 4.8vw;
            width: calc(100% - 9.6vw);
            margin-left: 4.8vw;
            margin-right: 4.8vw;
            margin-top: 0;
            padding: .48rem .4rem .17rem .4rem;
        }

            section.general-detail-banner .item .content .title {
                font-size: .88rem;
                line-height: 1.29em;
            }

            section.general-detail-banner .item .content .text {
                font-size: .24rem;
                line-height: 1.16em;
            }

            section.general-detail-banner .item .content * + .text {
                margin-top: .24rem;
            }

            section.general-detail-banner .item .content * + .list-items {
                margin-top: .2rem;
            }

            section.general-detail-banner .item .content .list-items {
                font-size: .24rem;
                line-height: 1.16em;
            }

                section.general-detail-banner .item .content .list-items ul {
                    padding-left: .3rem;
                }

                    section.general-detail-banner .item .content .list-items ul li {
                        width: 100%;
                        padding-right: 0;
                        margin-bottom: .26rem;
                    }

    /* Image Text */
    section.image-text-boxes {
        padding-top: .62rem;
    }

        section.image-text-boxes .intro {
            width: 89.33%;
        }

            section.image-text-boxes .intro .subtitle {
                font-size: .52rem;
                line-height: 2em;
            }

            section.image-text-boxes .intro .title {
                font-size: .6rem;
                line-height: 1.26em;
            }

            section.image-text-boxes .intro .text {
                font-size: .22rem;
                line-height: 1.375em;
            }

            section.image-text-boxes .intro * + .text {
                margin-top: .32rem;
            }

            section.image-text-boxes .intro .btn-round {
                width: 100%;
                height: 1.3rem;
                border-radius: .65rem;
            }

                section.image-text-boxes .intro .btn-round span {
                    font-size: .34rem;
                }

            section.image-text-boxes .intro * + .btn-default,
            section.image-text-boxes .intro * + .btn-round {
                margin-top: .4rem;
            }

        section.image-text-boxes .boxes {
            width: 89.33%;
            padding-bottom: 1.62rem;
        }

        section.image-text-boxes * + .boxes {
            margin-top: 1.2rem;
        }

        section.image-text-boxes .boxes * + .box {
            margin-top: .8rem;
        }

        section.image-text-boxes .boxes .box .content {
            width: 100%;
            padding: .5rem .8rem .7rem .52rem;
        }

            section.image-text-boxes .boxes .box .content .title {
                font-size: .6rem;
                line-height: 1.26em;
                text-indent: .2rem;
            }

            section.image-text-boxes .boxes .box .content .text {
                font-size: .32rem;
                line-height: 1.475em;
            }

            section.image-text-boxes .boxes .box .content * + .text {
                margin-top: .3rem;
            }

            section.image-text-boxes .boxes .box .content * + .btn-round,
            section.image-text-boxes .boxes .box .content * + .btn-default {
                margin-top: .4rem;
            }

        section.image-text-boxes .boxes .box .image {
            width: 100%;
            position: relative;
            height: 5rem;
            top: 0;
        }

            section.image-text-boxes .boxes .box .image img {
                position: absolute;
            }

        section.image-text-boxes .boxes .box:nth-child(even) .content {
            margin-left: 0;
        }

    /* Product List Accordion */

    section.product-list-accordion {
        padding-top: .81rem;
        padding-bottom: 1.48rem;
    }

        section.product-list-accordion .intro {
            width: 89.33%;
        }

            section.product-list-accordion .intro .subtitle {
                font-size: .52rem;
                line-height: 2em;
            }

            section.product-list-accordion .intro .title {
                font-size: .6rem;
                line-height: 1.26em;
            }

            section.product-list-accordion .intro .text {
                font-size: .22rem;
                line-height: 1.375em;
            }

            section.product-list-accordion .intro * + .text {
                margin-top: .32rem;
            }

            section.product-list-accordion .intro .btn-round {
                width: 100%;
                height: 1.3rem;
                min-height: 1.3rem;
            }

                section.product-list-accordion .intro .btn-round span {
                    font-size: .26rem;
                }

                    section.product-list-accordion .intro .btn-round span:after {
                        margin-left: .6rem;
                    }

        section.product-list-accordion * + .intro {
            margin-top: .72rem;
        }

        section.product-list-accordion .product-models {
            width: 89.33%;
            box-shadow: 0 .06rem .14rem rgba(0,0,0,.1);
            margin-left: auto;
            margin-right: auto;
        }

        section.product-list-accordion * + .product-models {
            margin-top: .92rem;
        }

        section.product-list-accordion .product-models .product-item .header {
            width: 100%;
            padding-left: 0;
            padding-right: 0;
        }

            section.product-list-accordion .product-models .product-item .header .product-name {
                font-size: 0.32rem;
                padding: .52rem .4rem;
            }

                section.product-list-accordion .product-models .product-item .header .product-name .accordion-toggler {
                    right: .4rem;
                    height: .7rem;
                    width: .7rem;
                    margin-top: -.35rem;
                }

                    section.product-list-accordion .product-models .product-item .header .product-name .accordion-toggler:before {
                        height: .4rem;
                    }

                    section.product-list-accordion .product-models .product-item .header .product-name .accordion-toggler:after {
                        width: .4rem;
                    }

        section.product-list-accordion .product-models .product-item .content {
            padding: .6rem .2rem;
        }

            section.product-list-accordion .product-models .product-item .content .props-left {
                display: none;
            }

            section.product-list-accordion .product-models .product-item .content .props-right {
                width: 100%;
            }

                section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop {
                    font-size: 0;
                    width: calc(50% - 0.4rem);
                    padding: .42rem .25rem .38rem .25rem;
                    margin-left: .2rem;
                    margin-right: .2rem;
                    margin-bottom: .4rem;
                }

                    section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop .prop-item-title {
                        font-size: .24rem;
                    }

                    section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop .prop-item-text {
                        font-size: .24rem;
                    }

                    section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop * + .prop-item-title {
                        margin-top: .3rem;
                    }

                    section.product-list-accordion .product-models .product-item .content .props-right .item-props .item-prop * + .prop-item-text {
                        margin-top: .1rem;
                    }

    /* General Content */

    section.general-content {
        padding-top: 1rem;
        padding-bottom: 1.7rem;
    }

        section.general-content .content {
            width: 100%;
            margin-left: 0;
            padding-left: .86rem;
            padding-right: .72rem;
        }

            section.general-content .content .title {
                font-size: .56rem;
                line-height: 1.25em;
                letter-spacing: -.025em;
            }

            section.general-content .content .text {
                font-size: .28rem;
                line-height: 1.72em;
            }

            section.general-content .content * + .text {
                margin-top: .3rem;
            }

            section.general-content .content .text p + p {
                margin-top: 1.72em;
            }

    /* Content Box */

    section.content-box {
        padding-top: .9rem;
        padding-bottom: .9rem;
    }

        section.content-box .intro {
            width: 100%;
            padding-left: .44rem;
            padding-right: .44rem;
        }

            section.content-box .intro .title {
                font-size: .85rem;
                line-height: 1.08em;
            }

            section.content-box .intro .text {
                font-size: .28rem;
                line-height: 1.43em;
                letter-spacing: .005em;
            }

            section.content-box .intro * + .text {
                margin-top: .3rem;
            }

        section.content-box .boxes {
            width: 100%;
        }

        section.content-box * + .boxes {
            margin-top: 1.1rem;
        }

        section.content-box .boxes .box {
            padding-left: .44rem;
            padding-right: .44rem;
            padding-bottom: 1rem;
        }

            section.content-box .boxes .box + .box {
                padding-top: .44rem;
                border-top: 1px solid #e7ebec;
            }

            section.content-box .boxes .box:before,
            section.content-box .boxes .box:after {
                display: none !important;
            }

            section.content-box .boxes .box .content {
                position: relative;
                display: block;
                width: 100%;
                padding: 0;
                padding-top: .5rem;
                text-align: center;
            }

            section.content-box .boxes .box:nth-child(even) .content {
                padding: 0;
                padding-top: .5rem;
            }

            section.content-box .boxes .box .content .title {
                font-size: .85rem;
                line-height: 1.12em;
            }

            section.content-box .boxes .box .content .text {
                font-size: .28rem;
                line-height: 1.43em;
                letter-spacing: .005em;
            }

            section.content-box .boxes .box .content * + .text {
                margin-top: .24rem;
            }

            section.content-box .boxes .box .content * + .btn-default {
                margin-top: .6rem;
            }

            section.content-box .boxes .box .image {
                width: 100%;
            }

                section.content-box .boxes .box .image img {
                    width: 100%;
                }

    /* News */

    section.news {
        padding: .44rem;
        padding-bottom: 1.9rem;
    }

        section.news .boxes {
            width: 100%;
        }

            section.news .boxes .box {
                display: block;
                width: 100%;
            }

                section.news .boxes .box:nth-child(2n) {
                    margin-left: 0;
                }

                section.news .boxes .box + .box,
                section.news .boxes .box:nth-child(n+3) {
                    margin-top: .44rem;
                }

                section.news .boxes .box:before {
                    content: '';
                    position: absolute;
                    width: calc(100% + .3rem);
                    height: calc(100% + .3rem);
                    left: -.15rem;
                    top: -.15rem;
                    background-color: white;
                    z-index: 0;
                }

                section.news .boxes .box .content {
                    padding: .72rem .76rem .96rem .76rem;
                }

                    section.news .boxes .box .content:before {
                        width: 1rem;
                        height: 1rem;
                        left: .8rem;
                        margin-top: -.5rem;
                    }

                    section.news .boxes .box .content:after {
                        left: 1.22rem;
                        margin-top: -.04rem;
                        font-size: .48rem;
                    }

                    section.news .boxes .box .content .date {
                        font-size: .26rem;
                        color: #69737d;
                    }

                    section.news .boxes .box .content * + .date {
                        margin-top: .2rem;
                    }

                    section.news .boxes .box .content .title {
                        font-size: .52rem;
                        line-height: 1.17em;
                    }

                    section.news .boxes .box .content * + .title {
                        margin-top: .2rem;
                    }

    /* Calendar */

    section.calendar {
        padding-bottom: 1.2rem;
    }

        section.calendar .container {
            width: 100%;
        }

        section.calendar .title {
            padding-left: .48rem;
            padding-right: .48rem;
            font-size: .62rem;
            line-height: 1.26em;
        }

        section.calendar .text {
            padding-left: .48rem;
            padding-right: .48rem;
            font-size: .28rem;
            line-height: 1.33em;
            letter-spacing: .005em;
        }

        section.calendar .title + .text {
            margin-top: .28rem;
        }

        section.calendar .text + .text {
            margin-top: 1.1rem;
        }

        section.calendar .title br,
        section.calendar .text br {
            display: none;
        }

        section.calendar * + .boxes {
            margin-top: .85rem;
        }

        section.calendar .boxes .owl-item {
            padding-top: .25rem;
            padding-left: .2rem;
            padding-right: .2rem;
        }

        section.calendar .boxes .box {
            display: block;
            width: 100%;
            margin-left: 0;
            padding: .72rem .4rem 1.2rem .4rem;
        }

            section.calendar .boxes .box:nth-child(n+5) {
                margin-top: 0;
            }

            section.calendar .boxes .box .flag {
                width: .88rem;
                top: -.25rem;
                margin-left: -.44rem;
            }

            section.calendar .boxes .box .content .name {
                font-size: .4rem;
                line-height: 1.25em;
            }

            section.calendar .boxes .box .content .country {
                font-size: .4rem;
                line-height: 1.25em;
            }

            section.calendar .boxes .box .date {
                padding: .26rem;
                font-size: .28rem;
                border: .1rem solid white;
            }

    /* Language Popup */

    .language-popup {
        padding-top: .5rem;
        padding-bottom: .5rem;
        overflow: auto;
    }

        .language-popup:before {
            display: none;
        }

        .language-popup .logo {
            position: relative;
            display: block;
            width: 1.72rem;
            top: auto;
            left: auto;
            margin-left: auto;
            margin-right: auto;
        }

        .language-popup .close {
            width: .75rem;
            height: .75rem;
            top: .08rem;
            right: .08rem;
        }

            .language-popup .close img {
                width: .18rem;
            }

        .language-popup .popup-container {
            width: 100%;
            max-height: unset;
            padding-top: 1.2rem;
            padding-bottom: .44rem;
            padding-left: .38rem;
            padding-right: .38rem;
            overflow: hidden;
        }

        .language-popup .intro .title {
            font-size: .7rem;
            line-height: 1.07em;
        }

        .language-popup .intro .text {
            font-weight: 400;
            font-size: .31rem;
            line-height: 1.45em;
        }

            .language-popup .intro .text br {
                display: none;
            }

        .language-popup .intro * + .text {
            margin-top: .32rem;
        }

        .language-popup * + .boxes {
            margin-top: .6rem;
        }

        .language-popup .boxes .box {
            display: block;
            width: 100%;
            height: 1.52rem;
            margin-left: 0;
            margin-top: 0;
            padding-left: .44rem;
            padding-right: .44rem;
            box-shadow: 0 .04rem .08rem rgba(0,0,0,.04);
        }

            .language-popup .boxes .box + .box {
                margin-top: .16rem;
            }

            .language-popup .boxes .box img {
                width: .65rem;
            }

            .language-popup .boxes .box .country {
                width: calc(100% - .65rem - 2.6rem);
                padding-left: .28rem;
                font-size: .3rem;
            }

            .language-popup .boxes .box .languages {
                width: 2.6rem;
            }

                .language-popup .boxes .box .languages a {
                    width: .7rem;
                    height: .7rem;
                }

                    .language-popup .boxes .box .languages a + a {
                        margin-left: .24rem;
                    }

                    .language-popup .boxes .box .languages a span {
                        font-size: .24rem;
                    }

    /* Popup */

    .popup-wrapper .popup-container {
        width: calc(100% - .6rem);
        padding-top: .6rem;
        padding-bottom: .6rem;
        padding-left: .4rem;
        padding-right: .4rem;
    }

    .popup-wrapper .text {
        font-size: .34rem;
    }

    .popup-wrapper * + .btn-default {
        margin-top: .36rem;
    }

    .popup-wrapper .btn-close {
        padding: .24rem;
    }

    .popup-wrapper .btn-close img {
        width: .32rem;
    }

    /* Cookie */

    .cookie .cookie-container .content p {
        font-weight: 400;
        font-size: 0.2rem;
        line-height: 1.6em;
        color: #425968;
    }

    .cookie .cookie-container .content * + p {
        margin-top: .1rem
    }

    .cookie .cookie-container .buttons {
        margin-top: .25rem
    }

    .cookie .cookie-container .btn-default {
        display:block;
        padding: 0;
        margin: .1rem 0 0 0 !important;
        min-width: 2.71rem
    }

    .cookie .cookie-container .btn-default span {
        font-size: .29rem;
    }

    /* Filter Slider */

    .filter-slider {
        background-size: 100%;
        background-position: center 23%;
        padding: 9.6vw 6.4vw;
        margin-bottom: 1rem;
    }

        .filter-slider .filter-item {
            width: 100%;
            margin-top: 0;
        }

        .filter-slider .filter-img {
            display: block;
            width: 75%;
            margin-left: auto;
            margin-right: auto;
            padding-right: 0rem;
            margin-top: 0;
        }

            .filter-slider .filter-img img {
                transform: translateZ(0);
                -webkit-transform: translateZ(0);
                -ms-transform: translateZ(0);
                -moz-transform: translateZ(0);
                -o-transform: translateZ(0);
            }

        .filter-slider .item-info {
            margin-top: 1.5vw;
            display: inline-block;
            vertical-align: middle;
            width: 100%;
            background: white;
            text-align: center;
            box-shadow: 1.2vw 1.5vw 4.5vw rgba(119,118,121,.12);
        }

        .filter-slider .item-name {
            font-size: 4.267vw;
            padding: 6% 7%;
        }

        .filter-slider .item-props {
            padding-left: 0;
            padding-right: 0;
            padding-bottom: .1rem;
            text-align: center;
        }

        .filter-slider .item-prop {
            font-size: 0;
            padding: 4% 4%;
            text-align: left;
            border-radius: 2vw;
            width: 45%;
            margin-right: .2rem;
        }

            .filter-slider .item-prop:nth-child(3n+3) {
                margin-right: .2rem;
            }

            .filter-slider .item-prop:nth-child(even) {
                margin-right: .0rem;
            }

            .filter-slider .item-prop > div {
                font-size: .26rem;
                text-align: center;
                padding-top: .2rem;
            }

            /*.filter-slider .item-prop > div:last-child {
                    font-size: 4.2vw;
                }

                    .filter-slider .item-prop > div:last-child.item-prop-small {
                        font-size: 3vw;
                    }*/

            .filter-slider .item-prop .item-prop-rs-text {
                font-size: .32rem;
            }

            .filter-slider .item-prop .item-prop-small {
                font-size: .26rem;
            }

            .filter-slider .item-prop:nth-child(1) div.item-prop-image > img {
                width: 8.59vw;
            }

            .filter-slider .item-prop:nth-child(2) div.item-prop-image > img {
                width: 8.65vw;
            }

            .filter-slider .item-prop:nth-child(3) div.item-prop-image > img {
                width: 7.8vw;
            }

            .filter-slider .item-prop:nth-child(4) div.item-prop-image > img {
                width: 7.6vw;
            }

            .filter-slider .item-prop:nth-child(5) div.item-prop-image > img {
                width: 7.5vw;
            }

            .filter-slider .item-prop:nth-child(6) div.item-prop-image > img {
                width: 7.3vw;
            }

            .filter-slider .item-prop:nth-child(7) div.item-prop-image > img {
                width: 7.1vw;
            }

            .filter-slider .item-prop:nth-child(8) div.item-prop-image > img {
                width: 8.2vw;
            }

        .filter-slider .item-info .btn-detail {
            padding: 6% 7%;
        }

        .filter-slider .filter-nav {
            top: 25%;
        }

        .filter-slider .nav-control {
            font-size: 6.933vw;
        }

        .filter-slider .owl-dots {
            display: none;
        }

        .filter-slider .blocks {
            font-size: 3.4vw;
            margin-right: .1rem;
            margin-top: 0;
            margin-left: .1rem;
        }

        .filter-slider .selection-wrapper {
            position: static;
            margin-bottom: 1.6rem;
            margin-top: .58rem;
        }

        .filter-slider ul.selection-container {
            width: 100%;
            z-index: 3;
            box-shadow: .8vw 1vw 3.65vw rgba(119,118,121,.21);
        }

            .filter-slider ul.selection-container > li {
                width: 44%;
                padding: 1em 0;
            }

                .filter-slider ul.selection-container > li:last-child {
                    width: 21%;
                    font-size: 0;
                    padding: 6vw 6vw;
                }

                .filter-slider ul.selection-container > li.big {
                    font-size: 4.933vw;
                    padding: .8em .4em;
                    width: 35%;
                }

        /* Filter Popup */

        .filter-slider .filter-popup {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            font-size: 3.733vw;
        }

        .filter-slider .filter-popup-close {
            font-size: 3vw;
        }

        /* Select Ul */

        .filter-slider ul.selection-container {
            position: relative;
            list-style: none;
            font-size: 0;
            font-family: Antenna, Open Sans;
            font-weight: 600;
            color: #425968;
            background-color: white;
            margin-left: auto;
            margin-right: auto;
        }

            .filter-slider ul.selection-container > li {
                font-size: 3.2vw;
                padding: 2em 0px;
                letter-spacing: 0.025em;
            }

        .filter-slider .selection {
            font-size: 3.2vw;
            padding: .5em 1.29em;
        }

            .filter-slider .selection > span,
            .filter-slider ul.selection-container > li > span {
                display: block;
                font-size: inherit;
                color: inherit;
                position: relative;
            }

            .filter-slider .selection > ul,
            .filter-slider ul.selection-container > li > ul {
                overflow: scroll;
                font-size: inherit;
                color: inherit;
                list-style: none;
                padding: 0;
                display: none;
                background: white;
                border-radius: 0;
                position: absolute;
                top: 100%;
                left: 50%;
                height: auto;
                min-width: 100%;
                max-height: 30em;
                transform: translateX(-50%);
                -webkit-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                -moz-transform: translateX(-50%);
                -o-transform: translateX(-50%);
            }

                .filter-slider .selection > ul > li,
                .filter-slider ul.selection-container > li > ul li {
                    font-size: inherit;
                    color: inherit;
                    cursor: pointer;
                    text-align: left;
                    padding: 1.2em 2em;
                    border-top: 1px solid rgba(29,29,29,.06);
                }

                    .filter-slider .selection > ul > li + li,
                    .filter-slider ul.selection-container > li > ul li + li {
                        margin-top: 0;
                    }

                    .filter-slider ul.selection-container > li > ul li span {
                        position: relative;
                        display: block;
                        font-size: inherit;
                        color: inherit;
                        z-index: 2;
                    }

            .filter-slider .selection li,
            .filter-slider .selection span,
            .filter-slider ul.selection-container li,
            .filter-slider ul.selection-container span {
                white-space: normal;
            }

            .filter-slider .selection > ul + span,
            .filter-slider ul.selection-container > li > ul + span {
                padding-right: 1em;
                max-width: 100%;
            }

                .filter-slider .selection > ul + span:after,
                .filter-slider ul.selection-container > li > ul + span:after {
                    position: absolute;
                    display: inline-block;
                    margin-left: 0;
                }

            .filter-slider .selection .blocks,
            .filter-slider ul.selection-container .blocks {
                font-size: 3.4vw;
                width: .32rem;
                height: .32rem;
                margin-right: .1rem;
                margin-top: 0;
                margin-left: .1rem;
            }

        .filter-slider .pre-heading {
            font-size: 4.533vw;
        }

        .filter-slider .heading {
            font-size: 8.267vw;
        }

    /*Certificates*/

    section.certificates {
        margin-bottom: .25rem;
    }

        section.certificates .heading-mini {
            font-size: .44rem;
        }

        section.certificates * + .text-default {
            margin-top: .32rem;
        }

        section.certificates .text-default {
            font-size: .24rem;
        }

        section.certificates * + .certificates-container {
            margin-top: .82rem;
        }

        section.certificates .certificates-container + .certificates-container {
            margin-top: .2rem;
        }

        section.certificates .certificates-container .item-btn {
            font-size: 0.32rem;
            cursor: pointer;
            padding-top: .6rem;
            padding-bottom: .6rem;
            padding-right: 2rem;
            padding-left: 1.1rem;
        }

            section.certificates .certificates-container .item-btn:before {
                font-size: .28rem;
            }

            section.certificates .certificates-container .item-btn .file-count {
                right: .45rem;
                font-size: .25rem;
            }

        section.certificates .certificates-container .item-container {
            padding-left: .28rem;
            padding-right: .28rem;
        }

            section.certificates .certificates-container .item-container .box-items {
                padding-top: 0;
                padding-bottom: .3rem;
                margin: -.3rem -.1rem;
            }

                section.certificates .certificates-container .item-container .box-items .item {
                    width: calc(100% - .2rem);
                    padding: .28rem .23rem .23rem .25rem;
                    margin: .3rem .1rem;
                }

                    section.certificates .certificates-container .item-container .box-items .item .file-name {
                        font-size: .28rem;
                        height: 1.31rem;
                    }

                    section.certificates .certificates-container .item-container .box-items .item * + .file-size {
                        padding-top: .56rem;
                        margin-top: .56rem;
                        font-size: .28rem;
                    }

                    section.certificates .certificates-container .item-container .box-items .item .file-download {
                        font-size: .24rem;
                        margin-top: .62rem;
                        padding: .3rem;
                    }

    /*Certificates*/

    /* Manage Cookies */

    /* Manage Cookies */

    section.manage-cookies .container {
        width: 100%;
        padding: 0 .17rem
    }

    section.manage-cookies .container .title {
        font-weight: 400;
        font-size: 0.48rem;
        line-height: 1.6em;
    }

    section.manage-cookies .container .content {
        margin-top: .1rem;
    }

    section.manage-cookies .container .content p {
        font-size: 0.24rem;
    }

    section.manage-cookies .container .content * + p {
        margin-top: .2rem
    }

    section.manage-cookies .container .accordion-container {
        margin-top: .32rem;
    }

    section.manage-cookies .container .accordion-container .accordion-item .title {
        padding: .4rem 0 .4rem .8rem;
        font-size: .28rem;
    }

    section.manage-cookies .container .accordion-container .accordion-item .title::before {
        content: "";
        width: 0.48rem;
        height: 0.48rem;
    }

    section.manage-cookies .container .accordion-container .accordion-item.active .title::before {
        content: "";
        width: 0.48rem;
        height: 0.48rem;
    }

    section.manage-cookies .container .accordion-container .accordion-item .content {
        font-size: .24rem;
    }

    section.manage-cookies .container .buttons {
        margin-top: .74rem
    }

    section.manage-cookies .container .btn-default {
        display: block;
        padding: 0;
        margin: .1rem 0 0 0 !important;
        min-width: 2.71rem;
        height: 1rem;
    }

    section.manage-cookies .container .btn-default span {
        font-size: .32rem;  
    }

    section.manage-cookies .switch {
        width: .64rem;
        height: .36rem;
    }

    section.manage-cookies .switch .slider:before {
        content: "";
        height: .28rem;
        width: .28rem;
    }

        section.manage-cookies .switch input:checked ~ .slider:before {
            -webkit-transform: translateX(0.2rem) translateY(-50%);
            -ms-transform: translateX(0.2rem) translateY(-50%);
            transform: translateX(0.2rem) translateY(-50%);
        }

}

@media screen and (max-width: 900px) and (min-width: 600px) {
    ul.selection-container > li {
        font-size: 2.4vw;
    }

    .filter-slider ul.selection-container > li.big {
        font-size: 2.8vw;
    }

    .filter-slider ul.selection-container > li:last-child {
        width: 21%;
        padding: 3vw;
    }

    .filter-slider .item-name {
        font-size: 3.2vw;
    }

    .filter-slider .item-prop > div {
        font-size: 2.4vw;
    }

        .filter-slider .item-prop > div:last-child.item-prop-small {
            font-size: 3vw;
        }

    .filter-slider .heading {
        font-size: 4.2vw;
    }

    .filter-slider .pre-heading {
        font-size: 3.2vw;
    }
}


