:root {
	--light-green: #C7CEBF;
	--black: #333333;
	--brown: #564734;
	--green: #32482B;
	--middle: #677C77;
	--light: #E0EFEA;
	--white: #FFFFFF;
	--dark-green: #293E23;
}

.container {
	min-width: 1620px;
}

body, html {
	padding: 0px;
	margin: 0px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	line-height: 160%;
	background-color: #EDF6F1;
/*	background-color: #f0f0f0;*/
/*	background-color: #EDF6F1;*/
}

.header-top {
/*	background: var(--light-green);*/
/*	border-bottom: 1px solid var(--middle);*/
	padding-left: 25px;
	padding-right: 25px;
}

.header-secondary {
/*	background: var(--light-green);*/
	background-color: #edf6f1;
}

.text-small {
	font-size: 80%;
}

.menu {
	padding: 0px;
	margin: 0px;
	list-style: none;
}

.menu li{
	display: inline-block;
	padding: 7px;
}

.menu li a{
	text-decoration: none;
	color: #454545;
}

.header-secondary {
	padding-left: 25px;
	padding-right: 25px;
}
.logo {
	font-size: 18pt;
	font-weight: bold;

}
.phone-number {
	font-size: 15pt;
	display: block;
}

* {
/*	border: 1px solid #ff0000*/
}

.header-promo {
	background-color: #C7DDBF;
	min-height: 70vh;
}

.buttons-grid {
	background-color: #fff;
	padding: 15px;
	border-radius: 10px;
}

.buttons-grid .btn{
	margin-bottom: 10px;
}

.products {
	padding-top: 45px;
	display: grid;
	grid-gap: 15px
}

.columns-2 {
	grid-template-columns: repeat( auto-fit, minmax(100px, 1fr));
}

.columns-3 {
	grid-template-columns: repeat( auto-fit, minmax(150px, 1fr));
}

.columns-4 {
	grid-template-columns: repeat( auto-fit, minmax(150px, 1fr));
}

.btn-primary {
	background-color: var(--light);
	border-color: var(--light);
	color: var(--dark-green);
}

.btn-primary.active {
	background-color: var(--green);
	border-color: var(--green);
}


.product-img img {
	width: 100%;
	height: 250px;
	object-fit: contain;
	border-radius: 20px;
	transition: all 0.5s;
}

.product-img img:hover {
	width: 100%;
	height: 250px;
	border-radius: 20px;
	box-shadow: 1px 1px 20px 10px rgba(0,0,0,0.115);
	transform: scale(1.02);
	transition: all 0.5s;
}

.tech-info {
	position: relative;
/*	background-color: var(--green);*/
	color: var(--light);
	display: grid;
	grid-template-columns: 1fr 4fr;
}

.tech-content {
/*	background-color: var(--dark-green);*/
	padding: 40px;
}

.tech-menu {
	position: sticky;
	top: 0px;
 	padding: 35px;
 	list-style: none;
}

.tech-menu-item {
	border-bottom: 1px solid var(--middle);
}

.tech-menu-item:hover {
	background-color: rgba(0,0,0,0.1);
}

.tech-menu-item a {
	padding: 20px 15px;
	color: var(--light);
	text-decoration: none;
	display: block;
}

.tech-menu-item a.active {
	background-color: var(--dark-green);
}

.container {
	max-width: 1440px;
}

.footer	{
	margin-top: 35px;
	background-color: var(--green);
	color: var(--light);
	padding-top: 65px;
}


.text-header {
	font-size: 140%;
	font-weight: 500;
	margin-top: 0.5em;
	margin-bottom: 0.3em;
}

.sert-block img {
	 width: 100%;
	 border-radius: 15px;
	 height: 150px;
	 object-fit: cover;
}


.promo-link {
	color: #ffffff; 
	font-size: 24px; 
	border-right: 1px solid #445F3C; 
	padding: 20px; 
	background-color: #32482B90;
}

.promo-link:hover {
	background-color: #32482Bff;
	cursor: pointer;
}

.promo-link.active {
	background-color: #B2886E90;
	cursor: pointer;
}

.promo-link:hover.active {
	background-color: #B2886E90;
	cursor: pointer;
}


