/*! * @description Tasty CSS-animated hamburgers * \


/* *  Remodal - v1.1.0 *  Responsive,lightweight,fast,synchronized with CSS animations,fully customizable modal window plugin with declarative configuration and hash tracking. *  http://vodkabears.github.io/remodal/ * *  Made by Ilya Makarov *  Under MIT License *//* ==========================================================================   Remodal's default mobile first theme   ========================================================================== *//* Default theme styles for the background */.remodal-bg.remodal-is-opening,.remodal-bg.remodal-is-opened {
	-webkit-filter:blur(3px);
	filter:blur(3px);
}
/* Default theme styles of the overlay */.remodal-overlay {
	background-color:rgba(0,0,0,0.8);
}
.remodal-overlay.remodal-is-opening,.remodal-overlay.remodal-is-closing {
	-webkit-animation-duration:0.3s;
	animation-duration:0.3s;
	-webkit-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
.remodal-overlay.remodal-is-opening {
	-webkit-animation-name:remodal-overlay-opening-keyframes;
	animation-name:remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
	-webkit-animation-name:remodal-overlay-closing-keyframes;
	animation-name:remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */.remodal-wrapper {
	padding:10px 10px 0;
}
/* Default theme styles of the modal dialog */.remodal {
	width:90%;
	display:inline-block;
	position:relative;
	overflow:auto;
	padding:40px;
	background:#fff;
	box-shadow:0px 0px 12px 6px rgba(0,0,0,0.2);
}
.remodal.remodal-is-opening,.remodal.remodal-is-closing {
	-webkit-animation-duration:0.3s;
	animation-duration:0.3s;
	-webkit-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}
.remodal.remodal-is-opening {
	-webkit-animation-name:remodal-opening-keyframes;
	animation-name:remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
	-webkit-animation-name:remodal-closing-keyframes;
	animation-name:remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */.remodal,.remodal-wrapper:after {
	vertical-align:middle;
}
/* Close button */.remodal-close {
	position:absolute;
	top:5px;
	right:5px;
	display:block;
	overflow:visible;
	width:35px;
	height:35px;
	margin:0;
	padding:0;
	cursor:pointer;
	-webkit-transition:color 0.2s;
	transition:color 0.2s;
	text-decoration:none;
	color:#575756;
	border:0;
	outline:0;
	background:transparent;
}
.remodal-close:hover,.remodal-close:focus {
	color:#B2B2B2;
}
.remodal-close:before {
	font-family:Arial,"Helvetica CY","Nimbus Sans L",sans-serif !important;
	font-size:35px;
	line-height:35px;
	position:absolute;
	top:0;
	right:0px;
	display:block;
	width:35px;
	content:"\00d7";
	text-align:center;
}
/* Dialog buttons */.remodal-confirm,.remodal-cancel {
	font:inherit;
	display:inline-block;
	overflow:visible;
	min-width:110px;
	margin:0;
	padding:12px 0;
	cursor:pointer;
	-webkit-transition:background 0.2s;
	transition:background 0.2s;
	text-align:center;
	vertical-align:middle;
	text-decoration:none;
	border:0;
	outline:0;
}
.remodal-confirm {
	color:#fff;
	background:#81c784;
}
.remodal-confirm:hover,.remodal-confirm:focus {
	background:#66bb6a;
}
.remodal-cancel {
	color:#fff;
	background:#e57373;
}
.remodal-cancel:hover,.remodal-cancel:focus {
	background:#ef5350;
}
/* Remove inner padding and border in Firefox 4+ for the button tag. */.remodal-confirm::-moz-focus-inner,.remodal-cancel::-moz-focus-inner,.remodal-close::-moz-focus-inner {
	padding:0;
	border:0;
}
/* Keyframes   ========================================================================== */@-webkit-keyframes remodal-opening-keyframes {
	from {
	-webkit-transform:scale(1.05);
	transform:scale(1.05);
	opacity:0;
}
to {
	-webkit-transform:none;
	transform:none;
	opacity:1;
}
}@keyframes remodal-opening-keyframes {
	from {
	-webkit-transform:scale(1.05);
	transform:scale(1.05);
	opacity:0;
}
to {
	-webkit-transform:none;
	transform:none;
	opacity:1;
}
}@-webkit-keyframes remodal-closing-keyframes {
	from {
	-webkit-transform:scale(1);
	transform:scale(1);
	opacity:1;
}
to {
	-webkit-transform:scale(0.95);
	transform:scale(0.95);
	opacity:0;
}
}@keyframes remodal-closing-keyframes {
	from {
	-webkit-transform:scale(1);
	transform:scale(1);
	opacity:1;
}
to {
	-webkit-transform:scale(0.95);
	transform:scale(0.95);
	opacity:0;
}
}@-webkit-keyframes remodal-overlay-opening-keyframes {
	from {
	opacity:0;
}
to {
	opacity:1;
}
}@keyframes remodal-overlay-opening-keyframes {
	from {
	opacity:0;
}
to {
	opacity:1;
}
}@-webkit-keyframes remodal-overlay-closing-keyframes {
	from {
	opacity:1;
}
to {
	opacity:0;
}
}@keyframes remodal-overlay-closing-keyframes {
	from {
	opacity:1;
}
to {
	opacity:0;
}
}/* Media queries   ========================================================================== */@media only screen and (min-width:641px) {
	.remodal {
	max-width:700px;
}
}/* IE8   ========================================================================== */.lt-ie9 .remodal-overlay {
	background:#2b2e38;
}
.lt-ie9 .remodal {
	width:700px;
}
/* ==========================================================================   Remodal's necessary styles   ========================================================================== *//* Hide scroll bar */html.remodal-is-locked {
	overflow:hidden;
	touch-action:none;
}
/* Anti FOUC */.remodal,[data-remodal-id] {
	display:none;
}
/* Necessary styles of the overlay */.remodal-overlay {
	position:fixed;
	z-index:9999;
	top:-5000px;
	right:-5000px;
	bottom:-5000px;
	left:-5000px;
	display:none;
}
/* Necessary styles of the wrapper */.remodal-wrapper {
	position:fixed;
	z-index:10000;
	top:0;
	right:0;
	bottom:0;
	left:0;
	display:none;
	overflow:auto;
	text-align:center;
	-webkit-overflow-scrolling:touch;
}
.remodal-wrapper:after {
	display:inline-block;
	height:100%;
	margin-left:-0.05em;
	content:"";
}
/* Fix iPad,iPhone glitches */.remodal-overlay,.remodal-wrapper {
	backface-visibility:hidden;
}
/* Necessary styles of the modal dialog */.remodal {
	position:relative;
	outline:none;
	text-size-adjust:100%;
}
.remodal-is-initialized {
	/* Disable Anti-FOUC */  display:inline-block;
}
.unselect {
	-moz-user-select:none;
	-webkit-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
}
.ir {
	font:0/0 a;
	text-shadow:none;
	color:transparent;
}
.clearfix:after {
	content:".";
	display:block;
	clear:both;
	visibility:hidden;
	line-height:0;
	height:0;
}
.clearfix {
	display:inline-block;
}

#homeIndex #content {
	max-width:none;
	padding:0;
	width:100%;
}
#homeIndex #content #top {
	width:100%;
	height:568px;
	position:relative;
	float:left;
}
#homeIndex #content #top:before {
	content:"";
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	height:100%;
	width:70%;
	z-index:11;
	background:-moz-linear-gradient(left,#ffffff 0%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 100%);
	background:-webkit-gradient(left top,right top,color-stop(0%,#ffffff),color-stop(50%,rgba(255,255,255,0.8)),color-stop(100%,rgba(255,255,255,0)));
	background:-webkit-linear-gradient(left,#ffffff 0%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 100%);
	background:-o-linear-gradient(left,#ffffff 0%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 100%);
	background:-ms-linear-gradient(left,#ffffff 0%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 100%);
	background:linear-gradient(to right,#ffffff 0%,rgba(255,255,255,0.8) 50%,rgba(255,255,255,0) 100%);
}
#homeIndex #content #top .rsOverflow {
	position:absolute;
}
#homeIndex #content #top .rsGCaption {
	position:relative;
	text-align:left;
	z-index:11;
	text-shadow:0 1px 2px rgba(255,255,255,0.4);
}
#homeIndex #content #top .rsGCaption h2 {
	margin-top:150px;
	margin-bottom:20px;
	text-transform:uppercase;
	font-weight:900;
	font-size:4em;
	line-height:.8em;
	color:#b4cb3e;
}
#homeIndex #content #top .rsGCaption p {
	color:#303161;
	font-size:1.8em;
}
#homeIndex #content .categories {
	margin-top:-10%;
	float:left;
	width:100%;
	position:relative;
	z-index:11;
	background-color:#fff;
	margin-bottom:30px;
	padding:4% 0;
	text-align:center;
	box-shadow:0 1px 4px rgba(0,0,0,0.1);
}
#homeIndex #content .categories figure {
	vertical-align:top;
	display:inline-block;
	margin-right:4%;
	width:27%;
}
#homeIndex #content .categories figure img {
	border-bottom:4px solid #fff;
	display:block;
	width:100%;
	box-shadow:0 5px 5px rgba(0,0,0,0.1);
}
#homeIndex #content .categories figure .icon {
	background:url("../image/sprite.png") no-repeat top left transparent;
	display:inline-block;
	zoom:1;
	background-position:0px 0px;
	width:90px;
	height:90px;
	text-indent:-6000px;
	text-align:left;
	-webkit-border-radius:50%;
	border-radius:50%;
	margin-top:-49px;
	margin-bottom:10px;
	border:4px solid #fff;
	box-shadow:0 0 30px rgba(0,0,0,0.1);
}
#homeIndex #content .categories figure.chimie .icon {
	background-color:#14bcd0;
	background-position:12px -47px;
}
#homeIndex #content .categories figure.pharma .icon {
	background-color:#b4cb3e;
	background-position:-74px -47px;
}
#homeIndex #content .categories figure.service {
	margin-right:0;
}
#homeIndex #content .categories figure.service .icon {
	background-position:-154px -47px;
	background-color:#42c1a5;
}
#homeIndex #content .categories figure figcaption h3 {
	font-size:1.3em;
	color:#303161;
	font-weight:300;
	margin-bottom:15px;
	font-family:"Texta W00",sans-serif;
}
#homeIndex #content .categories figure figcaption .button {
	color:#b4cb3e;
	padding:10px 30px;
	-webkit-border-radius:20px;
	border-radius:20px;
	background-color:#fff;
	box-shadow:0 0 5px rgba(0,0,0,0.1) inset,0 13px 5px -10px rgba(0,0,0,0.1);
}
#homeIndex #content .categories figure figcaption .button:after {
	content:"";
	margin-left:10px;
	background:url("../image/sprite.png") no-repeat top left transparent;
	display:inline-block;
	zoom:1;
	background-position:-73px -34px;
	width:7px;
	height:10px;
	text-indent:-6000px;
	text-align:left;
}
#homeIndex #content .categories figure figcaption .button:hover {
	box-shadow:0 0 3px rgba(0,0,0,0.1) inset,0 15px 5px -13px rgba(0,0,0,0.1);
}
#homeIndex #content .events {
	float:left;
	width:100%;
	position:relative;
	z-index:11;
	background-color:#fff;
	margin-bottom:30px;
	padding:4%;
	text-align:left;
	box-shadow:0 1px 4px rgba(0,0,0,0.1);
	font-size:0px;
	box-sizing:border-box;
}
#homeIndex #content .events h1 {
	font-size:19px !important;
	padding-top:0.5em;
	color:#032562;
	margin-bottom:20px;
	padding-left:10px;
}
#homeIndex #content .events article {
	width:calc(33.333333333333%);
	display:inline-block;
	box-sizing:border-box;
	vertical-align:top;
	padding:10px;
	text-align:left;
}
@media (max-width:800px) {
	#homeIndex #content .events article {
	width:calc(50%);
}
}@media (max-width:600px) {
	#homeIndex #content .events article {
	width:100%;
}
}#homeIndex #content .events article > div {
	border:1px solid #e5e5e5;
	background-color:#fff;
}
#homeIndex #content .events article > div .image {
	width:100%;
	height:200px;
	background-size:cover;
	background-position:center center;
}
#homeIndex #content .events article > div .content {
	padding:20px;
}
#homeIndex #content .events article > div .content h3 {
	font-size:20px;
	margin-bottom:10px;
}
#homeIndex #content .events article > div .content p {
	font-size:12px;
}
#homeIndex #content .events article > div .content p.place {
	font-weight:bold;
}
#homeIndex #content .events article > div .content p.date {
	font-weight:bold;
	margin-bottom:10px;
}
#homeIndex #content .video-player {
	width:50%;
	position:relative;
	padding-bottom:28.15%;
	height:0;
	overflow:hidden;
	float:left;
	background-color:#000;
	box-shadow:0 1px 4px rgba(0,0,0,0.1);
}
#homeIndex #content .video-player iframe {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
#homeIndex #content .video-player .overlay {
	position:absolute;
	width:100%;
	left:0;
	top:0;
	bottom:0;
	background:url("../image/player-overlay.jpg") no-repeat top left transparent;
	background-size:cover;
	cursor:pointer;
}
#homeIndex #content .video-player .overlay .play {
	opacity:.9;
	width:86px;
	height:86px;
	border:16px solid #fff;
	position:absolute;
	top:50%;
	left:50%;
	margin:-51px 0 0 -51px;
	border-radius:50%;
}
#homeIndex #content .video-player .overlay .play:before {
	content:'';
	height:0;
	width:0;
	position:absolute;
	top:20px;
	left:30px;
	border-left:30px solid #fff;
	border-top:23px solid transparent;
	border-bottom:23px solid transparent;
}
#homeIndex #content .video-player .overlay .play:hover {
	opacity:1;
}
#homeIndex #content aside {
	width:43%;
	float:right;
	min-height:254px;
	padding:25px 3%;
	background-color:#fff;
	margin-bottom:5px;
	box-shadow:0 1px 4px rgba(0,0,0,0.1);
}
#homeIndex #content aside h2 {
	font-weight:900;
	color:#b4cb3e;
	font-size:2.1em;
	margin-bottom:22px;
}
#homeIndex #content aside #news {
	width:100%;
	height:174px;
	padding-bottom:25px;
}
#homeIndex #content aside #news h3 {
	color:#303161;
	font-size:1.2em;
	margin-bottom:10px;
	font-family:"Texta W00",sans-serif;
	font-weight:700;
}
#homeIndex #content aside #news img {
	margin-right:20px;
	margin-bottom:10px;
	float:left;
}
#homeIndex #content aside #news .rsArrow {
	height:30px;
	width:30px;
	position:absolute;
	bottom:-3px;
}
#homeIndex #content aside #news .rsArrow .rsArrowIcn {
	background:url("../image/sprite.png") no-repeat top left transparent;
	display:inline-block;
	zoom:1;
	background-position:-95px -32px;
	width:16px;
	height:16px;
	text-indent:-6000px;
	text-align:left;
	top:50%;
	left:50%;
	position:absolute;
	margin:-8px 0 0 -8px;
}
#homeIndex #content aside #news .rsArrow.rsArrowLeft {
	left:0;
}
#homeIndex #content aside #news .rsArrow.rsArrowLeft .rsArrowIcn {
	background-position:-95px -32px;
}
#homeIndex #content aside #news .rsArrow.rsArrowRight {
	right:0;
}
#homeIndex #content aside #news .rsArrow.rsArrowRight .rsArrowIcn {
	background-position:-128px -32px;
}
#homeIndex #content aside #news .rsBullets {
	position:absolute;
	left:0;
	bottom:5px;
	width:100%;
	height:auto;
	margin:0 auto;
	text-align:center;
	line-height:6px;
	overflow:hidden;
}
#homeIndex #content aside #news .rsBullet {
	display:inline-block;
	width:9px;
	height:9px;
	margin:0 2px;
	border-radius:50%;
	text-align:center;
	border:3px solid #303161;
	cursor:pointer;
}
#homeIndex #content aside #news .rsBullet span {
	display:inline-block;
	width:5px;
	height:5px;
	margin:2px;
	border-radius:50%;
}
#homeIndex #content aside #news .rsBullet.rsNavSelected span {
	background-color:#303161;
}
#homeIndex .remodal {
	box-sizing:border-box;
	padding:0px;
	border-radius:6px;
	overflow:visible;
}
#homeIndex .remodal >.title {
	display:block;
	width:auto;
	float:left;
	position:absolute;
	background-color:#b4cb3e;
	padding:15px 40px 15px 70px;
	border-radius:15px;
	left:-40px;
	top:-30px;
}
#homeIndex .remodal >.title h2 {
	font-size:1.5em;
	text-transform:uppercase;
	color:white;
	font-weight:900;
	font-family:proxima-nova,sans-serif;
}
#homeIndex .remodal >.title h2:before {
	position:absolute;
	left:20px;
	top:50%;
	margin-top:-18px;
	content:"";
	background:url(../image/sprite.png) no-repeat top left transparent;
	display:inline-block;
	zoom:1;
	background-position:-288px -107px;
	width:35px;
	height:35px;
	text-indent:-6000px;
	text-align:left;
}
#homeIndex .remodal .contentContainer {
	font-size:0px;
	margin-bottom:30px;
	border-bottom:1px solid #002664;
	padding-top:0px;
	background-color:#00205b;
	border-radius:0px 6px 0px 0px;
}
#homeIndex .remodal .contentContainer .content {
	display:inline-block;
	width:100%;
	padding:50px 30px 30px 30px;
	box-sizing:border-box;
	vertical-align:bottom;
}
#homeIndex .remodal .contentContainer .content h4 {
	font-weight:900;
	font-size:28px;
	padding:0 0px 0 0;
	text-align:left;
	line-height:40px;
	color:#fff;
	margin-bottom:20px;
}
#homeIndex .remodal .contentContainer .content p.green {
	color:#b4cb3e;
	font-size:14px;
	line-height:24px;
	text-align:left;
}
#homeIndex .remodal .contentContainer .content img {
	margin-top:20px;
	width:140px;
	margin-bottom:0px;
}
#homeIndex .remodal .contentContainer .image {
	display:inline-block;
	vertical-align:bottom;
	width:40%;
	box-sizing:border-box;
	padding:0 0 20px 0;
}
#homeIndex .remodal .contentContainer .image img {
	width:100%;
}
#homeIndex .remodal .buttonContainer {
	margin-bottom:30px;
}
#homeIndex .remodal .buttonContainer .button {
	margin-right:10px;
	margin-bottom:30px;
}
#homeIndex .remodal .buttonContainer .button:last-child {
	margin-right:35%;
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5) {
	#fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span {
	background-image:url('../image/fancybox_sprite@2x.png');
	background-size:44px 152px;
}

}
* {
	margin:0;
	padding:0;
	list-style:none;
	text-decoration:none;
	border:none;
}

a {
	color:inherit;
}

a.mailto {
	font-weight:700;
	color:#b4cb3e;
	font-size:1.2em;
}
a.mailto:before {
	content:"";
	margin-right:10px;
	background:url("../image/sprite.png") no-repeat top left transparent;
	display:inline-block;
	zoom:1;
	background-position:-24px -19px;
	width:15px;
	height:10px;
	text-indent:-6000px;
	text-align:left;
	vertical-align:middle;
}
.button {
	background-color:#b4cb3e;
	display:inline-block;
	padding:10px 15px;
	color:#fff;
	text-transform:uppercase;
	font-weight:700;
	white-space:nowrap;
	font-size:.9em;
	font-family:"proxima-nova",sans-serif;
	-webkit-transition:background-color 100ms ease-out;
	-moz-transition:background-color 100ms ease-out;
	-ms-transition:background-color 100ms ease-out;
	-o-transition:background-color 100ms ease-out;
	transition:background-color 100ms ease-out;
}
.button:hover {
	background-color:#a4bf1b;
}
.button .lowercase {
	text-transform:none;
}
