* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-weight: 400;
	font-family: 'FuturaPT-Book';
	color: #1a1a1a;
}

html, body {
	overflow-x: hidden;
}

.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;	
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.container {
	width: 1170px;
	margin: 0 auto;
	position: relative;
}

/* Верхний блок */

.top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 300;
	transition: all ease 0.3s;
}

.top.active {
	background: rgba(255, 255, 255, 0.95);
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.4);
}

.top-container {
	width: 100%;
	padding: 20px 40px;
}

.top__logo {
	font-size: 28px;
	width: 100px;
}

.top__tagline {
	display: none;
}

.top__mobile_tel {
	display: none;
}

.top__box-wrapper {
	width: calc(100% - 130px);
}

.top__logo img {
	max-width: 100%;
}

.top.active .top__menu-wrapper {
	display: none;
}

.top__menu_bg {
	display: none;
}

.top.active .top__contacts_mail {
	display: none;
}

.top__menu.flex {
	justify-content: flex-start;
}

.top__menu a {
	margin-right: 15px;
	margin-left: 15px;
	position: relative;
	text-decoration: none;
    font-size: 15px;
    font-weight: 400;
}

.top__menu a:before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background: #1a1a1a;
	bottom: 5px;
	left: 0;
	opacity: 0;
	transition: all ease 0.3s;
}

.top__menu a:hover:before {
	opacity: 1;
	bottom: 0;
}

.top__contacts {
	margin-right: 40px;
	text-align: right;
}

.top__contacts_mail {
	font-size: 20px;
	color: #000;
	text-decoration: none;
	display: block;
	border-bottom: 1px solid transparent;
	transition: all ease 0.3s;
}

.top__contacts_tel {
	font-size: 18px;
	text-decoration: none;
	color: #000;
	border-bottom: 1px solid transparent;
	transition: all ease 0.3s;
}

.top__contacts_mail:hover,
.top__contacts_tel:hover {
	border-color: #1a1a1a;
}

.top__callback a {
	display: block;
	width: 190px;
	color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    transition: all ease 0.3s;
    text-transform: uppercase;
    text-align: center;
    line-height: 36px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: all ease 0.3s;
}

.top__callback a:hover {
	background: #fff;
	border-color: #fff;
}

.navbar-tog {
	display: none;
}

.top .footer__contacts {
	display: none;
}

.top.active .top__callback a:hover {
	border-color: #00FF36;
}

/* Header */

header {
	padding-top: 160px;
	padding-bottom: 0px;
	position: relative;
}

header:before {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: calc(100% + 200px);
	background: url(../img/header-bg.svg) center center no-repeat;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
	z-index: 1;
}

header .container.flex {
	z-index: 2;
	align-items: flex-start;
}

.header__info {
	padding-top: 70px;
	width: 650px;
}

.header__info h1 {
	line-height: 100px;
	color: #1a1a1a;
    font-size: 100px;
    font-family: 'FuturaPT-Bold';
    margin-bottom: 50px;
}

.header__info_signature {
	line-height: 1.25;
	letter-spacing: 0.5px;
	color: #1a1a1a;
    font-size: 26px;
    margin-bottom: 40px;
}

.header__info_signature span {
	font-family: 'FuturaPT-Bold';
	display: inline-block;
	position: relative;
}

.header__info_signature span:after,
.how__chief_text span:after {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	bottom: 2px;
	left: 0;
	height: 10px;
	background: #fff;
	z-index: -1;
	animation-duration: 2s;
}

.how__chief_text span:after {
	background: #00FF36;
}

