@font-face {
    font-family: agency1; /* Гарнитура шрифта */
    src: url(../fonts/17916.ttf); /* Путь к файлу со шрифтом */
	font-display: fallback;
}
@font-face {
    font-family: exo; /* Гарнитура шрифта */
    src: url(../fonts/16860.otf); /* Путь к файлу со шрифтом */
	font-display: fallback;
}
@font-face {
    font-family: agency; /* Гарнитура шрифта */
    src: url(../fonts/UniviaPro-Medium.otf); /* Путь к файлу со шрифтом */
	font-display: fallback;
}
*{box-sizing:border-box;transition:.5s ease-in-out}
body{
	font-family: exo;
	font-size:16px;
	margin:0;
	padding:0;
}

header{
	background:#ffffffba;
	font-family:tahoma;
	display:flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 15px 10%;
	position:relative;
}
.razdel{
margin: 30px 0;
display: block;
text-transform: uppercase;
text-decoration: none;
color: #4b7447;
}
.razdel:hover{

text-decoration: underline;
color: #344832;
}
.ss{position: relative;
  display: flex;}
.ss li{position: relative;
  list-style: none;}
.f-left .ss li a{
position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 30px;
  border-radius: 50%;
  color: #e2e2e2;
  box-shadow: inset -1px -1px 2px rgba(0, 0, 0, 0.2),
    2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.f-left .ss li a:hover{
 color: #999;
  transform: translateY(-20px);
  box-shadow: inset -1px -1px 2px rgba(0,0,0,0.2),
              2px 24px 10px rgba(0,0,0,0.1);
text-decoration:none;
}
.ss li a .fa {
  color: #fff;
  position: relative;
  z-index: 1;
}
.ss li a:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #cfd8dc;
}
.faq {
    display: flex;
    margin: 50px 0;
}
.faq-date {
    background: #4b7447;
    color: #fff;
    float: left;
    width: 15%;
    font-size: 150%;
    display: flex;
    align-items: center;
}
.faq-text {
    border: 2px solid #4b7447;
    float: left;
    padding: 2%;
    width: 85%;
}
.faq-date span {
    padding: 0 25px;
    text-align: center;
}
.main .faq h2 {
    margin-top: 0;
}
.main p {
    line-height: 1.8;
}
.zvonok:hover{
opacity:0.7;}
.form-at {
    width: 100%;
    padding: 20px;
    box-sizing: border-box; 
    overflow: hidden;
   margin: 50px 0;
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 10px 18px rgba(0,0,0,0.2);
}
.form-at h2{
    text-align:center;
    padding:20px 0;
}
.form-at * {
    box-sizing: border-box;
  
}
.validate-input-at,
.no-validate-input-at {
    width: 100%;
    position: relative;
    background-color: #fff;
    border: 2px solid #e1e1e2;
    border-radius: 2px;
    margin-bottom: 20px;
}
.validate-input-at.w-50,
.no-validate-input-at.w-50 {
    width: 49%;
    display: inline-block;
}
.validate-input-at.w-48,
.no-validate-input-at.w-48 {
    width: 49%;
    display: inline-block;
   margin: 0 0 0 1.5%;
}
.validate-input-at.w-50:first-child,
.no-validate-input-at.w-50:first-child {
    margin-right: 20px;
}
.input-at {
    display: block;
    width: 100%;
    background: transparent;
    color: #000;
}
input.input-at {
    height: 50px;
    padding: 0 20px 0 20px;
    font-size: 16px;
    outline: none;
    border: none;  
}
textarea.input-at {
    min-height: 170px;
    padding: 18px 20px;
    font-size: 16px;
    line-height: 22px;
    outline: none;
    border: none;
    resize: none;
}
textarea.input-at:focus, 
input.input-at:focus {
    border-color: transparent;
}
.focus-input-at {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 2px solid #4b7447;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    transform: scaleX(1.1) scaleY(1.3);
}
.input-at:focus + .focus-input-at {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.form-at-btn {
    position: relative;
    display: block;
    padding: 0 40px;
    height: 50px;
    background-color: #ff0000;
    border-radius: 2px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    transition: all 0.4s;
    margin: 0 auto;
    outline: none;
    border: none;
    cursor: pointer;        
}
.form-at-btn:hover {
    opacity:0.7;
}
.form-at-btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
}
.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #4b7447;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    pointer-events: none;
    color: #4b7447;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s;
}
.alert-validate::after {
    content: "\f129";
    font-family: "FontAwesome";
    display: block;
    position: absolute;
    color: #c80000;
    font-size: 18px;
    font-weight: bold;    
    top: 50%;
    transform: translateY(-50%);
    right: 22px;
}
.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}
.error-at {
    color: red;
    padding: 10px 0;
}
.success-at {
    color: #4b7447;
    font-size: 28px;
    padding: 20px 0;
}
.form-at input[type=checkbox] {
    display:none;
}
.form-at input[type=checkbox] + label {
    display: block;
    position: relative;
    margin: 0 0 20px 34px;
    font-size: 13px;
    line-height: 24px;
    color: #4b7447;
}
.form-at input[type=checkbox] + label:before {
    box-sizing: border-box;
    position: absolute;
    content: '';
    width: 26px;
    height: 26px;
    line-height: 22px;
    left: -34px;
    border: 2px solid #4b7447;
    border-radius: 2px;
}
.form-at input[type=checkbox]:checked + label:before{
    content: '\2714';
    color:#4b7447;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    border: 2px solid #4b7447;
}

.redd{
position: fixed;
right: 3.5%;
background: #fff;
width: 20px;
z-index: 999999;
text-align: center;
border-radius: 50%;
border: 1px solid #c60000;
}
.link-cart{
color: #fff;
background: #c60000;
padding: 10px 20px;
border-radius: 10px;
position: absolute;
right: 5%;
bottom: 6%;
text-decoration:none;
}
.probel{
height:50px;}
.contact.white, .catalog-shop, .containerr{
margin: 50px 10% 0;
background: #ffffffeb;
padding: 30px;
border-radius: 10px;
}
.cart{
position: fixed;
right: 4%;
top: 15px;
width: 50px;
z-index: 99999;
padding: 10px;
background:red;
border-radius:50%;
}
.cart img{
	width: 100%;
}
#block5 .error-404 img{
	width:65%;
}
#block5 p.adress{
	text-align:left;
	margin:0;
}

