/* Reset styles
-----------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main, summary {
	display: block;
}
body { 
    line-height: 1;
}
:focus { 
    outline: 0;
}
ins { 
    text-decoration: none;
}
del { 
    text-decoration: line-through;
}
input, textarea {
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Global styles
-----------------------------------------------------------------------------*/
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-black-webfont.woff2') format('woff2'),
         url('../fonts/roboto-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('../fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 0;
	min-height: 0;
}

body {
	background: #0e3466;
	color: #FFF;
	font: 16px "Roboto", Tahoma, Arial, sans-serif;
	font-weight: 300;
	width: 100%;
	min-width: 300px;
}

a {
	color: #E4CD3B;
	text-decoration: underline;
}
a:hover {
	color: #FFF;
	text-decoration: none;
}
p {
	margin: 15px 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 20px;
	font-weight: 900;
	margin: 10px 0 10px 0;
}
h1 {
	font-size: 64px;
	line-height: 1.1;
}
h2 {
	font-size: 58px;
}
h3 {
	font-size: 44px;
}
h4 {
	font-size: 36px;
	font-weight: 700;
}
h5 {
	font-size: 18px;
	font-weight: 700;
}
h6 {
	font-size: 16px;
	font-weight: 700;
}
ul {
	list-style: disc;
	margin: 5px 0 5px 15px;
}
ol {
	list-style: decimal;
	margin: 5px 0 5px 15px;
}
li {margin: 0;}
input {
	vertical-align: middle;
}
img {
	max-width: 100%;
}
.hidden {
	display: none;
}
.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}

