@charset "UTF-8";
/* CSS Document */

/*----------------- FONTS ----------------*/
@import url("fonts/fontello.css");
@import url("fonts/museo.css");

/* //////////////////// GENERAL //////////////////// */

body {
	font-size: 13px;
	font-family: 'museo_sans300';
	color: #222;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	padding-top: 100px;
	line-height: 1.3;
}

nav ul.nav li,
section h2, .btn,
section#about a.lnk-more,
section#about a.lnk-less,
nav ul.lang li a,
section#services .slide h3,
section#contact .bg-office h3 {
/*section#contact .bg-office p span,*/
/*section#contact .bg-office p a {*/
	font-family: 'museo_sans700';
}

section#partners ul.links li,
section#contact p.intro {
	font-family: 'museo_sans100';
}

h1, h2, h3, h4, p {
	margin:0;
	padding: 0;
	font-weight: normal;
}

input, textarea {
	outline: 0;
}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

a {
	text-decoration: none;
	outline: 0;
}

a, input, textarea {  
	-webkit-transition: all .1s linear;
   	   -moz-transition: all .1s linear;
   	    -ms-transition: all .1s linear;
	     -o-transition: all .1s linear;
		    transition: all .1s linear;
}

::-webkit-input-placeholder {color: #888 !important; opacity: 1 !important;}
:-moz-placeholder { color: #888 !important; opacity: 1 !important;}
::-moz-placeholder { color: #888 !important; opacity: 1 !important;}
:-ms-input-placeholder {color: #888 !important; opacity: 1 !important;}
:-o-input-placeholder {color: #888 !important; opacity: 1 !important;}

.container {
	max-width: 1160px;
	width: 100%;
	margin: auto;
	position: relative;
}

.wrapper {
	display: table-cell;
	vertical-align: middle;
}

/*-----*/

#pageloader {
   height: 100%;
   width: 100%;
   position: fixed;
   z-index: 11000;
   background-color: #FFF;
   top: 0;
   left: 0;
   bottom: 0;
}

.loader {
  background: url(../img/loader.svg);
  left: 50%;
  margin-left: -30px;
  top: 50%;
  margin-top: -30px; 	
  width: 60px;
  height: 60px;
  position: fixed;
  text-indent: -9999em;
}

/*---------------*/

.slick-dots {
    position: absolute;
    left: 0;
    bottom: -20px;
    display: block;
    width: calc(100% - 10px);
    padding: 0;
    list-style: none;
    text-align: center !important;
}
.slick-dots li {
	position: relative;
    display: inline-block;
    margin: 0 6px;
}
.slick-dots li button {
    text-align: -9000px;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
}

.slick-dots li.slick-active button {
	background-color: #d7c15d;
	opacity: 1;
}

.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
    /*opacity: .9;*/
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 0;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: none;
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/*----------- header -------------*/

header {
	width: 100%;
	height: 100px;
	background-color: #FFF;
	position: fixed;
	top: 0;
	left:0;
	z-index: 1000;
}

header a.logo {
	width: 187px;
	height: 70px;
	display: inline-block;
	background: url(../img/logo-main.png);
	background-size: 187px 70px;
	text-indent: -9000px;
	margin-top: 20px;
}

nav ul.nav,
nav ul.lang {
	position: absolute;
	/*right: 170px;*/
	right: 210px;
	top: 40px;
}

nav ul.nav li {
	display: inline-block;
	/*margin-left: 85px;*/
	margin-left: 65px;
	font-size: 16px;
}

header nav ul.nav li a {
	/*color: #b9babc;*/
	color: #888;
}

header nav ul.nav li a:hover,
header nav ul.nav li.current a {
	color: #3f97b8;
}

nav ul.lang {
	right: 0;
	top: 44px;
	/*top: 42px;*/
}

nav ul.lang li {
	text-transform: uppercase;
	display: inline-block;
	font-size: 12px;
}

nav ul.lang li a {
	padding: 10px;
	color: #5ca2c7;
}

nav ul.lang li a:hover,
nav ul.lang li a.selected {
	background-color: #e8e8e8;
}

nav ul.lang li span {
	/*display: none;*/
}

/*--*/

header a.icon-open {
	width: 40px;
	height: 33px;
	background: url(../img/icon-menu.png);
	display: none;
	position: absolute;
	right: 0;
	top: 34px;
}

/*----------- SECTION #1 -------------*/

section#home {
	height: calc(100vh - 100px);
	background: url(../img/s1-bg-main.jpg) no-repeat center;
	background-size: cover;
	display: table;
	width: 100%;
}

section#home h1 {
	font-size: 48px;
	color: #FFF;
	line-height: 1.2;
}

section#home h1 span {
	display: block;
}

/*----------- SECTION #2 -------------*/

section#about {
	padding: 60px 0 100px 0;
	border-top: 4px solid #47b5d0;
}

