/* USER VARIABLES SECTION */

:root {
	--accent: #36c;
	--text: #111;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: roboto-st, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face {
	src: url("../fonts/roboto-v29-latin_cyrillic-300.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 300;
	font-display: swap;
	font-style: normal;
}

@font-face {
	src: url("../fonts/roboto-v29-latin_cyrillic-regular.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 400;
	font-display: swap;
}

@font-face {
	src: url("../fonts/roboto-v29-latin_cyrillic-700.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 700;
	font-display: swap;
	font-style: normal;
}

@font-face {
	src: url("../fonts/roboto-v29-latin_cyrillic-900.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 900;
	font-display: swap;
	font-style: normal;
}

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; font-size: 14px; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}

/* USER STYLES */

.image {
	max-width: 100%;
	margin-bottom: var(--bs-gutter-x);
	border-radius: 4px;
}

.accent {
	color: var(--accent);
	font-weight: bold;
}
header {
	display: block;
	position: relative;
	margin-top: 10px;
}
.header-page {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}
.header-page .logo {
	width: 400px;
	display: flex;
	align-items: center;
}
.header-page .logo img{
	width: 150px;
	margin-right: 10px;

}
.header-page .logo span {
	font-size: 12px;
	color: #444;
	line-height: 1.2;
	display: block;
	width: 250px;
	font-weight: 300;
	border-left: 1px solid #999;
	padding-left: 10px;
}
.search-block {
	display: flex;
}
.search-block input {
	width: 300px;
	padding-left: 10px;
	font-weight: 300;
	height: 40px;
	border: 1px solid #e5e5e5
}
.search-block button {
	background-color: #1a4d99;
	border: 1px solid #1a4d99;
	color: #fff;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	margin-left: -5px;
	transition: .25s;
}
.search-block button:hover{
	background-color: #f60;
	border: 1px solid #f60;
}
.mobile-search {
	width: 100%;
	display: none;
	margin-bottom: 20px;
}
.mobile-search .search-block {
	width: 100%;
}
.mobile-search form {
	width: 100%;
	display: flex;
}
.mobile-search .search-block input {
	width: 100%;
}
.header-page .contact {
	display: block;
	position: relative;
}
.header-page .contact a {
	display: block;
	text-align: right;
	color: #333;
	line-height: 1;
	font-size: 14px;
	text-decoration: none;
	transition: .25s;
}
.header-page .contact a:hover{
	opacity: .8;
}
.header-page .contact .phone {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}
.call-block {
	display: block;
	height: 40px;
	line-height: 40px;
	background-color: #f60;
	color: #fff;
	text-decoration: none;
	padding: 0px 15px;
	font-size: 14px;
	transition: .25s;
}
.call-block:hover{
	opacity: .8;
	color: #fff;
}
.menu-icon {
	display: none;
	width: 40px;
	height: 40px;
	background-image: url(../images/icons/menu-icon.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px;
	margin-left: 30px;
	cursor: pointer;
}
.menu-icon-close{
	background-image: url(../images/icons/menu-icon-close.svg);
}
header nav {
	display: block;
	position: relative;
	margin-bottom: 20px;
	background-color: #1a4d99;
}
header nav ul {
	display: flex;
	justify-content: start;
	padding-left: 0;
	margin-bottom: 0;
}
header nav ul li {
	display: inline-block;
	margin-bottom: 0;
}
header nav ul li a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .2px;
	transition: .25s;
}

header nav ul li a:hover {
	color: #fff;
	background: #f60;
}
header nav ul li.current_page_item a {
	color: #fff;
	background: #f60;
}
.nav-container-mobile {
	margin: 10px;
	padding: 10px 0;
}
.nav-container-mobile ul {
	display: block;
}
.nav-container-mobile ul li {
	display: block;
}
.nav-container-mobile ul li a {
	text-align: center;
	width: 230px;
	margin: 0 auto;
}
.main-slider {
	margin-bottom: 40px;
}
.slider-item {
	background-color: #f7f7f7;
	position: relative;
}

.slider-item .img-item{
	height: 300px;
	width: 100%;
	display: block;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}
#slider-main-news .slider-item .img-item{
	height: 200px;
}
.text-slider {
	display: block;
	padding: 15px;
}

.text-slider a {
	font-weight: 700;
	text-transform: uppercase;
	color: #000;
	font-size: 15px;
	line-height: 1.3;
	display: block;
	text-decoration: none;
	transition: .25s;
	height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#slider-main-news .text-slider a{
	height: auto;
}
.text-slider a:hover{
	color: #f60;
}
.slider-item:hover .text-slider a{
	color: #f60;
}
.text-slider p {
	color: #666;
	font-weight: 300;
	font-size: 14px;
	margin-top: 10px;
	height: 65px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
.price-lable {
	display: block;
	height: 30px;
	line-height: 30px;
	background-color: #f60;
	color: #fff;
	text-decoration: none;
	padding: 0px 15px;
	font-size: 14px;
	transition: .25s;
	position: absolute;
	right: 10px;
	top: 10px;
	font-weight: 700;
}
.lSAction > a {
	top: 35%
}
.lSSlideOuter .lSPager.lSpg > li.active a, .lSSlideOuter .lSPager.lSpg > li:hover a {
	background-color: #f60;
}
.title-block {
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 26px;
	line-height: 1.2;
	margin-bottom: 30px;
	margin-top: 10px;
}
.title-b {
	display: block;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 26px;
	line-height: 1.2;
	margin-bottom: 30px;
	margin-top: 10px;
}

.category-wall {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 350px;
	align-items: center;
	column-gap: 20px;
	text-align: center;
	margin-bottom: 50px;
}
.category-wall .cat-item {
	display: block;
	position: relative;
	border: 1px solid #36c;
	height: 100%;
	transition: .25s;
}

.category-wall .cat-item a {
	text-decoration: none;
}
.category-wall .cat-item .name {
	padding: 10px;
	background-color: #36c;
	color: #fff;
	line-height: 1;
	font-size: 18px;
	text-decoration: none;
	transition: .25s;
}
.category-wall .cat-item:hover{
	border: 1px solid #f60;
	transition: .25s;
}
.category-wall .cat-item:hover .name{
	background-color: #f60;
}
.category-wall .last-cat {
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
.category-wall .last-cat p{
	margin-bottom: 0;
	font-size: 24px;
	font-weight: 900;
	color: #ddd;
	line-height: 1.2;
	text-transform: uppercase;
}
.category-wall .last-cat p span{
	margin-bottom: 0;
	font-size: 55px;
	font-weight: 900;
	line-height: 1;
	margin-bottom: 10px;
	color: #ddd;
	display: block;
	text-transform: uppercase;
}
.category-wall .last-cat:hover{
	opacity: 1;
	border: none
}
.popup {
	background-color: #fff;
	width: 300px;
	padding: 15px;
	max-width: 100%;
	text-align: center;
}
.popup .name{
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .2px;
}
.popup .input-block{
	width: 100%;
	margin-bottom: 10px;
}
.popup .input-block input {
	padding-left: 10px;
	width: 100%;
	height: 40px;
	line-height: 40px;
}
.submit-input input{
	display: block;
	width: 200px;
	height: 40px;
	font-size: 18px;
	line-height: 40px;
	margin: 5px auto;
	background-color: #36c;
	color: #fff;
	border: none;
	transition: .25s;
}
.submit-input input:hover{
	background-color: #f60;
}
.close-popup {
	display: block;
	width: 40px;
	height: 40px;
	background-image: url(../images/icons/menu-icon-close.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px;
	margin-left: 30px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0rem;
}

.how-we-work {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 30px;
	margin-bottom: 30px;
}
.how-item {
	border: 2px solid #36c;
	margin-bottom: 30px;
	position: relative;
	min-height: 100px;
	padding: 35px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .25s;
}
.how-item:hover {
	border: 2px solid #f60;
}
.circle {
	width: 60px;
	height: 60px;
	background-color: #36c;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	font-size: 26px;
	border-radius: 50%;
	position: absolute;
	left: -20px;
	top: -20px;
	transition: .25s;
}
.how-item:hover .circle {
	background-color: #f60;
}
.how-text {
	display: flex;
	align-items: center;
	width: 100%;
}
.how-text img{
	max-width: 60px;
	margin-right: 20px;
}
.how-text p {
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 0;
}
.how-text p span {
	font-weight: bold;
	color: #f60;
}
.how-item::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: 16px;
	width: 30px;
	height: 0;
	border-bottom: 2px dashed #f60;
}
.how-item:nth-child(3n)::before, .how-item:nth-child(8n)::before {
	display: none;
}

.featured {
	background-color: #f7f7f7;
	padding: 30px 0;
	margin-bottom: 30px;
}
.pr-items	{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 30px;
	margin-top: 30px;
	text-align: center;
}
.pr-item {
	text-align: center;
}
.pr-item p {
	margin-top: 20px;
	line-height: 1.4;
}
footer {
	padding-top: 20px;
	background-color: #036;
}
.footer-content {
	display: block;
	text-align: center;
}
.footer-content .logo{
	width: 240px;
	margin: 10px auto;
}

.footer-content ul {
	display: flex;
	justify-content: center;
	padding-left: 0;
	margin-bottom: 0;
}
.footer-content ul li {
	display: inline-block;
	margin-bottom: 0;
}
.footer-content ul li a {
	display: block;
	padding: 15px 20px;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .2px;
	transition: .25s;
}

.footer-content ul li a:hover {
	color: #fff;
	text-decoration: underline;
}
.copyrite {
	background-color: #042d56;
	margin-top: 20px;
}
.copyrite p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 0;
	padding: 10px 20px;
	text-align: center;
	font-weight: 300;
	opacity: .6;
}
.breadcrumbs {
	display: flex;
	align-items: center;
	font-size: 14px;
	margin-bottom: 20px;
}
.breadcrumbs p {
	margin-bottom: 0;
	opacity: .8;
}
.breadcrumbs a {
	display: block;
	color: #333;
	font-weight: bold;
	text-decoration: none;
}
.breadcrumbs a:hover{
	color: #f60;
}
.breadcrumbs a:hover:after{
	color: #666;
}
.breadcrumbs a:after {
	content: '>';
	display: inline-block;
	padding-left: 5px;
	font-weight: 300;
	color: #666;
	padding-right: 5px;
}
.header-block {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 250px;
	margin-bottom: 20px;
	background-color: #333;
	margin-top: -30px;
	color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
	
}
.header-block h1 {
	text-shadow: 1px 1px 2px #000;
	font-weight: 900;
}
.content {
	display: grid;
	grid-template-columns: 280px 1fr;
	column-gap: 30px;
}
.sidebar {
	display: block;
	position: relative;
	margin-bottom: 30px;
}
.sidebar-block {
	width: 300px;
	max-width: 100%;
	margin: 0px auto;
}
.manu-cat {
	margin-bottom: 20px;
	background-color: #eee;
	padding: 15px;
}
.manu-cat ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
.manu-cat ul li {
	display: block;
	border-bottom: 1px solid #ddd;
}
.manu-cat ul li a {
	display: inline-block;
	color: #333;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 0;
}

.manu-cat ul li a:hover{
	color: #f60;
}
.manu-cat ul li ul li{
	border-bottom: none;
	position: relative;
}
.manu-cat ul li ul li a {
	font-size: 14px;
	font-weight: 400;
	padding: 4px 0;
	margin-left: 10px;
}
.manu-cat ul li ul li:before{
	content: '- ';
	position: absolute;
}
.list-product {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 20px;
	margin-bottom: 20px;
}
.product-item {
	display: block;
	position: relative;
	margin-bottom: 20px;
	border: 1px solid #eee
}
.product-img {
	width: 100%;
	height: 200px;
}
.product-img img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.product-item .name a {
	font-weight: 700;
	text-transform: uppercase;
	color: #000;
	font-size: 15px;
	line-height: 1.3;
	display: block;
	text-decoration: none;
	transition: .25s;
	height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 20px;
	margin-bottom: 5px;
	padding-left: 5px;
}
.buttons {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr;
}
.buttons p {
	margin-bottom: 0;
	text-align: center;
	background-color: #1a4d99;
	height: 40px;
	line-height: 40px;
	color: #fff;
}
.more-info {
	display: block;
	text-align: center;
	color: #fff;
	background-color: #f60;
	text-decoration: none;
	height: 40px;
	line-height: 40px;
	font-weight: 300;
	transition: .25s;
}
.more-info:hover{
	opacity: .8;
	color: #fff;
}
.short{
	font-weight: 300;
	font-size: 14px;
	height: 42px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 5px;
}
.product-item:hover .name a{
	color: #f60;
}
.pagination {
	text-align: center;
	margin-bottom: 30px;
}
.pagination a {
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	text-decoration: none;
	color: #fff;
	background-color: #f60;
	display: inline-block;
	transition: .25s;
	margin-right: 5px;
}
.pagination span {
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	text-decoration: none;
	color: #333;
	background-color: #ddd;
	display: inline-block;
	margin-right: 5px;
}
.pagination a:hover{
	color: #333;
	background-color: #ddd;
}
.button-side {
	display: none;
	text-align: center;
	margin-bottom: 10px;
	background: #f60;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
	background-image: url(../images/icons/menu.svg);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: left 30px center;
	width: 300px;
	max-width: 100%;
	margin: 0px auto;
}
.product h1, .article-body h2{
	font-weight: 900;
	font-size: 24px;
	line-height: 1.3;
}
.gallery-product {
	display: block;
	position: relative;
	margin-bottom: 30px;
}
#imageGallery img{
	width: 100%;
}
.gallery-product .lSAction > a {
	top: 50%
}
.lSSlideOuter .lSPager.lSGallery img {
	height: 75px;
	border-radius: 0px;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li {
	border: 2px solid #fff;
	transition: .25s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
	border-radius: 0px;
	border: 2px solid #f60
}
#imageGallery li {
	position: relative;
}
#imageGallery li:before {
	content: '';
	display: block;
	position: absolute;
	right: 20px;
	top: 10px;
	background-color: rgba(51,102,204,.2);
	width: 60px;
	height: 60px;
	z-index: 2;
	background-image: url(../images/icons/zoom.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.stock-status {
	display: block;
	padding-left: 20px;
	height: 20px;
	line-height: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.stock-status.green-status {
	color: green;
	background-image: url(../images/icons/check-circle-regular.svg);
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: left center;
}
.stock-status.red-status {
	color: red;
	padding-left: 0;
	background-image: none;
}
.text-product table{
	margin: 20px 0;
	width: 635px;
	max-width: 100%;
}
.text-product table td{
	border: 1px solid #eee;
	padding: 8px 15px;
}
.text-product table td:first-child {
	font-weight: bold;
	font-size: 18px;
}
.text-product table td:nth-child(2n) {
	font-weight: 300;
}
.text-product .buttons {
	width: 460px;
	column-gap: 30px;
}
.text-product .price {
	font-weight: bold;
	font-size: 18px;
}
.text-product .price span {
	font-weight: 300;
	margin-right: 5px;
}
.text-product .more-info {
	font-weight: normal;
}

.bordered-table table{
	margin: 20px 0;
	width: 635px!important;
	max-width: 100%;
}
.bordered-table table td{
	border: 1px solid #eee;
	padding: 4px 10px;
}
.bordered-table table td:first-child {
	font-weight: 700;
}
.bordered-table table td:nth-child(2n) {
	font-weight: 300;
}
.bordered-table table tr:nth-child(even) {
	background-color: #f5f5f5;
}
.bordered-table table tr:hover {
	background-color: #ddd;
}
.lity-close {
	display: none;
}
article {
	padding-bottom: 20px;
}
article img{
	max-width: 100%;
}
article h1 {
	font-weight: 700;
}
.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 30px;
}
.news-grid .slider-item {
	margin-bottom: 30px;
}
.news-grid .slider-item .img-item {
	height: 200px;
}
.date-news {
	font-size: 14px;
	color: #666;
	font-weight: 300;
}
.align-left {
	float: left;
	padding: 10px 0;
	margin-right: 20px;
	margin-bottom: 20px;
}
.title-contact {
	font-weight: bold;
	font-size: 18px;
}
.phones, .emails {
	margin-top: 20px;
}

.phones a, .emails a {
	color: #333;
	font-size: 18px;
	text-decoration: none;
	margin-right: 30px;
}
.phones a:hover, .emails a:hover{
	color: #f60;
	transition: .25s;
}
.form-block {
	display: block;
	margin-top: 30px;
	width: 700px;
	max-width: 100%;
}
.flex-row {
	display: flex;
	justify-content: space-between;
}
.form-block form .input-block input {
	width: 100%;
	padding-left: 10px;
	font-weight: 300;
	height: 40px;
	display: inline-block;
	margin-bottom: 10px;
	border: 1px solid #e5e5e5
}
.form-block form .input-row input {
	padding-left: 10px;
	font-weight: 300;
	height: 40px;
	margin-right: 10px;
	margin-bottom: 10px;
	border: 1px solid #e5e5e5
}
.form-block form .input-row {
	display: inline-block;
}
.form-block form textarea {
	width: 100%;
	padding-left: 10px;
	font-weight: 300;
	height: 200px;
	margin-bottom: 5px;
	font-size: 14px;
	border: 1px solid #e5e5e5
}
.form-block form .submit-input input {
	background-color: #1a4d99;
	border: 1px solid #1a4d99;
	color: #fff;
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	width: 300px;
	transition: .25s;
}
.form-block form .submit-input input:hover{
	background-color: #f60;
	border: 1px solid #f60;
}
.manu-cat ul li.current-menu-item a{
	color: #f60;
}

.manu-cat ul li.current-menu-item ul li a{
	color: #333;
}
.wpcf7-spinner {
	display: none;
}
.wpml-ls-legacy-dropdown-click {
    width: auto;
	margin-right: 15px
}
.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
    height: 40px;
    line-height: 28px;
    width: 78px;
    border: 1px solid #ebebef;
    padding-left: 22px;
    font-weight: 700;
}
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
    padding: 10px;
    border: none;
    text-align: center;
}
iframe{
	max-width: 100%
}


.gallery-columns-6 {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: 15px;
}
.gallery-columns-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 15px;
}
.gallery-columns-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 15px;
}
.gallery-columns-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 15px;
}
.gallery-columns-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 15px;
}
.gallery-columns-6 .gallery-item {
	width: 100%!important;
	height: 150px;
	margin-top: 0!important;
}
.gallery-columns-5 .gallery-item {
	width: 100%!important;
	height: 150px;
	margin-top: 0!important;
}
.gallery-columns-4 .gallery-item {
	width: 100%!important;
	height: 200px;
	margin-top: 0!important;
}
.gallery-columns-3 .gallery-item {
	width: 100%!important;
	height: 250px;
	margin-top: 0!important;
}
.gallery-columns-2 .gallery-item {
	width: 100%!important;
	height: 300px;
	margin-top: 0!important;
}