.header__button a,
.more__button a,
.workers__button a,
.call__button a {
	display: block;
	transition: all ease 0.3s;
	color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    letter-spacing: 0.5px;
    border-radius: 10px;
    background-color: #1a1a1a;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

.workers__button a {
	display: inline-block;
}

.more__button a,
.workers__button a {
	border: 1px solid #000;
}

.header__button a:hover,
.more__button a:hover,
.workers__button a:hover,
.call__button a:hover {
	color: #1a1a1a;
	background: #fff;
}

.header__button a:after,
.more__button a:after,
.workers__button a:after,
.call__button a:after {
	position: absolute;
	display: block;
	content: "";
	width: 70px;
	height: 4px;
	background: #fff;
	top: 50%;
	margin-top: -2px;
	right: -35px;
}

.more__button a:after,
.workers__button a:after {
	background: #00FF36;
}

.header__tel {
	width: 512px;
	height: 903px;
	background: url(../img/header-tel.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.header__tel {
	padding-top: 460px;
	padding-left: 90px;
	padding-right: 155px;
	position: relative;
	right: -90px;
}

.header__slider_item {
	outline: none;
	margin-left: 2px;
	margin-right: 2px;
}

.header__slider_item-number {
	line-height: 40px;
	width: 40px;
	color: #ffffff;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0.5px;
    background: #181818;
    border-radius: 5px;
    border-top-right-radius: 0px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
}

.header__slider_item p {
	color: #1a1a1a;
    font-size: 20px;
    line-height: 26px;

}

.header__slider_item p span {
	font-family: 'FuturaPT-Bold';
}

.header__slider-wrapper {
	position: relative;
}

.header__slider_arrows {
	position: absolute;
	width: 100%;
	top: 4px;
	height: 0;
	z-index: 2;
}

.header__slider_arrows div {
	position: absolute;
	display: block;
	cursor: pointer;
	width: 19px;
	height: 32px;
	background: url(../img/slider-arrow.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: 0;
}

.header__slider_prev-arrow {
	left: -25px;
}

.header__slider_next-arrow {
	right: -25px;
	transform: rotate(180deg) ;
	-webkit-transform: rotate(180deg) ;
	-moz-transform: rotate(180deg) ;
	-o-transform: rotate(180deg) ;
	-ms-transform: rotate(180deg) ;
}

.header__slider_dots,
.slider__dots {
	margin-top: 15px;
}
	
.header__slider_dots ul,
.slider__dots ul {
	text-align: center;
}

.header__slider_dots ul li,
.slider__dots ul li {
	display: inline-block;
	list-style: none;
	margin-left: 5px;
	margin-right: 5px;
}

.header__slider_dots ul li button,
.slider__dots ul li button {
	border: 1px solid #25FF34;
	width: 7px;
	height: 7px;
	background: #fff;
	border-radius: 50%;
	outline: none;
	cursor: pointer;
	font-size: 0;
	color: transparent;
}

.header__slider_dots ul li.slick-active button,
.slider__dots ul li.slick-active button {
	background: #25FF34;
}

.header__tel_anim-one {
	position: absolute;
	width: 3px;
	height: 100px;
	background: #00FF36;
	top: 110px;
	left: 200px;
}

.header__tel_anim-one-circle {
	position: absolute;
	display: block;
	width: 35px;
	height: 70px;
	left: -35px;
	top: 30px;
	overflow: hidden;
	animation: header-tel-one 3s infinite linear;
}

.header__tel_anim-one-circle:before {
	position: absolute;
	display: block;
	content: "";
	width: 70px;
	height: 70px;
	box-sizing: border-box;
	border-radius: 50%;
	border: 10px solid #00FF36;
}

@-webkit-keyframes header-tel-one {
	0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

@-moz-keyframes header-tel-one {
 0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

@-ms-keyframes header-tel-one {
   0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

@-o-keyframes header-tel-one {
   0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

@keyframes header-tel-one {
    0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

.header__tel_anim-two {
	position: absolute;
	top: 335px;
	right: 185px;
	width: 80px;
	height: 80px;
	background: url(../img/smile-one.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	animation: header-tel-two 5s infinite linear;
}

@-webkit-keyframes header-tel-two {
    to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes header-tel-two {
    to { -moz-transform: rotate(360deg); }
}

@-ms-keyframes header-tel-two {
    to { -ms-transform: rotate(360deg); }
}

@-o-keyframes header-tel-two {
    to { -o-transform: rotate(360deg); }
}

@keyframes header-tel-two {
    to { transform: rotate(360deg); }
}

.header__tel_anim-three {
	position: absolute;
	width: 3px;
	height: 50px;
	background: #00FF36;
	bottom: 209px;
	right: 160px;
}

.header__tel_anim-three-line {
	position: absolute;
	width: 65px;
	height: 16px;
	background: #00FF36;
	top: -16px;
	right: -35px;
	animation: header-tel-three 3s infinite linear;
}

@-webkit-keyframes header-tel-three {
	0% {right: 35px;}
	50% {right: -10px;}
    100% {right: 35px;}
}

@-moz-keyframes header-tel-three {
 0% {right: -35px;}
	50% {right: -10px;}
    100% {right: -35px;}
}

@-ms-keyframes header-tel-three {
  0% {right: -35px;}
	50% {right: -10px;}
    100% {right: -35px;}
}

@-o-keyframes header-tel-three {
  0% {right: -35px;}
	50% {right: -10px;}
    100% {right: -35px;}
}

@keyframes header-tel-three {
   0% {right: -35px;}
	50% {right: -10px;}
    100% {right: -35px;}
}

.header__info_mobile {
	display: none;
}

/* Почему мы */

.why {
	position: relative;
	z-index: 2;
	padding-bottom: 100px;
	padding-top: 150px;
	margin-top: -100px;
}

h2 {
    font-size: 70px;
    font-family: 'FuturaPT-Bold';
    line-height: 1;
}

.why h2 {
	width: 100%;
	max-width: 820px;
	margin-bottom: 50px;
}

.why__signature {
    position: relative;
    margin-bottom: 65px;
    display: inline-block;
}

.why__signature p {
	color: #1a1a1a;
    font-size: 30px;
    line-height: 1.55;
	position: relative;
	z-index: 2;
}

.why__signature_heart {
	position: absolute;
	width: 78px;
	height: 70px;
	top: 50%;
	margin-top: -35px;
	right: -30px;
	background: url(../img/heart.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	animation: why-signature 5s infinite linear;
	z-index: 1;
}

@-webkit-keyframes why-signature {
	0% { -webkit-transform: scale(1, 1); }
    50% { -webkit-transform: scale(1.5, 1.5); }
    100% { -webkit-transform: scale(1, 1); }
}

@-moz-keyframes why-signature {
	0% { -moz-transform: scale(1, 1); }
    50% { -moz-transform: scale(1.5, 1.5); }
    100% { -moz-transform: scale(1, 1); }
}

@-ms-keyframes why-signature {
	0% { -ms-transform: scale(1, 1); }
    50% { -ms-transform: scale(1.5, 1.5); }
    100% { -ms-transform: scale(1, 1); }
}

@-o-keyframes why-signature {
	0% { -o-transform: scale(1, 1); }
    50% { -o-transform: scale(1.5, 1.5); }
    100% { -o-transform: scale(1, 1); }
}

@keyframes why-signature {
	0% { transform: scale(1, 1); }
    50% { transform: scale(1.5, 1.5); }
    100% { transform: scale(1, 1); }
}

.why__block-wrapper {
	position: relative;
	width: 100%;
	max-width: 960px;
}

.why__block-wrapper:after {
	position: absolute;
	display: block;
	content: "";
	z-index: 2;
	width: 582px;
	height: 801px;
	background: url(../img/owner.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	right: -380px;
	bottom: -168px;
}

.why__block.flex {
	align-items: flex-start;
	border-radius: 10px;
	border: 5px solid #00FF36;
	padding: 60px;
	position: relative;
	width: 100%;
	z-index: 1;
}

.why__block_item {
	width: 390px;
}

.why__more {
	display: none;
}

.why__block_item p {
	color: #1a1a1a;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.why__block_item p a {
	color: #00FF36;
	text-decoration: none;
}

.why__block_signature {
	font-size: 30px;
	line-height: 1.1;
}

.why__block_signature span {
	position: relative;
	display: inline-block;
	font-family: 'FuturaPT-Bold';
}

.why__block_signature span:before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 15px;
	background: #00FF36;
	bottom: 0;
	left: -10px;
	z-index: -1;
}

/* Инстаграм – это эффективно и перспективно! */

.insta {
	padding-top: 100px;
	position: relative;
	z-index: 2;
}

.insta h2 {
	width: 570px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.insta h2.fixed {
	position: fixed;
	top: 100px;
	left: calc((100% - 1170px)/2);
}

.insta h2.fixed.bottom {
	position: absolute;
	top: auto;
	left: 0;
	bottom: 0;
}

.insta h2 span {
	color: #00FF36;
	font-family: 'FuturaPT-Bold';
}

.insta__items {
	padding-left: 590px;
	position: relative;
	z-index: 1;
}

.insta__item {
	padding-left: 130px;
	position: relative;
	margin-bottom: 40px;
}

.insta__item-six {
	margin-bottom: 0;
}

.insta__item_icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 88px;
	height: 80px;
	background-image: url(../img/insta-icons.png);
	background-repeat: no-repeat;
	animation-duration: 3s;
}

.insta__item-one .insta__item_icon {
	background-position: center top;
}
.insta__item-two .insta__item_icon {
	background-position: center -80px;
}
.insta__item-three .insta__item_icon {
	background-position: center -160px;
}
.insta__item-four .insta__item_icon {
	background-position: center -240px;
}
.insta__item-five .insta__item_icon {
	background-position: center -320px;
}
.insta__item-six .insta__item_icon {
	background-position: center -400px;
}

.insta__item_title {
	line-height: 46px;
	padding-top: 17px;
	padding-bottom: 17px;
	font-size: 30px;
	font-family: 'FuturaPT-Bold';
}

.insta__item p {
	font-size: 18px;
	line-height: 1.6;
}

/* Мы успешно работаем с аккаунтами разных направлений */

.work {
	padding-top: 285px;
	position: relative;
}

.work:after {
	position: absolute;
	z-index: 1;
	display: block;
	content: "";
	width: 3120px;
	height: 1960px;
	background: url(../img/work-bg.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 50%;
	margin-left: -1560px;
	top: -470px;

}

.work .container {
	z-index: 2;
}

.work h2 {
	width: 100%;
	max-width: 780px;
}

.work__items {
	position: relative;
	height: 1000px;
	width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.work__item {
	position: absolute;
	width: 350px;
	padding-top: 125px;
}

.work__item-one {
	right: 60px;
	top: 0;
}

.work__item-two {
	left: 0;
	top: 140px;
}

.work__item-three {
	right: 0;
	top: 410px;
	padding-top: 155px;
}

.work__item-four {
	left: 60px;
	top: 570px;
	padding-top: 120px;
}

.work__item_number {
	position: absolute;
	z-index: 1;
}

.work__item-one .work__item_number {
	width: 251px;
	height: 230px;
	background: url(../img/work-one.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: -55px;
	left: 15px;
}

.work__anim-one {
	position: absolute;
	width: 67px;
	height: 67px;
	border-radius: 50%;
	left: 76px;
	top: 82px;
	background: #fff;
	animation: work-one 3s infinite linear;
}

@-webkit-keyframes work-one {
	0% {opacity: 0;}
	85% {opacity: 0;}
    100% {opacity: 0.8;}
}

@-moz-keyframes work-one {
	0% {opacity: 0;}
	85% {opacity: 0;}
    100% {opacity: 0.8;}
}

@-ms-keyframes work-one {
	0% {opacity: 0;}
	85% {opacity: 0;}
    100% {opacity: 0.8;}
}

@-o-keyframes work-one {
	0% {opacity: 0;}
	85% {opacity: 0;}
    100% {opacity: 0.8;}
}

@keyframes work-one {
	0% {opacity: 0;}
	85% {opacity: 0;}
    100% {opacity: 0.8;}
}

.work__item-two .work__item_number {
	width: 286px;
	height: 156px;
	background: url(../img/work-two.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 30px;
	top: -25px;
}

.work__anim-two {
	position: absolute;
	width: 205px;
	height: 205px;
	background: url(../img/work-two-anim.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: -26px;
	left: -26px;
	animation: work-two 4s infinite linear;
}

@-webkit-keyframes work-two {
	0% {-webkit-transform: rotate(0deg); left: -26px;}
	50% {-webkit-transform: rotate(0deg); left: -26px;}
	75% {-webkit-transform: rotate(-45deg); left: -120px;}
	100% {-webkit-transform: rotate(0deg); left: -26px;}
}

@-moz-keyframes work-two {
	0% {-moz-transform: rotate(0deg);left: -26px;}
	50% {-moz-transform: rotate(0deg);left: -26px;}
	75% {-moz-transform: rotate(-45deg);left: -120px;}
	100% {-moz-transform: rotate(0deg); left: -26px;}
}

@-ms-keyframes work-two {
	0% {-ms-transform: rotate(0deg); left: -26px;}
	5% {-ms-transform: rotate(0deg); left: -26px;}
	75% {-ms-transform: rotate(-45deg); left: -120px;}
	100% {-ms-transform: rotate(0deg); left: -26px;}
}

@-o-keyframes work-two {
	0% {-o-transform: rotate(0deg); left: -26px;}
	50% {-o-transform: rotate(0deg); left: -26px;}
	75% {-o-transform: rotate(-45deg); left: -120px;}
	100% {-o-transform: rotate(0deg); left: -26px;}
}

@keyframes work-two {
	0% {transform: rotate(0deg); left: -26px;}
	50% {transform: rotate(0deg); left: -26px;}
	75% {transform: rotate(-45deg); left: -120px;}
	100% {transform: rotate(0deg); left: -26px;}
}

.work__item-three .work__item_number {
	top: 0;
	left: 0;
	width: 274px;
	height: 181px;
	background: url(../img/work-three.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
}

.work__anim-three {
	height: 212px;
	width: 156px;
	position: absolute;
	background: url(../img/work-three-anim.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 0;
	top: -33px;
	animation: work-three 7s infinite linear;
}

/*@-webkit-keyframes work-two {
	0% {-webkit-transform: rotate(0deg); left: -26px;}
	50% {-webkit-transform: rotate(0deg); left: -26px;}
	75% {-webkit-transform: rotate(-45deg); left: -120px;}
	100% {-webkit-transform: rotate(0deg); left: -26px;}
}

@-moz-keyframes work-two {
	0% {-moz-transform: rotate(0deg);left: -26px;}
	50% {-moz-transform: rotate(0deg);left: -26px;}
	75% {-moz-transform: rotate(-45deg);left: -120px;}
	100% {-moz-transform: rotate(0deg); left: -26px;}
}

@-ms-keyframes work-two {
	0% {-ms-transform: rotate(0deg); left: -26px;}
	5% {-ms-transform: rotate(0deg); left: -26px;}
	75% {-ms-transform: rotate(-45deg); left: -120px;}
	100% {-ms-transform: rotate(0deg); left: -26px;}
}

@-o-keyframes work-two {
	0% {-o-transform: rotate(0deg); left: -26px;}
	50% {-o-transform: rotate(0deg); left: -26px;}
	75% {-o-transform: rotate(-45deg); left: -120px;}
	100% {-o-transform: rotate(0deg); left: -26px;}
}*/

@keyframes work-three {
	0% {transform: rotate(0deg); left: 0;top: -33px;}
	60% {transform: rotate(0deg); left: 0;top: -33px;}
	80% {transform: rotate(45deg); left: 21px;top: -23px;}
	100% {transform: rotate(0deg); left: 0;top: -33px;}
}

.work__item-four .work__item_number {
	position: absolute;
	width: 295px;
	height: 217px;
	background: url(../img/work-four.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: -80px;
	left: 10px;
}

.work__anim-four {
	position: absolute;
	width: 133px;
	height: 133px;
	border-radius: 50%;
	border: 5px solid #fff;
	top: 79px;
	left: 40px;
	animation: work-four 4s infinite linear;
}

@keyframes work-four {
	0% {transform: scale(1, 1); opacity: 1;}
	80% {transform: scale(1, 1); opacity: 1;}
	100% {transform: scale(1.5, 1.5); opacity: 0;}
}

.work__item_title {
	position: relative;
	z-index: 2;
	font-size: 30px;
	line-height: 1.55;
    font-weight: 700;
    margin-bottom: 10px;
}

.work__item p {
	position: relative;
	z-index: 2;
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.5px;
}

/* Slider */

.slider-wrapper {
	width: 951px;
	height: 694px;
	background: url(../img/slider-bg.png) center center no-repeat;
	box-sizing: border-box;
	padding: 85px 280px 160px 120px;
	position: relative;
	margin-left: -45px;
}

.slider__smiles {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.slider__smile {
	position: absolute;
}

.slider__smile-one {
	animation: smile-one 4s infinite linear;
    backface-visibility: hidden;
    width: 48px;
    height: 48px;
    background: url(../img/smile-one.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    top: 115px;
    right: 180px;
}

@-webkit-keyframes smile-one {
	0% {-webkit-transform: rotate(-45deg) scale(1, 1);}
    50% { -webkit-transform: rotate(45deg) scale(1.3, 1.3); }
    100% {-webkit-transform: rotate(-45deg) scale(1, 1);}
}

@-moz-keyframes smile-one {
    0% { -moz-transform: rotate(-45deg) scale(1, 1); }
    50% { -moz-transform: rotate(45deg) scale(1.3, 1.3); }
    100% { -moz-transform: rotate(-45deg) scale(1, 1); }
}

@-ms-keyframes smile-one {
    0% { -ms-transform: rotate(-45deg) scale(1, 1); }
    50% { -ms-transform: rotate(45deg) scale(1.3, 1.3); }
    100% { -ms-transform: rotate(-45deg) scale(1, 1); }
}

@-o-keyframes smile-one {
    0% { -o-transform: rotate(-45deg) scale(1, 1); }
    50% { -o-transform: rotate(45deg) scale(1.3, 1.3); }
    100% { -o-transform: rotate(-45deg) scale(1, 1); }
}

@keyframes smile-one {
    0% { transform: rotate(-45deg) scale(1, 1); }
    50% { transform: rotate(45deg) scale(1.3, 1.3); }
    100% { transform: rotate(-45deg) scale(1, 1); }
}

.slider__smile-two {
	animation: smile-two 8s infinite linear;
    backface-visibility: hidden;
    width: 50px;
    height: 50px;
    background: url(../img/smile-two.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    top: 250px;
    right: 275px;
}

@-webkit-keyframes smile-two {
    to { -webkit-transform: rotate(-360deg); }
}

@-moz-keyframes smile-two {
    to { -moz-transform: rotate(-360deg); }
}

@-ms-keyframes smile-two {
    to { -ms-transform: rotate(-360deg); }
}

@-o-keyframes smile-two {
    to { -o-transform: rotate(-360deg); }
}

@keyframes smile-two {
    to { transform: rotate(-360deg); }
}

.slider__smile-three {
	animation: smile-three 5s infinite linear;
    backface-visibility: hidden;
    width: 50px;
    height: 50px;
    background: url(../img/smile-three.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    top: 280px;
    right: 160px;
}

@-webkit-keyframes smile-three {
    to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes smile-three {
    to { -moz-transform: rotate(360deg); }
}

@-ms-keyframes smile-three {
    to { -ms-transform: rotate(360deg); }
}

@-o-keyframes smile-three {
    to { -o-transform: rotate(360deg); }
}

@keyframes smile-three {
    to { transform: rotate(360deg); }
}

.slider__smile-four {
	animation: smile-four 8s infinite linear;
    backface-visibility: hidden;
    width: 110px;
    height: 110px;
    background: url(../img/smile-four.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    top: 420px;
    right: 140px;
}

@-webkit-keyframes smile-four {
    0% { -webkit-transform: rotate(-45deg); }
    25% {-webkit-transform: rotate(0deg) scale(1, 1);}
    50% {-webkit-transform: rotate(45deg) scale(1.2, 1.2);}
    75% {-webkit-transform: rotate(0deg) scale(1, 1);}
    100% { -webkit-transform: rotate(-45deg); }
}

@-moz-keyframes smile-four {
    0% { -moz-transform: rotate(-45deg); }
    25% {-moz-transform: rotate(0deg) scale(1, 1);}
    50% {-moz-transform: rotate(45deg) scale(1.2, 1.2);}
    75% {-moz-transform: rotate(0deg) scale(1, 1);}
    100% { -moz-transform: rotate(-45deg); }
}

@-ms-keyframes smile-four {
    0% { -ms-transform: rotate(-45deg); }
    25% {-ms-transform: rotate(0deg) scale(1, 1);}
    50% {-ms-transform: rotate(45deg) scale(1.2, 1.2);}
    75% {-ms-transform: rotate(0deg) scale(1, 1);}
    100% { -ms-transform: rotate(-45deg); }
}

@-o-keyframes smile-four {
    0% { -o-transform: rotate(-45deg); }
    25% {-o-transform: rotate(0deg) scale(1, 1);}
    50% {-o-transform: rotate(45deg) scale(1.2, 1.2);}
    75% {-o-transform: rotate(0deg) scale(1, 1);}
    100% { -o-transform: rotate(-45deg); }
}

@keyframes smile-four {
    0% { transform: rotate(-45deg); }
    25% {transform: rotate(0deg) scale(1, 1);}
    50% {transform: rotate(45deg) scale(1.2, 1.2);}
    75% {transform: rotate(0deg) scale(1, 1);}
    100% { transform: rotate(-45deg); }
}

.slide__title_bg {
	width: 170px;
	height: 55px;
	position: absolute;
	z-index: 1;
	background: #00FF36;
	left: 130px;
	bottom: 265px;
}

.slide__title_bg:after {
	position: absolute;
	display: block;
	content: "";
	width: 2px;
	height: 150px;
	left: 50px;
	bottom: -150px;
	background: #00FF36;
}

.slider {
	position: relative;
	z-index: 2;
}

.slider__arrows {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 0;
}

.slider__item {
    outline: none;
}

.slider__item_top {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	padding-left: 50px;
    margin-bottom: 130px;
    align-items: center;
    min-height: 60px;
}

.slider__item_number {
	color: #fff;
	border-radius: 5px;
	border-top-right-radius: 0px;
	background: #131313;
	font-size: 18px;
	text-align: center;
	line-height: 55px;
	width: 55px;
	margin-right: 30px;
	font-family: 'FuturaPT';
    transition: all ease 5s;
    opacity: 0;
}

.slider__item_number.active {
    opacity: 1;
}

.slider__item_name {
	/*color: #00FF36;*/
    font-size: 30px;
    font-family: 'FuturaPT';
    line-height: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: none;
    width: calc(100% - 85px);
}

.slider__item_title {
    padding-left: 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-content: center;
    min-height: 92px;
    align-items: center;
}

.slider__item_title p {
    line-height: 30px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 30px;
    font-family: 'FuturaPT';
    margin: 0;
}

.slider__item_text {
    padding-left: 100px;
    color: #1a1a1a;
    font-size: 18px;
    font-family: 'FuturaPT';
    line-height: 29px;
}

.slider__item_text span {
    font-weight: 700;
}

.slider__item_info {
    display: none;
}

.slider__arrows {
    position: absolute;
    width: 715px;
    height: 0;
    left: 115px;
    top: 325px;
}

.slider__arrows div {
    position: absolute;
    top: 0;
    width: 19px;
    height: 32px;
    background: url(../img/slider-arrow.png) center center no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
    cursor: pointer;
}

.slider__prev-arrow {
    left: 0;
}

.slider__next-arrow {
    right: 0;
    transform: rotate(180deg) ;
    -webkit-transform: rotate(180deg) ;
    -moz-transform: rotate(180deg) ;
    -o-transform: rotate(180deg) ;
    -ms-transform: rotate(180deg) ;
}

.slider__dots {
	position: relative;
	z-index: 2;
	margin-bottom: 40px;
}

.sin {
	position: relative;
	z-index: 2;
}

.sin__title.flex {
	justify-content: flex-start;
}

.sin__title_number {
	font-size: 300px;
	font-family: 'FuturaPT-Bold';
	margin-right: 35px;
	line-height: 1;
}

.sin__title_text {
	font-size: 70px;
	font-family: 'FuturaPT-Bold';
	line-height: 1;
}

.sin__title_text span {
	display: inline-block;
	background: #000;
	color: #fff;
	font-family: 'FuturaPT-Bold';
	padding-left: 5px;
	padding-right: 5px;
}

.sin {
	background: url(../img/sin-bg.png) right bottom no-repeat;
	padding-bottom: 90px;
	padding-top: 90px;
}

.sin__block.flex {
	align-items: flex-end;
}

.sin__text {
	width: 260px;
	padding-bottom: 80px;
	position: relative;
}

.sin__text:before {
	position: absolute;
	display: block;
	content: "";
	width: 160px;
	height: 85px;
	background: url(../img/sin-arrow.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: -20px;
	top: -100px;
}

.sin__text p {
	margin-bottom: 40px;
	font-size: 29px;
	line-height: 1.35;
	letter-spacing: 0.5px;
}

.sin__text p a {
	position: relative;
	text-decoration: none;
	display: inline-block;
}

.sin__text p a:before {
	position: absolute;
	display: block;
	content: "";
	width: 104%;
	height: 10px;
	left: -2%;
	bottom: 5px;
	z-index: -1;
	background: #25FF34;
	transition: all ease 0.3s;
}

.sin__text p a:hover:before {
	bottom: 0;
}

/* Info */

.info {
	padding-top: 160px;
	background: url(../img/info-bg.svg) center center no-repeat;
	-webkit-background-size: 3700px 100%;
	background-size: 3700px 100%;
	padding-bottom: 315px;
}

.info .container {
	z-index: 2;
}

.info__title {
	margin-bottom: 40px;
}

.info__title_signature {
	font-size: 30px;
	line-height: 1.55;
	margin-left: 115px;
	margin-bottom: 15px;
}

.info__title h2 {
	font-size: 70px;
	font-family: 'FuturaPT-Bold';
	line-height: 1;
}

.info__title h2 span {
	font-family: 'FuturaPT-Bold';
	color: #fff;
}

.info__block.flex {
	align-items: flex-end;
	margin-bottom: 80px;
}

.info__block_text {
	width: 540px;
}

.info__block_text p {
	font-size: 18px;
	line-height: 1.6;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.info__block_text p:last-child {
	margin-bottom: 0;
}

.info__block_note {
	width: 550px;
	border-radius: 8px;
	border: 5px solid #fff;
	padding: 45px;
}

.info__block_note p {
	font-size: 30px;
	line-height: 1.2;
	letter-spacing: 0.5px;
}

.info__block_note p span {
	font-family: 'FuturaPT-Bold';
}

.info__block_note-signature {
	text-align: right;
}

.info__block_note-signature a {
	display: inline-block;
	position: relative;
	text-decoration: none;
	font-size: 24px;
	line-height: 1.55;
	font-family: 'FuturaPT-Bold';
	padding-left: 5px;
	padding-right: 5px;
}

.info__block_note-signature a:before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 10px;
	bottom: 5px;
	left: 0;
	background: #fff;
	z-index: -1;
	transition: all ease 0.3s;
}


.info__block_note-signature a:hover:before {
	bottom: -2px;
}	

.info__bottom {
	width: 750px;
}

.info__bottom_title {
	margin-bottom: 50px;
	position: relative;
}

.info__bottom_title-text {
	font-size: 30px;
	font-family: 'FuturaPT-Bold';
	line-height: 1.25;
}

.info__bottom_text {
	color: #fff;
	font-size: 30px;
	font-family: 'FuturaPT-Bold';
	line-height: 1.25;
	margin-bottom: 15px;
}

.info__bottom_res {
	color: #fff;
	font-size: 30px;
	font-family: 'FuturaPT-Bold';
	line-height: 1.25;
	position: relative;
	padding-right: 10px;
	display: inline-block;
}

.info__bottom_res span {
	color: #fff;
	font-family: 'FuturaPT-Bold';
}

.info__bottom_signature {
	position: absolute;
	width: 340px;
	padding-left: 85px;
	padding-top: 30px;
	background: url(../img/info-arrow.png) left top no-repeat;
	right: -360px;
	top: 30px;
}

.info__bottom_signature-title {
	font-size: 20px;
	line-height: 1.5;
	font-family: 'FuturaPT-Bold';
	position: relative;
	z-index: 2;
}

.info__bottom_signature p {
	position: relative;
	z-index: 2;
	font-size: 20px;
	line-height: 1;
}

.info__anim {
	position: absolute;
	width: 108px;
	height: 150px;
	background: url(../img/leg.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 50%;
	top: 50%;
	margin-top: -50px;
	opacity: 0.7;
	z-index: 1;
}

.info__anim:after {
	position: absolute;
	display: block;
	content: "";
	width: 120px;
	height: 90px;
	top: 50px;
	left: -50px;
	background: url(../img/fetter.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	animation: info-fetter 3s infinite linear;
}

@-webkit-keyframes header-tel-one {
	
}

@-moz-keyframes header-tel-one {
 0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

@-ms-keyframes header-tel-one {
   0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

@-o-keyframes header-tel-one {
   0% {top: 45px;}
	50% {top: 65px;}
    100% {top: 45px;}
}

@keyframes info-fetter {
    0% {opacity: 1; transform: rotate(0);left: -50px;top: 50px;}
	50% {opacity: 0; transform: rotate(-70deg);left: -100px;top: 250px;}
    100% {opacity: 0; transform: rotate(-70deg);left: -100px;top: 250px;}
}

/* Хотите узнать подробней? */

.more {
	margin-top: -130px;
	padding-bottom: 65px;
}

.more h2 {
	margin-bottom: 75px;
}

.more__block.flex {
	padding: 60px;
	border-radius: 5px;
	border: 4px solid #00FF36;
}

.more__text {
	font-size: 30px;
	line-height: 1.35;
	letter-spacing: 0.5px;
	width: 580px;
}

.more__text span {
	font-family: 'FuturaPT-Bold';
}

.more__button {
	width: 290px;
}

.more__button a {
	display: block;
	width: 100%;
	position: relative;
}

/* Как мы работаем */

.how {
	padding-bottom: 45px;
	padding-top: 65px;
}

.how__info {
	width: 620px;
}

.how h2 {
	margin-bottom: 50px;
}

.how__info p {
	font-size: 20px;
	line-height: 1.45;
	letter-spacing: 0.5px;
}

.how__chief {
	width: 465px;
}

.how__chief_photo {
	text-align: right;
	margin-bottom: -15px;
	padding-right: 20px;
	position: relative;
	z-index: 2;
	height: 245px;
}

.how__chief_photo img {
	max-height: 100%;
}

.how__chief_text {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 50px 0px rgba(41,41,41,0.1);
	padding: 35px 45px;
	line-height: 1.25;
	font-size: 30px;
	letter-spacing: 0.5px;
	position: relative;
	z-index: 1;
}

.how__chief_text span {
	position: relative;
	display: inline-block;
	padding-left: 5px;
	padding-right: 5px;
}


.how__chief_text:before {
	position: absolute;
	display: block;
	content: "";
	width: 90px;
	height: 48px;
	background: url(../img/sin-arrow.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	transform: rotate(270deg) ;
	-webkit-transform: rotate(270deg) ;
	-moz-transform: rotate(270deg) ;
	-o-transform: rotate(270deg) ;
	-ms-transform: rotate(270deg) ;
	left: 140px;
	top: -100px;
}

/* Сотрудники */

.workers {
	margin-top: 45px;
}

.workers__items.flex {
	align-items: flex-start;
	justify-content: center;
	position: relative;
}

.workers__animation {
	position: absolute;
	z-index: 1;
	width: 300px;
	height: 300px;
	background: url(../img/workers-animation.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	animation: rotate 10s infinite linear;
	top: -105px;
	left: 20px;
}


@-webkit-keyframes rotate {
	0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate {
 	0% {-moz-transform: rotate(0deg);}
    100% {-moz-transform: rotate(360deg);}
}

@-ms-keyframes rotate {
   	0% {-ms-transform: rotate(0deg);}
    100% {-ms-transform: rotate(360deg);}
}

@-o-keyframes rotate {
   	0% {-o-transform: rotate(0deg);}
    100% {-o-transform: rotate(360deg);}
}

@keyframes rotate {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

.worker {
	border: 3px solid #1FDE2C;
	position: relative;
	padding: 40px 50px;
	border-radius: 10px;
	border-top-right-radius: 0px;
	margin-bottom: 40px;
	z-index: 2;
	transition: all ease 0.3s;
}

.worker-one {
	margin-right: 40px;
	width: 400px;
	background: #1FDE2C;
}

.worker-one.active {
	margin-bottom: 80px;
}

.worker-two {
	margin-top: 40px;
	width: 400px;
}

.worker-three {
	margin-right: 40px;
	width: 425px;
	margin-top: -40px;
}

.worker-three.active {
	margin-bottom: 80px;
}

.worker-four {
	width: 425px;
	background: #1FDE2C;
}

.worker-five {
	margin-right: 40px;
	width: 510px;
	margin-top: -40px;
	background: #1FDE2C;
}	

.worker-six {
	width: 510px;
}

.worker__number {
	position: absolute;
	background: #131313;
	text-align: center;
	line-height: 50px;
	width: 50px;
	right: 15px;
	top: -25px;
	border-radius: 5px;
	border-top-right-radius: 0px;
	color: #fff;
	font-size: 16px;
}

.worker__title {
	font-size: 30px;
	line-height: 1.25;
	font-family: 'FuturaPT-Bold';
}

.worker__list {
	display: none;
	padding-top: 15px;
}

.worker__list p {
	line-height: 1;
	letter-spacing: 0.5px;
	font-size: 18px;
	margin-bottom: 8px;
}

.worker__list ul li {
	list-style: none;
	line-height: 1;
	letter-spacing: 0.5px;
	font-size: 18px;
	margin-bottom: 8px;
}

.workers__button {
	text-align: center;
}

/* Сколько стоит продвижение */

.price {
	padding-top: 155px;
	padding-bottom: 190px;
	background: url(../img/price-bg.png) center center no-repeat;
	-webkit-background-size: 3656px 100%;
	background-size: 3656px 100%;
}

.price h2 {
	margin-bottom: 60px;
}

.price__title_signature {
	font-size: 30px;
	line-height: 1.25;
	letter-spacing: 0.5px;
	width: 100%;
	max-width: 750px;
}

.price__text {
	padding-top: 15px;
	margin-bottom: 45px;
	font-size: 20px;
	line-height: 1.45;
	letter-spacing: 0.5px;
	width: 100%;
	max-width: 580px;
}

.price__iframe {
	width: 100%;
	height: 600px;
	margin-bottom: 40px;
}

.price iframe {
	width: 100%;
	height: 600px;
}

.price__item.flex {
	align-content: center;
	min-height: 227px;
	background-position: right center;
	background-repeat: no-repeat;
	margin-bottom: 80px;
}

.price__item-one {
	width: 250px;
	background-image: url(../img/price-one.png);
}

.price__item-two {
	width: 325px;
	padding-right: 15px;
	background-image: url(../img/price-two.png);
}

.price__item-three {
	width: 260px;
	background-image: url(../img/price-three.png);
}

.price__item-four {
	width: 390px;
	background-image: url(../img/price-four.png);
	margin-bottom: 0;
}

.price__item-five {
	width: 600px;
	background: url(../img/price-five.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	padding: 70px 140px 50px 120px;
	position: relative;
}

.price__item-five:after {
	position: absolute;
	display: block;
	content: "";
	z-index: 1;
	width: 140px;
	height: 206px;
	background: url(../img/price-five-man.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	left: 45px;
	top: 125px;
	opacity: 0.3;
}

.price__item_title {
	font-size: 30px;
	line-height: 1.15;
	font-family: 'FuturaPT-Bold';
	position: relative;
	z-index: 2;
}

/* Кейсы */

.case {
	padding-top: 150px;
	position: relative;
	z-index: 2;
}

.case__block {
	padding-right: 730px;
	position: relative;
}

.case__block:after {
	position: absolute;
	display: block;
	content: "";
	width: 675px;
	height: 675px;
	background: url(../img/case-bg.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: 0;
	right: 0;
}

.case h2 {
	margin-bottom: 40px;
}

.case__signature {
	font-size: 30px;
	line-height: 1.15;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

.case__description {
	margin-bottom: 55px;
	font-size: 20px;
	line-height: 1.45;
	letter-spacing: 0.5px;
}

.case__text {
	border: 3px solid #00FF36;
	border-radius: 5px;
	border-top-right-radius: 0px;
	padding: 40px;
	font-size: 30px;
	line-height: 1.25;
	letter-spacing: 0.5px;
}

/* Призыв к действию */

.call {
	padding-top: 140px;
	position: relative;
	z-index: 2;
	padding-bottom: 150px;
}

.call__block.flex {
	align-items: flex-end;
	justify-content: flex-start;
}

.call__text {
	width: 600px;
	margin-right: 80px;
}

.call h2 {
	margin-bottom: 50px;
}

.call__signature {
	margin-bottom: 40px;
	font-size: 18px;
	line-height: 1.45;
	letter-spacing: 0.5px;
}

.call__description {
	font-size: 30px;
	line-height: 1.25;
	letter-spacing: 0.5px;
}

.call__button {
	position: relative;
	width: 420px;
	padding-bottom: 80px;
}

.call__button:before {
	position: absolute;
	display: block;
	content: "";
	width: 420px;
	height: 386px;
	background: url(../img/call-button-bg.png) center center no-repeat;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	top: -130px;
	right: -85px;
	z-index: 1;
}

.call__button a {
	width: 100%;
	z-index: 2;
}

/* Footer */

footer {
	padding-top: 30px;
	padding-bottom: 75px;
	position: relative;
	z-index: 1;
}

footer:after {
	position: absolute;
	display: block;
	content: "";
	height: 1678px;
	width: 3656px;
	background: url(../img/footer-bg.svg) center center no-repeat;
	bottom: 0;
	left: 50%;
	margin-left: -1828px;
}

footer .container {
	z-index: 2;
}

.footer__logo {
	display: block;
	width: 210px;
	margin-bottom: 20px;
}

.footer__logo img {
	max-width: 100%;
}

.footer__block.flex {
	align-items: flex-start;
}

.footer__block_left.flex {
	align-items: flex-start;
	width: 550px;
}

.footer__info {
	width: 270px;
}

.footer__name {
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 1.55;
}

.footer__conf a {
	text-decoration: none;
    border-bottom: 1px solid rgb(26, 26, 26);
    display: inline-block;
    font-size: 18px;
}

.footer__contacts {
	width: 180px;
	padding-top: 30px;
	float: right;
}

.footer__contacts_title,
.footer__req_title {
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.55;
	margin-bottom: 10px;
	font-family: 'FuturaPT-Bold';
}


@media (min-width: 992px){
	.footer__contacts__1{
		display: none;
	}
}
@media (max-width: 992px){
	.footer__contacts__2{
		display: none;
	}
}


.footer__contacts p {
	font: 15px;
	margin-bottom: 10px;
	line-height: 22px;
}

.footer__contacts a {
	display: block;
	text-decoration: none;
	font-size: 15px;
	line-height: 22px;
	padding-left: 30px;
	-webkit-background-size: auto 20px;
	background-size: auto 20px;
	margin-bottom: 12px;
}

.footer__contacts a span {
	display: inline-block;
	border-bottom: 1px solid transparent;
	transition: all ease 0.3s;
}

.footer__contacts a:hover span {
	border-color: #000;
}

.footer__contacts_tel {
	background: url(../img/phone.svg) left center no-repeat;
}

.footer__contacts_mail {
	background: url(../img/mail.svg) left center no-repeat;
}

.footer__contacts_whatsapp {
	background: url(../img/whatsapp.svg) left center no-repeat;
}

.footer__contacts_telegram {
	background: url(../img/telegram.svg) left center no-repeat;
}


.footer__signature {
	width: 100%;
	margin-top: 40px;
}

.footer__signature p {
	font-size: 15px;
	margin-bottom: 7px;
	letter-spacing: 0.5px;
}

.footer__signature p:last-child {
	margin-bottom: 0;
}

.footer__signature p a {
	display: inline-block;
	text-decoration: none;
	border-bottom: 1px solid rgb(26, 26, 26);
}

.footer__req {
	padding-top: 30px;
}

.footer__req p {
	font-size: 15px;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.footer__signature-mobile {
	display: none;
}

/* Попап */

.modal-wrapper {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: 100000;
	top: 0;
	left: 0;
}

.modal__block.flex {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	justify-content: center;
	align-content: center;
}

.modal__blackout {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.7);
}

.modal {
	position: relative;
	z-index: 2;
	background: #fff;
	width: 560px;
	padding-bottom: 35px;
	padding-top: 35px;
	overflow-y: auto;
	max-height: 100vh;
}

.modal-call__signature {
	padding-left: 45px;
	padding-right: 45px;
	font-size: 18px;
	text-align: center;
	padding-top: 20px;
}

.modal__img {
	text-align: center;
	margin-bottom: 20px;
}

.modal__img img {
	max-width: 100%;
}

.modal__title {
	font-size: 45px;
	line-height: 1;
	font-family: 'FuturaPT-Bold';
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
}

.modal form {
	padding-left: 45px;
	padding-right: 45px;
}

.modal input {
	display: block;
	width: 100%;
	outline: none;
	border: none;
	font-size: 16px;
	height: 60px;
	border-bottom: 1px solid #000;
	margin-top: 10px;
	padding-left: 20px;
	padding-right: 20px;
}

.modal button {
	display: block;
	width: 100%;
	border: none;
	outline: none;
	cursor: pointer;
	transition: all ease 0.3s;
	background-color: #33FF52;
	border: 1px solid #33FF52;
	height: 54px;
	font-size: 16px;
	text-transform: uppercase;
	border-radius: 10px;
	margin-top: 30px;
}

.modal button:hover {
	background: transparent;
}

#modal-one {
	display: none;
}

.modal__thanks {
	padding-left: 45px;
	padding-right: 45px;
	display: none;
	margin-top: 15px;
}

.modal__thanks p {
	color: rgb(26, 26, 26);
    background-color: rgb(255, 208, 0);
    padding: 20px;
    text-align: center;
    font-size: 18px;
}

/* Второй попап */

#modal-two .modal {
	width: 660px;
}

.modal__title_signature {
	text-align: center;
	padding: 20px;
	font-size: 16px;
}

#modal-two .modal input {
	border-radius: 5px;
	border: 1px solid #000;
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 0;
	margin-bottom: 25px;
}

.modal__select-title {
	margin-bottom: 5px;
	font-size: 18px;
	line-height: 1.55;
}

.modal select {
	color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    width: 100%;
    cursor: pointer;
    height: 60px;
    padding: 0 45px 0 20px;
    font-size: 16px;
    line-height: 1.33;
    outline: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    margin-bottom: 25px;
}

.modal textarea {
	display: block;
	width: 100%;
	resize: none;
	padding: 20px;
	height: 120px;
	font-size: 16px;
	outline: none;
	border: 1px solid #000;
	border-radius: 5px;
}

.modal__conf {
	padding-left: 45px;
	padding-right: 45px;
	text-align: center;
	margin-top: 20px;
	font-size: 16px;
}

.modal__conf a {
	display: inline-block;
	text-decoration: none;
	border-bottom: 1px solid #000;
	white-space: nowrap;
}

#modal-two {
	display: none;
}

.modal__close {
	display: none;
}

/* Политика конфиенциальности */

.privacy {
	padding-top: 200px;
	padding-bottom: 200px;
	background: url(../img/work-bg.png) left center no-repeat;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
}

.privacy .container {
	z-index: 2;
}

.privacy__block {
	padding: 75px 65px;
	background: #fff;
}

.privacy__block h1 {
	font-family: 'FuturaPT-Bold';
	font-size: 38px;
	margin-bottom: 30px;
}

.privacy__block h3 {
	font-size: 18px;
	font-family: 'FuturaPT-Bold';
	margin-bottom: 20px;
}

.privacy__block p {
	font-size: 18px;
	line-height: 1.55;
	margin-bottom: 20px;
}

.privacy__block ol {
	margin-left: 20px;
	margin-bottom: 20px;
}

.privacy__block ol li {
	font-size: 18px;
	line-height: 1.55;
}

.privacy__block ol li a,
.privacy__block p a {
	color: #ff8562;
	text-decoration: none;
}

/* Страница благодарности */

.thanks {
	background: url(../img/header-bg.svg) center top no-repeat;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
	padding-top: 220px;
	padding-bottom: 220px;
}

@media screen and (min-width: 1700px) {
	.thanks {
		-webkit-background-size: 100% auto;
		background-size: 100% auto;
	}
}

footer.thanks-footer:after {
	display: none;
}

.thanks h1 {
	text-align: center;
	font-size: 95px;
	font-family: 'FuturaPT-Bold';
	padding: 24px 0 24px 0;
    letter-spacing: 1px;
}

.thanks__signature {
	padding: 15px 0 30px 0;
	margin-bottom: 40px;
	font-size: 30px;
	text-align: center;
}

.thanks__main-link {
	text-align: center;
}

.thanks__main-link a {
	display: inline-block;
    border: 2px solid #1a1a1a;
    text-align: center;
    line-height: 56px;
    transition: all ease 0.3s;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    width: 300px;
    border-radius: 5px;    
}

.thanks__main-link a:hover {
	background: #1a1a1a;
	color: #fff;
}

.block404 {
	text-align: center;
	font-family: 'FuturaPT-Bold';
	font-size: 150px;
	line-height: 150px;
	padding-bottom: 50px;
}

.modal input.error,
#modal-two .modal input.error {
	border: 1px solid red;
}