body{
	color: #666464;
	font-family: 'Playfair Display', serif;
	background: #fdfdfd;
}

img{
	max-width: 100%
}

.block{
	padding: 60px 0px;
}

.center-block{
	margin-left: auto;
	margin-right: auto;
}

h2{
	font-family: 'Playfair Display', serif;
	font-weight: 700;
    font-size: 33px;
	color: #666464;
	line-height: 1.3;
}
h3{
	font-family: 'Playfair Display', serif;
	font-weight: 600;
    font-size: 28px;
	color: #666464;
	line-height: 1.3;
}
p{
	font-size: 15px;
}

.scrollup{
	position: fixed;
	right: 100px;
	bottom: 80px;
	height: 82px;
	width: 82px;
	background: url(../img/top-button.webp);
	z-index: 5;
	display: none;
}

form .first-row input[type=text]{
	margin-top : 0px;
}

a:focus{
	outline: none;
}

::-ms-browse{
	cursor: pointer;
}

::-webkit-file-upload-button {
    cursor: pointer;
}

/* Отступы (margins) и padding (paddings) */
:root {
  --spacer: 1rem;
  --spacer-0: 0;
  --spacer-1: calc(var(--spacer) * 0.25);  /* 4px */
  --spacer-2: calc(var(--spacer) * 0.5);   /* 8px */
  --spacer-3: var(--spacer);               /* 16px */
  --spacer-4: calc(var(--spacer) * 1.5);   /* 24px */
  --spacer-5: calc(var(--spacer) * 3);     /* 48px */
}

/* MARGIN ALL SIDES */
.m-0 { margin: var(--spacer-0) !important; }
.m-1 { margin: var(--spacer-1) !important; }
.m-2 { margin: var(--spacer-2) !important; }
.m-3 { margin: var(--spacer-3) !important; }
.m-4 { margin: var(--spacer-4) !important; }
.m-5 { margin: var(--spacer-5) !important; }

/* MARGIN TOP */
.mt-0 { margin-top: var(--spacer-0) !important; }
.mt-1 { margin-top: var(--spacer-1) !important; }
.mt-2 { margin-top: var(--spacer-2) !important; }
.mt-3 { margin-top: var(--spacer-3) !important; }
.mt-4 { margin-top: var(--spacer-4) !important; }
.mt-5 { margin-top: var(--spacer-5) !important; }

/* MARGIN BOTTOM */
.mb-0 { margin-bottom: var(--spacer-0) !important; }
.mb-1 { margin-bottom: var(--spacer-1) !important; }
.mb-2 { margin-bottom: var(--spacer-2) !important; }
.mb-3 { margin-bottom: var(--spacer-3) !important; }
.mb-4 { margin-bottom: var(--spacer-4) !important; }
.mb-5 { margin-bottom: var(--spacer-5) !important; }

ul {
    list-style: none;
    padding-left: 0;
}

/*header*/
.header{
	margin: 25px 15px;
}

.logo-wrapp{
	float: left;
}

.logo{
    display: inline-block;
    vertical-align: bottom;
    width: 180px;
}

.slogan{
	display: inline-block;
	vertical-align: top;
    font-size: 20px;
	color: #5a554f;
	line-height: 1.3;
	height: 40px;
	position: relative;
}

.slogan:before{
    content: '';
    height: 72%;
    background: #bbbbbb;
    width: 2px;
    margin: 4px 27px;
    display: block;
    float: left;
    margin-top: 9px;
}

.header-phones-wrapp{
	float: right;
}

.phone-num{
	font-size: 22px;
	color: #5a554f;
	display: inline-block
}

.phone-num a{
	color: #5a554f;
}

.order-call-wrap{
	display: inline-block;
}

.order-call-link{
	color: #5a554f;
	margin-left: 25px;
	text-decoration: underline;
	font-size: 15px;
}

.order-call-link:focus, .order-call-link:hover{
	color: #5a554f;
}

.order-call-link:before{
	content: url(../img/ico-phone.webp);
	padding-right: 10px;
}
/*!header*/