section#about h2,
section#partners h2,
section#contact h2 {
	color: #3f97b8;
	font-size: 25px;
	text-align: center;
	border-bottom: 1px solid #DDD;
	padding-bottom: 40px;
	margin-bottom: 75px;
}

section#about .text {
	position: relative;
	height: 400px;
	overflow-y: hidden;
	padding: 0;
}

section#about .text.visible {
	overflow-y: visible;
	height: auto;
}

section#about .text .gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 272px;
	background: url(../img/gradient-text.png) repeat-x;
}

section#about .text p {
	font-size: 26px;
	/*color: #b9babc;*/
	color: #888;
	margin-bottom: 30px;
	text-align: center;
	line-height: 1.5;
}

section#about a.lnk-more,
section#about a.lnk-less {
	margin-top: 70px;
	font-size: 20px;
	color: #b9babc;
	display: inline-block;
}

section#about a i {
	color: #47b5d0;
}

section#about a.lnk-less {
	display: none;
}

section#about a.lnk-more:hover,
section#about a.lnk-less:hover {
	color: #47b5d0;
}

/*----------- SECTION #3 -------------*/

section#partners {
	padding: 60px 0 100px 0;
	background-color: #f0f2f4;
}

section#partners h2 {
	text-align: left;
}

section#partners h2 span,
section#partners ul.links {
	width: 1000px;
	margin: auto;
	display: block;
}

section#partners ul.links li {
	font-size: 35px;
	margin-bottom: 45px;
	/*color: #afafb2;*/
	color: #888;
}

section#partners ul.links li:last-child {
	margin-bottom: 0;
}

section#partners ul.links li a {
	/*color: #afafb2;*/
	color: #888;
}

section#partners ul.links li a:hover {
	color: #d7c15d;
}

/*----------- SECTION #4 -------------*/

section#services {
	min-height: 850px;
	background: url(../img/s4-bg.jpg) no-repeat center;
	background-size: cover;
	width: 100%;
}

section#services ul.slider {
	text-align: center;
	min-height: 700px;
}

section#services .slide h3 {
	font-size: 35px;
	color: #d7c15d;
	margin-top: 150px;
	margin-bottom: 65px;
}

section#services .slide p {
	font-size: 26px;
	color: #FFF;
	min-height: 350px;
	line-height: 1.4;
	width: 960px;
	margin: auto;
}

/*----------- SECTION #5 -------------*/

section#contact {
	background-color: #FFF;
	padding: 60px 0 0 0 !important;
	border-top: 4px solid #47b5d0;
}

section#contact h2 {
	border-bottom: 0;
	margin-bottom: 0;
}

section#contact p.intro {
	text-align: center;
	font-size: 25px;
	color: #3f97b8;
	line-height: 1.6;
	margin-bottom: 50px;
}

section#contact .form {
	width: 510px;
	margin: auto;
}

section#contact .form input,
section#contact .form textarea {
	width: 505px;
	font-size: 25px;
	border:0;
	border-bottom: 2px solid #DDD;
}

section#contact .form .field {
	margin-bottom: 32px;
}

section#contact .form .bottom {
	margin-top: 50px;
}

section#contact .form .btn {
	width: 120px;
	color: #FFF;
	text-align: center;
	display: block;
	margin: auto;
	/*background-color: #dedede;*/
	background-color: #888;
	border:0;
	font-size: 20px;
	padding: 15px 0;
}