.catalog {
	padding-top: 68px;
	padding-bottom: 68px;
/*	background-color: #e0e5e0;*/
	background-color: #EDF6F1;
}

.review {
	margin-top: 100px;	
}

.tech-info-block {
/*	margin-top: 100px;		*/
}

.social-icon {
	color: #ffffff;
	font-size: 24px;
	margin-right: 3px;
	cursor: pointer;
	padding: 7px;
	border-radius: 7px;
	transition: all 0.5s;
}

.social-icon:hover {
	color: var(--darg-green);
	background-color: var(--light);
	transition: all 0.5s;
}


.footer-menu {
	list-style: none;
	padding: 0px;
}

.footer-menu li a {
	color: var(--light);
	text-decoration: none;
}

.footer-menu li a:hover {
	color: var(--middle);
}

.product-items {
	background-color: #fff;
}

.product-items .product-name {
	padding-left: 1em;
	font-weight: 500;
	margin-right: auto;
}

.product-items .product-price {
	font-weight: 500;
	font-size: 120%;
	padding-right: 1em;
}

.product-items .product-body {
	display: flex;
	width: 100%;
	padding-top: 0.5em;
}




.contacts {
	margin-top: 100px;
}

.contacts .container {
	background-color: #E0EFEA; min-height: 200px; border-radius: 20px; padding: 0px;
}

.contacts .wrapper {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}


.contacts .text-block {
	padding: 10%;
}

.header-secondary {
/*	display: none;*/
}

.footer {
/*	display: none;*/
}

.catalog {
/*	display: none;*/
}

.logo-img {
	height: 30px;
}



.product-card {
	background-color: #ffffff;
	border: 1px solid #ffffff;
	margin-bottom: 2em;
	transition: all 0.2s;
/*	border-radius: 10px;*/
	padding: 15px;
	box-shadow: 1px 1px 7px 1px rgba(0,0,0,0.115);
}

.product-card:hover {
	transform: scale(1.03);
	border: 1px solid #f0f0f0;
/*	box-shadow: 1px 1px 10px 10px rgba(150,150,150,0.115);*/

}

.product-card__img {
	background-color: #ffffff;
	padding: 5px;
}

.product-card__body {
/*	background-color: #f0f0f0;*/
	padding: 5px;
}

.product-card__tools {
	display: grid;
	grid-template-columns: 1fr 40px 40px;
	grid-gap: 10px;
}

.product-card__tools .cart{
	border: 1px solid #f0f0f0;
	text-align: center;
	vertical-align: middle;
	border-radius: 7px;
	padding-top: 7px;
	color: #999999;
}

.product-card__tools .fav{
	color: #999999;
	border: 1px solid #f0f0f0;
	text-align: center;
	vertical-align: middle;
	border-radius: 7px;
	padding-top: 7px;
}

.product-card__price {
	font-weight: 600;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(228,242,230,1) 100%);
	padding: 7px;
	border-radius: 7px;
}

.product-card__img img {
	width: 100%;
	height: 250px;
	object-fit: contain;
}


.simple-link {
	text-decoration: none;
	color: #333333;
	font-weight: 500;
	line-height: 140%!important;
	display: block;
	margin-bottom: 1em;
}

.simple-link:hover {
	color: green;
}


.content-page {
	min-height: 100vh;
/*	padding-top: 25px;*/
/*	background-color: #edf6f1;*/
/*	padding-bottom: 60px;*/
}

.breadcrumb li a {
	text-decoration: none;
	color: #333333;
}

.card {
/*	box-shadow: 0 4px 25px 0 rgb(168 180 208 / 10%);*/
	box-shadow: 0 4px 25px 0 rgb(168 180 208 / 30%);
	border: none;
}

.simple-ul {
	list-style: none;
	padding: 0px;
}

a {
	text-decoration: none;
	color: #005500;
}

a:hover {
	color: #339933;
}

.price-block {
	background-color: #f5f5f5;
	border-radius: 10px;
	padding: 15px;
	font-size: 150%;
}


.product-sizes {
	display: flex;
	flex-wrap: wrap;
}

.product-size {
	padding: 10px;
	border: 1px solid #f0f0f0;
	margin-top: 0.5em;
	margin-right: 1em;
	border-radius: 7px;
	background-color: var(--light-green);
}