/*menu*/
.top-menu-wrapp{
    background-color: #3e3e3e;
    position: relative;
}

.nav-justified{
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-justified>li{
    position: relative;
    flex: 1;
    text-align: center;
}

.nav-justified>li>a{
    display: block;
    font-size: 13px;
    color: #d2d2d2;
    text-transform: uppercase;
    padding: 18px 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-justified>li>a:hover,
.nav-justified>li>a:focus{
    color: #dbf1cf;
    text-decoration: underline;
    background: transparent;
}

/* Стили для пункта с подменю */
.has-submenu{
    position: relative;
}

.has-submenu > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}


/* Подменю */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #4a4a4a;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.submenu li {
    list-style: none;
    text-align: left;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #d2d2d2;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu a:hover {
    color: #dbf1cf;
    background-color: #5a5a5a;
    text-decoration: none;
}

/* Показываем подменю при наведении */
.has-submenu:hover .submenu {
    display: block;
}

.has-submenu > a {
    position: relative;
    padding-right: 20px;
}

.has-submenu > a::after {
    content: '▼';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
}

/* Для адаптивности */
@media (max-width: 768px) {
    .nav-justified {
        flex-wrap: wrap;
    }

    .nav-justified>li {
        flex: 0 0 50%;
        text-align: center;
    }

    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}
/*!menu*/

/*top block*/
.top-wrapp{
	background: url(../img/top-bg3.webp) repeat-x #ffffff;
	background-position: center bottom;
	padding: 50px 0px 90px;
}

.top-text{
	margin-top: 85px;
}

.tt-1{
    font-size: 41px;
    line-height: 1.2;
}

.tt-1 .tt-green{
	color: #86c06a;
	text-decoration: underline;
}
.tt-1 .tt-red{
	color: red;
	text-decoration: underline;
}
.tt-red{
	color: red;
	text-decoration: underline;
}
.tt-white{
	color: white;
	text-decoration: underline;
}
.tt-1 .tt-small{
    font-size: 36px;
}