#block5.contacts ul li{
	width:auto;
	margin:2% 1%
}
#block5.contacts ul{
	margin:0 4%;
}
#block5.contacts h2{
	color:#222;
	text-align:left;
	padding:0 5%;
	font-family:exo;
}
.active{

	background:#b00000;
	pointer-events: none; /* делаем элемент неактивным для взаимодействия */
cursor: default; /*  курсор в виде стрелки */
}
.error-404{float:left;background:#b00000;color:#fff;font-size:2rem;border-radius:50%;padding:0.7rem 0.5rem;margin-right:1.2rem}
.form-search {  /* форма с boxtuffs.com */
  position: relative;
  display: inline-block;
  float: left;
margin-top: 19px;
border-left: 2px solid #4f4c4c;
border-right: 2px solid #4f4c4c;
padding: 5px 0;
}

.form-search:focus-within {  /* изменение формы при фокусе */
  box-shadow: inset 0 1px 1px #46575b, 0 1px 0 #FFF;
  background: linear-gradient(#9CC2CA, #DFECEF);
}
.form-search input[type="text"] {  /* поле поиска */
  width: 60px;
  height: 32px;
  line-height: 32px;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0 0 0 6px;
  background: transparent;
  font: 13px Helvetica, Arial, sans-serif;
  color: #6E7074;
  text-shadow: 0 1px 0 #FFF;
  transition: all .2s ease-out;
}
.form-search:focus-within input[type="text"],  /* изменение поля поиска при фокусе */
.form-search input[type="text"]:focus {
  width: 160px;
  color: #25464D;
}
.form-search input[type="image"] {  /* картинка лупы */
  padding: 0;
  vertical-align: bottom;
}
 .containerr {
   
	display:flex;
  }
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  width:100%;
  }

  /* общие настройки для flex-элементов */
  .col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

  /* ширина блоков .col__article и .col__aside по умолчанию */
  .col__article,
  .col__aside {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
/* ширина блоков .col__article и .col__aside для больших экранов */
  @media (min-width: 992px) {
    /* 2/3 от ширины контейнера */
    .col__article {
      -ms-flex: 0 0 70%;
      flex: 0 0 70%;
      max-width: 70%;
	  min-width:70%;
    }

    /* 1/3 от ширины контейнера */
    .col__aside {
      -ms-flex: 0 0 30%;
      flex: 0 0 30%;
      max-width: 30%;
	  padding: 30px 0 0 5%;
    }
  }
.red h2{
	border-bottom: 2px solid #b00000;
color: #b00000;
}  

.product{
	margin:50px 0;
}

.img-product{
	float:left;
	margin:0 2% 0 0;
	width:50%;
}
.p-left{
	
}
.p-left span{
	
	font-size:120%;
	font-weight:700;
}
.t-btn:hover{
	opacity:0.6;
}
.t-btn {
	background:#b00000;
	
	border:none;
	border-radius:5px; 
	color:#fff;
	display: inline-block;
	text-decoration:none;
	padding:15px 40px;
}
.desc{
	
	margin:50px 0;
}
.clik{
	color:#576a7a;
	text-decoration:underline;
}
.clik:hover{
	opacity:0.7;
	text-decoration:none;
}  
  
.zakaz{
	background: #b00000;
border-radius: 5px;
color: #fff;
font-size: 50%;
padding: 15px 25px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
}
.zakaz:hover{
	opacity:0.8;
}



.hed .fa{
	color:#b00000;
}
.hed{

	width:25%;
}
.logo{
	width:120%;
}
.hed.el-3{
	padding: 12px 0;
text-align: right;
}
.zvonok{
	text-decoration: none;
color: #fff;
background: #c60000;
padding: 10px 20px;
border-radius: 10px;
}
.el-2 img{
	float:left;
	margin: 5px 15px 0;
}
.el-3 img{
	float:left;
	margin: 22px 15px 0;
}
.el-3 p{
	color: #b00000;
	font-size: 130%;
	font-weight: bold;
	margin-bottom: 3px;
}
.el-4 p{
	margin:0;
	padding:0;
}
.phone a{
	color: #c60000;
text-decoration: none;
font-size: 150%;
font-weight: bold;
}
.el-2 p{
	border-right:2px solid #4f4c4c;
	color:#4f4c4c;
	float:right;
	font-size:110%;
	padding:0 15px;
}
.el-1{
	max-width:100px;
}
.cart a{
	text-decoration:none;
	color:#333;
}
.clear{
	clear:both;
}
.cart-form{
	background: #fff;
padding: 30px 5%;
margin:50px 0;
}
.cart-tr.cart-name{
	font-size:90%;
	min-width:35%;
	text-align:left;
}
.cart-tr.cart-delete{
	max-width:15%;
	text-align:right;
}
.cart-name img{
	width:40%;
	float:left;
	margin:0 5% 0 0;
}
.cart-tr{
	float:left;
	padding-right:1%;
	width:25%;
	text-align:center;
}
.cart-form table td{
	border:none;
}
.minushref{
	color:#fff;
	cursor:pointer;
	padding: 0 11px;
	text-align:left;
}
.link_delete{
	color: red;
font-size: 130%;
font-weight: bold;
}

.ser{
	background: #b00000;
border: none;
color: #FFF;
cursor: pointer;
font-family: agency;
font-size: 100%;
font-weight: bold;
padding: 18px 4%;
transition: background .4s;
text-transform:uppercase;
}
.ser:hover, .greyy:hover{
	opacity:0.6;
}
.summa{
	margin:20px;
	text-align:center;
}
.mini{
	font-size:80%;
}
.hr-cart{
	width:100%;
	margin:20px auto;
	height:1px;
	background:#333;
}
.greyy{
	border: none;
background: #333;
padding: 10px;
color: #fff;
}
.plushref{
	color:#fff;
	cursor:pointer;
	padding: 0px 12px 0 8px;
	text-align:right;
}
.cart_count .number{
	font-size:100%;
	background: #222222;
	padding: 0;
	border-radius: 5px;
	width:100px;
}
.cart_count input {
    height: 30px;
    text-align: center;
width: 30px;}
input[type="text"] {
    color: #333;
    letter-spacing: 1px;
line-height: 1.33;}
#order{

	font-size:90%;
	margin:50px auto;
	padding:0 15px;
	width:95%;
}
#order table{
	
	width:100%;
}

