@font-face {
	font-family: 'Montserrat';
	src: url(../fonts/MontserratRegular.ttf);
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url(../fonts/MontserratMedium.ttf);
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url(../fonts/MontserratSemiBold.ttf);
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Montserrat";
	src: url(../fonts/MontserratBold.ttf);
	font-weight: 700;
	font-style: normal;
}

/*@mixin placeholder($color) {
    &::-webkit-input-placeholder {
      color:$color;
    }
    &::-moz-placeholder {
      color:$color;
    }
    &:-ms-input-placeholder {
      color:$color;
    }
}*/
/*  ==== RESET ==== */
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, em, img, ins, kbd, q, s, samp,
small, strike, strong, 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;
}

html {
	font-size: 10px;
}

html, body {
	height: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

* {
	margin: 0;
	padding: 0;
	outline: none;
	line-height: inherit;
	min-width: 0;
	min-height: 0;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

p {
	line-height: 1.2em;
	margin-bottom: 20px;
}

p:last-child {
	margin-bottom: 0;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	max-height: 100%;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clearfix:after,
.clearfix:before {
	display: table;
	content: ' ';
}

.clearfix:after {
	clear: both;
}

.container {
	max-width: 1025px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 0 auto;
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-right: 15px;
	padding-left: 15px;
}

body {
	background-color: #fff;
	/*background-image: url("../img/bg/bg_body.jpg");
    background-position: left top;*/
	font-weight: 400;
	font-size: 1.4rem;
	font-family: "Montserrat";
	color: #191919;
	line-height: 1;
	position: relative;
	min-width: 320px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.full-bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.full-width {
	max-width: 1920px;
	margin: 0 auto;
}

.block-bg {
	background-color: #f2f2f2;
}

.title {
	font-weight: 700;
	font-size: 2.4rem;
	color: #003883;
	position: relative;
	display: block;
	line-height: 1.2em;
	text-align: center;
	margin-bottom: 40px;
}

h1, h2, h3, h4, h5 {
	font-weight: 600;
	color: #000;
}

h2 {
	font-size: 3rem;
	position: relative;
	margin-bottom: 4rem;
}

h3 {
	font-size: 1.8rem;
	margin-bottom: 5px;
}

a {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.float-left {
	float: left;
	margin: 5px 15px 10px 0;
}

.block-center {
	text-align: center;
}

.block-btn {
	text-align: center;
	margin-top: 40px;
}

.btn {
	font-weight: 600;
	font-size: 1.5rem;
	color: #fff;
	position: relative;
	display: inline-block;
	text-align: center;
	height: 40px;
	line-height: 39px;
	padding: 0 25px;
	cursor: pointer;
	overflow: hidden;
	border: none;
	z-index: 1;
	border-radius: 5px;
	-webkit-transition: background 0.3s ease-in-out,border-color 0.3s ease-in-out,color 0.3s ease-in-out;
	transition: background 0.3s ease-in-out,border-color 0.3s ease-in-out,color 0.3s ease-in-out;
}

.btn:before {
	background-color: transparent;
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}

.btn:hover {
	-webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.9);
	box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.9);
}

.btn:hover:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.btn--1 {
	background-color: #c3222d;
}

.btn--1:hover:before {
	background-color: #a81c26;
}

.btn--2 {
	background-color: #ea1b2a;
}

.btn--2:hover:before {
	background-color: #cf1a27;
}

.btn--3 {
	background-color: #0d2f5c;
}

.btn--3:hover:before {
	background-color: #113f7d;
}

.all-wrapp {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	position: relative;
	width: 100%;
}

.read-more {
	background: #fff;
	font-weight: 500;
	font-size: 1.3rem;
	color: #0d0d0d;
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	height: 34px;
	padding: 0 25px;
	border: 1px solid #ff1e1e;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: background 0.3s ease-in-out,border-color 0.3s ease-in-out,color 0.3s ease-in-out;
	transition: background 0.3s ease-in-out,border-color 0.3s ease-in-out,color 0.3s ease-in-out;
}

.read-more:before {
	background-color: transparent;
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}

.read-more:hover {
	color: #fff;
}

.read-more:hover:before {
	background-color: #ff1e1e;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.hide {
	display: none;
}

@media (max-width: 767px) {
	.title {
		font-size: 2rem;
	}
}

@media (max-width: 575px) {
	h2 {
		font-size: 2.4rem;
		margin-bottom: 3rem;
	}
}

/*  === SPRITE === */
/* @import 'sprite';*/
/* === HEADER === */
.header {
	background-image: url("../img/bg/banner.jpg");
	background-attachment: fixed;
	position: relative;
}

.header:before {
	background-color: rgba(0, 0, 0, 0.15);
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.header .row {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header-one {
	background-color: rgba(2, 23, 65, 0.7);
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 20px 0;
	z-index: 100;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-one.sticky {
	background-color: rgba(3, 10, 33, 0.9);
	padding: 10px 0;
}

.header-one.sticky .header-logo {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 90px;
	flex: 0 0 90px;
	max-width: 90px;
}

.header-one.sticky .logo img {
	max-width: 60px;
}

.header-one.sticky .main-menu li a {
	font-size: 1.6rem;
}

.header-one.sticky .block-contact {
	line-height: 1.1;
}

.header-one.sticky .block-contact a {
	font-size: 1.4rem;
}

.header-one.sticky .block-contact .fa {
	font-size: 1.3rem;
}

.header-logo {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 130px;
	flex: 0 0 130px;
	max-width: 130px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.logo img {
	max-width: 80px;
	border-radius: 50%;
	border: 2px solid #F4BB31;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-right .block-contact {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 230px;
	flex: 0 0 230px;
	max-width: 230px;
}

.header-right .box-main-menu {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-width: 100%;
}

.block-contact {
	text-align: right;
	line-height: 1.3;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.block-contact .block-contact__link {
	font-weight: 500;
	font-size: 1.8rem;
	color: #fff;
}

.block-contact .fa {
	font-size: 1.6rem;
	margin-right: 3px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.block-contact a:hover {
	color: #F4BB31;
}

.header-second {
	height: 100vh;
	padding: 120px 0 6rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/*align-items: flex-end;*/
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.title_h1 {
	font-weight: 500;
	font-size: 5.4rem;
	color: #F4BB31;
	text-transform: uppercase;
	position: relative;
	display: block;
	text-align: center;
	line-height: 1.4;
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
	z-index: 2;
}

.widget-date {
	background-color: rgba(3, 10, 33, 0.9);
	max-width: 300px;
	padding: 20px 15px;
	border-radius: 3px;
	margin: 3rem auto 0;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.widget-date .block-date {
	font-weight: 600;
	font-size: 2rem;
	color: #fff;
	display: block;
	text-align: center;
}

.block-currency {
	max-width: 160px;
	margin: 0 auto;
	/*.block-currency__name {
        flex: 0 0 70px;
        max-width: 70px;
    }*/
}

.block-currency .block-currency__title {
	font-weight: 600;
	font-size: 1.8rem;
	color: #fff;
	display: block;
	text-align: center;
	margin-bottom: 12px;
}

.block-currency p {
	margin: 0;
}

.block-currency .block-currency__item {
	font-weight: 600;
	font-size: 1.6rem;
	color: #fff;
	margin: 7px 0;
	text-align: center;
}

.block-currency .block-currency__item > * {
	display: inline-block;
	margin: 0 5px;
}

.block-currency .block-currency__value {
	color: #F4BB31;
}

/* ==== MAIN MENU ===== */
.main-menu {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.main-menu li {
	position: relative;
	display: block;
	margin-left: 30px;
	/*&.active {
            a {
                color: #ffa800;
                &:after {
                    display: none;
                }
            }
        }
        &.active a:hover {
            cursor: default;
        }*/
}

.main-menu li:first-child {
	margin-left: 0;
}

.main-menu li a {
	font-weight: 400;
	font-size: 1.8rem;
	color: #fff;
	position: relative;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.main-menu li a:after {
	background: #f3bd3b;
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	bottom: -1px;
	left: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.main-menu li a:hover:after {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.main-menu li a:hover {
	color: #F4BB31;
}

/* === button menu open === */
.button-menu {
	background-color: transparent;
	position: relative;
	display: block;
	width: 100%;
	line-height: 34px;
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-align: center;
	padding: 0;
	margin-top: -2px;
}

.button-menu:focus, .button-menu:hover {
	background-color: transparent;
}

.button-menu .menu-fader {
	/*font-weight: 700;
         font-size:  1.4rem;
         color: #0d2f5c;
         text-transform: uppercase;
         margin-right: 14px;*/
	display: none;
}

.button-menu span {
	background-color: #F4BB31;
	position: relative;
	display: inline-block;
	width: 100%;
	height: 5px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.button-menu span:before, .button-menu span:after {
	background-color: #F4BB31;
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.button-menu span:before {
	-webkit-transform: translate3d(0, -175%, 0);
	transform: translate3d(0, -175%, 0);
}

.button-menu span:after {
	-webkit-transform: translate3d(0, 175%, 0);
	transform: translate3d(0, 175%, 0);
}

.button-menu.active span {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.button-menu.active span:before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.button-menu.active span:after {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}

/* === button menu open === */
.close-menu {
	display: none;
}

@media (max-width: 1060px) {
	.title_h1 {
		font-size: 4.4rem;
	}
}

@media (max-width: 991px) {
	.header {
		background-image: url("../img/bg/banner_2.jpg");
	}
	.title_h1 {
		font-size: 3.6rem;
	}
}

@media (max-width: 860px) {
	.header-logo {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 90px;
		flex: 0 0 90px;
		max-width: 90px;
	}
	.logo img {
		max-width: 60px;
	}
	.main-menu li a {
		font-size: 1.6rem;
	}
	.header-one.sticky .main-menu li a {
		font-size: 1.6rem;
	}
	.header-one .block-contact {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 185px;
		flex: 0 0 185px;
		max-width: 185px;
	}
	.header-one .block-contact a {
		font-size: 1.4rem;
	}
	.header-one .block-contact .fa {
		font-size: 1.3rem;
	}
}

@media (max-width: 767px) {
	.title_h1 {
		font-size: 3rem;
	}
}

@media (max-width: 680px) {
	.header-one {
		padding: 10px 0;
	}
	.header-second {
		height: auto;
	}
	.main-menu li {
		margin-left: 15px;
	}
	.main-menu li a {
		font-size: 1.4rem;
	}
	.header-one.sticky .main-menu li a {
		font-size: 1.4rem;
	}
}

@media (max-width: 600px) {
	.header {
		background-image: url("../img/bg/banner_3.jpg");
	}
	.title_h1 {
		font-size: 2.4rem;
	}
	.header-button {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 70px;
		flex: 0 0 70px;
		max-width: 70px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.header-right {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.box-main-menu {
		background: rgba(17, 45, 78, 0.9);
		position: fixed;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		top: 0;
		left: 0;
		padding: 40px 0 20px;
		margin: 0;
		width: 280px;
		height: 100%;
		text-align: left;
		z-index: 999;
		-webkit-transform: translateX(-550px);
		transform: translateX(-550px);
		-webkit-transition: .7s;
		transition: .7s;
	}
	.box-main-menu.open {
		overflow: auto;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.main-menu {
		display: block;
		padding: 0 15px;
	}
	.main-menu li {
		display: block;
		text-align: center;
		margin-left: 0;
		border-bottom: 1px dotted #ccc;
	}
	.main-menu li a {
		font-weight: 500;
		font-size: 1.6rem;
		color: #fff;
		padding: 8px 0;
		line-height: 1.1em;
	}
	.main-menu li a:after {
		display: none;
	}
	.main-menu .active a, .main-menu a:hover, .main-menu > li:hover > a {
		background: transparent;
	}
	.header-one.sticky .main-menu li a {
		font-size: 1.6rem;
	}
	.close-menu {
		color: #ccc;
		display: block;
		font-weight: 300;
		font-size: 26px;
		position: absolute;
		right: 20px;
		top: 10px;
	}
}

@media (max-width: 400px) {
	.header-one .block-contact {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 145px;
		flex: 0 0 145px;
		max-width: 145px;
	}
	.header-one .block-contact .block-contact__link {
		font-size: 1.1rem;
	}
	.header-one .block-contact .fa {
		font-size: 1rem;
	}
	.header-one.sticky .block-contact .block-contact__link {
		font-size: 1.1rem;
	}
	.header-one.sticky .block-contact .fa {
		font-size: 1rem;
	}
	.header-second {
		padding: 100px 0 4rem;
	}
}

@media (max-width: 360px) {
	.header-button {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 60px;
		flex: 0 0 60px;
		max-width: 60px;
		padding-left: 5px;
	}
}

/* === SECTION ABOUT ME === */
.about {
	padding: 5rem 0;
}

.staticText p {
	line-height: 1.3;
	margin: 0 0 1.3rem;
}

.staticText ol, .staticText ul {
	margin: 0 0 1.2rem;
}

.staticText li {
	position: relative;
	line-height: 1.3;
}

.staticText li ul {
	padding-left: 10px;
	margin: 0.6rem 0;
}

.staticText ol {
	list-style: decimal inside;
}

.staticText ol > li {
	margin: 1.4rem 0;
}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	z-index: 3;
}

.video-container iframe, .video-container object, .video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.box-slider {
	max-width: 560px;
	margin: 4rem auto 0;
}

.slider-big .slider-item, .slider-bigNav .slider-item {
	position: relative;
	overflow: hidden;
}

.slider-big .slider-item img, .slider-bigNav .slider-item img {
	width: 100%;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.slider-bigNav {
	margin: 1rem auto 0;
}

.slider-bigNav .slick-slide {
	padding: 0 2px;
	cursor: pointer;
}

.slider-bigNav .slick-slide:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*====== SLICK SLIDER ======*/
.slick-arrow {
	background: #F4BB31;
	font-size: 0;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 25px;
	height: 25px;
	border: none;
	cursor: pointer;
	top: 50%;
	margin-top: -12px;
	z-index: 5;
}

.slick-arrow:after {
	font-size: 2.4rem;
	color: #12182b;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.slick-arrow:hover:after {
	color: #fff;
}

.slick-prev {
	left: 0;
}

.slick-prev:after {
	content: '\2039';
}

.slick-next {
	right: 0;
}

.slick-next:after {
	content: '\203A';
}

@media (min-width: 881px) {
	.staticText .video-container {
		width: 560px;
		height: 350px;
		padding: 0;
	}
}

@media (max-width: 880px) {
	.staticText .float-left {
		float: none;
		width: 100%;
	}
}

@media (max-width: 440px) {
	.about {
		padding: 3rem 0;
	}
	.box-slider {
		margin-top: 2rem;
	}
	.slider-bigNav {
		margin-top: 0.3rem;
	}
}

/* === SECTION INFO=== */
.section-info {
	background-image: url("../img/bg/slid_1.jpg");
	background-attachment: fixed;
	position: relative;
	padding: 6rem 0;
}

.section-info:before {
	background: #12182b;
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.5;
}

.section-info h2 {
	color: #fff;
	text-align: center;
	margin-bottom: 6rem;
}

.info-row .col:nth-child(2) {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40%;
	flex: 0 0 40%;
	max-widht: 40%;
}

.item-info {
	position: relative;
	text-align: center;
}

.item-info .item-info__wrapp {
	color: #fff;
	display: block;
	line-height: 0;
}

.item-info .item-info__wrapp:hover {
	color: #F4BB31;
}

.item-info .item-info__wrapp:hover .item-info__title {
	color: #F4BB31;
}

.item-info .fa {
	font-size: 6rem;
	display: block;
}

.item-info .item-info__title {
	font-weight: 400;
	font-size: 1.6rem;
	color: #fff;
	display: inline-block;
	line-height: 1.4;
	margin-top: 2rem;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media (max-width: 991px) {
	.section-info {
		background-image: url("../img/bg/slid_1-2.jpg");
	}
}

@media (max-width: 767px) {
	.item-info .item-info__title {
		font-size: 1.4rem;
	}
}

@media (max-width: 575px) {
	.section-info {
		background-image: url("../img/bg/slid_1-3.jpg");
	}
	.info-row {
		margin: 0 -5px;
	}
	.info-row .col {
		padding: 0 5px;
	}
	.item-info .fa {
		font-size: 4rem;
	}
	.item-info .item-info__title {
		font-size: 1.3rem;
	}
}

@media (max-width: 380px) {
	.section-info {
		padding: 3rem 0;
	}
	.section-info h2 {
		margin-bottom: 2.5rem;
	}
	.item-info .fa {
		font-size: 3.6rem;
	}
	.item-info .item-info__title {
		font-size: 1.1rem;
	}
}

@media (max-width: 340px) {
	.item-info .fa {
		font-size: 3rem;
	}
	.item-info .item-info__title {
		font-size: 1rem;
	}
}

/* === SECTION CERTIFICATE === */
.section-certificate {
	margin-top: 5rem;
}

.section-certificate h2 {
	text-align: center;
	margin-bottom: 5rem;
}

.slider-certificate .item-slider {
	overflow: hidden;
}

.slider-certificate .item-slider img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

@media (max-width: 420px) {
	.section-certificate {
		margin-top: 3rem;
	}
	.section-certificate h2 {
		margin-bottom: 3rem;
	}
}

/* === SECTION CONTACT === */
.section-contact {
	margin-top: 5rem;
	padding-top: 4rem;
	border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.section-contact h2 {
	text-align: center;
}

.section-contact .block-center {
	margin: 3rem 0 0;
}

.block-contact--contact {
	text-align: left;
	margin: 2rem 0;
}

.block-contact--contact p {
	margin-bottom: 0.7rem;
}

.block-contact--contact .block-contact__link {
	font-weight: 600;
	font-size: 1.6rem;
	color: #111;
}

.block-map {
	position: relative;
	width: 100%;
	height: 500px;
}

.block-map .map {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@media (max-width: 767px) {
	.block-map {
		height: 400px;
	}
}

@media (max-width: 575px) {
	.block-map {
		height: 300px;
	}
}

@media (max-width: 420px) {
	.block-map {
		height: 200px;
	}
}

/*  === FORM ===
@import '../blocks/form/form';*/
/*  === Checkbox === */
/*  @import 'check'; */
/*  === Footer === */
.footer {
	background: #12182b;
	/*background: #30383B;*/
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	padding: 20px 0;
	color: #fff;
}

.footer .row {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer a {
	color: #fff;
}

.footer a:hover {
	color: #F4BB31;
}

.footer-contact {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 230px;
	flex: 0 0 230px;
	max-width: 230px;
	text-align: right;
}

.footer-contact .block-contact .block-contact__link {
	font-size: 1.6rem;
}

.footer-contact .block-contact .fa {
	font-size: 1.4rem;
}

@media (max-width: 575px) {
	.footer-contact .block-contact .block-contact__link {
		font-size: 1.4rem;
	}
	.footer-contact .block-contact .fa {
		font-size: 1.2rem;
	}
}

@media (max-width: 400px) {
	.copy {
		text-align: center;
	}
	.footer-contact {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 0.8rem;
	}
	.footer-contact .block-contact {
		text-align: center;
	}
}

/*=========== SCROLL UP ========== */
#toTop {
	background: #F4BB31;
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 100px;
	right: 30px;
	cursor: pointer;
	display: none;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	z-index: 100;
}

#toTop:after {
	font-size: 1.8rem;
	color: #fff;
	display: block;
	content: '\27A4';
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
}

#toTop:hover {
	background: #dea009;
	-webkit-box-shadow: 0 0 10px #f0c96c;
	box-shadow: 0 0 10px #f0c96c;
}

@media (max-width: 575px) {
	#toTop {
		width: 30px;
		height: 30px;
		right: 25px;
	}
	#toTop:after {
		font-size: 1.5rem;
	}
}