.tt-2{

    font-size: 16px;
    margin-top: 21px;
}
.tt-3{

    font-size: 24px;
    margin-top: 21px;
}
.tt-4{

    font-size: 20px;
    margin-top: 21px;
}
.tt-5{

    font-size: 30px;
    margin-top: 21px;
}
.types-anchor{
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.top-img{
	float: right;
	position: relative;
}
/*!top block*/

/*Bottle types (block 2)*/
.dark-block-wrapp{
	background: #F7F7F5;
	padding: 60px 0px 0px;
}

.bottles{
	background: url(../img/123.webp) no-repeat center bottom;
	height: 550px;
	width: 650px;
	margin-left: -70px;
	position: relative;
	margin-top: 45px;
}

.b2-text-wrapp{
	width: 100%;
	background-size: 100% 100%;
	background-color: #ffffff;
	position: relative;
    box-shadow: 5px -5px 6px 5px rgba(226, 226, 226, 0.37), 15px -15px 6px 5px rgba(236, 236, 236, 0.42);
}

.b2-text-content{
	padding: 45px;
}

.b2-text-title{

	margin-left: 15px;
	font-size: 32px;
	line-height: 1.2;
    margin: 0px 0px -20px 40px;
	position: relative;
	z-index: 1;
}

.bottle-item{
	position: absolute;
}

.bottle-item:hover{
	cursor: pointer;
}

.type-cup{
	background: url(../img/cup-s.webp) no-repeat;
	background-position: left top;
	width: 127px;
	height: 177px;
	bottom: 158px;
	left: 83px;
	z-index:2;
}

.type-cup:hover, .type-cup.active{
	background-position: right top;
}

.type-bottle-b{
	background: url(../img/bottle-b-s.webp) no-repeat;
	background-position: left top;
	width: 237px;
	height: 421px;
	bottom: 170px;
	left: 105px;
	z-index:1;
}

.type-bottle-b:hover, .type-bottle-b.active{
	background-position: right top;
}

.type-bottle-l{
	background: url(../img/bottle-l-s.webp) no-repeat;
	background-position: left top;
	width: 97px;
	height: 268px;
	bottom: 160px;
	left: 285px;
	z-index:2;
}

.type-bottle-l:hover, .type-bottle-l.active{
	background-position: right top;
}

.type-bottle{
	background: url(../img/bottle-s.webp) no-repeat;
	background-position: left top;
	width: 129px;
	height: 395px;
	bottom: 195px;
	left: 358px;
	z-index:1;
}

.type-bottle:hover, .type-bottle.active{
	background-position: right top;
}

.type-colp{
	background: url(../img/yogurt-s.webp) no-repeat;
	background-position: left top;
	width: 114px;
	height: 273px;
	bottom: 175px;
	left: 504px;
	z-index:1;
}

.type-colp:hover, .type-colp.active{
	background: url(../img/yogurt-a.webp) no-repeat;
	background-position: right top;
}

.bottle-plus{
	background: url(../img/b-point.webp) no-repeat left top;
	width: 52px;
	height: 52px;
	position: absolute;
}

.bottle-item:hover .bottle-plus, .bottle-item.active .bottle-plus{
	background: url(../img/b-point-a.webp) no-repeat left top;
}

.type-cup .bottle-plus{
	top: 75px;
}

.type-bottle-b .bottle-plus{
	top: 150px;
	left: -10px;
}

.type-bottle-l .bottle-plus{
	top: 135px;
	left: -10px;
}

.type-bottle .bottle-plus{
	top: 80px;
	left: 100px;
}

.type-colp .bottle-plus{
	top: 100px;
	left: 87px;
}

.b2-green{

	color: #86c06a;
	text-decoration: underline;
	font-size: 24px;
	margin: 20px 0px 0px;
}

.b2-text-subtitle{
	text-transform: uppercase;
	font-size: 17px;
	margin: 25px 0px 5px;
}

.b2-text{
	font-size: 17px;
}

.price-button span{
	position: absolute;
    margin: 25px 0px 0px 40px;
}

.price-button-wrapp{
	margin: 25px 0px;
	position: relative;
}

.green-button{
    padding: 10px 60px 7px 15px;
    border: 5px solid transparent;
	border-color: #8bc74e;
    border-image: linear-gradient(to left, #c3ee97 0%, #8bc74e 100%);
    border-image-slice: 1;
    box-shadow: inset 2px 6px 6px 1px #e5f8da, 2px 6px 6px 1px #e5f8da;
	color: #666464;
	font-size: 15px;

	position: relative;
	background: transparent;
	width: 100%;
	text-align: left;
	text-decoration: none;
	line-height: 1.6;
}

a.green-button{
    padding: 13px 60px 10px 15px;
}

.green-button:after{
	content: url(../img/ico-button.webp);
    right: 15px;
    top: 11px;
	position: absolute;
}

.green-button:hover, .green-button:focus{
	color: #95c87d;
	outline: none;
	text-decoration: none;
}



.red-button{
    padding: 10px 60px 7px 15px;
    border: 5px solid transparent;
	border-color: red;
    border-image: linear-gradient(to left, lightcoral, red);
    border-image-slice: 1;
    box-shadow: inset 2px 6px 6px 1px #e5f8da, 2px 6px 6px 1px #e5f8da;
	color: #666464;
	font-size: 15px;

	position: relative;
	background: transparent;
	width: 100%;
	text-align: left;
	text-decoration: none;
	line-height: 1.6;
}

a.red-button{
    padding: 13px 60px 10px 15px;
}

.red-button:after{
	content: url(../img/ico-button.webp);
    right: 15px;
    top: 11px;
	position: absolute;
}

.red-button:hover, .red-button:focus{
	color: lightcoral
	outline: none;
	text-decoration: none;
}
/*!Bottle types (block 2)*/

/*block 3*/
.grid-item-content {
	height: 290px;
	background: transparent;
	border: 5px solid #e8e8e8;
    padding: 45px 50px 0px;
    text-align: center;
}

.grid-item-content:hover, .grid-item-content:active{
    border: 5px solid #8bc74e;
	border-color: #8bc74e;
    border-image: linear-gradient(-45deg, #c3ee97 0%, #8bc74e 100%);
    border-image-slice: 1;
	box-shadow: inset 2px 6px 20px 10px #e5f8da, 2px 6px 20px 10px #e5f8da;
}

.grid-item-content.no-border{
	border: none;
	font-size: 31px;

	padding: 80px 0px 0px;
	text-align: left;
	box-shadow: none;
}

.grid-item-content--height2{
	height: 395px;
	/*height: 430px;*/
}

.grid-item-content--height3{
	height: 342px;
	/*height: 380px;*/
}

.grid-item{
	padding: 25px 15px;
}

.maket-link{
    width: 60px;
    height: 60px;
    margin: 0px auto;
    display: inline-block;
    background: url(../img/ico-num.webp);
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    padding: 10px 0px 0px 2px;
	-moz-background-size: 100%; /* Firefox 3.6+ */
    -webkit-background-size: 100%; /* Safari 3.1+ и Chrome 4.0+ */
    -o-background-size: 100%; /* Opera 9.6+ */
    background-size: 100%; /* Современные браузеры */
}

.maket-link:hover{
    color: #ffffff;
}

.grid-item-content.has-maket{
    padding: 35px 50px 0px;
}

.block3-title{
	font-size: 15px;
	text-transform: uppercase;
	margin-top: 30px;
}

.block3-text{
	margin-top: 10px;
	font-size: 16px;
}

.maket-add{
	margin-top: 20px;
}

.maket-add a{
	font-size: 17px;

	text-decoration: underline;
	color: #727272;
}

.maket-add a:before{
	content: url(../img/ico-folder.webp);
	padding-right: 10px;
}

.maket-add:hover a, .maket-add:focus a{
	color: #727272;
}
/*!block 3*/

/*block 4*/
.block4-wrapp{
	background: url(../img/top-bg3.webp) repeat-x #FAF9F7;
	background-position: center bottom;
	padding-bottom: 110px;
	overflow: hidden;
    padding-top: 65px;
}

.block4-form-wrapp{
    margin: 92px auto 0px;
    background-color: #ffffff;
	float: none;
	min-height: 470px;
	box-shadow: 2px 2px 7px 0px rgba(0,0,0,0.2);
}

.block4-form-block {
    padding: 70px 150px;
    z-index: 1;
    position: relative;
}

.block4-form-block h2{
	text-align: center;
}

form input[type=text], form textarea.form-control, form input[type=email]{
	margin: 25px 0px;
	border-radius: 0px;
    border: 2px solid #e8e8e8;
    min-height: 45px;
	font-size: 16px;
	box-shadow: none;
	resize: none;
	background: transparent;
}

form input[type=text]:focus, form textarea.form-control:focus, form input[type=email]:focus{
	border-color: #e8e8e8;
	box-shadow: none;
}

form input[type=submit]:hover{
	color: #95c87d;
}
/*!block 4*/

/*block 5*/
.block5-wrapp{
	background: url(../img/block5-bg.webp) no-repeat left top;
}

.about-line{
	padding: 40px 0px 0px;
	border-bottom: 2px solid #e5e6e5;
}

.about-item{
	text-align: center;
	padding: 10px 15px;
}

.about-item p{
    font-size: 15px;
}

.about-item p.abut-title{

	font-size: 31px;
	margin-bottom: 0px;
}

.advantages-item{
	margin-bottom: 25px;
}

.advantages-content{
	border: 5px solid #e8e8e8;
    padding: 75px 18px 65px;
    text-align: center;
	width: 100%;
}

.advantages-content:hover, .advantages-content:active {
    border: 5px solid #8bc74e;
	border-color: #8bc74e;
    border-image: linear-gradient(-45deg, #c3ee97 0%, #8bc74e 100%);
    border-image-slice: 1;
    box-shadow: inset 2px 6px 20px 10px #e5f8da, 2px 6px 20px 10px #e5f8da;
}

.ico-first{
    position: absolute;
    width: 80px;
    top: -40px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 80px;
    margin: 0px auto;
	display: block;
}

.ico-num{
    position: absolute;
    width: 80px;
    top: -35px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 80px;
    margin: 0px auto;
	display: block;
	background: url(../img/ico-num.webp);
    color: #ffffff;
	font-size: 22px;
	text-align: center;
	padding: 18px 0px 0px 2px;
	display: none;
}

.advantages-content:hover .ico-num, .advantages-content:active .ico-num{
	display: block;
}

.green-border{
    border: 5px solid transparent;
    border-image: linear-gradient(-45deg, #c3ee97 0%, #8bc74e 100%);
    border-image-slice: 1;
	box-shadow: inset 2px 6px 20px 10px #e5f8da, 2px 6px 20px 10px #e5f8da;
}

.order-sbm-wrapp{
	position: relative;
}

.green-sbm-label{
    position: absolute;
    right: 35px;
    top: 15px;
	cursor: pointer;
    margin-bottom: 0px;
}

.advantages-block{
	padding-top: 70px;
}

.advantages-content img{
	height: 45px;
}

.advantages-content.advantages-content-first{
	padding: 50px 25px;
}

.advantages-t1{
    text-align: right;
    width: 70%;
    font-size: 30px;
    margin-top: 10px;
}

.advantages-t2{
    text-align: right;
    width: 85%;
    font-size: 36px;
    margin-top: 0px;
    line-height: 36px;

}
/*!block 5*/

/*block 6*/
.block6-wrapp{
    padding-top: 25px;
    padding-bottom: 75px;
}

.nav-works>li{
    position: relative;
    display: block;
    float: left;
    padding: 0px 25px;
}

.nav-works>li>a{
    padding: 3px 10px;
	border-bottom: 5px solid transparent;
	font-size: 18px;

	color: #929292;
}

.nav-works>li>a:hover, .nav-works>li>a:focus, .nav-works>li>a.active{
	border-bottom: 5px solid #86c06a;
	background: transparent;
	color: #666464;
}

.nav-works-wrap{
	text-align: center;
	margin: 50px 0px;
}

.nav-works{
    display: inline-block;
}

.t-center{
	text-align: center;
}

.works-review-wrap{
	background-color: #ffffff;
	margin-top: 30px;
	box-shadow: 6px 4px 20px 10px rgba(236, 236, 236, 0.52);
	position: relative;
}

.works-review-content{
	padding: 30px;
	color: #8A8A8A;
}

.cloud:before{
	content: '';
    position: absolute;
    left: -30px;
    top: 20px;
    border: 15px solid transparent;
    border-right: 15px solid #ffffff;
}

.works-review-img, .works-review-text{
	display: inline-block;
	vertical-align: top;
	max-width: 380px;
}

.works-review-img{
	border-radius: 50%;
}

.review-img{
	margin: 15px;
	float: right;
}

.example-text{
    float: right;
    max-width: 675px;
}

.example-text p{
	margin-bottom: 15px;
}

.example-text p.works-title{
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 23px;
}

.rev-tag{
    text-align: right;
    padding: 35px 40px 0px 0px;
    font-size: 14px;
	font-weight: bold;
	text-decoration: underline;
}

.rev-tag a{
    color: #8A8A8A;
}
/*!block 6*/

/*block 7*/
.block7-wrap{
	background: url(../img/contact.png) no-repeat center -35px #f5f5f3;
    padding: 50px 0px 135px;
    min-height: 560px;
}

.form2{
	
}
/*!block 7*/

/*block 8*/
.other-wrap{
    padding-top: 110px;	
}

.type-list{
	margin-top: 60px;
}

.subtitle{
    font-size: 33px;	
	margin-bottom: 25px;
	line-height: 0.8;
}

.type-item-wrap{
    padding-right: 5px;
    padding-left: 5px;	
}

.type-item{
	position: relative;
}

.type-item-overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	background: transparent;
	z-index: 1;
	display: block;
}

.type-item:hover .type-item-overlay{
	transition: 0.5s;
	display: block;
	/*background: linear-gradient(45deg, rgba(157, 210, 103, 0.7),  rgba(156, 209, 103, 0.7));*/
	background: rgba(157, 210, 103, 0.6);
}

.type-item-img-block{
	background-color: #f6f6f6;
	position: relative;
}

.type-item-img{
	opacity: 0.4;
}

.type-item:hover .type-item-img{
	opacity: 1;
}

.type-item:hover .type-name{
	color: #ffffff;
	text-decoration: underline;
}

.type-name{
    position: absolute;
    z-index: 2;
    top: 80%;
	font-size: 15px;

    left: 10%;
    width: 80%;
}
/*!block 8*/

.map-wrap{
    padding-top: 30px;
}

.footer-map{
	margin-top: 40px;
	width: 100%;
	height: 460px;
}

[class*="ymaps-2"][class*="-ground-pane"] {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.footer{
    margin: 40px 15px;
}

.footer-phones-wrapp{
	float: right;
	line-height: 1.6;
}

.footer-adr{
	margin-top: 25px;
    font-size: 15px;
}

/*forms*/
.call-sbm-wrapp{
    position: relative;
    max-width: 320px;
    margin: 0px 0px 5px 0px;	
}

.fileform{ 
	background-color: #FFFFFF;
    border: 2px solid #e8e8e8;
    cursor: pointer;
    height: 40px;
    overflow: hidden;
    padding: 2px;
    position: relative;
    text-align: left;
    vertical-align: middle;
	margin: 25px 0px;
}
 
.fileform .selectbutton { 
background-color: #A2A3A3;
    border: 1px solid #939494;
    border-radius: 2px;
    color: #FFFFFF;
    float: right;
    font-size: 16px;
    height: 32px;
    line-height: 28px;
    overflow: hidden;
    padding: 2px 10px;
    text-align: center;
    vertical-align: middle;
}
 
.fileform #upload{
    position:absolute; 
    top:0; 
    left:0; 
    width:100%; 
    -moz-opacity: 0; 
    filter: alpha(opacity=0); 
    opacity: 0; 
    font-size: 150px; 
    height: 100%;
	cursor: pointer;
}

.fileform #fileformlabel { 
    background-color: #FFFFFF;
    float: left;
    height: 100%;
    line-height: 33px;
    overflow: hidden;
    padding-left: 10px;
    text-align: left;
    vertical-align: middle;
    width: 160px;
}

.offert{
    position: relative;	
	margin-bottom: 10px;
}

.offert input {
    opacity: 0;
    position: absolute;
}

.offert label{
	cursor: pointer;	
}

.offert label:before{
	content: '';
    cursor: pointer;
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    border-radius: 4px;
    -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
    box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
    background: #fff;
}

.offert input[type=checkbox]:checked+label:after {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 1;
    content: '';
    position: absolute;
	width: 15px;
    height: 7px;
    background: transparent;
    top: 2px;
    left: 2px;
    border: 2px solid #8BC74E;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.offert-text{
    margin-left: 25px;	
}

.footer .slogan{
    font-size: 15px;
	padding-top: 5px;
}

/*.footer .slogan:before{
	margin: 4px 33px;	
}*/

.top-menu-burger{
	display: none;
	background-color: #3e3e3e;
	text-align: center;
	font-size: 13px;
    color: #d2d2d2;
    text-transform: uppercase;
    padding: 10px 0px 5px;
}

.top-menu-burger span{
	vertical-align: top;
    margin-top: 2px;
    display: inline-block;	
}

.top-menu-burger:after {
    content: url(../img/burger.png);
    display: inline-block;
    margin-left: 10px;
}

.top-img-bottle{
	position: relative;
}

.top-block-slider{
	text-align: center;
	margin-top: 20px;
}

.top-block-slider.owl-carousel .owl-nav .owl-next, .top-block-slider.owl-carousel .owl-nav .owl-prev, .top-block-slider.owl-carousel .owl-nav .owl-next:hover, .top-block-slider.owl-carousel .owl-nav .owl-prev:hover{
	top: 20%;
}

.top-slider-item{
	max-width: 80%;
	margin: 0px auto;
	font-weight: bold;
}

.top-slider-item p{
    margin: 0px;
}

.works-w-title, .works-r-title{
    color: #86c06a;
    text-decoration: underline;
    font-size: 20px;
}

.works-r-title{
	margin-top: 10px;
}

//Цифровая этикетка

/* выравнивание контента вертикально и горизонтально */
.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

/* добавляем отступы между блоками на мобильных */
@media (max-width: 768px) {
  .equal-columns > [class*="col-"] {
    margin-bottom: 20px;
  }
}

.modal-city .modal-dialog {
    max-width: 500px;
}
.city-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-item {
    padding: 12px 15px;
    font-size: 16px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.city-item:hover {
    background: #e2e2e2;
}

.city-item.active {
    background: #5cb85c;
    color: #fff;
}


/* Блог на главной */
.blog .card{
  background:var(--card);
  padding:0;
  border-radius:12px;
  border:1px solid var(--border);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:box-shadow .2s ease;
}
.blog .card:hover{
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.blog .thumb{
  width:100%;
  height:160px;
  object-fit:cover;
}

.blog .content{
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}

.blog .eyebrow{
  font-size:12px;
  color:var(--muted);
}

.blog .title{
  font-weight:600;
  font-size:16px;
  color:var(--text);
}

.blog .excerpt{
  color:var(--muted);
  font-size:14px;
  flex:1;
}

.blog .meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:var(--muted);
}
.blog a{color:inherit;text-decoration:none}
.blog a:hover{color:inherit;text-decoration:none}

/* Отступы между категориями */
.category-row {
    margin-bottom: 60px;
}

/* Блок текста — чтобы кнопка не растягивалась */
.category-text-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Кнопка — фикс по всей ширине */
.category-text-block .green-button {
    width: fit-content; /* или auto */
    display: inline-block;
    margin-top: 20px; /* небольшой отступ от текста */
}

/* Обёртка категории — карточка */
.category-card {
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 50px;
}

/* Ховер-эффект */
.category-card:hover {
    border-color: #cce8d0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

/* Картинка + текст внутри — остаётся как есть */
.category-row {
    margin-bottom: 0; /* т.к. теперь отступ у карточки */
}

/* Чтобы кнопка не растягивалась */
.category-text-block {
    display: flex;
    flex-direction: column;
}

.category-text-block .green-button {
    width: fit-content;
    display: inline-block;
    margin-top: 20px;
}

.card-box {
    border: 1px solid #e6e6e6;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    background: #fff;
    transition: 0.25s;
    height: 100%;
}

.card-box img {
    width: 70px;
    margin-bottom: 15px;
}

.card-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-box p {
    font-size: 15px;
    color: #555;
}

.card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #00a046;
}

.adv-ico { width: 60px; height: auto; }

.step-box {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.step-num {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.block6-gallery {
    margin-top: 40px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.work-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 15px;
}

.work-item:hover img {
    transform: scale(1.08);
}

.work-item-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-radius: 15px;
    transition: 0.3s;
}

.work-item:hover .work-item-overlay {
    opacity: 1;
}

.work-item-overlay span {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.advantages-grid .adv-item {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: all .25s ease;
}

.advantages-grid .adv-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.advantages-grid .adv-item h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: 600;
}

.advantages-grid .adv-item p {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
}

.adv-icon img {
    width: 60px;
    height: 60px;
}


.steps-grid .step-box {
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    transition: all .25s ease;
}

.steps-grid .step-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.step-icon img {
    width: 60px;
    height: 60px;
}

.steps-grid h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    font-weight: 600;
}

.steps-grid p {
    font-size: 14px;
    color: #555;
}

.center-row {
    display: flex;
    align-items: center;
}