section#contact .form .btn:hover {
	background-color: #3f97b8;
}

section#contact .form input[type="submit"]:focus {
	background-color: #dedede;
}

section#contact .form input:focus,
section#contact .form textarea:focus {
	border-bottom: 2px solid #BBB;
}

section#contact .bg-office {
	margin-top: 100px;
	width: 100%;
	height: 715px;
	background: url(../img/s5-contact.jpg) no-repeat center;
	background-size: cover;
	display: table;
}

section#contact .bg-office h3 {
	font-size: 22px;
	color: #d7c15d;
	margin-bottom: 40px;
}

section#contact .bg-office h3:before {
	content: "";
	position: absolute;
	display: block;
	width: 20px;
	height: 28px;
	background: url(../img/ico-marker.png) no-repeat;
	top: -40px;
}

section#contact .bg-office p {
	font-size: 22px;
	color: #FFF;
	line-height: 1.7;
}

section#contact .bg-office p a {
	color: #FFF;
}

/*----------- footer -------------*/

footer {
	width: 100%;
	height: 220px;
	background-color: #000;
	position: relative;
}

footer a.logo {
	/*width: 150px;*/
	width: 124px;
	height: 38px;
	display: inline-block;
	background: url(../img/logo-footer.png);
	background-size: 124px 38px;
	text-indent: -9000px;
	margin-top: 62px;
}

footer nav ul.nav {
	right: 0;
	top: 70px;
}

footer nav ul.nav li a {
	color: #fefefe;
}

footer nav ul.nav li a:hover {
	color: #888;
}


/* ////////////////////// RESPONSIVE ////////////////////// */

@media only screen and (max-width: 1200px) {

	header ul.lang,
	footer nav ul.nav {
		right: 30px;
	}

	header a.logo,
	footer a.logo {
		margin-left: 30px;
	}
	
	nav ul.nav li {
		margin-left: 45px;
	}

	/*---*/

	section .container {
		width: 90%;
	}

	/*---*/

	section#partners h2 span,
	section#partners ul.links {
		width: 80%;
	}

	section#contact .bg-office {
		height: 620px;
	}

}	

@media only screen and (max-width: 1023px) {

	header a.icon-open {
		display: block;
		right: 30px;
	}

	header nav {
		opacity: 0;
		top: -2000px;
		position: absolute;
	}

	/*----*/

	header.view-menu nav {
		opacity: 1;
		top: 110px;
		left: 0;
		width: 100%;
		background-color: #f5f5f5;
	}

	header.view-menu nav ul.nav,
	header.view-menu nav ul.lang {
		width: 100%;
		right: inherit;
		position: relative;
		top: 0;
		left:0;
		margin: 0;
	}

	header.view-menu nav:before {
		content: "";
		background: url(../img/gradient-menu.png) repeat-x;
		position: absolute;;
		display: block;
		width: 100%;
		height: 10px;
		top: -10px;
	}

	header.view-menu nav ul li {
		display: block;
		margin-left: 0;
	}

	header.view-menu nav ul.nav li a:hover {
		/*color: #b9babc;*/
		color: #888;
	}

	header.view-menu nav ul.nav li:first-child {
		display: none;
	}

	header.view-menu nav ul li a {
		display: block;
		padding: 20px 0 20px 30px;
		border-bottom: 1px solid #dcdcdc;
	}

	/*---*/

	header.view-menu nav ul.lang li {
		font-size: 16px;
	}

	header.view-menu nav ul.lang li span {
		display: inline-block;
	}

	header.view-menu nav ul.lang li a {
		color: #b9babc;
	}

	nav ul.lang li a.selected {
		color: #FFF !important;
		background-color: #3f97b8;
	}

	/*---*/

	section#services .slide p {
		width: 84%;
	}

}


