@font-face {
	font-family: 'Jost';
	src: local("Jost Light"), local("Jost-Light"), url("../fonts/Jost-Light.woff2") format("woff2"), url("../fonts/Jost-Light.woff") format("woff");
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Jost';
	src: local("Jost Regular"), local("Jost-Regular"), url("../fonts/Jost-Regular.woff2") format("woff2"), url("../fonts/Jost-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Jost';
	src: local("Jost Bold"), local("Jost-Bold"), url("../fonts/Jost-Bold.woff2") format("woff2"), url("../fonts/Jost-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins';
	src: local("Poppins ExtraBold"), local("Poppins-ExtraBold"), url("../fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../fonts/Poppins-ExtraBold.woff") format("woff");
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Poppins-ExtraBoldItalic';
	src: local("Poppins ExtraBoldItalic"), local("Poppins-ExtraBoldItalic"), url("../fonts/Poppins-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/Poppins-ExtraBoldItalic.woff") format("woff");
	font-weight: 800;
	font-style: italic;
}

html {
	font-size: 10px;
	height: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
}

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;
}

/* 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;
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}

*,
*::before,
*::after {
	-webkit-box-sizing: inherit;
	        box-sizing: inherit;
}

.clearfix:after,
.clearfix:before {
	display: table;
	content: ' ';
}

.clearfix:after {
	clear: both;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

body {
	font-weight: normal;
	font-size: 1.5rem;
	font-family: "Jost", sans-serif;
	color: #000;
	position: relative;
	min-width: 320px;
	min-height: 100%;
	display: grid;
	grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
	grid-template-rows: min-content 1fr min-content;
	-ms-flex-line-pack: start;
	    align-content: start;
}

h2, h3, h4, h5, b, strong {
	font-weight: 700;
}

p {
	line-height: 1.3;
	margin-bottom: 24px;
}

p:last-child {
	margin-bottom: 0;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	max-height: 100%;
}

.full-bg {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.container {
	max-width: 1275px;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: 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;
}

.article-content p {
	font-size: 1.7rem;
	line-height: 1.5;
}

.article-content .btn {
	margin-top: 25px;
}

/* .box-video {
    position: relative;
    video, .video, img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }
} */
.title {
	font-weight: 700;
	font-size: 3.2rem;
	color: #3A5FAB;
	text-transform: uppercase;
	position: relative;
	display: block;
	line-height: 1.1;
	padding-left: 55px;
	margin-bottom: 30px;
}

.title::before {
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	background-image: url(../img/sprite.png);
	background-position: 0px 0px;
	width: 36px;
	height: 32px;
	margin-top: -2px;
}

.title a {
	color: #3A5FAB;
	position: relative;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.title a:hover {
	color: #61acea;
}

.block-btn {
	text-align: center;
	margin-top: 30px;
}

.btn {
	background: #4dabe7;
	font-size: 1.7rem;
	color: #fff;
	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;
	height: 55px;
	line-height: 1.2;
	padding: 0 25px;
	border: none;
	cursor: pointer;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn:hover {
	-webkit-transform: translateY(-5px);
	        transform: translateY(-5px);
	-webkit-box-shadow: 3px 5px 5px rgba(0, 0, 4, 0.16);
	        box-shadow: 3px 5px 5px rgba(0, 0, 4, 0.16);
}

.btn:hover::before {
	-webkit-transform: scaleX(1);
	        transform: scaleX(1);
}

.btn::before {
	background: #3a5fab;
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn span {
	position: relative;
}

.read-more {
	background: transparent;
	font-weight: normal;
	font-size: 1.7rem;
	color: #69C5FF;
	position: relative;
	display: inline-block;
	border: none;
	cursor: pointer;
	-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:hover {
	color: #2a3b6d;
}

.read-more:hover::after {
	padding-left: 5px;
	opacity: 1;
}

.read-more::after {
	display: inline-block;
	content: '\00BB';
	padding-left: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
}

.hide {
	display: none;
}

@media (max-width: 991px) {
	.title {
		font-size: 2.8rem;
	}
	.article-content p {
		font-size: 1.5rem;
	}
	.article-content .btn {
		margin-top: 20px;
	}
}

@media (max-width: 660px) {
	body {
		font-size: 1.4rem;
	}
	.title {
		margin-bottom: 25px;
	}
	.article-content p {
		font-size: 1.4rem;
		line-height: 1.4;
	}
	.article-content .btn {
		margin-top: 0;
	}
	.btn {
		font-size: 1.4rem;
		height: 45px;
	}
}

@media (max-width: 575px) {
	.title {
		font-size: 2.4rem;
	}
}

@media (max-width: 460px) {
	.title {
		font-size: 2rem;
		padding-left: 40px;
		margin-bottom: 20px;
	}
	.title::before {
		background-image: url(../img/sprite.png);
		background-position: -37px 0px;
		width: 30px;
		height: 27px;
	}
	.btn {
		font-size: 1.3rem;
	}
}

/*-- begin animation anime-bob ==*/
@-webkit-keyframes hvr-icon-bob {
	0% {
		-webkit-transform: translateY(-8px);
		        transform: translateY(-8px);
	}
	50% {
		-webkit-transform: translateY(-2px);
		        transform: translateY(-2px);
	}
	100% {
		-webkit-transform: translateY(-8px);
		        transform: translateY(-8px);
	}
}

@-webkit-keyframes hvr-icon-bob-float {
	100% {
		-webkit-transform: translateY(-8px);
		        transform: translateY(-8px);
	}
}

@keyframes hvr-icon-bob {
	0% {
		-webkit-transform: translateY(-8px);
		        transform: translateY(-8px);
	}
	50% {
		-webkit-transform: translateY(-2px);
		        transform: translateY(-2px);
	}
	100% {
		-webkit-transform: translateY(-8px);
		        transform: translateY(-8px);
	}
}

@keyframes hvr-icon-bob-float {
	100% {
		-webkit-transform: translateY(-8px);
		        transform: translateY(-8px);
	}
}

/*-- end animation anime-bob ==*/
/*-- begin animation paralax right ==*/
@-webkit-keyframes paralax-right {
	0% {
		-webkit-transform: translate(0, 0) scale(1) rotate(0);
		        transform: translate(0, 0) scale(1) rotate(0);
	}
	25% {
		-webkit-transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
		        transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
	}
	50% {
		-webkit-transform: translate(-20px, -20px) scale(0.85) rotate(25deg);
		        transform: translate(-20px, -20px) scale(0.85) rotate(25deg);
	}
	75% {
		-webkit-transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
		        transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
	}
	100% {
		-webkit-transform: translate(0) scale(1) rotate(0);
		        transform: translate(0) scale(1) rotate(0);
	}
}

@keyframes paralax-right {
	0% {
		-webkit-transform: translate(0, 0) scale(1) rotate(0);
		        transform: translate(0, 0) scale(1) rotate(0);
	}
	25% {
		-webkit-transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
		        transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
	}
	50% {
		-webkit-transform: translate(-20px, -20px) scale(0.85) rotate(25deg);
		        transform: translate(-20px, -20px) scale(0.85) rotate(25deg);
	}
	75% {
		-webkit-transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
		        transform: translate(-10px, -12px) scale(0.95) rotate(15deg);
	}
	100% {
		-webkit-transform: translate(0) scale(1) rotate(0);
		        transform: translate(0) scale(1) rotate(0);
	}
}

/*-- end animation paralax right ==*/
/*-- begin animation paralax left ==*/
@-webkit-keyframes paralax-left {
	0% {
		-webkit-transform: translate(0, 0) scale(1) rotate(0);
		        transform: translate(0, 0) scale(1) rotate(0);
	}
	25% {
		-webkit-transform: translate(10px, 12px) scale(0.9) rotate(10deg);
		        transform: translate(10px, 12px) scale(0.9) rotate(10deg);
	}
	50% {
		-webkit-transform: translate(20px, 20px) scale(0.8) rotate(20deg);
		        transform: translate(20px, 20px) scale(0.8) rotate(20deg);
	}
	75% {
		-webkit-transform: translate(10px, 12px) scale(0.9) rotate(10deg);
		        transform: translate(10px, 12px) scale(0.9) rotate(10deg);
	}
	100% {
		-webkit-transform: translate(0) scale(1) rotate(0);
		        transform: translate(0) scale(1) rotate(0);
	}
}

@keyframes paralax-left {
	0% {
		-webkit-transform: translate(0, 0) scale(1) rotate(0);
		        transform: translate(0, 0) scale(1) rotate(0);
	}
	25% {
		-webkit-transform: translate(10px, 12px) scale(0.9) rotate(10deg);
		        transform: translate(10px, 12px) scale(0.9) rotate(10deg);
	}
	50% {
		-webkit-transform: translate(20px, 20px) scale(0.8) rotate(20deg);
		        transform: translate(20px, 20px) scale(0.8) rotate(20deg);
	}
	75% {
		-webkit-transform: translate(10px, 12px) scale(0.9) rotate(10deg);
		        transform: translate(10px, 12px) scale(0.9) rotate(10deg);
	}
	100% {
		-webkit-transform: translate(0) scale(1) rotate(0);
		        transform: translate(0) scale(1) rotate(0);
	}
}

/*-- end animation paralax-left ==*/
/*-- begin animation tada ==*/
@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	20% {
		-webkit-transform: scale(0.9) rotate(-8deg);
		        transform: scale(0.9) rotate(-8deg);
	}
	70% {
		-webkit-transform: scale(1.3) rotate(8deg);
		        transform: scale(1.3) rotate(8deg);
	}
	60% {
		-webkit-transform: scale(1.3) rotate(-8deg);
		        transform: scale(1.3) rotate(-8deg);
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		        transform: scale(1) rotate(0);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	20% {
		-webkit-transform: scale(0.9) rotate(-8deg);
		        transform: scale(0.9) rotate(-8deg);
	}
	70% {
		-webkit-transform: scale(1.3) rotate(8deg);
		        transform: scale(1.3) rotate(8deg);
	}
	60% {
		-webkit-transform: scale(1.3) rotate(-8deg);
		        transform: scale(1.3) rotate(-8deg);
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		        transform: scale(1) rotate(0);
	}
}

/*-- end animation tada ==*/
/*-- begin animation vertical ==*/
@-webkit-keyframes vertical {
	0% {
		-webkit-transform: translate(0, -3px);
		        transform: translate(0, -3px);
	}
	4% {
		-webkit-transform: translate(0, 3px);
		        transform: translate(0, 3px);
	}
	8% {
		-webkit-transform: translate(0, -3px);
		        transform: translate(0, -3px);
	}
	12% {
		-webkit-transform: translate(0, 3px);
		        transform: translate(0, 3px);
	}
	16% {
		-webkit-transform: translate(0, -3px);
		        transform: translate(0, -3px);
	}
	20% {
		-webkit-transform: translate(0, 3px);
		        transform: translate(0, 3px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}

@keyframes vertical {
	0% {
		-webkit-transform: translate(0, -3px);
		        transform: translate(0, -3px);
	}
	4% {
		-webkit-transform: translate(0, 3px);
		        transform: translate(0, 3px);
	}
	8% {
		-webkit-transform: translate(0, -3px);
		        transform: translate(0, -3px);
	}
	12% {
		-webkit-transform: translate(0, 3px);
		        transform: translate(0, 3px);
	}
	16% {
		-webkit-transform: translate(0, -3px);
		        transform: translate(0, -3px);
	}
	20% {
		-webkit-transform: translate(0, 3px);
		        transform: translate(0, 3px);
	}
	100% {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
	}
}

/*-- end animation vertical ==*/
/*-- begin animation wrench ==*/
@-webkit-keyframes wrench {
	0% {
		-webkit-transform: rotate(-5deg);
		        transform: rotate(-5deg);
	}
	5% {
		-webkit-transform: rotate(-12deg);
		        transform: rotate(-12deg);
	}
	8% {
		-webkit-transform: rotate(12deg);
		        transform: rotate(12deg);
	}
	10% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	18% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	20% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	28% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	30% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	38% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	40% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	48% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	50% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	58% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	60% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	68% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}

@keyframes wrench {
	0% {
		-webkit-transform: rotate(-5deg);
		        transform: rotate(-5deg);
	}
	5% {
		-webkit-transform: rotate(-12deg);
		        transform: rotate(-12deg);
	}
	8% {
		-webkit-transform: rotate(12deg);
		        transform: rotate(12deg);
	}
	10% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	18% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	20% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	28% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	30% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	38% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	40% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	48% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	50% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	58% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	60% {
		-webkit-transform: rotate(-24deg);
		        transform: rotate(-24deg);
	}
	68% {
		-webkit-transform: rotate(24deg);
		        transform: rotate(24deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}

/*-- end animation wrench ==*/
/*== BEGING HEADER ==*/
.header {
	background: #fff;
	position: relative;
	width: 100%;
	z-index: 15;
}

.header.sticky .header-one {
	position: fixed;
	top: 0;
	left: 0;
	padding: 10px 0;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
	        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
}

.header.sticky .header-one .col--logo {
	-webkit-transform: scale(1) translateX(0);
	        transform: scale(1) translateX(0);
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 80px;
	        flex: 0 0 80px;
	max-width: 80px;
	padding: 0 15px;
}

.header.sticky .header-one .logo img {
	height: 30px;
}

.header-one {
	background: #3a5fab;
	position: relative;
	width: 100%;
	padding: 23px 0;
	z-index: 2;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-one .row {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header-one .col--logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 0px;
	        flex: 0 0 0;
	padding: 0;
	-webkit-transform: scale(0);
	        transform: scale(0);
	-webkit-transform-origin: left center;
	        transform-origin: left center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header-one .logo img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	height: 0;
}

/* ==== MAIN MENU ===== */
.main-menu {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
}

.main-menu li {
	position: relative;
	margin: 0 5px;
}

.main-menu li:first-child {
	margin-left: 0;
}

.main-menu li:last-child {
	margin-right: 0;
}

.main-menu li a {
	font-size: 1.7rem;
	color: #fff;
	position: relative;
	display: inline-block;
	line-height: 1.2;
	-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;
}

.main-menu li a:hover::after {
	-webkit-transform: scaleX(1);
	        transform: scaleX(1);
}

.main-menu li a::after {
	background: #fff;
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.main-menu li.active a {
	opacity: 0.8;
}

.main-menu li.active a:hover {
	cursor: default;
}

.main-menu li.active a::after {
	-webkit-transform: scaleX(1);
	        transform: scaleX(1);
}

.header-second {
	position: relative;
	width: 100%;
	padding: 26px 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-transform-origin: center top;
	        transform-origin: center top;
}

.header-second .row {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header-second .col--logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 295px;
	        flex: 0 0 295px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.logo {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	line-height: 0;
}

.logo img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50px;
	        flex: 0 0 50px;
	max-width: 100%;
}

.logo .logo__text {
	font-weight: 800;
	font-size: 3.2rem;
	font-family: 'Poppins', sans-serif;
	color: #3a5fab;
	display: inline-block;
	line-height: 1;
	padding-left: 12px;
	margin-top: 7px;
}

.logo .logo__text i {
	font-family: 'Poppins-ExtraBoldItalic';
	color: #4dabe7;
}

.header-info {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header-info .btn {
	margin-left: 35px;
}

.block-contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.block-contact .block-contact__item {
	color: #000;
	position: relative;
	display: inline-block;
	line-height: 1;
	padding-left: 35px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.block-contact .block-contact__item::before {
	position: absolute;
	display: block;
	content: "";
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.block-contact a:hover {
	color: #4dabe7;
}

.block-contact .block-contact__phone {
	font-weight: 700;
	font-size: 2.4rem;
}

.block-contact .block-contact__phone::before {
	background-image: url(../img/sprite.png);
	background-position: -68px -24px;
	width: 23px;
	height: 23px;
	margin-top: 2px;
}

.block-contact .block-contact__email {
	font-size: 1.9rem;
	margin-left: 35px;
}

.block-contact .block-contact__email::before {
	background-image: url(../img/sprite.png);
	background-position: 0px -69px;
	width: 24px;
	height: 15px;
}

.block-contact--header {
	text-align: right;
}

.block-contact--header a {
	color: #000;
}

/* === button menu open === */
.button-menu {
	background-color: transparent;
	position: relative;
	display: inline-block;
	width: 100%;
	line-height: 30px;
	-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-bottom: 6px;
	border: none;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.button-menu:focus, .button-menu:hover {
	background-color: transparent;
}

.button-menu span {
	background-color: #4360ad;
	position: relative;
	display: inline-block;
	width: 100%;
	height: 6px;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.button-menu span::before, .button-menu span::after {
	background-color: inherit;
	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, -220%, 0);
	        transform: translate3d(0, -220%, 0);
}

.button-menu span::after {
	-webkit-transform: translate3d(0, 220%, 0);
	        transform: translate3d(0, 220%, 0);
}

/* === button menu open === */
.close-menu {
	display: none;
	background-color: transparent;
	position: absolute;
	width: 35px;
	height: 30px;
	line-height: 30px;
	top: 25px;
	right: 20px;
	cursor: pointer;
	opacity: 0.8;
	border: none;
}

.close-menu span {
	background-color: #fff;
	position: relative;
	display: block;
	width: 100%;
	height: 6px;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	margin-top: 12px;
}

.close-menu span::before {
	background-color: inherit;
	position: absolute;
	display: block;
	content: "";
	left: 0;
	width: 100%;
	height: 100%;
	-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;
	-webkit-transform: rotate(270deg);
	        transform: rotate(270deg);
}

.close-menu:hover span {
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

.close-menu:hover span::before {
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

@media (max-width: 1100px) {
	.logo img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 45px;
		        flex: 0 0 45px;
	}
	.logo .logo__text {
		font-size: 2.8rem;
	}
	.header-second .col--logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 275px;
		        flex: 0 0 275px;
	}
	.main-menu li a {
		font-size: 1.5rem;
	}
	.block-contact .block-contact__phone {
		font-size: 2rem;
	}
	.block-contact .block-contact__email {
		margin-left: 25px;
	}
	.header-info .btn {
		margin-left: 25px;
	}
}

@media (max-width: 1024px) {
	.header {
		position: sticky;
		top: 0;
	}
	.header.sticky {
		padding: 15px 0;
	}
	.header.sticky .header-one {
		position: relative;
		top: auto;
		left: auto;
		padding: 0;
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
	.header.sticky .header-second {
		position: fixed;
		top: 0;
		left: 0;
		padding: 10px 0;
		-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
		        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.35);
	}
	.header-one {
		background: transparent;
		padding: 0;
	}
	.header-one .col--logo {
		display: none;
	}
	.header-info {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		padding-left: 0;
	}
	.header-info .btn {
		display: none;
	}
	.header-menu {
		max-width: 0;
		padding: 0;
	}
	.header-button {
		display: block;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 55px;
		        flex: 0 0 55px;
		margin-left: 25px;
	}
	.header-second {
		background: #fff;
		width: 100%;
		padding: 20px 0;
	}
	.block-contact--header .block-contact__email {
		font-size: 1.8rem;
	}
	.box-main-menu {
		background: rgba(0, 0, 0, 0.85);
		position: fixed;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		padding: 40px 30px;
		margin: 0;
		z-index: 999;
		-webkit-transform: scale(0);
		        transform: scale(0);
		overflow: hidden;
		overflow-y: auto;
		-webkit-transform-origin: center center;
		        transform-origin: center center;
		-webkit-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;
	}
	.box-main-menu .main-menu--page {
		position: relative;
		display: block;
		padding-top: 20px;
		margin-top: 20px;
	}
	.box-main-menu .main-menu--page::before {
		background: #ccc;
		position: absolute;
		display: block;
		content: "";
		width: 150%;
		height: 1px;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
		opacity: 0.7;
	}
	.box-main-menu.open {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	.box-main-menu.open .main-menu {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
	.main-menu {
		display: block;
		max-width: 100%;
		text-align: center;
		-webkit-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.main-menu li {
		display: block;
		margin: 10px 0;
	}
	.main-menu li a {
		font-weight: 700;
		font-size: 3rem;
		padding: 3px 0;
	}
	.main-menu li a::after {
		display: none;
	}
	.main-menu li.active a {
		color: #61acea;
	}
	.close-menu {
		display: inline-block;
	}
}

@media (max-width: 860px) {
	.header-info .block-contact--header .block-contact__email {
		display: none;
	}
}

@media (max-width: 595px) {
	.header.sticky .header-second {
		padding: 8px 0;
	}
	.logo--header img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 30px;
		        flex: 0 0 30px;
	}
	.logo--header .logo__text {
		font-size: 2rem;
		padding-left: 10px;
		margin-top: 2px;
	}
	.block-contact--header .block-contact__phone {
		font-size: 1.4rem;
		padding-left: 17px;
	}
	.block-contact--header .block-contact__phone::before {
		background-image: url(../img/sprite.png);
		background-position: -92px -26px;
		width: 12px;
		height: 12px;
		margin-top: 1px;
	}
	.main-menu li a {
		font-size: 2.4rem;
	}
	.header-button {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 35px;
		        flex: 0 0 35px;
		margin-left: 15px;
	}
	.header-button span {
		height: 4px;
	}
	.header-button span::before {
		-webkit-transform: translate3d(0, -240%, 0);
		        transform: translate3d(0, -240%, 0);
	}
	.header-button span::after {
		-webkit-transform: translate3d(0, 240%, 0);
		        transform: translate3d(0, 240%, 0);
	}
	.header-second {
		padding: 12px 0;
	}
	.header-second .col--logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 200px;
		        flex: 0 0 200px;
	}
}

@media (max-width: 500px) {
	.close-menu {
		width: 30px;
		top: 5px;
		right: 10px;
	}
	.close-menu span {
		height: 3px;
	}
}

@media (max-width: 460px) {
	.header-second .col--logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 160px;
		        flex: 0 0 160px;
		padding-right: 0;
	}
	.logo--header .logo__text {
		font-size: 1.7rem;
		padding-left: 5px;
	}
	.main-menu li a {
		font-size: 2rem;
	}
	.block-contact--header .block-contact__phone {
		font-size: 1.3rem;
	}
	.header-button {
		margin-left: 10px;
	}
}

@media (max-width: 359px) {
	.logo--header img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 20px;
		        flex: 0 0 20px;
	}
	.logo--header .logo__text {
		font-size: 1.5rem;
		margin-top: 1px;
	}
	.main-menu li a {
		font-size: 1.6rem;
	}
	.header-second {
		padding: 10px 0;
	}
	.header-second .col--logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 140px;
		        flex: 0 0 140px;
	}
	.block-contact--header .block-contact__phone {
		font-size: 1.1rem;
	}
}

/*== END HEADER ==*/
/*== BEGIN SECTION PREMIER ==*/
.slick-slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.slick-slider .slick-slide {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 auto;
	        flex: 0 0 auto;
	height: auto;
}

.slick-arrow {
	background: rgba(58, 95, 171, 0.5);
	font-size: 0;
	position: absolute;
	display: block;
	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: 65px;
	height: 65px;
	-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;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 5;
	border: none;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.slick-arrow::after {
	display: inline-block;
	content: '';
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.slick-arrow:hover {
	background: #2a3b6d;
}

.slick-prev {
	left: 0;
}

.slick-prev:hover::after {
	-webkit-transform: translateX(5px);
	        transform: translateX(5px);
}

.slick-prev::after {
	background-image: url(../img/sprite.png);
	background-position: -23px -33px;
	width: 22px;
	height: 35px;
}

.slick-next {
	right: 0;
}

.slick-next:hover::after {
	-webkit-transform: translateX(-5px);
	        transform: translateX(-5px);
}

.slick-next::after {
	background-image: url(../img/sprite.png);
	background-position: 0px -33px;
	width: 22px;
	height: 35px;
}

@media (max-width: 767px) {
	.slick-arrow {
		width: 45px;
		height: 45px;
	}
	.slick-prev::after {
		background-image: url(../img/sprite.png);
		background-position: -92px 0px;
		width: 16px;
		height: 25px;
	}
	.slick-next::after {
		background-image: url(../img/sprite.png);
		background-position: -46px -33px;
		width: 16px;
		height: 25px;
	}
}

.section-premier {
	position: relative;
	overflow: hidden;
}

.banner {
	background: #000;
	position: relative;
	line-height: 0;
}

.banner .banner__wrapp {
	background: #000;
	background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(41%, black), to(black));
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, black 41%, black 100%);
	position: absolute;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 510px;
	height: 100%;
	top: 0;
	right: 0;
	padding: 15px 40px 15px 25px;
}

.banner .banner__img {
	width: 78%;
	-o-object-fit: cover;
	   object-fit: cover;
}

.banner .banner__text {
	display: inline-block;
	line-height: 1.6;
}

.banner .banner__title {
	font-weight: 700;
	font-size: 3.8rem;
	color: #fff;
	text-transform: uppercase;
	display: inline;
}

.banner .banner__text__img {
	max-width: 100%;
	margin-top: 50px;
}

.logo--banner {
	width: -webkit-min-content;
	width: -moz-min-content;
	width: min-content;
}

@media (max-width: 1275px) {
	.section-premier .container {
		padding: 0;
	}
}

@media (max-width: 1200px) {
	.banner .banner__title {
		font-size: 3rem;
	}
	.banner .banner__text__img {
		margin-top: 30px;
	}
	.logo--banner .logo__text {
		font-size: 2.6rem;
	}
	.logo--banner img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 35px;
		        flex: 0 0 35px;
	}
}

@media (max-width: 991px) {
	.banner .banner__wrapp {
		width: 320px;
		padding: 15px 10px 15px 15px;
	}
	.banner .banner__img {
		height: 350px;
	}
	.banner .banner__title {
		font-size: 2.8rem;
	}
	.logo--banner .logo__text {
		font-size: 2.4rem;
	}
}

@media (max-width: 767px) {
	.banner .banner__title {
		font-size: 2.4rem;
	}
	.logo--banner .logo__text {
		font-size: 2rem;
	}
	.logo--banner img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 30px;
		        flex: 0 0 30px;
	}
}

@media (max-width: 660px) {
	.banner .banner__img {
		height: 270px;
	}
	.banner .banner__title {
		font-size: 2.2rem;
	}
	.banner .banner__wrapp {
		width: 250px;
		padding-right: 20px;
	}
	.logo--banner .logo__text {
		font-size: 1.7rem;
		padding-left: 8px;
	}
}

@media (max-width: 520px) {
	.banner .banner__img {
		height: 200px;
		margin-left: -70px;
	}
	.banner .banner__title {
		font-size: 1.7rem;
	}
	.banner .banner__text__img {
		margin-top: 20px;
	}
	.logo--banner img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 24px;
		        flex: 0 0 24px;
	}
	.logo--banner .logo__text {
		font-size: 1.3rem;
	}
}

/*== END SECTION PREMIER ==*/
/*== BEGIN SECTION CATALOG ==*/
.section-catalog {
	margin-top: 50px;
}

.item-catalog {
	text-align: center;
}

.item-catalog .item-catalog__wrapp {
	background: #3a5fab;
	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: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	height: 100%;
	padding: 45px 15px;
	border-radius: 25px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.item-catalog .item-catalog__wrapp:hover {
	-webkit-transform: translateY(-20px);
	        transform: translateY(-20px);
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	        box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.item-catalog .item-catalog__wrapp:hover .read-more {
	color: #fff;
}

.item-catalog .item-catalog__wrapp:hover .item-catalog__img img {
	-webkit-animation: vertical 2s ease infinite;
	        animation: vertical 2s ease infinite;
}

.item-catalog .item-catalog__img {
	height: 92px;
	margin-bottom: 38px;
}

.item-catalog .item-catalog__title {
	font-weight: 700;
	font-size: 2.6rem;
	color: #fff;
	display: block;
	line-height: 1.2;
}

.item-catalog .item-catalog__footer {
	margin-top: 18px;
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
	.list-catalog {
		margin: 0 -10px;
	}
	.list-catalog .col {
		padding: 0 10px;
	}
	.item-catalog .item-catalog__title {
		font-size: 2.2rem;
	}
}

@media (max-width: 991px) {
	.item-catalog .item-catalog__wrapp {
		padding: 40px 25px;
	}
	.item-catalog .read-more {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.list-catalog {
		margin: 0 -5px;
	}
	.list-catalog .col {
		padding: 0 5px;
	}
	.item-catalog .item-catalog__img {
		height: 60px;
	}
	.item-catalog .item-catalog__title {
		font-size: 1.8rem;
	}
}

@media (max-width: 840px) {
	.item-catalog .item-catalog__wrapp {
		padding: 40px 10px;
	}
}

@media (max-width: 767px) {
	.section-catalog {
		margin-top: 40px;
	}
	.section-catalog .container {
		max-width: 595px;
	}
	.list-catalog {
		margin: 0 -12px;
	}
	.list-catalog .col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
		padding: 0 12px;
		margin-bottom: 24px;
	}
}

@media (max-width: 660px) {
	.section-catalog {
		margin-top: 35px;
	}
	.item-catalog .item-catalog__title {
		font-size: 2.4rem;
	}
}

@media (max-width: 575px) {
	.list-catalog {
		margin: 0 -10px;
	}
	.list-catalog .col {
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.item-catalog .item-catalog__title {
		font-size: 2rem;
	}
}

@media (max-width: 460px) {
	.section-catalog {
		margin-top: 25px;
	}
	.list-catalog {
		margin: 0 -5px;
	}
	.list-catalog .col {
		padding: 0 5px;
		margin-bottom: 10px;
	}
	.item-catalog .item-catalog__wrapp {
		padding: 25px 15px 30px;
		border-radius: 15px;
	}
	.item-catalog .item-catalog__img {
		height: 55px;
		margin-bottom: 22px;
	}
	.item-catalog .item-catalog__title {
		font-size: 1.5rem;
	}
	.item-catalog .item-catalog__footer {
		margin-top: 10px;
	}
}

@media (max-width: 355px) {
	.item-catalog .item-catalog__wrapp {
		padding: 25px 10px;
	}
	.item-catalog .item-catalog__img {
		height: 45px;
	}
	.item-catalog .item-catalog__title {
		font-size: 1.3rem;
	}
	.item-catalog .read-more {
		font-size: 1.1rem;
	}
}

/*== END SECTION CATALOG ==*/
/*== BEGIN SECTION ABOUT ==*/
.section-about {
	position: relative;
	margin-top: 70px;
	overflow: hidden;
}

.about-img {
	line-height: 0;
}

.about-img .about-img__img {
	position: relative;
	display: block;
	border-radius: 25px;
	overflow: hidden;
	line-height: 0;
}

.about-img .about-img__img:hover img {
	-webkit-transform: scale(1.05);
	        transform: scale(1.05);
}

.about-img .about-img__img:hover::after {
	opacity: 1;
}

.about-img .about-img__img::after {
	background: rgba(0, 0, 0, 0.25);
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	opacity: 0;
}

.about-img .about-img__img img {
	width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.about-text {
	height: auto;
	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;
}

.about-text .title {
	margin-bottom: 22px;
}

.about-text .article-content {
	padding-left: 20px;
}

.section-about--installation .title {
	text-transform: none;
}

.about-text--installation .article-content {
	padding: 0 20px 0 0;
}

@media (max-width: 1100px) {
	.about-text .article-content {
		padding-left: 0;
	}
	.about-text--installation .article-content {
		padding: 0;
	}
}

@media (max-width: 991px) {
	.section-about {
		margin-top: 50px;
	}
}

@media screen and (min-width: 768px) and (max-width: 880px) {
	.section-about--installation .title {
		font-size: 2.5rem;
	}
}

@media (max-width: 767px) {
	.section-about {
		margin-top: 30px;
	}
	.about-img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		margin-bottom: 35px;
	}
	.section-about--installation {
		margin-top: 45px;
	}
	.section-about--installation .about-img {
		-webkit-box-ordinal-group: 0;
		    -ms-flex-order: -1;
		        order: -1;
	}
}

@media (max-width: 660px) {
	.section-about {
		margin-top: 10px;
	}
	.section-about--installation {
		margin-top: 45px;
	}
}

@media (max-width: 460px) {
	.section-about {
		margin-top: 15px;
	}
	.about-img {
		margin-bottom: 30px;
	}
	.about-img .about-img__img {
		border-radius: 15px;
	}
	.section-about--installation {
		margin-top: 25px;
	}
}

/*== END SECTION ABOUT==*/
/*== BEGIN SECTION WORK ==*/
.section-work {
	background: #f4f4f4;
	padding: 60px 0 75px;
	margin-top: 75px;
}

.section-work .container {
	max-width: 1330px;
}

.section-work .block-head {
	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;
	margin-bottom: 20px;
}

.section-work .block-head .title {
	margin-bottom: 0;
}

.slider-work {
	margin: 0 -12px;
}

.slider-work .slick-list {
	padding: 20px 0;
}

.slider-work .slick-prev {
	left: 12px;
}

.slider-work .slick-next {
	right: 12px;
}

.item-work {
	padding: 0 12px;
}

.item-work .item-work__img {
	position: relative;
	display: block;
	line-height: 0;
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.item-work .item-work__img:hover {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
	        box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.item-work .item-work__img:hover img {
	-webkit-transform: scale(1.05);
	        transform: scale(1.05);
}

.item-work .item-work__img:hover .item-work__figure::after {
	opacity: 0.5;
}

.item-work .item-work__img .item-work__figure {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.item-work .item-work__img .item-work__figure::after {
	background: #000;
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.item-work .item-work__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
	.section-work {
		padding: 50px 0 65px;
		margin-top: 55px;
	}
	.section-work .block-head {
		margin-bottom: 40px;
	}
	.slider-work .slick-list {
		padding: 0;
	}
	.item-work .item-work__img:hover {
		-webkit-box-shadow: none;
		        box-shadow: none;
	}
}

@media (max-width: 767px) {
	.section-work {
		padding: 40px 0 45px;
		margin-top: 45px;
	}
	.section-work .block-head {
		margin-bottom: 35px;
	}
	.section-work .block-head .btn {
		display: none;
	}
	.section-work .btn--tablet {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		margin-top: 35px;
	}
	.slider-work {
		margin: 0 -8px;
	}
	.slider-work .slick-prev {
		left: 8px;
	}
	.slider-work .slick-next {
		right: 8px;
	}
	.item-work {
		padding: 0 8px;
	}
}

@media (max-width: 460px) {
	.section-work {
		padding: 30px 0 35px;
		margin-top: 35px;
	}
	.section-work .block-head {
		margin-bottom: 30px;
	}
	.section-work .btn--tablet {
		margin-top: 20px;
	}
	.slider-work {
		margin: 0 -6px;
	}
	.slider-work .slick-prev {
		left: 6px;
	}
	.slider-work .slick-next {
		right: 6px;
	}
	.item-work {
		padding: 0 6px;
	}
}

/*== END SECTION WORK==*/
/*== BEGIN SECTION SERVICE ==*/
.section-service {
	background: #3a5fab;
	padding: 70px 0 85px;
}

.section-service .block-head {
	color: #fff;
	text-align: center;
	margin-bottom: 60px;
}

.section-service .block-head .title {
	font-size: 3.8rem;
	color: #fff;
	padding-left: 0;
}

.section-service .block-head .title::before {
	display: none;
}

.section-service .block-head .block-head__desc {
	font-size: 1.9rem;
}

.list-service {
	margin: 0 -10px;
}

.list-service .col {
	padding: 0 10px;
}

.item-service {
	text-align: center;
}

.item-service .item-service__wrapp:hover .item-service__img img {
	-webkit-animation: wrench 2.5s ease infinite;
	        animation: wrench 2.5s ease infinite;
	-webkit-transform-origin: 90% 35% initial;
	        transform-origin: 90% 35% initial;
}

.item-service .item-service__wrapp:hover .item-service__title {
	color: #4dabe7;
	-webkit-transform: translateY(-10px);
	        transform: translateY(-10px);
}

.item-service .item-service__img {
	position: relative;
	display: block;
	height: 123px;
	line-height: 0;
	margin-bottom: 50px;
}

.item-service .item-service__title {
	font-weight: 700;
	font-size: 2.2rem;
	color: #fff;
	display: inline-block;
	line-height: 1.3;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 1200px) {
	.item-service .item-service__title {
		font-size: 2rem;
	}
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
	.item-service .item-service__img {
		height: 80px;
		margin-bottom: 35px;
	}
	.item-service .item-service__title {
		font-size: 1.8rem;
	}
}

@media (max-width: 991px) {
	.section-service {
		padding: 55px 0 35px;
	}
	.section-service .block-head {
		margin-bottom: 50px;
	}
	.section-service .block-head .title {
		font-size: 3.2rem;
		margin-bottom: 20px;
	}
	.section-service .block-head .block-head__desc {
		font-size: 1.7rem;
	}
	.list-service {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.list-service .col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.33333%;
		        flex: 0 0 33.33333%;
		margin-bottom: 45px;
	}
	.item-service .item-service__title {
		font-size: 2rem;
	}
}

@media (max-width: 660px) {
	.section-service {
		padding-bottom: 10px;
	}
	.section-service .block-head .title {
		font-size: 2.8rem;
		margin-bottom: 12px;
	}
	.item-service .item-service__img {
		height: 80px;
		margin-bottom: 30px;
	}
	.item-service .item-service__title {
		font-size: 1.8rem;
		line-height: 1.2;
	}
	.item-service .item-service__title br {
		display: none;
	}
}

@media (max-width: 575px) {
	.section-service .block-head .title {
		font-size: 2.4rem;
	}
	.section-service .block-head .block-head__desc {
		font-size: 1.4rem;
	}
	.item-service .item-service__title {
		font-size: 1.5rem;
	}
}

@media (max-width: 460px) {
	.section-service {
		padding: 40px 0 20px;
	}
	.section-service .block-head {
		margin-bottom: 35px;
	}
	.section-service .block-head .title {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.section-service .block-head .block-head__desc {
		font-size: 1.3rem;
	}
	.list-service .col {
		margin-bottom: 20px;
	}
	.item-service .item-service__img {
		height: 60px;
		margin-bottom: 20px;
	}
	.item-service .item-service__title {
		font-size: 1.3rem;
	}
}

@media (max-width: 400px) {
	.section-service .block-head .title {
		font-size: 1.6rem;
	}
	.section-service .block-head .block-head__desc {
		font-size: 1.1rem;
	}
	.item-service .item-service__img {
		height: 45px;
	}
	.item-service .item-service__title {
		font-size: 1.1rem;
	}
}

@media (max-width: 355px) {
	.item-service .item-service__title {
		font-weight: normal;
	}
}

/*== END SECTION SERVICE ==*/
/*== BEGIN SECTION CONTACT ==*/
.form .form__group {
	margin: 0 -10px;
}

.form .form__group .col {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.33333%;
	        flex: 0 0 33.33333%;
	padding: 0 10px;
	margin-bottom: 22px;
}

.form .form__group .col.form__block--message {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 100%;
	        flex: 0 0 100%;
	margin-bottom: 0;
}

.form .form__title {
	font-weight: 400;
	font-size: 2.4rem;
	display: block;
	line-height: 1.2;
	text-align: center;
	margin: 0 0 43px;
}

.form .form__block {
	position: relative;
	width: 100%;
}

.form .form__block input, .form .form__block textarea {
	background: #fff;
	font-weight: 400;
	font-size: 1.6rem;
	font-family: 'Jost', sans-serif;
	color: #000;
	position: relative;
	display: block;
	width: 100%;
	border: none;
	padding: 0 10px 0 30px;
	border: 1px solid #ededed;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.form .form__block input {
	height: 65px;
	line-height: 63px;
}

.form .form__block input:-webkit-autofill,
.form .form__block input:-webkit-autofill:hover,
.form .form__block input:-webkit-autofill:focus,
.form .form__block textarea:-webkit-autofill,
.form .form__block textarea:-webkit-autofill:hover,
.form .form__block textarea:-webkit-autofill:focus,
.form .form__block select:-webkit-autofill,
.form .form__block select:-webkit-autofill:hover,
.form .form__block select:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0px 1000px #fff inset;
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}

.form .form__block input.error, .form .form__block textarea.error {
	background: #fff;
	border-color: #c00;
	color: #c00;
}

.form .form__block input.valid, .form .form__block textarea.valid {
	background: #fff;
	border-color: #238923;
}

.form .form__block input + label.error, .form .form__block textarea + label.error {
	background: transparent;
	font-size: 1.2rem;
	color: #c00;
	position: relative;
	display: inline-block;
	margin-top: 5px;
}

.form .form__block textarea {
	text-align: left;
	min-height: 65px;
	max-height: 65px;
	min-width: 100%;
	max-width: 100%;
	padding: 22px 10px 15px 30px;
}

.form .block-btn {
	text-align: center;
	margin-top: 30px;
}

::-webkit-input-placeholder {
	color: #000;
	opacity: 1;
}

:-moz-placeholder {
	color: #000;
	opacity: 1;
}

::-moz-placeholder {
	color: #000;
	opacity: 1;
}

:-ms-input-placeholder {
	color: #000;
	opacity: 1;
}

@media (max-width: 767px) {
	.form .form__group {
		margin: 0 -4px;
	}
	.form .form__group .col {
		padding: 0 4px;
		margin-bottom: 16px;
	}
}

@media (max-width: 660px) {
	.form .form__block input, .form .form__block textarea {
		font-size: 1.4rem;
		padding-left: 20px;
	}
	.form .form__block input {
		height: 55px;
		line-height: 54px;
	}
	.form .form__block textarea {
		min-height: 150px;
		max-height: 150px;
		padding-top: 20px;
	}
}

@media (max-width: 575px) {
	.form .form__group .col {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		margin-bottom: 15px;
	}
}

@media (max-width: 355px) {
	.form .form__group .col {
		margin-bottom: 10px;
	}
	.form .form__block input, .form .form__block textarea {
		font-size: 1.3rem;
	}
	.form .form__block input {
		height: 45px;
		line-height: 44px;
	}
	.form .form__block textarea {
		min-height: 120px;
		max-height: 120px;
	}
}

.section-contact {
	background: #f4f4f4;
	padding: 50px 0 65px;
	margin-top: 80px;
}

.box-form--contact {
	position: relative;
}

.box-form--contact .box-form__title {
	font-weight: 700;
	font-size: 3.2rem;
	display: block;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 50px;
}

.box-form--contact .box-form__desc {
	font-size: 1.7rem;
	color: #454545;
	display: block;
	text-align: center;
	line-height: 1.4;
	margin-top: 30px;
}

@media (max-width: 991px) {
	.section-contact {
		margin-top: 55px;
	}
}

@media (max-width: 767px) {
	.section-contact {
		padding-bottom: 35px;
	}
	.box-form--contact .box-form__title {
		font-size: 2.8rem;
		margin-bottom: 32px;
	}
	.box-form--contact .box-form__desc {
		font-size: 1.4rem;
		line-height: 1.5;
		margin-top: 25px;
	}
}

@media (max-width: 575px) {
	.section-contact {
		padding: 25px 0 32px;
		margin-top: 40px;
	}
	.box-form--contact .box-form__title {
		font-size: 2.4rem;
		line-height: 1.15;
		margin-bottom: 25px;
	}
	.box-form--contact .box-form__desc {
		margin-top: 20px;
	}
}

/*== END SECTION CONTACT ==*/
/*== BEGIN FOOTER ==*/
.footer {
	background: #292929;
	color: #fff;
	padding: 50px 0 35px;
}

.footer a {
	color: #fff;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.footer .row {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.footer-one {
	position: relative;
}

.footer-one .col--logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 300px;
	        flex: 0 0 300px;
}

.footer-one .col--logo .col--logo__second {
	margin-top: 33px;
}

.footer-one .col--info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.footer-one .btn {
	margin-left: 40px;
}

.footer-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 50px;
}

.footer-menu li {
	margin: 0 5px;
}

.footer-menu li:first-child {
	margin-left: 0;
}

.footer-menu li:last-child {
	margin-right: 0;
}

.footer-menu li.active a {
	color: #4dabe7;
	cursor: default;
}

.footer-menu a {
	font-size: 1.7rem;
	position: relative;
	display: inline-block;
	line-height: 1.1;
}

.footer-menu a:hover {
	color: #4dabe7;
}

.footer-menu a:hover::after {
	-webkit-transform: scaleX(1);
	        transform: scaleX(1);
}

.footer-menu a::after {
	background: #4dabe7;
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.block-contact--footer br {
	display: none;
}

.block-contact--footer .block-contact__item {
	color: #fff;
}

.block-contact--footer .block-contact__item:hover {
	color: #4dabe7;
}

.block-contact--footer .block-contact__phone::before {
	background-image: url(../img/sprite.png);
	background-position: -68px 0px;
	width: 23px;
	height: 23px;
}

.block-contact--footer .block-contact__email::before {
	background-image: url(../img/sprite.png);
	background-position: -25px -69px;
	width: 24px;
	height: 15px;
}

.footer-second {
	position: relative;
	font-size: 1.7rem;
	padding-top: 30px;
	margin-top: 120px;
	border-top: 1px solid #6a6a6a;
}

.footer-second .row {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.col--copy {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 325px;
	        flex: 0 0 325px;
}

.copy {
	display: block;
	margin: 0;
}

.col--studio {
	text-align: right;
}

a.link-studio {
	color: #fff;
}

a.link-studio:hover span {
	border-color: #4dabe7;
}

a.link-studio span {
	color: #4dabe7;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 1275px) {
	.footer {
		overflow: hidden;
	}
	.footer-second {
		position: relative;
		border: none;
	}
	.footer-second::before {
		background: #6a6a6a;
		position: absolute;
		display: block;
		content: "";
		width: 3000px;
		height: 1px;
		top: 0;
		left: -15px;
	}
}

@media (max-width: 1200px) {
	.footer-one .col--logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 275px;
		        flex: 0 0 275px;
	}
	.footer-one .btn {
		margin-left: 20px;
	}
	.logo--footer .logo__text {
		font-size: 2.8rem;
		margin-top: 15px;
	}
	.block-contact--footer .block-contact__phone {
		font-size: 2.2rem;
	}
	.block-contact--footer .block-contact__email {
		font-size: 1.7rem;
		margin-left: 20px;
	}
}

@media (max-width: 1100px) {
	.footer-menu a {
		font-size: 1.5rem;
	}
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
	.block-contact--footer .block-contact__phone {
		font-size: 2rem;
	}
	.block-contact--footer .block-contact__email {
		font-size: 1.5rem;
	}
}

@media (max-width: 991px) {
	.footer {
		padding-top: 45px;
	}
	.footer-menu {
		display: none;
	}
	.footer-one .btn {
		display: none;
	}
	.block-contact--footer {
		display: block;
		text-align: right;
	}
	.block-contact--footer br {
		display: block;
	}
	.block-contact--footer .block-contact__email {
		margin: 10px 0 0 0;
	}
	.footer-second {
		margin-top: 70px;
	}
}

@media (max-width: 767px) {
	.footer {
		padding: 45px 0 32px;
	}
}

@media (max-width: 660px) {
	.footer-second {
		font-size: 1.4rem;
	}
	.col--copy {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 275px;
		        flex: 0 0 275px;
	}
}

@media (max-width: 575px) {
	.footer {
		padding-top: 35px;
	}
	.footer-one {
		max-width: 240px;
		margin: 0 auto;
	}
	.footer-one .col--logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.footer-one .col--info {
		display: block;
	}
	.block-contact--footer {
		text-align: left;
	}
	.block-contact--footer .block-contact__phone::before {
		background-image: url(../img/sprite.png);
		background-position: -68px -48px;
		width: 20px;
		height: 20px;
	}
	.block-contact--footer .block-contact__email::before {
		background-image: url(../img/sprite.png);
		background-position: -50px -69px;
		width: 20px;
		height: 13px;
	}
	.footer-second {
		font-size: 1.3rem;
		margin-top: 55px;
	}
	.col--copy {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 255px;
		        flex: 0 0 255px;
	}
}

@media (max-width: 480px) {
	.footer-second {
		padding-top: 25px;
	}
	.col--copy {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		text-align: center;
		margin-bottom: 11px;
	}
	.col--studio {
		text-align: center;
	}
}

/*== END FOOTER ==*/