.w120{
	height:40px;
}
#order input[type="text"], #order textarea{
	background:#fff;
	border:none;
	padding:8px;
	width:99%;
}
#order select{
	background:#fff;
	padding:8px;
	width:50%;
}
#order input[type="submit"]{
		background: #b00000;
border: none;
color: #FFF;
cursor: pointer;
font-family: agency;
font-size: 100%;
font-weight: bold;
padding: 18px 4%;
transition: background .4s;
text-transform:uppercase;
}
#order input[type="submit"]:hover{
opacity:0.6;

}
#order select option{
	background: #f5f5f5;
}


.link{
    color: #b00000;
}
.link:hover{
    text-decoration: none;
}

#container{
	margin:0 auto;
max-width:1920px;
	padding:0;
}
#content{
	margin:0;
	padding: 0;
}
#header{/*шапка началась*/
	background:url(../images/roof.png);
	color: #fff;
	margin:0;
	padding:10px 10%;
}
#header-bottom-mobile{/*скрыто мобильное меню*/
	display:none;
}
#talltabs-black{
    font-family: tahoma;
    background: #4b7447;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
}
}
nav{background:#4b7447;text-align:center}nav ul{list-style:none;margin:0;padding:0;word-spacing:-.36em}
nav a{color:#fff;display:block;margin:0;padding:14px 20px;position:relative;text-decoration:none}nav a:hover{background:#b00000}
.topmenu .af::after{border:6px solid transparent;border-top:6px solid #fff;content:'';position:absolute;right:4px;bottom:14px}
.topmenu > li{display:inline-block;position:relative;word-spacing:normal}.topmenu li:hover a:before{transform:translate(-50%,0)}
.submenu{background:#fff;box-shadow:0 0 30px #333;box-sizing:border-box;left:224%;margin-top:0;opacity:0;position:absolute;top:100%;transform:translate(-50%,20px);
transition:.3s;visibility:hidden;z-index:400000;word-spacing:normal;width:400px;z-index:9999999999999999999}
.mar{left:204%;width:400px}.submenu li{width:100%}
.mar li{float:left}.topmenu > li:hover .submenu{opacity:1;transform:translate(-50%,0);visibility:visible}
.submenu a{color:#000;font-size:100%;letter-spacing:1px;padding:10px;transition:.3s linear;text-align:left}
.submenu a:hover{color:#fff}
.menu-icon{cursor:pointer;display:none;height:30px;position:relative;width:30px;z-index:19}
.menu-icon-line{background:#b00000;height:5px;position:relative;width:30px}
.menu-icon-line::before{background:#b00000;content:"";height:5px;left:0;position:absolute;top:-10px;transition:transform 0.2s ease-in,top 0.2s linear 0.2s;width:30px}
.menu-icon-line::after{background:#b00000;content:"";height:5px;left:0;position:absolute;transition:transform 0.2s ease-in,top 0.2s linear 0.2s;top:10px;width:30px}
.menu-icon.menu-icon-active .menu-icon-line{background-color:transparent}
.menu-icon.menu-icon-active .menu-icon-line::before{top:0;transform:rotate(45deg);transition:top 0.2s linear,transform 0.2s ease-in 0.2s}
.menu-icon.menu-icon-active .menu-icon-line::after{top:0;transform:rotate(-45deg);transition:top 0.2s linear,transform 0.2s ease-in 0.2s}
.mobile-nav{background:#000000eb;display:block;height:100%;padding:20px 10px;position:fixed;right:-300px;top:0;transition:transform 0.4s ease-in;width:300px;z-index:9;overflow-y: auto}
.mobile-nav--active{transform:translateX(-100%)}.mobile-nav__list{list-style-type:none}.mobile-nav__item{margin-bottom:25px}
.mobile-nav__link{color:#fff;text-decoration:none}.mobile-nav__link:hover{color:#ff6800}
/*шапка закончилась*/
.hidd{display:none}.feedback input{background:#fff;border:1px solid #999}.feedback{margin-top:15px}.feedback input,.feedback textarea{margin:5px 0;padding:10px 4%;width:100%}
.feedback input[type="submit"]{background:#ea3433;border:none;color:#FFF;cursor:pointer;font-family:'Inter',sans-serif;font-size:100%;font-weight:bold;padding:18px 4%;transition:background .4s}
.feedback input[type="submit"]:hover{background:#ccc}
.overlay{background-color:#33333387;bottom:0;cursor:default;left:0;opacity:0;position:fixed;right:0;top:0;transition:all 0.6s;visibility:hidden;z-index:9999;-webkit-transition:all 0.6s;-moz-transition:all 0.6s;-ms-transition:all 0.6s;-o-transition:all 0.6s}.overlay:target{opacity:1;visibility:visible}.popup{background:#fff;border:1px solid #383838;border-radius:4px;box-shadow:0 15px 20px rgba(0,0,0,.22),0 19px 60px rgba(0,0,0,.3);font-size:90%;left:30%;margin:0 auto;max-width:400px;min-width:240px;padding:15px;position:fixed;right:0;top:0;transform:translate(-50%,-150%);transition:transform 0.6s ease-out;z-index:10000;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-ms-transform:translate(-50%,-150%);-o-transform:translate(-50%,-150%);-webkit-transition:transform 0.6s ease-out;-moz-transition:transform 0.6s ease-out;-ms-transition:transform 0.6s ease-out;-o-transition:transform 0.6s ease-out}.overlay:target+.popup{top:400px;transform:translate(-50%,-50%);-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);z-index:999999999999}.close{background-color:#2d5728;border:2px solid #ccc;border-radius:50%;box-shadow:0 0 10px #000;font-weight:bold;height:22px;line-height:20px;padding:0;position:absolute;right:-10px;text-align:center;text-decoration:none;top:-10px;transition:background-color ease .7s;width:22px;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;-webkit-box-shadow:0 0 10px #000;-moz-box-shadow:0 0 10px #000;-webkit-transition:background-color ease .7s;-moz-transition:background-color ease .7s;-ms-transition:background-color ease .7s;-o-transition:background-color ease .7s}.close:before{color:#fff;content:'\2715';font-size:12px;text-shadow:0 -1px #fff}.close:hover{background-color:#ff2e2e}
.feedback-form { /* вся форма */
 max-width: 600px;
padding: 2%;
border-radius: 3px;
margin: 5%;
background: #eee;
}
#block5 .feedback-form p{
	font-size:80%;
text-align:left;
	}
.feedback-form label { /* наименование полей */
  float: left;
  display: block;
  clear: right;
}
.feedback-form .w100 { /* поля */
  float: right;
  max-width: 400px;
  width: 97%;
  margin-bottom: 1em;
  padding: 1.5%;
}
.feedback-form .border { /* граница полей */
  border-radius: 1px;
  border-width: 1px;
  border-style: solid;
  border-color: #C0C0C0 #D9D9D9 #D9D9D9;
  box-shadow: 0 1px 1px rgba(255,255,255,.5), 0 1px 1px rgba(0,0,0,.1) inset;
}
.feedback-form .border:focus {
  outline: none;
  border-color: #abd9f1 #bfe3f7 #bfe3f7;
}
.feedback-form .border:hover {
  border-color: #7eb4ea #97cdea #97cdea;
}
.feedback-form .border:focus::-moz-placeholder { /* убрать при фокусе первоначальный текст поля */
 color: transparent;
}
.feedback-form .border:focus::-webkit-input-placeholder {
  color: transparent;
}
.feedback-form .border:not(:focus):not(:hover):valid { /* правильно заполненные поля */
  opacity: .8;
}
#submitFF, #submitF { /* кнопка "Отправить" */
 background: #b00000;
border-radius: 5px;
color: #fff;
font-size: 80%;
padding: 10px 25px;
text-align: center;
text-decoration: none;
text-transform: uppercase;
}

.feedback-form br {
  height: 0;
  clear: both;
}
#submitFF:hover, #submitF {
 opacity:0.8;
}
.white .grid figure figcaption, .grid figure figcaption > a {
   
    top: 55%;
  
}

.catalog-shop h1{
text-align:center;}
.shop, .shop1 {
    font-size: 90%;
    margin: 50px 0 50px -15px;
    padding: 0px;
}
.shop li, .shop1 li {
	background:#fff;
    border-radius: 10px;
	-webkit-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	-moz-box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    float: left;
    list-style: none;
    margin: 0 0 2% 2%;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    width: 31.2%;
}
.shop1 img{
	width:100%;
}
.shop1 .link-cart{
position:relative;
}
.shop img {
   width: 50%;
float: left;
margin: 0 5% 0 0;
}
.shop1 .grey{
	padding:5%;
}
.shop h3{
	font-size:120%;
	height: 40px;
overflow: hidden;
}
.grey {
  position:relative;
    text-align: left;
}
a.black{
color:#000;
text-decoration:none;}
.link-product{
	background: #b00000;
	border-radius:5px;
	color: #fff;
	font-size: 80%;
	padding: 10px 25px;
	text-align:center;	
	text-decoration:none;
	text-transform: uppercase;
}
.link-cart img{
	width:10%;
	float:right;
	margin-top:-8px;
}
.grey a:hover{
	opacity:0.6;
}
.bold{
	font-size:130%;
}


#footer{/*начался подвал*/
	background: url(../images/foot.png) no-repeat;
	margin:0; 
	background-size: cover;
	position: relative;
	
}
.footer{
	margin:0 auto;
	padding: 0 10%;
	background:#222222e6;
	padding: 50px 10%;
}
.icon img{
	width:30px;
}
.icon li{
	float:left;
	margin:5px;
	position:relative;
	right:50%;
}
.icon{
	float:left;
	list-style:none;
	margin:0 ;
	left:50%;
	position:relative;
}
.f-left .icon li{
	right:0;
	margin: 5px 10px;
	
}
.f-left .icon{
	left:0;
}
.f-logo{
	width: 50%;
}

.f-left{
	float:left;
	margin: 0 1%;
	width:30%;
}
.f-left h3{
	font-size: 110%;
color: #97e74e;
}
.f-left ul{
	list-style:none;
	margin:0;
	padding:0;
	}
.f-left ul li{
	margin:10px 0;
	color: #fff;
}
.f-left ul li a{
	color: #cbc1c1;
font-size: 85%;
text-decoration: none;
font-family: tahoma;
}
.f-left ul li a:hover{
	text-decoration: underline;
	}
.avtor{
	float:right;
	text-align:right;
}
.avtor img {
    vertical-align: middle;
    width: 20%;
}

.footer-bottom{
	background: #131617;
color: #999;
margin: 0;
padding: 0;
font-size: 80%;
text-align: center;
}
.footer-bottom p{
	padding: 20px;
margin: 0;
}/*закончился подвал*/


.title{
	
	width:70%;
}
.diller{
	color:#fff;
	width:70%;
	
}

.diller p{
	font-size:150%;
}
.poisk input[type="text"] {
    color: #787b80;
letter-spacing: 1px;

width: 100%;
border: #787b80 1px solid;
padding: 10px 20px;

border-radius: 10px;
}
#block1{
	background: url(../images/fon44.jpg);
	background-attachment: fixed;
	background-size:cover;
	background-position:center;
	margin:0;
	padding: 0;
	position:relative;

}
#block01{
	background: url(../images/fon444.jpg);
	
	margin:0;
	padding: 0;
	position:relative;

}
.prev-1{
	background: linear-gradient(-45deg,#ffffff0f,#4b7447);
	padding: 10%;

}
.prev-1 h1{
color: #fff;
font-size: 350%;
font-family: agency;
 }

#block2{
	
	border-top: 4px #b00000 solid;
	margin:0 5%;
	padding:20px 0 0 0;

}

#block2 h2{
	color:#006079;



font-family: exo;
font-size:200%;
}
.grey-top{
	background:url(../images/gray_top.png) center;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	height: 33px;
	margin-top: -30px;
	position:relative;
}
.white-top{
	background:url(../images/white_top.png) center;
	z-index: 1;
	background-position: center;
	background-repeat: no-repeat;
	height: 33px;
	margin-top: -30px;
	position:relative;
}
.rezume-1 {
	background:#eee;
	padding:80px 20%;
	text-align:center;
}
.line-red{
	background:#4b7447;
	width:80px;
	margin:0 auto;
	height:4px;
}
.line-black{
	background:#222;
	width:80px;
	margin:0 auto;
	height:4px;
}
.rezume-1 p{
	line-height:1.8;
	font-size:120%;
	text-align:left;
	margin:20px auto;
}
.rezume-1 h2{
	text-align:left;
}
.catalog{
	padding:80px 10% 0;
}
.catalog h1{
	text-align:center;
}
.white_bot {
	background:url(../images/white_bot.png) center no-repeat;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    height: 33px;
    margin-bottom: -30px;
	position:relative;
}
.bl-black{
	background:#eeeeeec2;
	padding:50px 20%;
}
#block3{
	
	background:url(../images/fon6.jpg) no-repeat;
	background-size:cover;
	margin: 0;
	text-align:center;
}
#block3 h2{
color:#000;
font-size: 225%;

font-family: exo;
}
#block3 p.text{
	color:#000;
    line-height: 1.8;
font-size: 120%;
max-width: 80%;
margin: 20px auto;
	
}
#block4{
	background:#00000017;
	border-top: 6px solid transparent;
border-image: 6 repeating-linear-gradient(45deg, #006079, #006079 10px, transparent 10px, transparent 20px, #006079 20px, #006079 30px,transparent 30px, transparent 40px);
	margin:0;
	padding:45px 5%;
	
}
.block4a{




	float:left;
	width:45%;
}

.block4b{
	float:left;
	margin-left:13%;
	width:42%;
}
#block4 h2 {
	color:#003947;
   
    font-size: 150%;
   
    font-family: agency;
	margin:0;
}
.block4a p{
	color:#003947;
	
	font-family:exo;
	font-size:140%;
	line-height:1.4;
}
#block5{
	margin:30px auto;
	padding: 0 20%;
	text-align:center;

	
}
#block5 p{
	
	color:#333;
	font-family:exo;

}
#block5 img{
	width: 5%;
margin: -15px 0;
float: left;
}
#block5 p.adv-2 {
    font-weight:bold;
}
#block5 h2{
	color:#b00000;

	font-size: 150%;
	text-align: center;
	font-family: agency;
}