@media only screen and (max-width: 800px) {

	footer a.logo {
		display: none;
	}

	footer nav ul.nav {
		right: 0;
		top: 70px;
		width: 100%;
		text-align: center;
	}

	footer nav ul.nav li {
		margin: 0 20px 20px 20px;
	}

	/*---*/

	section#services {
		min-height: 650px;
	}

	section#services ul.slider {
		text-align: center;
		min-height: 550px;
	}

	section#services .slide h3 {
		font-size: 25px;
		margin-top: 100px;
		margin-bottom: 45px;
	}

	section#services .slide p {
		font-size: 20px;
	}

	/*---*/

	section#contact .bg-office h3,
	section#contact .bg-office p {
		font-size: 20px;
	}

	section#contact .bg-office {
		height: 520px;
	}

}

@media only screen and (max-width: 640px) {

	body {
		padding-top: 70px;
	}

	header {
		height: 70px;
	}

	header a.icon-open {
		width: 30px;
		height: 25px;
		top: 23px;
		background-size: 30px 25px;
		right: 20px;
	}

	header a.logo {
		width: 133px;
		height: 50px;
		background-size: 133px 50px;
		margin-top: 13px;
		margin-left: 20px;
	}

	footer nav ul.nav {
		top: 50px;
	}

	header.view-menu nav {
		top: 80px;
	}

	header.view-menu nav ul li a {
		padding: 15px 0 15px 30px;
	}

	/*---*/

	section .container {
		width: 84%;
	}

	section#home {
		height: 480px;
	}

	section#home h1 {
		font-size: 29px;
	}

	/*---*/

	section#about,
	section#partners,
	section#contact {
		padding: 40px 0 60px 0;
	}

	section#about h2,
	section#partners h2,
	section#contact h2 {
		font-size: 22px;
		text-align: left;
		padding-left: 8%;
		margin-bottom: 35px;
	}

	section#about .text {
		height: 300px;
		width: 100%;
	}

	section#about .text p {
		font-size: 16px;
		margin-bottom: 20px;
		text-align: left;
	}

	section#about .text .gradient {
		height: 200px;
	}

	section#about a.lnk-more,
	section#about a.lnk-less {
		margin-top: 50px;
		font-size: 16px;
	}

	/*---*/

	section#partners h2 span,
	section#partners ul.links {
		width: 100%;
	}

	section#partners ul.links {
		width: calc(100% - 8%);
		padding-left: 8%;
	}

	section#partners ul.links li {
		font-size: 20px;
		margin-bottom: 20px;
	}

	/*---*/

	section#contact h2 {
		margin-bottom: 0;
	}

	section#contact p.intro {
		text-align: left;
		font-size: 18px;
		margin-bottom: 30px;
		width: calc(90% - 8%);
		padding-left: 8%;
	}

	/*--*/

	section#contact .form {
		width: 84%;
		margin: auto;
	}

	section#contact .form input,
	section#contact .form textarea {
		width: 92%;
		font-size: 16px;
	}

	section#contact .form .field {
		margin-bottom: 20px;
	}

	section#contact .form .bottom {
		margin-top: 35px;
	}
	
	section#contact .form .btn {
		width: 100px;
		font-size: 16px;
		padding: 12px 0;
	}

	section#contact .form .btn:hover {
		background-color: #dedede !important;
	}

	section#contact .bg-office {
		height: 350px;
	}

	section#contact .bg-office h3 {
		margin-bottom: 22px;
	}

	section#contact .bg-office h3,
	section#contact .bg-office p {
		font-size: 14px;
		line-height: 1.4;
	}

	/*---*/

	section#services {
		height: 500px !important;
		min-height: inherit !important;
	}

	section#services ul.slider {
		text-align: left;
		min-height: 480px !important;
	}

	section#services .slide h3 {
		font-size: 20px;
		margin-top: 40px;
		margin-bottom: 25px;
		padding-left: 8%;
		width: 90%;
	}

	section#services .slide p {
		font-size: 14px;
		line-height: 1.3;
		height: auto;
	}

	.slick-dots {
	    bottom: 0;
	}

	.slick-dots li button {
	    padding: 3px;
	}

}


@media only screen and (max-width: 420px) {

	section#home h1 span {
		display: inline !important;
	}

}	



