body {
	margin: 0;
	position: relative;
	font-family: 'Montserrat', sans-serif;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}

.wrapper {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 15px;
}

.button {
	border: 1px solid #fff;
	padding: 10px 20px;
	transition: all 0.2s linear;
}

.button:hover {
	background-color: #b10207;
	border: 1px solid #b10207;
}

a.button {
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
}

a.button:hover {
	text-decoration: none;
	color: #fff;
}

.item-text {
	margin-top: 40px;
	position: relative;
	text-align: center;
	color: #272727;
	font-family: "Playfair Display";
	font-size: 36px;
	font-weight: 700;
}

/* Header ****************/

.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.header_top {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	height: 86px;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}

.header:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 86px;
	background-color: #000;
	opacity: 0.57;
}

.header_logo a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	color: #fff;
	transition: all 0.2s linear;
}

.header_logo a:before {
	content: "";
	width: 0;
	height: 4px;
	position: absolute;
	bottom: 10px;
	left: 0;
	background: #e7ef23;
	transition: all 0.3s;
}

.header_logo a:hover:before {
	width: 28%;
	left: 0;
	background: #e7ef23;
}

.header_logo a:hover {
	text-decoration: none;
	color: #fff;
}

.header_logo a img {
    width: 90px;
    height: 60px;
}

.header_logo a i {
	font-size: 50px;
}

.header_logo a p {
    font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 600;
	margin-top: 14px;
	margin-left: 10px;
}