.product-size:hover {
	background-color: var(--green);
	color: #ffffff;
	cursor: pointer;
}

.mobile-header {
	position: fixed;
	top: 0px;
	z-index: 1001;
	width: 100vw;
	background-color: #fff;
	height: 48px;
	padding-left: 25px;
}

.menu-button {
	font-size: 140%;
}

.mobile-menu {
	position: absolute;
	top: 0px;
	left: 100vw;
	z-index: 1001;
	background-color: #fff;
	width: 100vw;
	height: 100vh;
	transition: all 0.3s;
}

.mobile-menu.open {
	left: 0vw;
	transition: all 0.2s;
}


.mobile-menu ul {
	padding-left: 25px;
	list-style: none;
	line-height: 200%;
}



.btn-primary:hover {
	background-color: var(--green);
	color: #ffffff;
}

.bg-red-cyan {
	background: rgb(227,19,53);
	background: linear-gradient(125deg, rgba(227,19,53,1) 33%, rgba(77,197,215,1) 70%);
}

.bg-blue-cyan{
	background: rgb(27,41,64);
	background: linear-gradient(90deg, rgba(27,41,64,1) 0%, rgba(51,157,233,1) 50%, rgba(38,129,196,1) 100%);
}

.bg-green-light{
	background: rgb(41,62,35);
	background: linear-gradient(125deg, rgba(41,62,35,1) 0%, rgba(103,124,119,1) 65%, rgba(50,72,43,1) 100%);
}

.main-swiper .swiper-slide {
	height: 600px!important;
}

.swiper-controls {
	position: absolute;
	left: auto!important;
	right: 0px!important;
	width: 100%!important;
	bottom: 0px!important;
	background-color: rgba(68, 85, 51, .5);
	height: 48px;
	text-align: left;
	z-index: 1000;
	display: flex;
	padding-bottom: 5px;
	padding-top: 5px;
}


.swiper-control {
	cursor: pointer;
	padding: 10px;
	display: flex;
	align-items: center;
	position: relative;
	height: 100%;
	color: #ffffff;
	background-color: rgba(0,0,0,0.5);
	margin-left: 7px;
	border-radius: 5px;
/*	border-left: 1px solid rgba(136, 170, 119, .5);*/
/*	border-right: 1px solid rgba(136, 170, 119, .5);*/
	border-top: 7px solid rgba(136, 170, 119, .5);
/*	border-bottom: 2px solid rgba(136, 170, 119, .5);*/
}

.swiper-control:hover {
	background-color: rgba(34, 68, 34, 1.0);
}



.swiper-slide h2 {
	font-size: 60px;
}



.slide-grid-2 {
	display: grid; 
	grid-template-columns: 1fr 1fr;
}


@media all and (max-width: 667px) {
	.tech-info {
		grid-template-columns: 1fr;
	}

	.tech-menu {
		display: none;
	}

	.tech-content {
		padding: 0px;
		width: 100%;
	}


	.slide-grid-2 {
		display: grid; 
		grid-template-columns: 1fr;
	}

	.slide-grid-2 .column-2{
		display: none;
	}

	.header-secondary {
		padding: 0px;
	}
	.catalog {
		font-size: 10pt;
	}

	.logo-img {
		height: 15px;
	}

	.swiper-slide h2 {
		font-size: 42px;
		text-align: center;
	}

	.swiper-slide h4, .swiper-slide h5 {
/*		font-size: 42px;*/
		text-align: center;
	}

	.content-page {
		margin-top: 60px;
	}

}

.menu_item {
	font-size: 110%;
	font-weight: 400;
}



.input-group-over {
	position: relative;
	display: flex;
}

.input-group-over .btn {
	position: absolute;
	right: 0px;
	top: 1px;
	border: none;
}

.input-group-over .form-control::placeholder {
	color: #b0b0c0;
}


.tabs-block {
	padding-top: 45px;
	padding-bottom: 45px;
	margin-top: 25px;
}

.text-header {
	color: #ffffff;
}

.tabs-menu {
 list-style: none;
 padding: 0px;
}

.tabs-menu-item {
	padding-top: 10px;
	padding: 10px;
	border-bottom: 1px solid var(--middle);
 }