:-ms-input-placeholder 		{color:#fff;}
::-ms-input-placeholder 	{color:#fff;}
::-webkit-input-placeholder {color:#fff;}
::-moz-placeholder 			{color:#fff;}
:placeholder-shown 			{color:#fff;}

::-ms-clear {
    display: none;
}


/* ideal flexbox grid */
.container {
	max-width: 1230px;
	padding: 0 15px;
	margin: 0 auto;
	width: 100%;
}
.row, .row-between, .row-center {
	margin-left: -15px;
	margin-right: -15px;
}
.row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        -webkit-box-orient: horizontal;
	        -webkit-box-direction: normal;
	        flex-direction: row;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        -webkit-box-pack: start;
	        justify-content: flex-start;
}
.row-between {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        -webkit-box-orient: horizontal;
	        -webkit-box-direction: normal;
	        flex-direction: row;
	-webkit-flex-wrap: nowrap;
	    -ms-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        -webkit-box-align: center;
	        align-items: center;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        -webkit-box-pack: justify;
	        justify-content: space-between;
}
.row-center {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        -webkit-box-orient: horizontal;
	        -webkit-box-direction: normal;
	        flex-direction: row;
	-webkit-flex-wrap: nowrap;
	    -ms-flex-wrap: nowrap;
	        flex-wrap: nowrap;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        -webkit-box-align: center;
	        align-items: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        -webkit-box-pack: center;
	        justify-content: center;
}
.row>*,
.row-between>*, 
.row-center>* {
	padding-left: 15px;
	padding-right: 15px;
}
.col-grow {
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        -webkit-box-flex: 1;
	        flex-grow: 1;
}
.col-1 {width: 8.33333%;}
.col-2 {width: 16.66667%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33333%;}
.col-5 {width: 41.66667%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33333%;}
.col-8 {width: 66.66667%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33333%;}
.col-11 {width: 91.66667%;}
.col-12 {width: 100%;}

html, body, .wrapper {
	min-height: 100vh;
}
.wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.content {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.wrapper-intro .content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.wrapper-intro {
	/*background: url(../images/bg.jpg) no-repeat center top fixed;*/
}
.intro {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

/* Header
-----------------------------------------------------------------------------*/
.header {
	padding: 30px 0;
	position: relative;
}
.container {
	
}
.row-header {
	
}
.col-logo {
	
}
.logo {
	
}
.col-nav {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.nav-toggle {
	display: none;
	margin: 0;
	cursor: pointer;
	position: relative;
	padding: 5px 0;
}
.nav-toggle span {
	width: 20px;
	margin: 5px auto;
	display: block;
	background-color: #fff;
	height: 2px;
}
.nav-toggle:hover span {
	background-color: #E4CD3B;
}
.nav {
	margin: 15px auto 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	text-align: center;
	max-width: 630px;
}
.nav li {
	list-style: none;
}
.nav li a {
	display: block;
	font-size: 15px;
	text-decoration: none;
	padding: 10px 15px;
	color: #fff;
}
.nav li.active a, .nav li a:hover {
	text-decoration: none;
	color: #E4CD3B;
}
.col-phone {
	margin-top: 17px;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}
.phone {
	font-size: 23px;
	font-weight: 900;
	color: #fff;
	text-decoration: none;
	min-height: 22px;
	padding: 5px 0;
	padding-left: 38px;
	background: url(../images/icon-phone.png) no-repeat 0 50%;
	white-space: nowrap;
}
.phone:hover {
	text-decoration: none;
	color: #E4CD3B;
}

/* Content
-----------------------------------------------------------------------------*/
.content {
	padding: 30px 0;
	
}
.main-slogan {
	text-align: center;
	line-height: 1.1;
}
.main-note {
	font-size: 18px;
	text-align: center;
}
.button-box {
	text-align: center;
	margin: 32px 0;
}
.button {
	display: inline-block;
	border: 0;
	cursor: pointer;
	color: #0E3667;
	font-family: "Roboto";
	font-size: 20px;
	font-weight: 500;
	min-width: 250px;
	padding: 11px 15px;
	text-align: center;
	background-color: #E4CD3B;
	text-decoration: none;
	-webkit-transition: 0.2s ease all;
	-o-transition: 0.2s ease all;
	transition: 0.2s ease all;
	border-radius: 25px;
}
.button:hover {
	color: #0E3667;
	background-color: #F6DA27;
	background-color: #f8e147;
}

/*.form-order */
.form-order {
	text-align: center;
	max-width: 384px;
	width: 100%;
	background-color: #0E3466;
	border: 1px solid #6A85AC;
	border-radius: 10px;
	padding: 29px 27px;
}
.form-title {
	color: #FFF;
	font-size: 32px;
	font-weight: 700;
}
.itext {
	display: block;
	margin: 18px auto;
	width: 100%;
	height: 55px;
	background-color: #285692;
	border: 1px solid #6A85AC;
	border-radius: 25px;
	padding: 0 37px;
	font-family: "Roboto";
	font-size: 16px;
	font-weight: 300;
	color: #FFF;
}
select.itext {
	-webkit-appearance: none;
	background-image: url(../images/select-marker.png);
	background-repeat: no-repeat;
	background-position: right 22px top 50%;
}
.form-order .button {
	margin-top: 10px;
}

.fancybox-slide > * {
	overflow: visible;
}
.fancybox-close-small {
	display: block;
	width: 18px;
	height: 18px;
	background: url(../images/close.png) no-repeat 0 0;
	right: 3px;
	top: -38px;
}
.fancybox-close-small:after {
	content: '';
	display: none;
}

/*.navigation */
.navigation {
	position: fixed;
	left: 95px;
	top: 50%;
	margin-top: 20px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	height: 80%;

	display: -webkit-box;

	display: -webkit-flex;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.navigation li {
	list-style: none;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.navigation li:before {
	content: '';
	width: 1px;
	height: calc(100% - 63px);
	background-color: #294b7a;
	position: absolute;
	left: 50%;
	margin-left: -2px;
	bottom: 100%;
	margin-bottom: 10px;
}
.navigation li:first-child:before {
	display: none;
}
.navigation li a {
	display: block;
	text-decoration: none;
}
.navigation-item1 a {
	background: url(../images/nav-icon1.png) no-repeat 0 0;
	width: 40px;
	height: 36px;
}
.navigation-item2 a {
	background: url(../images/nav-icon2.png) no-repeat 0 0;
	width: 40px;
	height: 41px;
}
.navigation-item3 a {
	background: url(../images/nav-icon3.png) no-repeat 0 0;
	width: 45px;
	height: 44px;
}
.navigation-item4 a {
	background: url(../images/nav-icon4.png) no-repeat 0 0;
	width: 44px;
	height: 39px;
}
.navigation-item5 a {
	background: url(../images/nav-icon5.png) no-repeat 0 0;
	width: 40px;
	height: 37px;
}
.navigation li.active a,
.navigation li a:hover {
	background-position: 0 100%;
}


/*.partners-slider */
.partners-slider {
	position: relative;
	padding: 0 15px;
	margin: 0 -15px;
	overflow: hidden;
}
.partners-list {
	margin: 15px -71px 50px;
}
.partners-list .slick-slide {
	opacity: 0;
	padding: 0 71px;
	width: auto !important;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.partners-list .slick-active {
	opacity: 1;
}

.partners-list li {
	list-style: none;
	padding: 15px 0;
	min-height: 80px;
	display: -webkit-box !important;
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.partners-list img {
	opacity: .2;
	-webkit-transition: 0.2s ease all;
	-o-transition: 0.2s ease all;
	transition: 0.2s ease all;
	cursor: pointer;
}
.partners-list img:hover {
	opacity: 1;
}

.partners-slider .slick-next, .partners-slider .slick-prev {
	display: none;
	border: 0;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 44px;
    z-index: 10;
    cursor: pointer;
    background: url(../images/sl-arrows.png) no-repeat 0 0;
    font-size: 0;
    text-indent: -9999px;
    left: 50%;
    margin-left: 428px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-size: 200% 200%;
}
.partners-slider .slick-prev {
	background-position: 0 0;
    margin-top: -19px;
	left: auto;
	right: 50px;
}
.partners-slider .slick-next {
	background-position: 100% 0;
    margin-top: -19px;
	left: auto;
	right: 0;
}
.partners-slider .slick-prev:hover {
	background-position: 0 100%;
}
.partners-slider .slick-next:hover {
	background-position: 100% 100%;
}


.bordered:before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 48px;
	margin-right: 27px;
	margin-left: -31px;
	background-color: #D2BD2F;
}
.content p {
	line-height: 1.9;
	margin: 30px 0;
}
.content .note {
	color: #8299BD;
	font-size: 17px;
	margin: -5px 0 22px;
}

/*.contacts-box */
.contacts-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
}
.col-contacts {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.contacts-item {
	font-size: 16px;
	margin-bottom: 20px;
}
.c-title {
	font-size: 20px;
	font-weight: 700;
	margin: 3px 0 !important;
}
.c-address, .c-phone, .c-email {
	padding: 3px 0;
	padding-left: 29px;
	margin: 0 !important;
}
.c-address {
	background: url(../images/icon-address.png) no-repeat 0 1px;
}
.c-phone {
	background: url(../images/icon-phone.png) no-repeat 0 4px;
	text-decoration: none;
}
.c-phone a {
	color: #FFF;
	text-decoration: none;	
}
.c-phone a:hover {
	color: #E4CD3B;
}
.c-email {
	background: url(../images/icon-email.png) no-repeat 0 7px;
}
.c-address span {
	white-space: nowrap;
}
.col-form {
	min-width: 384px;
}

/*.c-header */
.c-header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.c-header-left {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.c-header-right {
	text-align: right;
	margin-top: 27px;
}
.c-header + p {
	margin-top: 0;
}
.row-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 32px;
	padding-top: 20px;
}
p + .row-content {
	border-top: 1px solid #294B7A;
	padding-top: 30px;
	margin-top: 42px;
}
.content-nav {
	margin: 0;
	max-width: 306px;
	border-right: 1px solid #294B7A;
	min-width: 306px;
}
.content-nav li {
	list-style: none;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
}
.content-nav li a {
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	padding: 18px 15px;
	padding: 10px 15px;
	line-height: 1.35;
	display: block;
	border-right: 4px solid transparent;
	-webkit-transition: 0.2s ease all;
	-o-transition: 0.2s ease all;
	transition: 0.2s ease all;

	min-height: 58px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 1px;
}
.content-nav li.active a,
.content-nav li a:hover {
	border-right-color: #FFDE24;
	background-color: #133D74;
}
.content-text {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	font-weight: 400;
	position: relative;
	overflow: auto;
	height: 500px;
	padding-left: 35px;
	padding-right: 25px;
	margin-right: -5px;
	line-height: 1.5;
}
.content-text h4 {
	font-size: 20px;
	font-weight: 400;
}
.content-text-item {
	display: none;
}
.content-text-item.active {
	display: block;
}
.content-text ul {
	margin: 30px 0;
}
.content-text ul li {
	list-style: none;
	margin: 16px 0;
}
.content-text ul li:before {
	content: '- ';
	padding-right: 1px;
	padding-left: 2px;
}


/*.buttons-list */
.buttons-list {
	margin: 0;
}
.buttons-list li {
	list-style: none;
	display: inline-block;
	vertical-align: top;
	margin: 4px 0;
	margin-left: 9px;
}
.buttons-list li a {
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
	color: #FFF;
	font-family: "Roboto";
	font-size: 18px;
	font-weight: 300;
	background-color: transparent;
	border: 1px solid #FFF;
	border-radius: 20px;
	padding: 8px 32px;
	-webkit-transition: 0.2s ease all;
	-o-transition: 0.2s ease all;
	transition: 0.2s ease all;
}
.buttons-list li a:hover,
.buttons-list li.active a {
	background-color: #FFDE24;
	border-color: #FFDE24;
	color: #0E3466;
}
.slider {
	margin-top: 30px;
	margin-bottom: 50px;
}
.slider .slide {
	padding-right: 20px;
}

.slider-work {
	text-align: center;
	max-width: 90vw;
/*	width: 90vw;*/
        max-height: 90vh;
	background-color: #0E3466;
	border: 1px solid #6A85AC;
	border-radius: 10px;
	padding: 29px 27px;
}
.work-item {
	display: block;
	text-decoration: none;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
.work-item:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: url(../images/work-shadow.png) repeat-x 0 100%;
	pointer-events: none;
}
.work-image img {
	display: block;
	border-radius: 15px;
}
.work-info {
	padding: 0 47px;
	padding-bottom: 27px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
}
.work-title {
	color: #FFF;
	font-size: 23px;
	font-weight: 900;
	text-decoration: underline;
	min-height: 60px;
}
.work-item:hover .work-title {
	text-decoration: none;
	color: #fff;
}
.work-descr {
	color: #9BB0D0;
	font-size: 18px;
	font-weight: 300;
	margin-top: 12px;
}

.slick-next, .slick-prev {
	border: 0;
    position: absolute;
    top: 50%;
    width: 45px;
    height: 44px;
    z-index: 10;
    cursor: pointer;
    background: url(../images/sl-arrows.png) no-repeat 0 0;
    font-size: 0;
    text-indent: -9999px;
    left: 50%;
    margin-left: 428px;
    border-radius: 50%;
}
.slick-prev {
	background-position: 0 0;
    margin-top: -38px;
}
.slick-next {
	background-position: 100% 0;
    margin-top: 15px;
}
.slick-prev:hover {
	background-position: 0 100%;
}
.slick-next:hover {
	background-position: 100% 100%;
}

/*.slider	*/
.slick-slide {
	position: relative;
}
.slider .slick-slide.slick-active + .slick-slide + .slick-slide .work-info {
	display: none;
}
.slider .slick-slide.slick-active + .slick-slide + .slick-slide .work-item:after {
	display: none;
}
.slider .slick-slide.slick-active + .slick-slide + .slick-slide .work-item:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.71;
	background-color: #123060;
}

.parallax {
    position: fixed;
    top: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: -100;
    overflow: hidden;
}
.parallax img {
	position: absolute;
	left: 50%;
	top: 0%;
	-webkit-transform: translate(-50%, 0%);
	    -ms-transform: translate(-50%, 0%);
	        transform: translate(-50%, 0%);
	padding: 0 50px;
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	max-height: none;
}


/* Footer
-----------------------------------------------------------------------------*/
.footer {
	padding: 24px 0;
}
.row-footer {
	
}
.col-flogo {
	
}
.flogo {
	margin-top: -10px;
	display: inline-block;	
}
.col-copyright {
	color: #9BB0D0;
	font-size: 15px;
	text-align: center;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.col-soc {
	
}
.soc {
	margin: 0;
	text-align: right;
}
.soc li {
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	margin-left: 18px;
}
.soc li a:hover {
	opacity: .8;
}