#block6{
	border-top:6px solid #b00000;
	margin:50px 5%;
}
#block6 h3{
	color: #b00000;
font-family: agency;
text-align: center;
text-transform: uppercase;
padding: 20px 0;
}
#block7{/*консультация*/
	font-size:200%;
	margin:50px 0;
	padding: 20px 5%;
	text-align:center;
}
.blu{
	color:#003947;
	float:left;
	font-size:220%;
	font-family: agency;
	margin:20px 8%;
}
.red-bold{
	color: #b00000;
	font-size:220%;
	font-family: agency;
	float:left;
	margin:20px 0;
}

#block7 p{
	font-family:agency;
	font-size:120%;
	margin:5px 0;
}
.btn-6 {
 border: 3px solid white;
transition: all 300ms ease;
text-decoration: none;
padding: 10px 40px;
background: white;
border-radius: 15px;
float: right;

color: #003947;
margin:20px 0;
font-size: 140%;
}

.btn-6:hover {
  box-shadow: 5px 5px 20px #333333;
}
#block8{
	border-left: 6px solid transparent;
	border-image: 6 repeating-linear-gradient(45deg, #006079, #006079 10px, transparent 10px, transparent 20px, #006079 20px, #006079 30px,transparent 30px, transparent 40px);
	margin:100px 5% 0 5%;
	padding: 0 30px;
}