.tabs-menu-item:hover {
 	background-color: #293E23;
}

 .tabs-menu-item.active {
 	background-color: #293E23;
 }

.tabs-menu-item a {
	color: #ffffff;
}

.buttons-grid {
	line-height: 185%;
}
.buttons-grid>ul {
	list-style: none;
	padding: 0px;
}

.buttons-grid>ul>li {
/*	background-color: #EDF6F1;*/
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 5px;
	margin-bottom: 2px;
	font-weight: bold;
	border-radius: 5px;
}

.buttons-grid>ul>li>a {
	display: block;
}

.buttons-grid>ul>ul {
	list-style: none;
	padding-left: 0px;
}

.buttons-grid>ul>ul a {
	padding-left: 1em;
	display: block;
	margin: 0px;
}

.buttons-grid>ul>ul>li {
	border-radius: 5px;
/*	background-color: #EDF6F1;*/
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 1px;
}

.buttons-grid>ul>ul>li.active {
	background-color: #518C52;
}

.buttons-grid>ul>li.active {
	background-color: #518C52;
}

.buttons-grid>ul>ul>li.active a{
	color: #ffffff;
}

.buttons-grid>ul>li.active a{
	color: #ffffff;
}

.buttons-grid>ul>ul>li:hover {
	background-color: #fff;
}

.buttons-grid>ul>li:hover {
	background-color: #fff;
}


.buttons-grid>ul>ul>li.active:hover {
	background-color: #67A768;
}

.buttons-grid>ul>li.active:hover {
	background-color: #67A768;
}



.text-link {
	color: inherit;
}

/*
.catalog-items {
	padding: 10px;
	background-color: #f0f0f0;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(12, 1fr);
}

.catalog-items div:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1/2;
}

.catalog-items div:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1/2;
}

.catalog-items div:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 2/3;
}

.catalog-items div:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2/3;
}

.catalog-items div:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2/3;
}

.catalog-items div:nth-child(6) {
    grid-column: 1 / 4;
    grid-row: 3/4;
}

.catalog-items div:nth-child(7) {
    grid-column: 4 / 7;
    grid-row: 3/4;
}

.catalog-items div:nth-child(8) {
    grid-column: 7 / 10;
    grid-row: 3/4;
}

.catalog-items div:nth-child(9) {
    grid-column: 10 / 13;
    grid-row: 3/4;
}
*/

/*
.catalog-items div:nth-child(2) {
    grid-column: 7 / 11;
    grid-row: 1/2;
}

.catalog-items div:nth-child(2) {
    grid-column: 1 / 11;
    grid-row: 2/3;
}
*/

.img-contain {
	object-fit: contain!important;
}