.gallery-columns-6 .gallery-item img{
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.gallery-columns-5 .gallery-item img{
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.gallery-columns-4 .gallery-item img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}


.gallery-columns-3 .gallery-item img{
	width: 100%;
	height: 250px;
	object-fit: cover;
}


.gallery-columns-2 .gallery-item img{
	width: 100%;
	height: 300px;
	object-fit: cover;
}




.gallery .gallery-item img {
	display: block;
	border:  none!important;
	border-radius: 10px;
	box-shadow: 0 0 29px rgba(51, 51, 51, 0.27);
}

.gallery .gallery-item a{
	position: relative;
}
.gallery .gallery-item a {
	border:  none;
	display: block;
	position: relative;
}
.gallery .gallery-item a:hover {
	background-color: #fff;
	transition: background-color .25s;
	cursor: pointer;
}
.gallery .gallery-item a:hover:before {
	background-color: rgba(0, 0, 0, .32);
	background-image: url(../images/icons/plus.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
}
.gallery .gallery-item a:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: transparent;
	background-image: url(../images/icons/plus.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 0px;
	z-index: 1;
	transition: .2s;
	border-radius: 10px;
}
.gallery br {
	display: none;
}
.gallery .gallery-item a:hover {
  background-color: #fff;
  transition: background-color .25s;
  cursor: pointer;
}