#block8 h2{
	color:#003947;
	font-family:agency;
	font-size:180%;
}
#block8 p{
	line-height:1.5;
}
.contact1{/*страница с контактами*/
	width: 50%;
	float: left;
	
}
.contact1 p{
	padding: 0;
	
}
.contact1 img{
	width: 3%;
}
.contact1 ul li img{
	width: 5%;
}
.adress{
	font-size: 20px;
	margin: 20px 0;
	line-height: 3;
	padding: 40px 0;
}
.contact1 ul li{
	display: inline; 
}
.contact1 ul li a{
	text-decoration: none;
	margin: 0 10px;
}
.form{
	float: left;
	width: 50%;
	margin-bottom: 15px;
	color: #000;
}


.menu{
	background:#efefef;
	list-style:none;
	margin:0;
	padding:2% 10%;
}

.menu li{
	border-bottom:2px #b00000 dashed;
	margin:10% 0;
	padding:10px;
}
.menu li a{
	color:#222;
	text-decoration:none;
}
.menu li a:hover{
	color:#b00000;
}
.hornav{
	
	float:right;
	margin:1% 5% 0 0;
	
}

.hornav a{
	color:#b00000;
}
.hornav a:hover{
	color:#000;
}
#block2 p.bold{
	color:#003947;
	font-family:exo;
	font-size:130%;
	line-height:1.4;
	
	text-indent:0;
}
.right p{
	line-height:1.7;
	text-indent:15px;
}
#block2 h1{
	
	font-family:exo;
	margin-top:0;
	padding:10px;
	text-transform:uppercase;
}
#block2 .red-bold{
	display:none;
}
#block2 #block7 img{
	display:none;
}
#block2 .blu{
	font-size:230%;
	margin:20px 0;
}
#block7 .plus p{
	margin-left:50px;
}
.plus{
float: left;
margin: 50px 2% 10px;
text-align: left;
width: 46%;
}
#block5 .plus img{
float: left;
margin: 10px 20px 30px 0;
width: 15%;
}
.red{
	color:#b00000;
	font-weight:bold;
}
.price {
    width: 100%;
    margin: 50px auto;
   
    border-collapse: separate;
    border-spacing: 20px 10px;
  
}
.price th {
    background: #3fb0bf;
    margin: 10px;
    padding: 10px;
}
.price td {
    background: #e6e6e6;
    margin: 10px;
    padding: 10px;
	text-align:center;
}
.price td.td-left{
	text-align:left;
}
.rezume{
	border-bottom:6px solid #b00000;
	font-size:120%;
	margin: 5% 0;
	padding:2% 0;
}
.scrollup{
	background: url(../images/icon_top.png) no-repeat; 
	bottom:50px;
	display:none;
    height:40px;
    opacity:0.3;  
	outline:0;
    position:fixed;
    right:20px;
    text-indent:-9999px;
	width:40px;
}
.scrollup:hover{
	background: url(../images/icon_top.png) no-repeat; 
	bottom:50px;
	display:none;
    height:40px;
    opacity:1; 
	outline:0;
    position:fixed;
    right:20px;
    text-indent:-9999px;
	width:40px;
}
.img-left{
	float: left;
    margin: 0 20px 20px 0;
    width: 30%;
     padding: 5px;
	}