.gallery-tile {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: repeat(3,300px);
	grid-gap: 10px;	
	margin-top: 65px;
	min-width: 1024px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.gallery-item:nth-child(1)
{
	grid-column: 1 / 3;
	grid-row: 1/3;
}

.gallery-item:nth-child(2)
{
	grid-column: 3 / 5;
	grid-row: 1/2;
}

.gallery-item:nth-child(5)
{
	grid-column: 4 / 6;
	grid-row: 2/3;
}


.gallery-item {
 	position: relative;
 	overflow: hidden;
 	background-color: #fff;
 	border-radius: 10px;
 	padding: 15px;
 	transition: all 0.45s;
}

.gallery-1 { background-color: rgba(255, 153, 0, 0.8); color: #ffffff;}
.gallery-2 { background-color: rgba(102, 204, 255, 0.8); color: #333333;}
.gallery-3 { background-color: rgba(0, 204, 102, 0.8); color: #ffffff;}
.gallery-4 { background-color: rgba(149, 149, 149, 0.8); color: #ffffff;}
.gallery-5 { background-color: rgba(15, 122, 122, 0.8); color: #ffffff;}
.gallery-6 { background-color: rgba(136, 153, 119, 0.8); color: #ffffff;}


.gallery-text {
	position: absolute;
	top: 100%;
	padding: 10px;
	line-height: 140%;
	min-height: 100%;
	width: 100%;
	transition: all 0.5s;
}

.gallery-item:hover .gallery-text {
/*	top: 0px;
	bottom: 0%;
	min-height: auto;
	transition: all 0.5s;
	cursor: pointer;
*/}

.gallery-item img {
/*	opacity: 0.5;*/
	object-fit: contain;
	transition: all 1.5s;
}

.gallery-item:first-child img {
	filter: hue-rotate(0deg);	
	opacity: 1;
}

.gallery-item:hover {
	transition: all 0.45s;
	box-shadow: 2px 2px 20px 10px rgba(100,100,100,0.115);
}

.gallery-item:hover img {
	opacity: 1;
	/*transform: scale(1.1, 1.1);*/
	transition: all 0.5s;
	transform: scale(1.2, 1.2) rotate(5deg);
}


.bg-light-green {
	background: var(--middle);
}

@media all and (max-width: 997px)
{
	.gallery-item img {
		opacity: 0.9;
		transition: all 2.5s;
	}

	.menu-item {
		font-size: 11px;
	}
	.menu-item_image {
		bottom: 10px;
	}
	.menu-item_image img {
		width: 18px;
		height: 18px;
	}

	.menu-item {
		height: 90px;
	}
	.top-container .logo-img {
		width: 100%;
	}

	.gallery-section {
		overflow: scroll;
		width: 100%;
	}

}


.groups-container {
	margin-top: 35px;
	margin-bottom: 35px;
}

.group-box {
	padding: 5px;
	box-shadow: 1px 1px 10px 5px rgba(0,0,0,0.215);
	margin-bottom: 1em;
	transition: all 0.3s;
/*	background: rgb(8,129,113);
	background: linear-gradient(52deg, rgba(8,129,113,1) 0%, rgba(57,173,157,1) 100%);	
*/

background: rgb(12,120,84);
background: linear-gradient(52deg, rgba(12,120,84,1) 0%, rgba(86,182,122,1) 100%);


/*background: rgb(50,72,43);
background: linear-gradient(52deg, rgba(50,72,43,1) 0%, rgba(81,140,82,1) 100%);
*/

/*background: rgb(8,129,48);
background: linear-gradient(52deg, rgba(8,129,48,0.700717787114846) 0%, rgba(57,173,68,0.700717787114846) 100%);
*/
	border-radius: 10px;
}


.group-box .icon {
	color: rgb(12,120,84);
}

.group-box .arrow {
	color: rgb(12,120,84);
}


.group-box:hover {
	transform: scale(1.05);
}

.group-box-inner {
	color: #ffffff;
	display: grid;
	grid-template-columns: 1fr 50px;
/*	border: 1px solid #f0f0f0;*/
	padding: 0px 15px;
/*	background-color: #ffffff;*/
/*	font-weight: bold;*/
	font-size: 18pt;
/*	text-transform: uppercase;*/
	min-height: 180px;
}
.group-box-inner-img {
	padding: 15px;
	padding-left: 25px;
 	height: 100%; position: absolute; right: 0px; top: 0px
}

.group-box-text {
/*	position: absolute; */
/*	background-color: rgba(34, 51, 34, 0.2); */
	width: 100%; 
	height: 100%; 
	left: 0px; 
	top: 0px; 
	padding-top: 25px;
	padding-left: 15px;
	padding-right: 25px;
}

.group-box:hover {
	background-color: rgba(34, 51, 34, 0.2); 
	transition: all 0.3s;
/*	transform: scale(1.05);*/
}

.img-pointer {
	cursor: pointer;
}

.live-photo {
	margin-bottom: 22px;
	transition: all 0.3s;
	border: 1px solid #f0f0f0;
}

.live-photo:hover {
	transform: rotate(2deg) scale3d(1.15, 1.15, 1.15);
	transition: all 0.3s;
	border: 15px solid #ffffff;
	box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.115);
/*	margin-bottom: 32px;*/
}



.news-item {
	margin-bottom: 3em;
/*	background-color: #EDF6F1;*/
	background-color: #ffffff;
	border-radius: 25px;
}

.news-item .news-image-block {
/*	padding: 25px;*/
}

.news-item .news-content {
	padding: 15px 25px;
}

.news-item .news-image {
	 border-radius: 15px;
}

.news-caption {
	font-weight: bold;
	color: #293E23;
	font-size: ;
}