.header-menu nav {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.header-menu ul {
	margin-bottom: 0;
	margin-left: 30px;
}

.header-menu ul li {
	list-style: none;
}

.header-menu ul li a {
	font-family: 'Montserrat', sans-serif;
	position: relative;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	transition: all 0.6s;
}

.header-menu ul li a:before {
	content: "";
	width: 0;
	height: 4px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: #e7ef23;
	transition: all 0.3s;
}

.header-menu ul li a:hover:before {
	width: 100%;
	left: 0;
	background: #e7ef23;
}

.header-menu ul li a:hover {
	text-decoration: none;
	color: #e7ef23;
}


/* Header menu Fixed *************/

.header-menu-fixed {
	display: none;
	width: 100%;
}

.header_fixed{
    position: fixed;
    display: inline-block;
    left: 0;
    top: 0;
    padding: 15px 16.5%;
    background: #fff;
    animation: showElement;
    animation-duration: 1s;
    z-index: 99999;
}

.menu-fixed-block {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
}

.menu-fixed-block nav {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;

}

.menu-fixed-block nav ul {
	list-style: none;
	padding-left: 30px;
	margin-bottom: 0;
}

.menu-fixed-block a {
	position: relative;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #000;
	transition: all 0.2s linear;
}

.menu-fixed-block i {
	font-size: 38px;
}

.menu-fixed-block nav ul li a:hover {
	color: #e7ef23;
	text-decoration: none;
}

.menu-fixed-block nav ul li a:before {
	content: "";
	width: 0;
	height: 4px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: #00aeff;
	transition: all 0.3s;
}

.menu-fixed-block a:hover:before {
	width: 100%;
	left: 0;
	background: #e7ef23;
}

a.header-button-fixed {
	font-size: 16px;
	text-transform: uppercase;
	margin-left: 20px;
	padding: 10px 20px 10px 20px;
	color: #000;
	border: 2px solid #c74d62;
	transition: all 0.1s linear;
}

a.header-button-fixed:hover {
	color: #fff;
	background-color: #c74d62;
}

@keyframes showElement{
    0% {
        opacity: 0;
        top: -70px;
    }
    
    100% {
        opacity: 1;
        top: 0;
    }
}


/* Header Center ***************/

.header_center {
	width: 807px;
	margin-top: 140px;
}

.header_center--block {
	padding: 33px;
	background: rgba(0,0,0,.4);

}

.header_center--block p {
	padding: 0;
	margin: 0;
	color: #ffffff;
	font-family: "Montserrat";
	font-size: 28px;
	font-weight: 400;
}

.header_center--block h1 {
	margin-bottom: 40px;
	text-shadow: 2px 17px 21px #000000;
	color: #fafdfb;
	font-family: "Montserrat";
	font-size: 60px;
	font-weight: 900;
}

.button.button-header-center {
	padding: 10px 30px;
	background-color: #be435b;
	border: 1px solid #ff6d6c;
	font-size: 18px;
	transition: all 0.2s linear;
}

.button.button-header-center:hover {
	background-color: #fff;
	border: 1px solid #fff;
	color: #000;
}

.header_center--b {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.header_center--b p {
	color: #ffffff;
	font-family: Playfair;
	font-size: 36px;
	font-style: italic;
	font-weight: 600;
}



/* About ***************************/

.about-item {
	margin-top: 30px;
	margin-bottom: 30px;
}

.about-item h2{
	color: #272727;
	font-family: "Playfair Display";
	font-size: 40px;
	font-weight: 700;
}

.about-item__title {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 50px;
}

.about-block {
	text-align: center;
}

.about-block p {
	color: #272727;
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 700;
	line-height: 30px;
}

.about-block h4 {
	margin-top: 30px;
	color: #272727;
	font-family: "Playfair Display";
	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
}


/* Advantages **********************/

.advantages-block {
	position: relative;
}

.advantages-block.advantages-left:before {
	content: "";
	position: absolute;
	width: 77%;
	height: 204px;
	top: 60px;
	box-shadow: -3px 19px 54px rgba(0, 0, 0, 0.48);
	background-color: #292929;
	z-index: -1;
}

.advantages-block.advantages-right:before {
	content: "";
	position: absolute;
	width: 72%;
	height: 204px;
	right: 0;
	top: 50px;
	box-shadow: -3px 19px 54px rgba(0, 0, 0, 0.48);
	background-color: #292929;
	z-index: -1;
}

.advantages-block.advantages-bottom:before {
	content: "";
	position: absolute;
	width: 77%;
	height: 200px;
	top: 60px;
	box-shadow: -3px 19px 54px rgba(0, 0, 0, 0.48);
	background-color: #292929;
	z-index: -1;
}

.advantages-content {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.advantages-block.advantages-bottom .advantages-content__text p {
	margin-top: 120px;
}


.advantages-block.advantages-right .advantages-content img {
	width: 750px;
}

.advantages-block.advantages-bottom img {
	width: 350px;
	margin-top: 30px;
}


.advantages-content__text p {
	margin-top: 95px;
	color: #f5f8fc;
	font-family: Montserrat;
	font-style: italic;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}

.advantages-content img {
	width: 690px;
}

.advantages-content__text a {
	color: #fff;
	font-size: 18px;
	transition: all 0.2s linear;
}

.advantages-content__text a:hover {
	color: #ff0000;
}


/* Choice ************************/

.choice {
	
}

.choice-content {
	margin-top: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.choice-block {
	margin-bottom: 20px;
	width: 360px;
	border: 2px solid #ff0000;
	transition: all 0.2s linear;
}

.choice-block:hover {
	scale: 105%;
	background-color: #f5f5f5;
}

.choice-block img {
	width: 100%;
}

.choice-block__title {
	padding: 20px 20px 0px;
}

.choice-block__title h5 {
	color: #272727;
	font-family: "Playfair Display";
	font-size: 24px;
	font-weight: 700;
	line-height: 30px;
	border-bottom: 2px solid #000;
	padding-bottom: 10px;
}

.choice-block__title p {
	color: #252525;
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: 30px;
}


/* Construction ******************/
.construction-block {
	margin-top: 50px;
	position: relative;
}

.construction-block:before {
	content: "";
	position: absolute;
	width: 70%;
	height: 340px;
	top: 40px;
	right: 0;
	box-shadow: -3px 19px 54px rgba(0, 0, 0, 0.48);
	background-color: #292929;
	z-index: -1;
}

.construction-content {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.construction-title {
	margin-top: 100px;
	margin-left: 100px;
}

.construction-title li {
	color: #fff;
	font-size: 20px;
}


/* Stages **********************/
.stages {
	height: 350px;
	position: relative;
}

.stages-content {
	overflow: hidden;
	margin-top: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.stages-content div {
	display: none;
}

.stages-block .stages-block__1,
.stages-block .stages-block__2,
.stages-block .stages-block__3,
.stages-block .stages-block__4,
.stages-block .stages-block__5,
.stages-block .stages-block__6 {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.stages-block .stages-block__1 span,
.stages-block .stages-block__2 span,
.stages-block .stages-block__3 span,
.stages-block .stages-block__4 span,
.stages-block .stages-block__5 span,
.stages-block .stages-block__6 span {
	position: relative;
}

.stages-block .stages-block__1 span:before,
.stages-block .stages-block__2 span:before,
.stages-block .stages-block__3 span:before,
.stages-block .stages-block__4 span:before,
.stages-block .stages-block__5 span:before {
	position: absolute;
	content: "";
	left: 10px;
	right: 0;
	top: 50px;
	width: 0px;
	height: 3px;
	background-color: #000;
}

.stages-block h6 {
	font-size: 18px;
	position: absolute;
	width: 220px;
	top: 150px;
	opacity:0; /*Элемент полностью прозрачный (невидимый)*/
	transition: 1s; /*Скорость перехода состояния элемента*/
}

.stages-block .stages-block__1 h6 {
	animation: bottom 1s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 1s; /* Задержка перед началом */
}

.stages-block .stages-block__2 h6 {
	animation: bottom 1s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 3s; /* Задержка перед началом */
}

.stages-block .stages-block__3 h6 {
	animation: bottom 1s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 5s; /* Задержка перед началом */
}

.stages-block .stages-block__4 h6 {
	animation: bottom 1s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 7s; /* Задержка перед началом */
}

.stages-block .stages-block__5 h6 {
	animation: bottom 1s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 9s; /* Задержка перед началом */
}

.stages-block .stages-block__6 h6 {
	animation: bottom 1s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 11s; /* Задержка перед началом */
}

@keyframes bottom{
	0%{
		opacity:0;
		bottom: 0;
	}
	100% {
		opacity:1;
		top: 180px;
	}
}

.stages-block__1 {
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 700;
	opacity:0; /*Элемент полностью прозрачный (невидимый)*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: show 3s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 1s; /* Задержка перед началом */
}

.stages-block__2 {
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 700;
	opacity:0; /*Элемент полностью прозрачный (невидимый)*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: show 3s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 3s; /* Задержка перед началом */
}

.stages-block__3 {
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 700;
	opacity:0; /*Элемент полностью прозрачный (невидимый)*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: show 3s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 5s; /* Задержка перед началом */
}

.stages-block__4 {
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 700;
	opacity:0; /*Элемент полностью прозрачный (невидимый)*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: show 3s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 7s; /* Задержка перед началом */
}

.stages-block__5 {
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 700;
	opacity:0; /*Элемент полностью прозрачный (невидимый)*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: show 3s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 9s; /* Задержка перед началом */
}

.stages-block__6 {
	font-family: "Playfair Display";
	font-size: 60px;
	font-weight: 700;
	opacity:0; /*Элемент полностью прозрачный (невидимый)*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: show 3s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 11s; /* Задержка перед началом */
}


@keyframes show{
	0%{
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

.stages-block__1 span:before {
	position: absolute;
	content: "";
	left: 10px;
	right: 0;
	top: 50px;
	height: 3px;
	background-color: #000;
	width: 0; /*начальная ширина элемента*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: rightup 2s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 2s; /* Задержка перед началом */
}

.stages-block__2 span:before {
	position: absolute;
	content: "";
	left: 10px;
	right: 0;
	top: 50px;
	height: 3px;
	background-color: #000;
	width: 0; /*начальная ширина элемента*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: rightup 2s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 4s; /* Задержка перед началом */
}

.stages-block__3 span:before {
	position: absolute;
	content: "";
	left: 10px;
	right: 0;
	top: 50px;
	height: 3px;
	background-color: #000;
	width: 0; /*начальная ширина элемента*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: rightup 2s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 6s; /* Задержка перед началом */
}

.stages-block__4 span:before {
	position: absolute;
	content: "";
	left: 10px;
	right: 0;
	top: 50px;
	height: 3px;
	background-color: #000;
	width: 0; /*начальная ширина элемента*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: rightup 2s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 8s; /* Задержка перед началом */
}

.stages-block__5 span:before {
	position: absolute;
	content: "";
	left: 10px;
	right: 0;
	top: 50px;
	height: 3px;
	background-color: #000;
	width: 0; /*начальная ширина элемента*/
	transition: 1s; /*Скорость перехода состояния элемента*/
	animation: rightup 2s 1; /* Указываем название анимации, её время и количество повторов*/
	animation-fill-mode: forwards; /* Чтобы элемент оставался в конечном состоянии анимации */
	animation-delay: 10s; /* Задержка перед началом */
}

@keyframes rightup{
	0%{
		width:0;
	}
	100% {
		width:200px;
	}
}


.button.stages-btn {
	position: absolute;
	top: 320px;
	left: 41.6%;
	padding: 10px 20px;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	border: 1px solid #ff0000;	
}

.button.stages-btn:hover {
	background-color: #be435b;
}





.deadlines-content {
	position: relative;
}

.deadlines-content:before {
	content: "";
	position: absolute;
	width: 70%;
	height: 305px;
	top: 60px;
	box-shadow: -3px 19px 54px rgba(0, 0, 0, 0.48);
	background-color: #292929;
	z-index: -1;
}

.deadlines-content.deadlines-content__right:before {
	content: "";
	position: absolute;
	right: 0;
	width: 70%;
	height: 305px;
	top: 60px;
	box-shadow: -3px 19px 54px rgba(0, 0, 0, 0.48);
	background-color: #292929;
	z-index: -1;
}

.deadlines-block {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.deadlines-block .advantages-content__text {
	width: 50%;
}

.deadlines-block .advantages-content__text h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	margin-top: 95px;
}

.deadlines-block .advantages-content__text p {
	font-size: 16px;
	margin-top: 40px;
}


/* Slider **************************/
.slider-portfolio {
	position: relative;
}

.slider-portfolio span.img-gr-1 {
	position: absolute;
	width: 150px;
	height: 200px;
	top: 0;
	left: 24.5%;
	z-index: 9999;
	background: url(https://впс31.рф/img/grad-1.png) no-repeat center top;
}

.slider-portfolio span.img-gr-2 {
	position: absolute;
	width: 150px;
	height: 200px;
	top: 0;
	right: 24.5%;
	z-index: 9999;
	background: url(https://впс31.рф/img/grad-2.png) no-repeat center top;
}

.slider-content {
	position: relative;
}

.slider-content:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0;
	transition: all 0.2s linear;

}

.slider-content:hover.slider-content:before {
	opacity: .5;
}

.slider-content span:before {
	opacity: 0;
	content: "+";
	position: absolute;
	left: 35%;
	top: 0%;
	z-index: 2;
	color: #fff;
	font-size: 100px;
	font-weight: bold;
	transition: all 0.2s linear;
}

.slider-content:hover span:before {
	opacity: 1;
}



/* Contacts **********************/

.clock {
    color:#fff;
    position: absolute;
    left: 70%;
    top: 0;
    font-family: 'Montserrat', sans-serif;
}

#Date {
    font-size: 20px;
}
 
.clock ul { 
    font-size:20px; 
}

.clock p {
	padding: 0;
	margin: 0;
}
 
ul { 
    margin:0 auto; 
    padding:0px; 
    list-style:none; 
}
 
ul li { 
	color: #cfcfcf;
    display:inline; 
    font-size:20;  
}
 
#point { 
    position:relative; 
    -moz-animation:mymove 1s ease infinite; 
    -webkit-animation:mymove 1s ease infinite; 
    padding-left:5px; 
    padding-right:5px; 
}
 
@-webkit-keyframes mymove 
{
    0% {
        opacity:1.0; 
        text-shadow:0 0 20px #00c6ff;
    }
 
    50% {
        opacity:0; 
        text-shadow:none; 
    }
 
    100% {
        opacity:1.0; 
        text-shadow:0 0 20px #00c6ff; 
    }	
}
 
 
@-moz-keyframes mymove 
{
    0% {
        opacity:1.0; 
        text-shadow:0 0 20px #00c6ff;
    }
 
    50% {
        opacity:0; 
        text-shadow:none; 
    }
 
    100% {
        opacity:1.0; 
        text-shadow:0 0 20px #00c6ff; 
    }	
}

.contacts {
	text-align: center;
}


.button.contacts-btn {
	padding: 10px 20px;
	color: #000;
	font-size: 18px;
	font-weight: 500;
	border: 1px solid #ff0000;
	transition: all 0.2s linear;
}

.button.contacts-btn:hover {
	background-color: #be435b;
}

.contacts-content {
	color: #fff;
	background-color: #282828;
	text-align: left;
	padding-top: 50px;
	padding-bottom: 50px;
}

.contacts-content__block {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contacts-title {
    width: -moz-available;
    width: -webkit-fill-available;
}

.footer-form {
	position: absolute;
	left: 70%;
}

.footer-form__item input {
	width: 100%;
	background: #292929;
	color: #fff;
	font-size: 20px;
	border: 2px solid #9c9c9c;
	padding: 10px;
	margin-bottom: 10px;
}

.footer-checkbox {
	margin-top: 52px;
}

label.footer-checkbox p {
	margin-left: 5px;
}

label.footer-checkbox p,
label.footer-checkbox a {
	font-size: 12px;
}

label.footer-checkbox {
	display: flex;
	align-items: baseline;
}

.footer-button input {
	width: 100%;
	color: #fff;
	font-size: 20px;
	background: #b10207;
	padding: 4px 20px 10px;
	border: 2px solid #b10207;
	transition: all 0.2s linear;
}

.footer-button input:hover {
	background: #292929;
}

.contacts-phone {
	position: relative;
	width: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.contacts-phone__block {
    margin-top: 10px;
}

.contacts-phone p {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
}

.contacts-phone span,
.contacts-adress span {
	font-size: 22px;
}

.contacts-phone a {
	color: #fff;
	font-size: 20px;
	transition: all 0.2s linear;
}

.contacts-phone p a {
	color: #fff;
}

.contacts-phone a i {
	color: #fff;
	margin-left: 10px;
}

.contacts-phone a i:hover {
	color: #e7ef23;
}

.contacts-phone a:hover{
	color: #b10207;
}

.contacts-phone p a:hover{
	color: #4066c7;
}

.contacts-adress {
	position: relative;
	height: 250px;
	margin-top: 20px;
	margin-bottom: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	z-index: 3;
}

.contacts-adress p {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
}

.contacts-title .button.contacts-btn {
	color: #fff;
}

.contacts-title,
.footer-form, {
	width: 33%;
}

.contacts-title h2 {
    font-family: 'Montserrat', sans-serif;
}

.contacts-title p {
	margin: 10px 0 0 0;
	font-size: 20px;
	font-family: 'Montserrat', sans-serif;
}

.contacts-phone__r {
    display: flex;
}

.contacts-phone__r p {
    margin-right: 10px;
}

.contacts-map {
	position: absolute;
	left: 0;
	right: 50%;
	z-index: 3;
}

/* Animate **********************/

.cssload-cssload-wrap2 {
	width: 300px;
	height: 300px;
	overflow: hidden;
}
.cssload-wrap {
	position: absolute;
	width: 200px;
	height: 200px;
	right: 20%;
	bottom: -10%;
	margin-top: -100px;
	margin-left: -100px;
	transform: scale(2);
		-o-transform: scale(2);
		-ms-transform: scale(2);
		-webkit-transform: scale(2);
		-moz-transform: scale(2);
	overflow: hidden;
	z-index: -1;
}
.cssload-wrap .cssload-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	box-shadow: 0 0 50px 76px rgb(40, 40, 40) inset;
		-o-box-shadow: 0 0 50px 76px rgb(40, 40, 40) inset;
		-ms-box-shadow: 0 0 50px 76px rgb(40, 40, 40) inset;
		-webkit-box-shadow: 0 0 50px 76px rgb(40, 40, 40) inset;
		-moz-box-shadow: 0 0 50px 76px rgb(40, 40, 40) inset;
}
.cssload-wrap .cssload-cogWheel {
	position: absolute;
	top: 50%;
	margin-top: -50px;
	width: 100px;
	height: 100px;
}
.cssload-wrap .cssload-cogWheel.cssload-one {
	left: -12.25px;
	animation: cssload-rotLeft 1.15s infinite linear;
		-o-animation: cssload-rotLeft 1.15s infinite linear;
		-ms-animation: cssload-rotLeft 1.15s infinite linear;
		-webkit-animation: cssload-rotLeft 1.15s infinite linear;
		-moz-animation: cssload-rotLeft 1.15s infinite linear;
}
.cssload-wrap .cssload-cogWheel.cssload-one .cssload-one:before {
	border: none;
}
.cssload-wrap .cssload-cogWheel.cssload-two {
	right: -12.25px;
	margin-top: -48px;
	transform: rotate(196deg);
		-o-transform: rotate(196deg);
		-ms-transform: rotate(196deg);
		-webkit-transform: rotate(196deg);
		-moz-transform: rotate(196deg);
	animation: cssload-rotRight 1.15s infinite linear;
		-o-animation: cssload-rotRight 1.15s infinite linear;
		-ms-animation: cssload-rotRight 1.15s infinite linear;
		-webkit-animation: cssload-rotRight 1.15s infinite linear;
		-moz-animation: cssload-rotRight 1.15s infinite linear;
}
.cssload-wrap .cssload-cogWheel.cssload-two .cssload-one:before {
	border: none;
}
.cssload-wrap .cssload-cogWheel .cssload-cog {
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
}
.cssload-wrap .cssload-cogWheel .cssload-cog:after {
	display: block;
	position: absolute;
	content: ' ';
	border: 4px solid rgb(171,171,171);
	border-left: none;
	height: 18px;
	width: 10px;
	right: -18px;
	top: -8px;
}
.cssload-wrap .cssload-cogWheel .cssload-cog:before {
	display: block;
	position: absolute;
	content: ' ';
	border-left: 4px solid rgb(113,113,113);
	height: 20px;
	width: 8px;
	right: -12px;
	top: -30px;
	transform: rotate(-20deg);
		-o-transform: rotate(-20deg);
		-ms-transform: rotate(-20deg);
		-webkit-transform: rotate(-20deg);
		-moz-transform: rotate(-20deg);
}
.cssload-wrap .cssload-cogWheel .cssload-cog.cssload-one {
	transform: rotate(-80deg);
		-o-transform: rotate(-80deg);
		-ms-transform: rotate(-80deg);
		-webkit-transform: rotate(-80deg);
		-moz-transform: rotate(-80deg);
}
.cssload-wrap .cssload-cogWheel .cssload-cog.cssload-two {
	transform: rotate(-40deg);
		-o-transform: rotate(-40deg);
		-ms-transform: rotate(-40deg);
		-webkit-transform: rotate(-40deg);
		-moz-transform: rotate(-40deg);
}
.cssload-wrap .cssload-cogWheel .cssload-cog.cssload-three {
	transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
}
.cssload-wrap .cssload-cogWheel .cssload-cog.cssload-four {
	transform: rotate(40deg);
		-o-transform: rotate(40deg);
		-ms-transform: rotate(40deg);
		-webkit-transform: rotate(40deg);
		-moz-transform: rotate(40deg);
}
.cssload-wrap .cssload-cogWheel .cssload-cog.cssload-five {
	transform: rotate(80deg);
		-o-transform: rotate(80deg);
		-ms-transform: rotate(80deg);
		-webkit-transform: rotate(80deg);
		-moz-transform: rotate(80deg);
}





@keyframes cssload-rotLeft {
	from {
		transform: rotate(-30deg);
	}
	to {
		transform: rotate(10deg);
	}
}

@-o-keyframes cssload-rotLeft {
	from {
		transform: rotate(-30deg);
	}
	to {
		transform: rotate(10deg);
	}
}

@-ms-keyframes cssload-rotLeft {
	from {
		transform: rotate(-30deg);
	}
	to {
		transform: rotate(10deg);
	}
}

@-webkit-keyframes cssload-rotLeft {
	from {
		transform: rotate(-30deg);
	}
	to {
		transform: rotate(10deg);
	}
}

@-moz-keyframes cssload-rotLeft {
	from {
		transform: rotate(-30deg);
	}
	to {
		transform: rotate(10deg);
	}
}

@keyframes cssload-rotRight {
	from {
		transform: rotate(-174deg);
	}
	to {
		transform: rotate(-214deg);
	}
}

@-o-keyframes cssload-rotRight {
	from {
		transform: rotate(-174deg);
	}
	to {
		transform: rotate(-214deg);
	}
}

@-ms-keyframes cssload-rotRight {
	from {
		transform: rotate(-174deg);
	}
	to {
		transform: rotate(-214deg);
	}
}

@-webkit-keyframes cssload-rotRight {
	from {
		transform: rotate(-174deg);
	}
	to {
		transform: rotate(-214deg);
	}
}

@-moz-keyframes cssload-rotRight {
	from {
		transform: rotate(-174deg);
	}
	to {
		transform: rotate(-214deg);
	}
}



/* Footere ********************************/


/* Footere ********************************/

.footer {
	position: relative;
	padding-top: 50px;
	background-color: #282828;
	color: #fff;
	z-index: 3;
}

.footer-item {
	padding-bottom: 50px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}

.footer-item p {
    font-family: 'Montserrat', sans-serif;
}