.img-right{
	float:right;
	margin-left:15px;
	width:45%;
	}
.catalog .grid{
	margin:50px 0 0;
}
.catalog .grid figure{
	width: 21%;
border-radius: 10px;
}
.catalog-shop .grid figure{
	width: 21%;
border-radius: 10px;
}
.grid {/*код эффектов при наведении на картинки*/
	position: relative;
	margin: 50px auto 80px;
	padding: 0;
	
	list-style: none;

}
.grid h3{
	color:#fff;
font-size: 90%;
text-align: center;
font-weight: bold;
background: #4b7447c4;
padding: 10px 0;
}

/* Common style */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 2%;
	width: 29.2%;
	height: auto;
	background: #2d5728;
	text-align: center;
	cursor: pointer;
}
#block2 .grid figure{
	margin: 10px 1%;
	width: 31.2%;
}
.grid figure img {
	position: relative;
	display: block;
	width:100%;

}

.grid figure figcaption {
	padding: 0;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 70%;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h2 {
	word-spacing: -0.15em;
	font-weight: 300;
	font-family:exo;
}

.grid figure h2 span {
	font-weight: 800;
}

.grid figure h2,
.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}
figure.effect-goliath {
	background: #006079;
}

figure.effect-goliath img,
figure.effect-goliath h2 {
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

figure.effect-goliath img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-goliath h2,
figure.effect-goliath p {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px;
}

figure.effect-goliath p {
	text-transform: none;
	font-size: 90%;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0,50px,0);
	transform: translate3d(0,50px,0);
}

figure.effect-goliath:hover img {
	-webkit-transform: translate3d(0,-80px,0);
	transform: translate3d(0,-80px,0);
}

figure.effect-goliath:hover h2 {
	-webkit-transform: translate3d(0,-100px,0);
	transform: translate3d(0,-100px,0);
}

figure.effect-goliath:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-julia img {
	max-width: none;
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-julia figcaption {
	text-align: left;
}

figure.effect-julia h2 {
	position: relative;
	padding: 0.5em 0;
}

figure.effect-julia p {
	display: inline-block;
	margin: 0 0 0.25em;
	padding: 0.4em 1em;
	background: rgba(255,255,255,0.9);
	color: #2f3238;
	text-transform: none;
	font-weight: 500;
	font-size: 75%;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-360px,0,0);
	transform: translate3d(-360px,0,0);
}

