@font-face{
	font-family: "open-sans";
	src: local("Open Sans"),
		 local("OpenSans"),
		 url("../fonts/opensans.woff2") format("woff2"),
		 url("../fonts/opensans.woff") format("woff"),
		 url("../fonts/opensans.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}
@font-face{
	font-family: "open-sans";
	src: local("Open Sans Italic"),
		 local("OpenSans-Italic"),
		 url("../fonts/opensansitalic.woff2") format("woff2"),
		 url("../fonts/opensansitalic.woff") format("woff"),
		 url("../fonts/opensansitalic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
}
@font-face{
	font-family: "open-sans";
	src: local("Open Sans Semibold"),
		 local("OpenSans-Semibold"),
		 url("../fonts/opensanssemibold.woff2") format("woff2"),
		 url("../fonts/opensanssemibold.woff") format("woff"),
		 url("../fonts/opensanssemibold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
}
@font-face{
	font-family: "open-sans";
	src: local("Open Sans Semibold Italic"),
		 local("OpenSans-SemiboldItalic"),
		 url("../fonts/opensanssemibolditalic.woff2") format("woff2"),
		 url("../fonts/opensanssemibolditalic.woff") format("woff"), url("../fonts/opensanssemibolditalic.ttf") format("truetype");
	font-weight: 600;
	font-style: italic;
}
@font-face {
	font-family: "open-sans";
	src: local('Open Sans Bold'),
		 local('OpenSans-Bold'),
		 url('../fonts/opensansbold.woff2') format('woff2'),
		 url('../fonts/opensansbold.woff') format('woff'),
		 url('../fonts/opensansbold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
.container{
	width: 1170px;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
html, body{
	font-family: "open-sans", sans-serif;
	font-size: 14px;
	color: #202020;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
 	position: relative;
}
ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
a{
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
	margin-top: 0;
}
button{
	border: none;
	background: no-repeat;
	outline: none;
	cursor: pointer;
}
input:invalid{
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}
input::-ms-clear,
input::-ms-reveal{
   display: none;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration{
   display: none;
}


/*************************************
			  HEADER
**************************************/

.header{
	position: relative;
}
.header__top-line{
	background: -webkit-gradient(linear, left top, right top, color-stop(30%, #343a3f), color-stop(20%, #FFF));
	background: -webkit-linear-gradient(left, #343a3f 30%, #FFF 20%);
	background: -moz-linear-gradient(left, #343a3f 30%, #FFF 20%);
	background: -o-linear-gradient(left, #343a3f 30%, #FFF 20%);
	background: linear-gradient(90deg, #343a3f 30%, #FFF 20%);
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	   -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	        box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	position: relative;
	z-index: 6;
}
.header__container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	height: 98px;
}
.header__logo-box{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	z-index: 1;
	width: 308px;
	background: -webkit-linear-gradient(195deg, #fff 27px, #343a3f 28px);
	background: -moz-linear-gradient(195deg, #fff 27px, #343a3f 28px);
	background: -o-linear-gradient(195deg, #fff 27px, #343a3f 28px);
	background: linear-gradient(-105deg, #fff 27px, #343a3f 28px);
}
.header__logo-link{

}
.header__logo-img{

}
.header__box{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	   -moz-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	z-index: 1;
	background-color: #fff;
	padding-left: 17px;
}
.header__top-block{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding-right: 85px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 32px;
}
.header__contact-us{
	display: inline-block;
	color: #717c85;
	margin-right: 102px;
}
.header__mail,
.header__tel{
	color: #353c41;
	font-weight: 600;
	font-size: 16px;
	padding-left: 22px;
	position: relative;
}
.header__tel span{
	font-weight: 400;
}
.header__mail:after,
.header__tel:after{
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.header__mail:after{
	background-image: url(../img/podcherk/header/mail.png);
	width: 15px;
	height: 11px;
}
.header__tel:after{
	background-image: url(../img/podcherk/header/tel.png);
	width: 16px;
	height: 15px;
}
.header__bottom-block{
	-webkit-box-flex: 1;
	-webkit-flex: auto;
	   -moz-box-flex: 1;
	    -ms-flex: auto;
	        flex: auto;
	border-top: 1px solid #bcc5cd;
}
.header__bottom-box{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	height: 100%;
}
.header__menu{
	display: inline-block;
}
.header__menu-item{
	display: inline-block;
	padding-right: 9px;
	margin-right: 5px;
	position: relative;
}
.header__menu-item:last-child{
	padding-right: 0;
	margin-right: 0;
}
.header__menu-item:after{
	content: "";
	display: inline-block;
	width: 1px;
	height: 14px;
	background-color: #bcc5cd;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.header__menu-item:last-child:after{
	display: none;
}
.header__menu-link{
	display: block;
	color: #202020;
	font-weight: 600;
	font-size: 16px;
	padding: 0 4px;
	position: relative;
	z-index: 1;
}
.header__menu-link:after{
	content: "";
	display: block;
	width: 0%;
	height: 6px;
	background-color: #bcc5cd;
	z-index: -1;
	position: absolute;
	bottom: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	-moz-transition: 0.25s;
	transition: 0.25s;
}
.header__menu-link:hover:after{
	width: 100%;
}
.header__our-service{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	height: 40px;
	font-size: 15px;
	color: #fff;
	background-color: rgba(233,88,33,1);
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
	padding: 0 20px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.header__our-service:hover{
	background-color: rgba(233,88,33,0.8);
}
.header__our-service-text{
	display: inline-block;
	margin-right: 6px;
}
.header__burger{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 12px;
	height: 10px;
}
.header__burger span{
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
}
.header__order-call{
	height: 40px;
	font-size: 15px;
	color: #fff;
	background-color: rgba(38,153,76,1);
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
	padding: 0 17px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.header__order-call:hover{
	background-color: rgba(38,153,76,0.8);
}


/*************************************
			  МЕНЮ
**************************************/

.menu__box{
	display: none;
	background: -webkit-gradient(linear, left top, right top, color-stop(30%, #e5eaef), color-stop(20%, #fff));
	background: -webkit-linear-gradient(left, #e5eaef 30%, #fff 20%);
	background: -moz-linear-gradient(left, #e5eaef 30%, #fff 20%);
	background: -o-linear-gradient(left, #e5eaef 30%, #fff 20%);
	background: linear-gradient(90deg, #e5eaef 30%, #fff 20%);
	z-index: 5;
	position: absolute;
	top: 97px;
	left: 0;
	right: 0;
	opacity: 0;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	   -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	        box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
}
.menu__box.active{
	display: block;
	-webkit-animation: showmenu 0.2s linear;
	   -moz-animation: showmenu 0.2s linear;
	     -o-animation: showmenu 0.2s linear;
	        animation: showmenu 0.2s linear;
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes showmenu{
	0%{
		opacity: 0;
		top: 120px;
	}
	100%{
		opacity: 1;
		top: 97px;
	}
}
@-moz-keyframes showmenu{
	0%{
		opacity: 0;
		top: 120px;
	}
	100%{
		opacity: 1;
		top: 97px;
	}
}
@-o-keyframes showmenu{
	0%{
		opacity: 0;
		top: 120px;
	}
	100%{
		opacity: 1;
		top: 97px;
	}
}
@keyframes showmenu{
	0%{
		opacity: 0;
		top: 120px;
	}
	100%{
		opacity: 1;
		top: 97px;
	}
}
.menu__box.back-active{
	-webkit-animation: backshowmenu 0.2s linear;
	   -moz-animation: backshowmenu 0.2s linear;
	     -o-animation: backshowmenu 0.2s linear;
	        animation: backshowmenu 0.2s linear;
}
@-webkit-keyframes backshowmenu{
	0%{
		opacity: 1;
		top: 97px;
	}
	100%{
		opacity: 0;
		top: 70px;
	}
}
@-moz-keyframes backshowmenu{
	0%{
		opacity: 1;
		top: 97px;
	}
	100%{
		opacity: 0;
		top: 70px;
	}
}
@-o-keyframes backshowmenu{
	0%{
		opacity: 1;
		top: 97px;
	}
	100%{
		opacity: 0;
		top: 70px;
	}
}
@keyframes backshowmenu{
	0%{
		opacity: 1;
		top: 97px;
	}
	100%{
		opacity: 0;
		top: 70px;
	}
}
.menu__close{
	display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.menu__close:before,
.menu__close:after{
    content: "";
    display: inline-block;
    width: 22px;
    height: 2px;
    background-color: #717c85;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}
.menu__close:before {
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
}
.menu__close:after {
    -webkit-transform: rotate(-45deg);
       -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
         -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.menu__close:hover:before,
.menu__close:hover:after{
	background-color: #202020;
}

.menu__container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
.menu__list-box{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 306px;
	padding-top: 30px;
	background-color: #e5eaef;
	position: relative;
	z-index: 1;
}
.menu__list-title{
	font-size: 16px;
	color: #707070;
	line-height: 19px;
	margin-bottom: 30px;
}
.menu__list{
	display: block;
	visibility: visible;
}
.menu__item{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 86px;
	min-height: 86px;
	font-size: 20px;
	color: #202020;
	font-weight: 600;
	line-height: 23px;
	padding-left: 38px;
	cursor: pointer;
	position: relative;
	z-index: 1;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	-moz-transition: 0.25s;
	transition: 0.25s;
	margin-bottom: 12px;
}
.menu__item:last-child{
	margin-bottom: 0;
}
.menu__item:hover,
.menu__item.active{
	color: #fff;
}
.menu__item:before{
	content: "";
	display: block;
	height: 100%;
	width: 3px;
	background-color: #e95821;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: 0.25s;
	-o-transition: 0.25s;
	-moz-transition: 0.25s;
	transition: 0.25s;
	z-index: -1;
}
.menu__item.active:before{
	width: 100%;
}
.menu__item:after{
	content: "";
	display: inline-block;
	border: 12px solid transparent;
	border-right: none;
	border-left: 0px solid #e95821;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: 0.29s;
	-o-transition: 0.29s;
	-moz-transition: 0.29s;
	transition: 0.29s;
	opacity: 0;
}
.menu__item.active:after{
	left: 100%;
	border-left-width: 12px;
	opacity: 1;
}
.menu__item span{
	display: inline-block;
}
.menu__copyright{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: auto;
	font-size: 12px;
	color: #a9b2ba;
	padding-top: 20px;
	padding-bottom: 10px;
}
.menu__content-box{
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	   -moz-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-top: 25px;
	padding-left: 65px;
	background-color: #fff;
	position: relative;
}
.menu__list-box,
.menu__content-box{
	padding-bottom: 25px;
}
.menu__content{
	display: none;
}
.menu__content.active{
	display: block;
}
.menu__number{
	color: #e5eaef;
	font-weight: 700;
	font-size: 24px;
	padding-bottom: 3px;
	margin-bottom: 9px;
	border-bottom: 2px solid #e5eaef;
}
.menu__title{
	font-size: 20px;
	font-weight: 700;
	color: #e95821;
	margin-bottom: 20px;
}
.menu__text-title{
	display: inline-block;
	cursor: pointer;
	color: #202020;
	padding-left: 38px;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
	position: relative;
}
.menu__text-title:hover{
	text-decoration: underline;
}
.menu__text-title:before{
	content: "";
	display: inline-block;
	width: 27px;
	height: 2px;
	background-color: #e95821;
	position: absolute;
	top: 10px;
	left: 0;
}
.menu__text-list{
	padding-left: 80px;
}
.menu__text-list li{
	margin-bottom: 5px;
}
.menu__text-list li:last-child{
	margin-bottom: 0;
	margin-bottom: 23px;
}
.menu__text-list li a{
	color: #202020;
	cursor: pointer;
}
.menu__text-list li a:hover,
.menu__text-list li a.active{
	text-decoration: underline;
}

/*************************************
			  БАННЕР
**************************************/

.banner{
	height: 497px;
	background-image: url(../img/podcherk/poster/poster_bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center;
	padding-top: 150px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.banner__title{
	font-weight: 700;
	font-size: 36px;
	line-height: 44px;
	text-transform: uppercase;
	margin-bottom: 45px;
}
.banner__small-title{
	font-weight: 600;
	font-size: 20px;
	line-height: 26px;
	padding-left: 22px;
	border-left: 5px solid #e95821;
}


/*************************************
			   ВОПРОСЫ
**************************************/

.questions{
	padding: 55px 0;
	position: relative;
	overflow: hidden;
}
.questions__bg{
	position: absolute;
	top: 457px;
	right: 0;
	z-index: -1;
}
.block-title{
	text-align: center;
}
.block-title span{
	display: inline-block;
	font-size: 28px;
	font-weight: 700;
	color: #717c85;
	padding: 0 32px;
	position: relative;
}
.block-title span:before,
.block-title span:after{
	content: "";
	display: block;
	height: 3px;
	width: 2000px;
	background-color: #c1c8ce;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.block-title span:before{
	left: 100%;
}
.block-title span:after{
	right: 100%;
}
.questions__container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 50px;
}
.tabs__container{
	width: 812px;
}
.tabs__cap{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-bottom: 13px;
}
.tabs__tab{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	   -moz-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 400px;
	height: 40px;
	border: 1px solid #c1c8ce;
	font-size: 14px;
	font-weight: 700;
	color: #717c85;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.tabs__tab:hover,
.tabs__tab.active{
	background-color: #e95821;
	border-color: #e95821;
	color: #fff;
}
.tabs__content-box{
	padding: 40px;
	background-color: #fff;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	   -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	        box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
}
.tabs__content{
	display: none;
}
.tabs__content.active{
	display: block;
}
.text-list{

}
.text-list li{
	font-size: 16px;
	line-height: 21px;
	padding-left: 40px;
	margin-bottom: 18px;
	position: relative;
}
.text-list li:last-child{
	margin-bottom: 0;
}
.text-list li:before{
	content: "";
	display: inline-block;
	width: 11px;
	height: 11px;
	background-color: #e95821;
	position: absolute;
	top: 5px;
	left: 0;
}
.tabs__content p{
	font-size: 16px;
    line-height: 21px;
}
.questions__info{

}
.questions__info li{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 40px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	-moz-transition: 0.4s;
	transition: 0.4s;
	position: relative;
	right: -2000px;
}
.questions__info li:last-child{
	margin-bottom: 0;
}
.questions__info li.active{
	right: 0;
}









.questions__icon-box{
	margin-right: 20px;
}
.questions__icon{

}
.questions__info-text{
	font-size: 18px;
	font-weight: 700;
}
.questions__info-text span{
	font-size: 24px;
	color: #e95821;
}


/*************************************
			 РЕШЕНИЯ СУДА
**************************************/

.decisions{
	padding-top: 52px;
	padding-bottom: 40px;
	background-image: url(../img/podcherk/decisions/bg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center;
	overflow: hidden;
}
.decisions__title span{
	color: #fff;
}
.decisions__title span:before,
.decisions__title span:after{
	background-color: #c1c8ce;
	height: 2px;
}
.decisions__slider{
	margin-top: 40px;
}
.decisions__slide{
	padding: 0 12px;
	outline: none;
	text-align: center;
}


.arrows .slick-arrow{
	display: inline-block;
	width: 20px;
	height: 33px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
	background-repeat: no-repeat;
	padding: 0;
}
.arrows .slick-prev{
	left: -50px;
	background-image: url(../img/podcherk/icons/prev.png);
}
.arrows .slick-prev:hover{
	background-image: url(../img/podcherk/icons/prev-active.png);
}
.arrows .slick-next{
	right: -50px;
	background-image: url(../img/podcherk/icons/next.png);
}
.arrows .slick-next:hover{
	background-image: url(../img/podcherk/icons/next-active.png);
}
.decisions__slider .slick-arrow{
	transform: none;
	top: 160px;
}

.decisions__box{
	display: block;
	text-align: center;
	cursor: pointer;
	position: relative;
	outline: none;
}
.decisions__img-box{
	position: relative;
}
.decisions__img-box:after{
	content: "";
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.5)), to(rgba(255,255,255,0)));
	background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 100%);
	background: -moz-linear-gradient(bottom, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 100%);
	background: -o-linear-gradient(bottom, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 100%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.decisions__box:hover .decisions__img-box:after{
	opacity: 0;
}
.decisions__img-box img{
	width: 100%;
	max-width: 100%;
	position: relative;
	z-index: -1;
}
.decisions__link{
	display: inline-block;
	opacity: 0;
	height: 40px;
	padding: 10px 32px 0;
	color: #fff;
	background-color: #26994c;
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
	margin-top: 20px;
	outline: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.decisions__link:hover{
	background-color: #fff;
	color: #202020;
}
.decisions__box:hover .decisions__link{
	opacity: 1;
}


/*************************************
			НАШИ ЭКСПЕРТЫ
**************************************/

.experts{
	padding-top: 60px;
	padding-bottom: 80px;
}
.experts__container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 35px;
}
.experts__card{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 555px;
	padding: 23px 32px 23px 23px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	   -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
	        box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
}
.experts__img-box{
	width: 205px;
	height: 205px;
	text-align: center;
	margin-right: 32px;
}
.experts__img{
	max-width: 100%;
	max-height: 100%;
}
.experts__description{
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	   -moz-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.experts__name{
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: 2px solid #c1c8ce;
}
.experts__name span{
	font-size: 20px;
	font-weight: 700;
}
.experts__post{
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 35px;
}
.experts__experience{
	font-size: 14px;
	color: #717c85;
	margin-bottom: 11px;
}
.experts__experience span{
	font-size: 16px;
	color: #202020;
	font-weight: 600;
}
.experts__diplom{
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
	color: #e95821;
	text-decoration: underline;
	opacity: 0;
	position: relative;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.experts__diplom.active{
	opacity: 1;
	-webkit-animation: shakediplom 0.4s linear;
	   -moz-animation: shakediplom 0.4s linear;
	     -o-animation: shakediplom 0.4s linear;
	        animation: shakediplom 0.4s linear;
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-delay: 0.1s;
	   -moz-animation-delay: 0.1s;
	     -o-animation-delay: 0.1s;
	        animation-delay: 0.1s;
}
@-webkit-keyframes shakediplom{
	0%{
		left: 6px;
	}
	20%{
		left: -6px;
	}
	40%{
		left: 6px;
	}
	60%{
		left: -6px;
	}
	80%{
		left: 6px;
	}
	100%{
		left: 0px;
	}
}
@-moz-keyframes shakediplom{
	0%{
		left: 6px;
	}
	20%{
		left: -6px;
	}
	40%{
		left: 6px;
	}
	60%{
		left: -6px;
	}
	80%{
		left: 6px;
	}
	100%{
		left: 0px;
	}
}
@-o-keyframes shakediplom{
	0%{
		left: 6px;
	}
	20%{
		left: -6px;
	}
	40%{
		left: 6px;
	}
	60%{
		left: -6px;
	}
	80%{
		left: 6px;
	}
	100%{
		left: 0px;
	}
}
@keyframes shakediplom{
	0%{
		left: 6px;
	}
	20%{
		left: -6px;
	}
	40%{
		left: 6px;
	}
	60%{
		left: -6px;
	}
	80%{
		left: 6px;
	}
	100%{
		left: 0px;
	}
}
.experts__diplom:hover{
	text-decoration: none;
}


/*************************************
			ЕЩЁ ВОПРОСЫ
**************************************/

.still-questions{
	height: 293px;
	padding-top: 52px;
	background-image: url(../img/podcherk/still-questions/bg.png);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center;
	text-align: center;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.still-questions__title{
	font-style: italic;
	font-weight: 400;
	font-size: 36px;
	line-height: 42px;
	color: #fff;
	margin-bottom: 7px;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}
.still-questions__title span{
	font-weight: 600;
}
.still-questions__small-title{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 22px;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}
.still-questions__button{
	height: 40px;
	background-color: #e95821;
	color: #fff;
	font-size: 14px;
	padding: 0 32px;
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	-moz-transition: 0.2s;
	transition: 0.2s;
	opacity: 0;
	position: relative;
}
.still-questions__button.active{
	opacity: 1;
	-webkit-animation: shakebutton 0.4s linear;
	   -moz-animation: shakebutton 0.4s linear;
	     -o-animation: shakebutton 0.4s linear;
	        animation: shakebutton 0.4s linear;
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
	-webkit-animation-delay: 0.1s;
	   -moz-animation-delay: 0.1s;
	     -o-animation-delay: 0.1s;
	        animation-delay: 0.1s;
}
@-webkit-keyframes shakebutton{
	0%{
		left: 7px;
	}
	20%{
		left: -7px;
	}
	40%{
		left: 7px;
	}
	60%{
		left: -7px;
	}
	80%{
		left: 7px;
	}
	100%{
		left: 0px;
	}
}
@-moz-keyframes shakebutton{
	0%{
		left: 7px;
	}
	20%{
		left: -7px;
	}
	40%{
		left: 7px;
	}
	60%{
		left: -7px;
	}
	80%{
		left: 7px;
	}
	100%{
		left: 0px;
	}
}
@-o-keyframes shakebutton{
	0%{
		left: 7px;
	}
	20%{
		left: -7px;
	}
	40%{
		left: 7px;
	}
	60%{
		left: -7px;
	}
	80%{
		left: 7px;
	}
	100%{
		left: 0px;
	}
}
@keyframes shakebutton{
	0%{
		left: 7px;
	}
	20%{
		left: -7px;
	}
	40%{
		left: 7px;
	}
	60%{
		left: -7px;
	}
	80%{
		left: 7px;
	}
	100%{
		left: 0px;
	}
}
.still-questions__button:hover{
	background-color: #fff;
	color: #202020;
}


/*************************************
		БЛАГОДАРСТВЕННЫЕ ПИСЬМА
**************************************/

.comments{
	padding-top: 55px;
	padding-bottom: 40px;
}
.comments__slider{
	margin-top: 30px;
}
.comments__slider .slick-track{
	padding: 20px 0;
}
.comments__slider .slick-list{

}
.comments__slide{
	text-align: center;
	padding: 0 13px;
	outline: none;
}
.comments__card{
	display: inline-block;
	width: 354px;
	text-align: left;
	padding: 27px 35px;
	color: #202020;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
	   -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
	        box-shadow: 0 0 15px 0 rgba(0,0,0,0.15);
	position: relative;
	outline: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.comments__card:after{
	content: "";
	display: block;
	height: 3px;
	width: 0;
	background-color: #e95b25;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.comments__card:hover:after{
	width: 100%;
}
.comments__name{
	font-size: 18px;
	margin-bottom: 15px;
}
.comments__name span{
	font-weight: 700;
}
.comments__text{
	height: 102px;
	overflow: hidden;
	font-size: 14px;
	line-height: 17px;
	margin-bottom: 20px;
	position: relative;
}
.comments__text:after{
	content: "";
	display: block;
	height: 45px;
	width: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.2)), to(rgba(255,255,255,0.8)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,0.2), rgba(255,255,255,0.8));
	background: -moz-linear-gradient(top, rgba(255,255,255,0.2), rgba(255,255,255,0.8));
	background: -o-linear-gradient(top, rgba(255,255,255,0.2), rgba(255,255,255,0.8));
	background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.8));
	position: absolute;
	bottom: 0;
}
.comments__link{
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #e95821;
	padding-right: 25px;
	position: relative;
	outline: none;
}
.comments__link:after{
	content: "";
	display: inline-block;
	width: 17px;
	height: 11px;
	background-image: url(../img/podcherk/comments/arrow.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 5px;
	right: 0;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
}
.comments__link:hover:after{
	opacity: 1;
}

/* Стиллизованный fancybox */
.fancybox-button--zoom,
.fancybox-button--play{
	display: none !important;
}
.fancybox-bg{
	background: #343a3f;
}
.fancybox-button svg{
	display: none;
}
.fancybox-button--close{
	position: relative;
	background: none;
}
.fancybox-button--close:before,
.fancybox-button--close:after{
	content: "";
	display: inline-block;
	width: 35px;
	height: 4px;
	background-color: #c1c8ce;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.fancybox-button--close:before{
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.fancybox-button--close:after{
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.fancybox-toolbar{
	top: 10px;
	right: 10px;
}
.fancybox-button--arrow_left,
.fancybox-button--arrow_right{
	width: 35px !important;
	height: 35px !important;
	margin: 0 !important;
	padding: 0 !important;
}
.fancybox-button--arrow_left{
	background: url(../img/podcherk/icons/prev.png) no-repeat center !important;
	left: 80px !important;
}
.fancybox-button--arrow_right{
	background: url(../img/podcherk/icons/next.png) no-repeat center !important;
	right: 80px !important;
}
.fancybox-navigation button:before{
	display: none;
}
/* end */


/*************************************
			  FOOTER
**************************************/

.footer{
	padding-bottom: 15px;
	background: -webkit-gradient(linear, left top, right top, from(#343a3f), to(#465058));
	background: -webkit-linear-gradient(left, #343a3f, #465058);
	background: -moz-linear-gradient(left, #343a3f, #465058);
	background: -o-linear-gradient(left, #343a3f, #465058);
	background: linear-gradient(to right, #343a3f, #465058);
	overflow: hidden;
}
.footer__container{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.footer__contacts-block{
	padding-left: 27px;
	padding-top: 40px;
}
.footer__contacts-title{
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	margin-bottom: 20px;
}
.footer__contact-box{
	margin-bottom: 13px;
}
.footer__contact-label{
	display: block;
	font-size: 14px;
	color: #7d8388;
	margin-bottom: 2px;
}
.footer__tel,
.footer__mail,
.footer__address{
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #fff;
	position: relative;
}
.footer__tel:before,
.footer__mail:before,
.footer__address:before{
	content: "";
	display: inline-block;
	background-repeat: no-repeat;
	position: absolute;
}
.footer__tel:before{
	background-image: url(../img/podcherk/footer/tel.png);
	width: 19px;
	height: 19px;
	top: 1px;
	left: -30px;
}
.footer__mail:before{
	background-image: url(../img/podcherk/footer/mail.png);
	width: 19px;
	height: 14px;
	top: 4px;
	left: -30px;
}
.footer__address:before{
	background-image: url(../img/podcherk/footer/geo.png);
	width: 14px;
	height: 20px;
	top: 2px;
    left: -28px;
}
.footer__form-block{
	padding: 35px 0;
	background-color: #465058;
	-webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
	   -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
	        box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
}
.form{
	width: 360px;
	padding: 0 65px;
}
.form__title{
	text-align: center;
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	margin-bottom: 21px;
}
.form__field{
	display: block;
	width: 100%;
	height: 40px;
	border: 1px solid #bcc5cd;
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
	margin-bottom: 8px;
	padding: 0 37px;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	outline: none;
	background: none;
}
.footer__field{
	color: #fff;
}
.footer__field::-webkit-input-placeholder{
	color: #fff;
	font-size: 14px;
}
.footer__field::-moz-placeholder{
	color: #fff;
	font-size: 14px;
}
.form__field:focus::-moz-placeholder{
	opacity: 0;
}
.form__field:focus::-webkit-input-placeholder{
	opacity: 0;
}
.form__agree-box{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
	margin-bottom: 12px;
}
.form__agree-checkbox{
	display: none;
}
.form__agree-label{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
}
.form__custom-checkbox{
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid #26994c;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
	        border-radius: 2px;
	position: relative;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.form__custom-checkbox:after{
	content: "";
	display: none;
	width: 11px;
	height: 9px;
	background-image: url(../img/podcherk/footer/tick1.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 2px;
	left: 1.5px;
}
.form__agree-checkbox:checked + label .form__custom-checkbox:after{
	display: inline-block;
}
.form__label-text{
	display: inline-block;
	color: #7d8388;
	font-size: 11px;
	margin-left: 8px;
}
.footer__privacy-link{
	color: #7d8388;
	text-decoration: underline;
}
.footer__privacy-link:hover{
	text-decoration: none;
}
.form__button{
	display: block;
	width: 100%;
	height: 40px;
	background-color: #26994c;
	-webkit-border-radius: 30px;
	   -moz-border-radius: 30px;
	        border-radius: 30px;
	border: 1px solid #26994c;
	outline: none;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.form__button:hover{
	background-color: #fff;
	color: #26994c;
}
.form__button:disabled{
	opacity: 0.6;
	pointer-events: none;
}
.footer__copyright-block{
	padding-top: 34px;
	text-align: right;
}
.footer__logo-link{

}
.footer__logo-img{
	width: 220px;
}
.footer__copyright-box{
	font-size: 12px;
	color: #7d8388;
	margin-top: 25px;
	/* margin-bottom: 57px; */
}
.footer__copyright{
	display: block;
	margin-bottom: 8px;
}
.footer__offer{
	display: block;
}
.footer__make-site{
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	   -moz-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	font-size: 12px;
	color: #7d8388;
}
.footer__make-site a{
    margin-left: 7px;
    margin-bottom: -4px;
}


/*************************************
		 ОКНО ЗАКАЗАТЬ ЗВОНОК
**************************************/

.window__bg{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(52,58,63,0.8);
	z-index: 10;
}
.window__bg.active{
	display: block;
	-webkit-animation: showbg 0.25s linear;
	   -moz-animation: showbg 0.25s linear;
	     -o-animation: showbg 0.25s linear;
	        animation: showbg 0.25s linear;
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes showbg{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@-moz-keyframes showbg{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@-o-keyframes showbg{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes showbg{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.window__bg.back-active{
	-webkit-animation: backshowbg 0.25s linear;
	   -moz-animation: backshowbg 0.25s linear;
	     -o-animation: backshowbg 0.25s linear;
	        animation: backshowbg 0.25s linear;
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes backshowbg{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@-moz-keyframes backshowbg{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@-o-keyframes backshowbg{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@keyframes backshowbg{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
.order-call{
	display: none;
	padding: 40px 0;
	background-color: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	   -moz-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	     -o-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	z-index: 15;
}
.order-call.active{
	display: block;
	-webkit-animation: showwindow 0.25s linear;
	   -moz-animation: showwindow 0.25s linear;
	     -o-animation: showwindow 0.25s linear;
	        animation: showwindow 0.25s linear;
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes showwindow{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@-moz-keyframes showwindow{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@-o-keyframes showwindow{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@keyframes showwindow{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.order-call.back-active{
	-webkit-animation: backshowwindow 0.25s linear;
	   -moz-animation: backshowwindow 0.25s linear;
	     -o-animation: backshowwindow 0.25s linear;
	        animation: backshowwindow 0.25s linear;
	-webkit-animation-fill-mode: forwards;
	   -moz-animation-fill-mode: forwards;
	     -o-animation-fill-mode: forwards;
	        animation-fill-mode: forwards;
}
@-webkit-keyframes backshowwindow{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@-moz-keyframes backshowwindow{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@-o-keyframes backshowwindow{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
@keyframes backshowwindow{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}
.order-call__title{
	color: #202020;
	font-size: 21px;
	margin-bottom: 20px;
}
.order-call__field{
	color: #717c85;
}
.order-call__field::-webkit-input-placeholder{
	color: #717c85;
	font-size: 14px;
}
.order-call__field::-moz-placeholder{
	color: #717c85;
	font-size: 14px;
}
.order-call__close{
	display: inline-block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}
.order-call__close:before,
.order-call__close:after{
	content: "";
	display: inline-block;
	width: 22px;
	height: 2px;
	background-color: #717c85;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
	        border-radius: 5px;
	position: absolute;
	top: 1px;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.order-call__close:before{
	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.order-call__close:after{
	-webkit-transform: rotate(-45deg);
	   -moz-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	     -o-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.order-call__close:hover:before,
.order-call__close:hover:after{
	background-color: #202020;
}
.footer__form-block p.sub {
    color: #fff;
    text-align: center;
}
.banner__title:after, .block-title:after {
	display: none;
}
.banner__title {
    color: initial;
    position: initial;
}
.comments {
	background-color: initial;
}
#drupal-live-announce {
	display: none;
}