body {
    font-family: sans-serif;
    font-size: 1em;
    min-width: 320px;
    position: relative;
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
    max-width: 100%;
    height: 100%;
}
img {
    max-width: 100%;
}
a:hover, a:active, a:focus {
    text-decoration: none;
}
a.button,
button.button { padding: 0; font-family: "Lato", sans-serif;
    display: block;
    max-width: 100%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: color 0.2s ease-out,opacity 0.2s ease-out,background 0.2s ease-out;
    -o-transition: color 0.2s ease-out,opacity 0.2s ease-out,background 0.2s ease-out;
    transition: color 0.2s ease-out,opacity 0.2s ease-out,background 0.2s ease-out;
}
.wrapper {
    max-width: 1100px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}
h5 {
    font-size: 1.2em;
    color: #01218e;
    line-height: 1.2;
    text-align: center;
}
/**********------------Index.html------------**********/

/**********Header-menu**********/

.header {
    background: #fafafa;
    background: -webkit-gradient(linear, left top, right top, from(#fafafa), color-stop(#f4f4f4), to(#fbfbfb));
    background: -webkit-linear-gradient(left, #fafafa, #f4f4f4, #fbfbfb);
    background: -o-linear-gradient(left, #fafafa, #f4f4f4, #fbfbfb);
    background: linear-gradient(to right, #fafafa, #f4f4f4, #fbfbfb);
    position: fixed;
    width: 100%;
    z-index: 120;
    top: 0;
}
.header-wrap {
    max-width: 1480px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.logo-header {
    /* margin-right: 50px; */
	margin-right: 0;
}
.logo-header__img {
    /* width: 275px; */
	width: 480px;
}
.logo-menu-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.menu__links {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.menu__links-item {
    list-style-type: none;
    font-size: 1em;
    /* padding-right: 1.8em; */
	padding-right: 1em;
}
.menu__links-item:last-child {
    padding-right: 0;
}
.menu__links-item a {
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}
.menu__links-item a:hover,
.menu__links-item a:active,
.menu__links-item a:focus,
.phone:hover,
.phone:active,
.phone:focus {
    color: #01218e;
    font-weight: 400;
}
.our-contacts {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
}
.our-contacts small {
    font-size: 0.7em;
}
.faks {
	font-size: 0.7em;
    padding-right: 5px;
}
.viber {
	width: 34px;
    padding-right: 10px;
	margin-bottom: -6px;
}
.phone,
.address {
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}
.phone {
    font-size: 1.2em;
	text-align: right;
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}
.address {
    font-size: 0.8em;
    text-align: right;
    padding-top: 8px;
}
.button__header {
    width: 200px;
    height: 48px;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.4;
    background-color: #a60100;
    border: 1px solid #a60100;
    color: #fff;
    font-weight: bold;
}
.button__header:hover,
.button__header:active,
.button__header:focus {
    background-color: #fff;
    color: #a60100;
}

/*Adaptive menu*/

.menu__icon {
    display: none;
    width: 45px;
    height: 35px;
    position: relative;
    left: 0;
    bottom: -11px;
    cursor: pointer;
    margin-right: 20px;
    z-index: 100;
}
.menu__icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: rgb(155, 153, 153);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.menu__icon:hover span {
    background: rgba(65, 65, 65, 0.8);
}
.menu__icon span:nth-child(1) {
    top: 0px;
}
.menu__icon span:nth-child(2), .menu__icon span:nth-child(3) {
    top: 13px;
}
.menu__icon span:nth-child(4) {
    top: 26px;
}
.menu.menu_state_open .menu__icon span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.menu.menu_state_open .menu__icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.menu.menu_state_open  .menu__icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.menu.menu_state_open  .menu__icon span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}
.menu.menu_state_open .menu__links {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 34px;
    margin-top: 27px;
    margin-bottom: 21px;
    position: relative;
    z-index: 90;
    margin-top: 0;
}
.menu.menu_state_open {
    position: relative;
    top: 20px;
    background-color: transparent;
    opacity: 1;
}
.menu.menu_state_open li.menu__links-item {
    padding-right: 0;
}
.hidden-div {
    display: none;
}

/**********Main-slider**********/

.slider-wrap {
	background-image: url(../img/about-bg.png)
    !background: #fff;
	/* background-image: url(../img/bg1.jpg); */
	/* background-image: url(http://pe4ati.atib.by/assets/images/montazhnaya-oblast-1.jpg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; 
    /* padding: 0 20px 30px; */
	padding: 0 0 30px;
 }
.slider-wrap .slides-item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 110px;
}
.slides-item__img {
    /*width: 650px!important;*/
    margin: 0 auto;
}
.slides-item__descr {
    font-size: 1.5em;
    color: rgb(255, 255, 255);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 45px 0;
    text-align: center;
	display: none;
}
.button__slider {
    /* width: 170px;
    height: 40px;
    font-size: 1em;
    	font-weight: 900;
    text-transform: uppercase;
    line-height: 2.5;
    background-color: #fff;
    color: #a60100;
    margin-bottom: 30px; */
	width: 170px;
    height: 40px;
    font-size: 1em;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 2.5;
    background-color: #01218e;
    color: #fff;
    margin-bottom: 9px;
    margin-top: 10px;
}
.button__slider:hover,
.button__slider:active,
.button__slider:focus {
    background-color: #a60100;
    color: #fff;
}

/*Flexslider main styles*/

.slider-wrap .flex-direction-nav {
    display: none;
}
.slider-wrap .flexslider,
.products-wrap .flexslider,
.review-wrap .flexslider {
    background: transparent;
    border: none;
}
.slider-wrap .flex-control-paging li a,
.products-wrap .flex-control-paging li a {
    background: #fff;
}
.slider-wrap .flex-control-paging li a.flex-active,
.products .flex-control-paging li a.flex-active {
    background: rgba(0, 0, 0, 0.5);
}
.products .custom-navigation {
    display: none;
}
.products .flex-direction-nav a.flex-prev:before,
.review .flex-direction-nav a.flex-prev:before {
    content: '\003C';
    color: #fff;
    font-size: 77px;
}
.products .flex-direction-nav a.flex-next:before,
.review .flex-direction-nav a.flex-next:before {
    content: '\003E';
    color: #fff;
    font-size: 77px;
}
.review .flex-direction-nav a.flex-prev:before,
.review .flex-direction-nav a.flex-next:before {
    color: #000;
}
.products .flexslider:hover .flex-direction-nav .flex-prev {
    left: -65px;
}
.products .flexslider:hover .flex-direction-nav .flex-next {
    right: -65px;
}
.products .flex-direction-nav a {
    width: 100px;
    height: 78px;
    top: 45%;
}
.review-wrap .flex-viewport {
    overflow: visible!important;
}
.review-wrap .flex-control-nav {
    display: none;
}
.review .flex-direction-nav a {
    height: 70px;
}
.review .flexslider:hover .flex-direction-nav .flex-prev {
    left: 70px;
}
.review .flexslider:hover .flex-direction-nav .flex-next {
    right: 70px;
}
.clients .flex-control-nav {
    position: relative;
}

/*************Section-About*************/

.about {
    background: #fff;
    background-image: url(../img/about-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.about-wrap, 
.catalog-wrap,
.stamp-wrap,
.products-wrap,
.review-wrap {
    padding-top: 80px;
    padding-bottom: 80px;
}
.about-title {
    color: rgb(65, 65, 65);
}
.about-items,
.catalog-items {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.about-item {
    width: 30%;
    text-align: center;
    padding-right: 50px;
    padding-top: 70px;
}
.about-item:nth-child(3n){
    padding-right: 0;
}
.about-item__title {
    color: rgb(30, 30, 44);
    text-transform: uppercase;
    line-height: 1.2;
    padding: 20px 0;
}
.about-item__descr {
    color: rgb(30, 30, 44);
    line-height: 1.2;
}

/*********Section-catalog*********/

.catalog,
.products {
    /* background: #37dae9;
    background: -webkit-radial-gradient(#37dae9, #00c8df, #01a2bc);
    background: -o-radial-gradient(#37dae9, #00c8df, #01a2bc);
    background: radial-gradient(#37dae9, #00c8df, #01a2bc); */
	background-image: url(../img/bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.catalog-title {
    padding-bottom: 57px;
	color: #fff;
}
.catalog-items {
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.catalog-item {
    max-width: 100%;
    width: 325px;
    height: 285px;
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
    margin: 13px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 25px;
    -webkit-transition: -webkit-box-shadow 0.2s ease-out,-webkit-transform 0.3s ease-out;
    transition: -webkit-box-shadow 0.2s ease-out,-webkit-transform 0.3s ease-out;
    -o-transition: box-shadow 0.2s ease-out,transform 0.3s ease-out;
    transition: box-shadow 0.2s ease-out,transform 0.3s ease-out;
    transition: box-shadow 0.2s ease-out,transform 0.3s ease-out,-webkit-box-shadow 0.2s ease-out,-webkit-transform 0.3s ease-out;
}
.catalog-item__title {
    padding-top: 10px;
}
.block-link {
    display: block;
    
}
.block-link:hover .catalog-item {
    -webkit-box-shadow: 0 0 31px rgba(8, 3, 5, 0.72);
            box-shadow: 0 0 31px rgba(8, 3, 5, 0.72);
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

/************Round-Stamp************/

.round-stamp,
.review {
    background: #fafafa;
    background: -webkit-gradient(linear, left top, right top, from(#fafafa), color-stop(#f4f4f4), to(#fbfbfb));
    background: -webkit-linear-gradient(left, #fafafa, #f4f4f4, #fbfbfb);
    background: -o-linear-gradient(left, #fafafa, #f4f4f4, #fbfbfb);
    background: linear-gradient(to right, #fafafa, #f4f4f4, #fbfbfb);
}
.stamp-title {
    color: #414141;
}
.stamp-items {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 70px;
}
.stamp-item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 30%;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 12px 15px 42px #bab9b7, 
                -8px -4px 36px #bab9b7;
            box-shadow: 12px 15px 42px #bab9b7, 
                -8px -4px 36px #bab9b7;
    margin-right: 20px;
    padding: 30px;
    -webkit-transition: -webkit-box-shadow 0.2s ease-out,-webkit-transform 0.3s ease-out;
    transition: -webkit-box-shadow 0.2s ease-out,-webkit-transform 0.3s ease-out;
    -o-transition: box-shadow 0.2s ease-out,transform 0.3s ease-out;
    transition: box-shadow 0.2s ease-out,transform 0.3s ease-out;
    transition: box-shadow 0.2s ease-out,transform 0.3s ease-out,-webkit-box-shadow 0.2s ease-out,-webkit-transform 0.3s ease-out;
}
.stamp-item:nth-child(3n) {
    margin-right: 0;
}
.stamp-item:hover {
    -webkit-box-shadow: 0 0 31px rgba(64, 146, 188, 0.72);
            box-shadow: 0 0 31px rgba(64, 146, 188, 0.72);
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}
.stamp-item__descr {
    color: rgb(38, 34, 52);
    font-size: 0.9em;
    line-height: 1.3;
    text-align: center;
    padding: 20px 0;
}
.stamp-item__list {
    list-style: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.download-file {
    font-size: 1em;
    color: rgb(101, 110, 255);
    text-decoration: underline;
    line-height: 1;
    padding-left: 10px;
    padding-top: 15px;
}
.download-file:hover {
    text-decoration: none;
}
.label-descr {
    font-size: 1.1em;
    font-weight: 600;
    color: rgb(38, 34, 52);
    line-height: 0.75;
    text-align: center;
    padding: 30px 0 20px;
}
.data-input {
    width: 100%;
    max-width: 100%;
    height: 45px;
    border: 1px solid #414141;
    border-radius: 4px;
    background-color: transparent;
    outline: none;
    padding-left: 10px;
    font-size: 1.2em;
    color: rgb(114, 116, 145);
    line-height: 1.5;
    margin-bottom: 13px;
}
.button__stamp {
    width: 100%;
    height: 43px;
    font-size: 1.2em;
    color: rgb(255, 255, 255);
    line-height: 1.8em;
    background-color: #01218e;
    border: 1px solid #01218e;
    -webkit-box-shadow: 3px 11px 39px #bab9b7;
            box-shadow: 3px 11px 39px #bab9b7;
}
.button__stamp:hover {
    background-color: #fff;
    color: #01218e;
}
.download__link {
    padding-left: 25px;
    color: #414141;
    font-size: 13px;
    text-decoration: underline;
}
.download__act {
	padding-top: 15px;
    padding-left: 30px;
	display: flex;
    -ms-align-items: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/***********Section-products***********/

.products-wrap {
    padding-bottom: 40px;
}
.products-title {
    color: #fff;
    padding-bottom: 50px;
}
.products-item {
    display: -webkit-box!important;
    display: -ms-flexbox!important;
    display: flex!important;
    padding-bottom: 40px!important;
}
.products-item__img {
    padding-right: 70px;
}
.products-item__descr {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.products-item__title {
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}
.products-item__text,
.products-item__time,
.products-item__price {
    font-size: 1.3em;
    color: #fff;
    line-height: 1.2;
    font-weight: 300;
}
.button__products {
    width: 258px;
    height: 43px;
    font-size: 1.3em;
    font-weight: bold;    
    line-height: 1.7;
    background-color: #a60100;
    border: 1px solid #a60100;
    color: #fff;
    -webkit-box-shadow: 3px 11px 39px #878581;
            box-shadow: 3px 11px 39px #878581;
}
.button__products:hover, 
.button__products:active, 
.button__products:focus {
    color: #a60100;
    background-color: #fff;
}
.products-list {
    width: 70%;
    margin: 0 auto 50px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}
.products-name {
    width: auto;
    height: auto;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1em;
    text-transform: capitalize;
    padding: 10px;
}
.products-name a {
    color: #fff;
}
.products-name:active,
.products-name:focus,
.products-name:hover {
    background-color: #fff;
    color: #00c8df;
    cursor: pointer;
}
.products-name:active a,
.products-name:focus a,
.products-name:hover a {
    color: #0f0772;
}
.products .flex-next {
    text-indent: 12px;
}

/************Section-review************/

.slides__review-main {
    max-width: 1060px;
    width: 100%;
    height: auto;
    margin: 20px auto 45px;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 12px 15px 42px #bab9b7, -8px -4px 36px #bab9b7;
            box-shadow: 12px 15px 42px #bab9b7, -8px -4px 36px #bab9b7;
    position: relative;
}
.review-title {
    padding-bottom: 30px;
}
.slides__review-title {
    text-align: left;
    padding-bottom: 10px;
}
.slides__review-descr {
    color: rgb(114, 114, 114);
    line-height: 1.2;
}
.slides__review-main hr {
    margin: 10px 0;
}
.slides__review-text {
    color: rgb(85, 85, 85);
    line-height: 1.2;
}
.slides__review-response {
    position: absolute;
    bottom: -93px;
    left: 15%;
    border-radius: 10px;
    background-color: rgb(232, 232, 232);
    -webkit-box-shadow: 2px 3.464px 6.3px 0.7px rgba(38, 34, 52, 0.18);
            box-shadow: 2px 3.464px 6.3px 0.7px rgba(38, 34, 52, 0.18);
    width: 870px;
    height: auto;
    z-index: 165;
    padding: 20px;
}
.slides__review-response .logo-header__img {
    width: 180px!important;
}
.review-response-text {
    font-size: 0.8em;
    color: rgb(85, 85, 85);
    line-height: 1.2;
    margin-top: 15px;
}
.button__review {
    width: 398px;
    height: 52px;
    font-size: 1em;
    font-weight: bold;    
    color: rgb(255, 255, 255);
    line-height: 3;
    background-color: #01218e;
    border: 1px solid #01218e;
    -webkit-box-shadow: 3px 11px 39px #bab9b7;
            box-shadow: 3px 11px 39px #bab9b7;
    margin: 7% auto 0;
}
.button__review:hover,
.button__review:active,
.button__review:focus {
    color: #01218e;
    background-color: #fff;
}

/*************Section-clients*************/

.clients {
    margin-top: 20px;
    padding-bottom: 20px;
}
.flexslider-clients {
    margin: 60px 0 100px;
}

/***********Section-contacts***********/

#map { 
    position: relative; 
    padding: 17.5em 0; 
}
#Ymap { 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
}
.ymaps-glass-pane {
    height: 600px;
}
.ymaps-layers-pane{
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    filter: url(/img/filters.svg#grayscale); /* Firefox 3.5+ */
    -webkit-filter: grayscale(1); /* Google Chrome & Safari 6+ */
}
.map-wrap {
    padding-top: 3em;
    position: relative;
}
.map-descr-main {
    position: absolute;
    z-index: 10;
    left: 60%;
    bottom: 23%;
    width: 400px;
    max-width: 100%;
    height: auto;
    background: #fff;
    border-radius: 5px;
    padding: 40px 25px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.map-descr-main:hover {
    -webkit-box-shadow: 0 0 31px rgba(64, 146, 188, 0.72);
            box-shadow: 0 0 31px rgba(64, 146, 188, 0.72);
}
.map-item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
}
.map-item p,
.map-item a {
    font-size: 1em;
    color: #262234;
}
.map-item p:hover a {
    color: #01218e;
}
.map-icon {
    width: 25%;
    height: auto;
    padding: 0 2.5em 0 1.5em;   
}
.map-scls {
    padding-top: 1.5em;
    margin: 0 auto;
}
.map-scls a {
    padding-right: 10px;
}
.map-scls a:last-child {
    padding-right: 0;
}
.footer-copy {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #555657;
    opacity: 0.7;
}
.p-footer {
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 1.2px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    padding: 40px 0;
}
.p-footer .copy { float: right; }
.p-footer a {
    color: #fff;
}
.p-footer a:hover {
    text-decoration: underline;
}

/************--------------Catalog.html--------------************/

/**********Section-catalog-main**********/


.catalog-main__content {
    padding-bottom: 70px;
}
.catalog-main__wrapper {
    background: #fafafa;
    background: -webkit-gradient(linear, left top, right top, from(#fafafa), color-stop(#f4f4f4), to(#fbfbfb));
    background: -webkit-linear-gradient(left, #fafafa, #f4f4f4, #fbfbfb);
    background: -o-linear-gradient(left, #fafafa, #f4f4f4, #fbfbfb);
    background: linear-gradient(to right, #fafafa, #f4f4f4, #fbfbfb);
}
.catalog-main__wrapper a {
    color: #333;
}
ul.submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    padding: 0;
}
.submenu li {
    padding: 3px 10px 5px 10px;
    cursor: pointer;	
}
.submenu li a {
	font-size: 1.2em;
	line-height: 1.2;
	text-align: center;
	font-weight: bold;
	color: #333;
}
.submenu li.active a,
.submenu li:hover a {
    color: #01218e;
}
.klishe-row{
    display: none;
}
#pechati{
    display: block;
}
.catalog-items-img { padding-top: 50px; }
.catalog-item-img { width: 20%; padding: 2%; float: left; text-align: center; }
.catalog-item-img:hover { box-shadow: 0 0 3px rgba(0,0,0,0.3); }
.catalog-item-img .btn { margin: 10px 0 0; display: inline-block; background-color: #a60100; border: 1px solid #a60100; border-radius: 3px; font-size: 0.8em; color: #fff; padding: 4px 10px; }
.catalog-item-img .btn:hover { background: #fff; color: #a60100; }
.catalog-item-img img { width: 100%; }
.klishe-row__list img {
    width: 17%;
    height: auto;
    margin: 15px;
}
.klishe-row ul {
    list-style: none;
}
.klishe-row__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/************--------------Oplata.html--------------************/

.page {
    padding-top: 114px;
}
.page .wrapper { padding: 70px 0; }
.page__title-wrap {
    width: 100%;
    height: auto;
    /* background: #37dae9;
    background: -webkit-radial-gradient(#37dae9, #00c8df, #01a2bc);
    background: -o-radial-gradient(#37dae9, #00c8df, #01a2bc);
    background: radial-gradient(#37dae9, #00c8df, #01a2bc); */
	background-image: url(../img/bg11.jpg);
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.page__title {
    color: #fff;
    padding: 40px 0;
}
.oplata-wrapper {
    max-width: 900px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 70px 20px;
}
.oplata-wrapper__item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-bottom: 60px;
}
.oplata-wrapper__img {
    width: 300px;
    height: auto;
    padding-right: 70px;
}
.oplata-wrapper__descr {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-align-items: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.oplata-wrapper__title {
    text-transform: uppercase;
    padding-left: 25px;
}
.oplata-wrapper__list,
.oplata-wrapper__note,
.oplata-wrapper__text {
    color: #3c3c3c;
    line-height: 1.4;
    padding-top: 35px;
}
.oplata-wrapper__list li,
.oplata-wrapper__inner {
    list-style: none;
}
.oplata-wrapper__list li:before,
.oplata-wrapper__inner li:before {
    color: rgb(3, 146, 188);
    content: "\2022"; 
    padding-right: 10px; 
}
.oplata-wrapper__note {
    font-style: italic;
}
.oplata-wrapper__note:before {
    color: rgb(3, 146, 188);
    content: "\274B";
    font-size: 0.6em; 
    padding-right: 10px; 
} 
.oplata-wrapper__o-list {
    padding-top: 35px;
    line-height: 1.4;
}
.oplata-wrapper__o-list li {
    color: rgb(3, 146, 188);
    font-weight: bold;
    margin-left: 17px;
}
.oplata-wrapper__o-list span {
    color: #3c3c3c;
    font-weight: normal;
}
.oplata-wrapper__inner li {
    color: #3c3c3c;
    font-weight: normal; 
    margin-left: 17px;
}
.operatory {
    font-size: 1.2em;
    font-weight: bold;
    color: #3c3c3c;
    line-height: 1.2;
    text-align: center;
}
.operatory__wrap {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 60px 0;
}
.oplata-wrapper__commission {
    color: #3c3c3c;
    line-height: 1.4;
    text-align: center;
}
.oplata-wrapper__note--btm {
    text-align: center;
}
.call-us {
    text-transform: uppercase;
    padding-top: 35px;
}

/***************--------- Pop-up-form ---------***************/

.hidden {
    display: none;
}
#form_back,
#form_review {
    background-color: #F7F7F7;
    padding: 25px 30px;
    border: rgb(17, 171, 216) 5px solid;
    border-radius: 5px;
    max-width: 420px;
    margin: auto;
    position: relative;
}
#form_back label,
#form_review label {
    display: block;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}
#form_back input,
#form_review input,
#form_review textarea {
    display: block;
    line-height: 40px;
    height: 40px;
    border: #D9D9D9 1px solid;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.06) inset;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.06) inset;
    width: 100%;
    text-indent: 10px;
    font-size: 20px;
    margin-top: 3px;
}
#form_back .button_wrap,
#form_review .button_wrap {
    text-align: center;
    margin: 30px 0 10px;
}
.button.button__form {
    max-width: 100%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: color 0.2s ease-out,opacity 0.2s ease-out,background 0.2s ease-out;
    -o-transition: color 0.2s ease-out,opacity 0.2s ease-out,background 0.2s ease-out;
    transition: color 0.2s ease-out,opacity 0.2s ease-out,background 0.2s ease-out;
    width: 200px;
    height: 40px;
    font-size: 1em;
    font-weight: bold;
    font-weight: 300;
    line-height: 2;
    background-color: #a60100;
    border: 1px solid #a60100;
    color: #fff;
}
.button.button__form:hover {
    background-color: #fff;
    color: #a60100;
}
#form_back h5,
#form_review h5 {
    text-align: center;
    font-weight: normal;
}
#form_back p {
    color: #3c3c3c;
    text-align: center;
    padding: 15px 0 20px;
}
.sub-menu.level2 ul { display: flex; }
.sub-menu.level2 li { 
	display: flex;
    align-items: center;
	justify-content: center;
	float: left; 
	font-size: 0.8em;
	border: 1px solid #000;
	/* padding-top: 30px;
	padding-bottom: 30px; */
	width: 230px;
}
.sub-menu.level2 a {
	font-weight: 900;
	font-size: 1.3em;
	display: block;
    width: 100%;
	padding: 30px 10px;
}
/* .sub-menu.level2 li:before {
     content: "\2022 "; 
	 padding-right: 5px;
   } */
.sub-menu.level2{padding-top:10px;}
.submenu-third {
	margin-top: 15px;
}
.submenu-third li {
	padding-bottom: 15px;
}

.clear { clear: both; }
.flexslider-clients .slides li { text-align: center; }
.flexslider-clients .slides li img { max-width: 80%; }
/*****Fast flexsider load*****/
.flexslider .slides > li a img {
    visibility:visible !important; 
    opacity:1 !important;
    filter:alpha(opacity=100) !important;
} 
/*****end of Fast flexsider load*****/

/* Breadcrump*/

.breadcrumb li { display: inline-block; }
.breadcrumb li:after { content: '>'; margin: 0 10px; }
.breadcrumb li.active:after { content: ''; margin: 0; }

.bread { background: #a60100; color: #fff; margin: 1em 0; padding: 0.3em 0; }
.bread a { color: #fff; }
.bread a:hover { color: #01218e; }
.bread .wrapper { padding: 0; }
.wrapper.top { padding-bottom: 0; }
.wrapper.bottom { padding-top: 0; }