figure.effect-julia p:first-child {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-julia p:nth-of-type(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-julia p:nth-of-type(3) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-julia:hover p:first-child {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

figure.effect-julia:hover p:nth-of-type(2) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-julia:hover p:nth-of-type(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-julia:hover img {
	opacity: 0.4;
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

figure.effect-julia:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}


.lb-album{/*галерея*/
	width: 100%;
	list-style:none;
	margin: 0 auto;
padding:0;
}
.lb-album li{
	float: left;
	margin: 1%;
	position: relative;
	width:23%;
}
.lb-album li > a,
.lb-album li > a img{
	display: block;
	width:100%;
}
.lb-album li > a{
	width: 100%;
	
	position: relative;
	
}
.lb-album li > a span{
	position: absolute;
	width: 100%;
	height:100%;
	top: 0;
	left: 0;
	text-align: center;
	line-height: 150px;
	color: #382419;
	text-shadow: 0px 1px 1px rgba(255,255,255,0.6);
	font-size: 24px;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	background: rgb(241,210,194);
	background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%, rgba(241,210,194,1) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,0.56)), color-stop(100%,rgba(241,210,194,1)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(241,210,194,1) 100%);
	background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(241,210,194,1) 100%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(241,210,194,1) 100%);
	background: radial-gradient(center, ellipse cover, rgba(255,255,255,0.56) 0%,rgba(241,210,194,1) 100%);
	-webkit-transition: opacity 0.3s linear;
	-moz-transition: opacity 0.3s linear;
	-o-transition: opacity 0.3s linear;
	-ms-transition: opacity 0.3s linear;
	transition: opacity 0.3s linear;
}
.lb-album li > a:hover span{
	opacity: 1;
	filter: alpha(opacity=99); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; /*IE8*/
}
.lb-overlay{
	width: 0px;
	height: 0px;
	position: fixed;
	overflow: hidden;
	left: 0px;
	top: 50px;
	padding: 0px;
	z-index: 99999;
	text-align: center;
	background: #d6e6b8;
	background: -moz-radial-gradient(center, ellipse cover, rgba(214,230,184,0.56) 0%, rgba(214,230,184,1) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(214,230,184,0.56)), color-stop(100%,rgba(214,230,184,1)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(214,230,184,0.56) 0%,rgba(214,230,184,1) 100%);
	background: -o-radial-gradient(center, ellipse cover, rgba(214,230,184,0.56) 0%,rgba(214,230,184,1) 100%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(214,230,184,0.56) 0%,rgba(214,230,184,1) 100%);
	background: radial-gradient(center, ellipse cover, rgba(214,230,184,0.56) 0%,rgba(214,230,184,1) 100%);
}
.lb-overlay > div{
	position: relative;
	color: #382419;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	width: 550px;
	margin: 10px auto 0px auto;
	text-shadow: 0px 1px 1px rgba(255,255,255,0.6);
	-webkit-transition: opacity 0.3s linear 1.3s;
	-moz-transition: opacity 0.3s linear 1.3s;
	-o-transition: opacity 0.3s linear 1.3s;
	-ms-transition: opacity 0.3s linear 1.3s;
	transition: opacity 0.3s linear 1.3s;
}
.lb-overlay div h3,
.lb-overlay div p{
	padding: 0px 20px;
	width: 200px;
	height: 60px;
}
.lb-overlay div h3{
	font-size: 36px;
	float: left;
	text-align: right;
	border-right: 1px solid rgba(27,54,81,0.4);
}
.lb-overlay div h3 span,
.lb-overlay div p{
	font-size: 16px;
	font-family: Constantia, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
	font-style: italic;
}
.lb-overlay div h3 span{
	display: block;
	line-height: 6px;
}
.lb-overlay div p{
	text-align: left;
	float: left;
	width: 260px;
}
.lb-overlay a.lb-close{
	
	z-index: 1001;
	color: #fff;
background:red;
	position: absolute;
	top: 43px;
	left: 50%;
	font-size: 15px;
	line-height: 26px;
	text-align: center;
	padding:5px 15px;
	overflow: hidden;
	margin-left: -25px;
	opacity: 0;
	filter: alpha(opacity=0); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=0)"; /*IE8*/
	-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.3s linear 1.2s;
	-moz-transition: opacity 0.3s linear 1.2s;
	-o-transition: opacity 0.3s linear 1.2s;
	-ms-transition: opacity 0.3s linear 1.2s;
	transition: opacity 0.3s linear 1.2s;
}
.lb-overlay img{
	/* height: 100%; For Opera max-height does not seem to work */
	max-height: 100%;
	position: relative;
	-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	-moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.3);
	box-shadow: 0px 2px 7px rgba(0,0,0,0.2);
}
.lb-overlay:target {
	width: auto;
	height: auto;
	bottom: 0px;
	right: 0px;
	padding: 80px 100px 120px 100px;
	top:80px;
}
.lb-overlay:target img {
	-webkit-animation: fadeInScale 1.2s ease-in-out;
	-moz-animation: fadeInScale 1.2s ease-in-out;
	-o-animation: fadeInScale 1.2s ease-in-out;
	-ms-animation: fadeInScale 1.2s ease-in-out;
	animation: fadeInScale 1.2s ease-in-out;
}
.lb-overlay:target a.lb-close,
.lb-overlay:target > div{
	opacity: 1;
	filter: alpha(opacity=99); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; /*IE8*/
}
.lb-prev, .lb-next{
	text-indent: -9000px;
	position: absolute;
	top: -32px;
	width: 24px;
	height: 25px;
	left: 50%;
	opacity: 0.8;
	filter: alpha(opacity=80); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=80)"; /*IE8*/
}
.lb-prev:hover, .lb-next:hover{
	opacity: 1;
	filter: alpha(opacity=99); /* internet explorer */
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(opacity=99)"; /*IE8*/
}
.lb-prev{
	margin-left: -30px;
	background: transparent url(../images/arrows.png) no-repeat top left;
}
.lb-next{
	margin-left: 6px;
	background: transparent url(../images/arrows.png) no-repeat top right;
}
@-webkit-keyframes fadeInScale {
  0% { -webkit-transform: scale(0.6); opacity: 0; }
  100% { -webkit-transform: scale(1); opacity: 1; }
}
@-moz-keyframes fadeInScale {
  0% { -moz-transform: scale(0.6); opacity: 0; }
  100% { -moz-transform: scale(1); opacity: 1; }
}
@-o-keyframes fadeInScale {
  0% { -o-transform: scale(0.6); opacity: 0; }
  100% { -o-transform: scale(1); opacity: 1; }
}
@-ms-keyframes fadeInScale {
  0% { -ms-transform: scale(0.6); opacity: 0; }
  100% { -ms-transform: scale(1); opacity: 1; }
}
@keyframes fadeInScale {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* 
	100% Height for Opera as the max-height seems to be ignored, not optimal for large screens 
	http://bricss.net/post/11230266445/css-hack-to-target-opera 
*/
x:-o-prefocus, .lb-overlay img {
    height: 100%;
	}
.catalog .grid {
       text-align: center;
}
@media (max-width: 1536px) { 
header {
   
    padding: 15px 5%;
}
.rezume-1 {

	padding:80px 10%;

}
#block5 {
   
    padding: 0 10%;
   
}
.bl-black {
  
    padding: 50px 10%;
}
}	
@media (max-width: 1440px) { 
.img-left {
   
    width: 35%;
  
}
.rezume-1 p {
    
    font-size: 105%;
    
}
.catalog-shop .grid figure figcaption, .grid figure figcaption > a {
   
    top: 60%;
   
}
}
@media (max-width: 1280px) { 
.catalog {
    padding: 80px 5%;
}
.rezume-1 {
    padding: 80px 5%;
}

}
@media (max-width: 1240px) { 
.grey {
    text-align: left;
    padding: 10%;
}
.shop img {
    width: 100%;
    float: none;
    margin: 0;
}
.prev-1 h1 {
    color: #fff;
    font-size: 250%;
    font-family: agency;
}
}
@media (max-width: 1195px) { 

#block5 {

    padding: 0 5%;
   }
#block5 p {
    
    margin: 20px 0px 20px 100px;
}
#block5 p.adv-2 {
    margin: 10px 0px;
	
}
header {
    padding: 15px 10% 15px 5%;
}
.grid figure figcaption, .grid figure figcaption > a {
   
    top: 60%;
   
}
.contact.white, .catalog-shop, .containerr {
    margin: 50px 1% 0;
}
.popup{
left:35%;}
}


@media (max-width: 950px) { 
.catalog-shop .grid figure {
    width: 29.2%;
    border-radius: 10px;
}
#block7 {
    font-size: 120%;
   
}
.popup{
left:40%;}
.prev-1 {
   
    padding: 5% 10%;
}
.title {
    width: 100%;
}
.diller {
     width: 100%;
}
.hed.el-2{
width:1px;}
.poisk{
position: absolute;
right: 5%;
top: 81px;
}
.menu {
  
    float: left;
}
.catalog .grid figure {
    width: 29.3%;
}
.rezume-1 p {
   
    max-width: 100%;
   
}
.lb-album li{
	width:48%;
}
.footer {
    padding: 50px 3%;
}

.form {
    float: none;
    width: auto;
    margin-bottom: 15px;
	padding: 0 10%;
}

#block3 p.text {
   
    max-width: 100%;
   
}

.hed {
    width: 38%;
}
.topmenu .af::after {
   
    right: -2px;
    bottom: 13px;
}
nav a {
    
    padding: 14px 15px;
   
}
.mar {
    left: 226%;
    
}

@media (max-width: 850px) {
.popup{
left:45%;}
	.menu-icon{display:block;justify-content:center;align-items:center;right:10px;position:absolute;top:100px}	
nav{display:none} .mobile-nav{width:320px;right:-320px}#talltabs-black nav{display:none}	
	.poisk {
    position: absolute;
    left: 5%;
    top: 81px;
}
.poisk input[type="text"] {
    width: auto;
    }	

.prev-1 h1 {
   
font-size: 200%;

}
.h-bottom ul li img {
   
    width: 60%;
}
}
@media (max-width: 820px) { 
#block2{border:none;}
.topmenu > li > a {
  position: relative;
  padding: 10px 10px;
  font-size: 100%;
 
}
.form-search {
  
    position: absolute;
    left: 10px;
    top: 100px;
    background: #fff;
}
}
@media (max-width: 780px){
.rezume-1 img{
display:none;}
#block5 .plus img {
  
    width: 10%;
}
.plus {

    width: 100%;
}
#block5 img {
    width: 10%;
    margin: -15px 2% 15px;
}
.popup{
left:50%;
width:80%;}
nav {
   
    background: #99999982;
}
.logo img {
  
    width: 12%;
}
#block3 {
  
    font-size: 80%;
}

.img-left {
  
    margin: 20px 0;
    width: 100%;
}
.footer {
    padding: 50px 5%;
}
.f-left {
    float: left;
    margin: 0 5%;
    width: 100%;
}
#block8{border:none;}
.red-bold {
    display: block;
	float:right;
}
.btn-6 {
  
    display: none;
}
#block2 .red-bold {
    display: block;
}
}
@media (max-width: 651px){
#block1 {
   
    background-position: right;
 
}
.shop li{
width:47%;}
.hed {
    width: 50%;
    font-size: 90%;
}
.diller p {
    font-size: 120%;
}
.hed.el-3 {
   
    display: none;
}	
.cart-tr {
    float: left;
    padding-right: 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px dashed;
}	
.cart-tr.cart-name, .cart-tr.cart-delete {
   
    min-width: 100%;
  
}
 #order select {
   
    width: 100%;
}	
.link-cart img {
    width: 15%;
   
}
#block5 ul li {
    
    width: 20%;
}	
#block7 {
    font-size: 120%;
   
}

#block5 p {
    border:none;
    
}
.f-left{
	width:45%;
}

.footer-bottom {
  
    padding: 0 2%;
    width: auto;
}
.footer-bottom p {
    padding: 0;
}
.grid figure.effect-julia {
    width: 46%;
}
.zakaz {
  
    display: none;
}
.overlay:target + .popup {
    top: 300px;
  
}
}
@media (max-width: 450px){
.contact.white, .catalog-shop, .containerr {
    margin: 70px 1% 0;
}
.adv-2 img{
display:none;}
.el-1 {
    max-width: 90px;
}
.prev-1 {
    padding: 10%;
      }
.img-product {
   
    margin: 2% 0;
    width: 100%;
}
.logo {
    width: 100%;
}	
.hed {
    width: 70%;
    font-size: 80%;
}
.diller {
  
    width: 100%;
}
.title {
   
    width: 100%;
}
.grid figure.effect-julia {
    width: 100%;
}
.grid figure {
   
    margin: 2% 0;
  
}
.shop li {
    width: 100%;
}
.shop li {
   
    margin: 2% 0;
   
}
.link-cart img {
    width: 12%;
}
.diller img {
  
    margin: 30px 20px;
    width: 20%;
}
.prev-1 h1 {
    font-size: 150%;
}
.logo img {
    width: 15%;
}
.tele img{
	display:none;
}
.tele {
    font-size: 150%;
    
}
.prev-1 {
   
    margin: 0;
  
}

#block5 ul {
    margin: 0%;
  
}
#block5 ul li {
   
    margin: 1%;
    width: 28%;
}
.red-bold {
   
    float: none;
}
.blu{
	float:none;
}
.rezume-1 p {
    
    font-size: 100%;
  
}
.rezume-1 {
   
    padding: 80px 5%;
    
}
#block7 img {
    margin: -15px 5px;
    width: 8%;
}
.price {
  font-size:90%;
    border-spacing: 1px 10px;
}
#block2 .grid h3{
	font-size:78%;
}
.submenu {
  
    display: none;
}
.topmenu > li {
   
    border-bottom: 1px solid #b00000;
}
nav a:hover {
   
  color: #b00000;
}
.contact1 {
  
    padding: 0 5%;
}
.contact1 img {
    width: 6%;
}
.contact1 ul li img {
    width: 10%;
}
}
@media (max-width: 420px){

}
