/* --------------------------------------------------------
Style Sheet for LaCruz.it

version: 1.3
last modified: 24.02.2022
author: Paolo Pizzuti
email: info@paolopizzuti.it
website: https://www.paolopizzuti.it
----------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
	--main-color: rgba(206,19,45,1);
	--main-color-darker: rgba(167,17,38,1);
	--secondary-color: rgba(17,17,17,1);
	--header-height: 66px;
	--transition-duration: .3s;
}

* {
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-weight: normal;
	line-height: 1.3em;
	margin: 0;
	padding: 0;
;
}
/* STARTERS */
*, :after, :before {
	box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
}
.clearfix:after {
  clear: both;
}
.container {
	//max-width: 1140px;
}
body, html {
	background-color: rgb(248,248,248);
	font-size: 14px;
}
body.menuopen {
	overflow: hidden;
}
ul {
	margin: 0;
}
main {
	padding-top: 100px;
}
main#home, main#product {
	padding-top: 0;
}
section {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}
section.dark {
	background-color: var(--secondary-color);
	padding-top: 100px;
	padding-bottom: 100px;
}
a, a:hover, a:visited, a:active {
	color: inherit;
	text-decoration: none;
}
input, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: 0;
	border: 0;
	border-radius: 0;
}
h1,h2,h3,h4,h5,h6 {
	line-height: 1.3;
}
h1 {
	font-size: 3rem;
}
p {
	font-size: 1.2rem;
	line-height: 1.4;
}
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark p {
	color: #fff;
}	
strong {
	font-weight: 600;
}
header {
	position: sticky;
	top: 0;
	z-index: 100;
}
img {
	width: 100%;
	height: auto;
}
header.lc-header {
	background-color: #fff;
}
header.lc-header .lc-header-container {
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
header.lc-header .lc-logo {
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 120px;
	background-color: #fff;
	display: block;
	padding: 18px;
	z-index: 10;
	transition-duration: var(--transition-duration);
}
header.lc-header .lc-logo img {
	transform: translateX(4px);
}
body.scroll header.lc-header .lc-logo {
	padding: 8px;
	width: var(--header-height);
	height: var(--header-height);
}
header.lc-header .lc-d-nav {
	font-size: 0; // Avoid gap between inline child elements
}
header.lc-header .lc-d-nav ul {
	margin: 0;
	padding: 0;
}
header.lc-header .lc-d-nav li {
	display: inline-block;
	margin: 0 4px;
	margin-right: 20px;
	position: relative;
}
header.lc-header .lc-d-nav li a {
	color: var(--secondary-color);
	display: block;
	font-size: 1rem;
	font-weight: 500;
	padding: 2px 0px;
}
header.lc-header .lc-d-nav li:after {
	content: "";
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	border-radius: 5px;
	height: 2px;
	bottom: 0;
	left: 0;
	background: var(--main-color);
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
header.lc-header .lc-d-nav li:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
header.lc-header .lc-tools {
	height: 100%;
	background-color: var(--main-color);
	display: flex;
}
header.lc-header .lc-tools .lc-search {
}
header.lc-header .lc-tools .lc-search,
header.lc-header .lc-tools .lc-search form {
	height: 100%;
}
header.lc-header .lc-tools .lc-search input {
	border: 0;
	height: 100%;
	width: 160px;
	padding: 15px;
	outline: 0;
	background-color: transparent;
	color: #fff;
	transition-duration: var(--transition-duration);
}
header.lc-header .lc-tools .lc-search input::placeholder {
	color: #fff;
	transition-duration: var(--transition-duration);
}
header.lc-header .lc-tools .lc-search input:focus::placeholder {
	color: transparent;
}
header.lc-header .lc-tools .lc-search input:focus {
	width: 230px;
}
header.lc-header .lc-tools .lc-m-nav {
	width: var(--header-height);
	height: 100%;
	background-color: var(--main-color);
}
header.lc-header .lc-tools .lc-m-nav .hamburger-menu-button {
	z-index: 1200;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--header-height);
	height: var(--header-height);
	cursor: pointer;
}
header.lc-header .hamburger-menu-button .menu-button-line {
	position: relative;
	width: 70%;
	height: 2px;
	background-color: #fff;
	z-index: 10001;
	opacity: 1;
	transition: var(--transition-duration) ease-in-out;
}
header.lc-header .hamburger-menu-button .menu-button-line:before,
header.lc-header .hamburger-menu-button .menu-button-line:after {
	content:"";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: var(--transition-duration) ease-in-out;
}
header.lc-header .hamburger-menu-button .menu-button-line:before {
	top: -10px;
}
header.lc-header .hamburger-menu-button .menu-button-line:after {
	bottom: -10px;
}
body.menuopen .hamburger-menu-button .menu-button-line {
	background-color: transparent;
}
body.menuopen .hamburger-menu-button .menu-button-line:before {
	transform-origin: top center;
	transform: rotate(45deg) translateY(7px) translateX(7px);
	background-color: var(--main-color);
}
body.menuopen .hamburger-menu-button .menu-button-line:after {
	transform-origin: bottom center;
	transform: rotate(-45deg) translateY(-7px) translateX(7px);
	background-color: var(--main-color);
}
header.lc-header .lc-tools .lc-m-nav .lc-nav {
	position: fixed;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	background-color: white;
	z-index: 10000;
	padding: 50px;
	padding-top: 100px;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-duration) ease-in-out;
}
body.menuopen header.lc-header .lc-tools .lc-m-nav .lc-nav {
	opacity: 1;
	visibility: visible;
	overflow-y: scroll;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-topbar {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background-color: white;
	z-index: 10;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-topbar .logo {
	width: 50px;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-topbar .logo img {
	width: 100%;
	height: auto;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-block {
	float: left;
	width: 25%;
	margin-bottom: 30px;
	padding-right: 30px;
	z-index: 9;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-block h3 {
	color: var(--main-color);
	font-size: 1.4rem;
	text-transform: uppercase;
	margin-bottom: 30px;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-block .lc-nav-sub h4 {
	color: var(--secondary-color);
	font-size: 1.2rem;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-block .lc-nav-sub li {
	line-height: 1;
	margin-bottom: 5px;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-block .lc-nav-sub li a {
	font-weight: 300;
	font-size: .8rem;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-block .lc-nav-sub {
	margin-bottom: 30px;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-block .lc-nav-sub:last-of-type {
	margin: 0;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-mobile-blocks {
	display: none;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-mobile-blocks nav li {
	margin-bottom: 10px;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-mobile-blocks nav li a  {
	position: relative;
	font-size: 2rem;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-mobile-blocks nav li a:after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	border-radius: 5px;
	height: 2px;
	bottom: -4px;
	left: 0;
	background: var(--main-color);
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-mobile-blocks nav li a:hover:after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-desktop-blocks {
	display: block;
}
header.lc-header .lc-tools .lc-lang {
	position: relative;
	width: var(--header-height);
	height: 100%;
	background-color: var(--main-color-darker);
	color: #fff;
	font-size: 1.2rem;
	font-weight: 500;
}
header.lc-header .lc-tools .lc-lang .lc-lang-current {
	position: absolute;
	width: var(--header-height);
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
header.lc-header .lc-tools .lc-lang .lc-lang-menu {
	position: absolute;
	// width: 200px;
	right: 0;
	top: var(--header-height);
	background-color: var(--main-color-darker);
	z-index: 10;
	padding: 35px;
	opacity: 0;
	pointer-events: none;
	// transform: translateX(20px);
	transition: var(--transition-duration);
}
header.lc-header .lc-tools .lc-lang .lc-lang-menu ul {
	transform: translateX(20px);
	transition: var(--transition-duration);
}
header.lc-header .lc-tools .lc-lang.active .lc-lang-menu ul {
	transform: translateX(0px);
}
header.lc-header .lc-tools .lc-lang .lc-lang-menu li a {
	display: block;
	font-weight: 300;
	font-size: 1.2rem;
	padding: 6px;
}
header.lc-header .lc-tools .lc-lang.active .lc-lang-menu {
	opacity: 1;
	pointer-events: unset;
	transform: translateX(0);
}
section.lc-intro {
	margin-bottom: 30px;
	padding: 0;
}
section.lc-intro .lc-content {
	height: 580px;
	background-image: url(../images/dan-meyers-0AgtPoAARtE-unsplash.jpg);
	background-position: center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
section.lc-intro .lc-content h1 {
	text-align: center;
	color: #fff;
	font-weight: 600;
	padding: 0 15px;
}
section.lc-intro .lc-content .lc-quick-links {
	max-width: 550px;
	margin-top: 30px;
	font-size: 0;
}
section.lc-intro .lc-content .lc-quick-links ul {
	text-align: center;
}
section.lc-intro .lc-content .lc-quick-links li {
	display: inline-block;
	margin: 2px;
}
section.lc-intro .lc-content .lc-quick-links li a {
	display: inline-block;
	background-color: #fff;
	padding: 5px 10px;
	font-size: 1.2rem;
	font-weight: 400;
	transition-duration: var(--transition-duration);
}
section.lc-intro .lc-content .lc-quick-links li a:hover {
	background-color: var(--main-color);
	color: #fff;
}
section.lc-intro .lc-home-search {
	width: 100%;
	height: var(--header-height);
	position: absolute;
	bottom: 0;
	transform: translateY(50%);
	padding: 0 15px;
}
section.lc-intro .lc-home-search .lc-src-form {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}
section.lc-intro .lc-home-search .lc-src-form,
section.lc-intro .lc-home-search .lc-src-form form {
	height: 100%;
}
section.lc-intro .lc-home-search .lc-src-form form {
	display: flex;
	overflow: hidden;
}
section.lc-intro .lc-home-search .lc-src-form input {
	height: 100%;
	border: 0;
	padding: 20px;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
section.lc-intro .lc-home-search .lc-src-form input::placeholder {
	transition-duration: var(--transition-duration);
}
section.lc-intro .lc-home-search .lc-src-form input:focus::placeholder {
	opacity: 0;
}
section.lc-intro .lc-home-search .lc-src-form button {
	width: var(--header-height);
	height: var(--header-height);
	background-color: var(--main-color);
	border: 0;
	font-size: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	cursor: pointer;
}
section.lc-intro .lc-home-search .lc-src-form button svg {
	fill: #fff;
	width: 22px;
}
section .lc-title {
	margin-bottom: 70px;
}
section .container-fluid .lc-title {
	padding-left: 15px;
	padding-right: 15px;
}
section [class*='col'] .lc-title {
	//margin-bottom: 40px;
}
section .lc-title h2 {
	text-align: center;
	position: relative;
	font-size: 2.2rem;
	color: var(--secondary-color);
}
section.dark .lc-title h2 {
	color: #fff;
}
section [class*='col'] h2 {
	text-align: left;
}
section .lc-title h2:after {
	content:"";
	position: absolute;
	bottom: -20px;
	width: 100px;
	height: 3px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--main-color);
}
section [class*='col'] h2:after {
	left: 0;
	transform: none;
}
section.lc-banner .lc-banner-container a {
	display: block;
}
section.lc-banner .lc-banner-container a img {
	width: 100%;
	height: auto;
}
section.lc-q-links .lc-link .picture {
	width: 100%;
	height: 250px;
	position: relative;
	overflow: hidden;
	padding: 1px;
	font-size: 0;
}
section.lc-q-links .lc-link .picture img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
section.lc-q-links .lc-link .links {
	padding: 15px;
}
section.lc-q-links .lc-link .links h3 {
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: 10px;
}
section.lc-q-links .lc-link .links ul {
	text-align: center;
	font-size: 0;
}
section.lc-q-links .lc-link .links li {
	display: inline-block;
}
section.lc-q-links .lc-link .links li a {
	font-size: .9rem;
	padding: 0px 8px;
	color: #888;
	border-left: 1px solid #888;
}

section.lc-q-links .lc-link .links li a:hover {
	text-decoration: underline;
}
section.lc-q-links .lc-link .links li:first-of-type a {
	border-left: none;
}

section.lc-slide-blocks .container-fluid {
	padding-left: 0;
	padding-right: 0;
}
section.lc-slide-blocks .swiper-slide {
	height: 350px;
	width: 350px !important;
	background-color: #fff;
}

.swiper-button {
	width: 60px;
	height: 60px;
	border: 1px solid #ccc;
	outline: 0;
}
.swiper-button svg {
	fill: #ccc;
	width: 15%;
	z-index: 10;
}
.swiper-button.swiper-button-prev svg {
	transform: rotate(180deg);
}
.swiper-button:after {
	display: none;
}
section.lc-q-links.services {
	background-color: #fff;
}
section.lc-video-full {
	display: none;
}
section.lc-video-full .lc-video-container {
	height: 600px;
	overflow: hidden;
}
section.lc-video-full .lc-video-container video {
	object-fit: cover;
	width: 100%;
}
.lc-header-image {
	position: relative;
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}
.lc-header-image img {
	width: 100%;
	height: auto;
}
.lc-breadcrumbs ul {
	font-size: 0;
}
.lc-breadcrumbs li {
	display: inline-block;
	position: relative;
	padding-right: 10px;
	padding-left: 6px;
}
.lc-breadcrumbs li:first-of-type {
	padding-left: 0;
}
.lc-breadcrumbs li a {
	display: block;
	font-size: .8rem;
	color: #000;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 200px;
}
.lc-breadcrumbs li:after {
	content: "›";
	position: absolute;
	font-size: 1rem;
	top: 0px;
	right: 0px;
}
.lc-breadcrumbs li:last-of-type a {
	font-weight: 600;
}
.lc-breadcrumbs li:last-of-type:after {
	content: "";
}
.lc-next-prev {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.lc-next-prev a {
	font-size: .8rem;
	font-weight: 500;
	color: var(--secondary-color);
}
.lc-next-prev a:hover span {
	text-decoration: underline;
}
section.lc-full-image picture {
	position: relative;
	display: block;
	width: 100%;
	height: 400px;
	overflow: hidden;
}
section.lc-full-image picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section.lc-content .lc-image {
}
section.lc-content .lc-image img {
	width: 100%;
	height: auto;
	position: sticky;
	position: -webkit-sticky;
	top: 20px;
}
section.lc-slide-services .swiper-slide .lc-service {
	width: 100%;
	height: 400px;
	background-color: #fff;
	display: flex;
}
section.lc-slide-services .swiper-slide .lc-service .lc-service-image {
	height: 100%;
	width: 400px;
	overflow: hidden;
}
section.lc-slide-services .swiper-slide .lc-service .lc-service-image img {
	object-fit: cover;
	width: 100%;
}
section.lc-slide-services .swiper-slide .lc-service .lc-service-text {
	flex: 1;
	padding: 100px;
}
section.lc-why-choose .lc-box {
	text-align: center !important;
}
section.lc-why-choose .lc-box img {
	width: 60%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 30px;
}
section.lc-why-choose .lc-box h4 {
	text-transform: uppercase;
	min-height: 60px;
}
section.lc-why-choose .lc-box p {
	font-size: 1.1rem;
}
section.lc-products .lc-container {
	
}
section.lc-products aside {
	position: sticky;
	top: 160px;
	width: 250px;
	margin-right: 30px;
	float: left;
}
section.lc-products .sidebar h5 {
	color: var(--main-color);
	margin-bottom: 20px;
}
section.lc-products .sidebar a.lc-back {
	display: block;
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--main-color);
}
section.lc-products .sidebar ul {
	
}
section.lc-products .sidebar li {
	margin-bottom: 5px;
}
section.lc-products .sidebar li a {
	font-size: .9rem;
	display: block;
	padding: 2px 0;
	font-weight: 500;
}
section.lc-products .sidebar li.lc-active a {
	font-weight: 600;
	color: var(--main-color);
}

section.lc-products .lc-list {
	float: right;
	width: calc(100% - 250px);
}
section.lc-products .lc-list .lc-title {
	margin-bottom: 30px;
}
section.lc-products .lc-list .lc-title h2 {
	font-size: 2rem;
	margin-bottom: 50px;
}
section.lc-products .lc-list .lc-title p {
	font-size: 1rem;
}
section.lc-products .lc-list .lc-title h2:after {
	width: 50px;
}
section.lc-products .lc-list .lc-single {
	margin-top: 15px;
	margin-bottom: 15px;
}
section.lc-products .lc-list .lc-single a {
	display: block;
}
section.lc-products .lc-list .lc-single .image {
	overflow: hidden;
}
section.lc-products .lc-list .lc-single .image img {
	width: 100%;
	height: auto;
}
section.lc-products .lc-list .lc-single h3 {
	text-align: center;
	font-size: 1rem;
	margin: 15px 0;
	font-weight: 600;
}
section.lc-products .lc-list .lc-single.lc-brand h3 {
	text-align: left;
}
section.lc-products .lc-list .lc-single h4 {
	text-align: center;
	font-size: .85rem;
	margin: 15px 0;
	padding: 0 15px;
	font-weight: 400;
}
section.lc-products .lc-list .lc-single h4 .code {
	display: block;
	font-weight: 600;
}
section.lc-products .lc-list .lc-single .lc-brand-logo {
	margin-top: 10px;
	min-height: 50px;
	//text-align: center;
}
section.lc-products .lc-list .lc-single .lc-brand-logo img {
	width: 70%;
	mix-blend-mode: multiply;
}
section.lc-products .lc-list .lc-single li a {
	padding-left: 10px;
	background-image: url(../images/dot-arrow.svg);
	background-size: 4px;
	background-position: center left;
	background-repeat: no-repeat;
}
section.lc-products .lc-list .lc-single li a {
	font-size: .9rem;
}
section.lc-products .lc-list .lc-single li a:hover {
	text-decoration: underline;
}
section.lc-single-product .lc-product-image {
	padding-right: 80px;
}
section.lc-single-product .lc-product-image .fotorama__thumb-border {
	border-color: var(--main-color);
}
section.lc-single-product .lc-product-description h1 {
	font-size: 1.6rem;
	margin-bottom: 10px;
	font-weight: 500;
}
section.lc-single-product .lc-product-description .lc-code {
	font-size: .8rem;
	line-height: 1.4;
}
section.lc-single-product .lc-product-description .lc-product-text {
	margin: 40px 0;
}
section.lc-single-product .lc-product-description .lc-product-text h2 {
	font-size: 1.3rem;
	font-weight: 500;
}
section.lc-single-product .lc-product-description .lc-product-text li {
	font-size: .9rem;
}
section.lc-single-product .lc-product-description .lc-product-submit {
	max-width: 60%;
}
section.lc-single-product .lc-product-description .lc-q {
	font-size: 1rem;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 15px;
}
section.lc-single-product .lc-product-description .lc-product-text .more-indented {
  padding-left: 2em;
}
section.lc-products.lc-product-related {
	background-color: #eee;
}
section.lc-products.lc-product-related .lc-list {
	width: 100%;
	float: none;
}
section.lc-products.lc-product-related .lc-list h2 {
	text-align: center;
}
section.lc-products.lc-product-related .lc-list h2:after {
	left: 50%;
	transform: translateX(-50%);
}
section.lc-download .lc-download-single a {
	display: block;
	position: relative;
}
section.lc-download .lc-download-single .lc-download-image {
	position: relative;
	overflow: hidden;
}
section.lc-download .lc-download-single .lc-download-image img {
	width: 100%;
	height: auto;
}
section.lc-download .lc-download-single .lc-download-image .lc-download-button {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,.15);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	//transform: translateY(10%);
	transition-duration: var(--transition-duration);
}
section.lc-download .lc-download-single .lc-download-image .lc-download-button div {
	display: block;
	padding: 12px;
	width: 60%;
	background-color: var(--main-color);
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(30%);
	//transition-delay: .1s;
	transition-duration: var(--transition-duration);
}
section.lc-download .lc-download-single:hover .lc-download-image .lc-download-button,
section.lc-download .lc-download-single:hover .lc-download-image .lc-download-button div {
	opacity: 1;
	transform: translateY(0);
}
section.lc-download .lc-download-single .lc-download-title {
	text-align: center;
	padding: 14px 10px;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1rem;
}
.lc-global-submit {
	display: inline-block;
	background-color: var(--main-color);
	color: #fff !important;
	font-size: .9rem;
	font-weight: 500;
	text-transform: uppercase;
	padding: 16px 50px;
}
.lc-global-submit:hover {
	color: #fff;
}

section.lc-news .lc-single-news {
	margin-bottom: 20px;
}
section.lc-news .lc-single-news.lc-single-news-first {
	margin-bottom: 50px;
}
section.lc-news .lc-single-news.lc-single-news-first a.lc-news-link {
	display: flex;
	flex-direction: row;
}
section.lc-news .lc-single-news.lc-single-news-first .lc-news-image {
	width: 65%;
	height: 450px;
}
section.lc-news .lc-single-news.lc-single-news-first .lc-news-excerpt {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: left;
}
section.lc-news .lc-single-news.lc-single-news-first .lc-news-excerpt h2,
section.lc-news .lc-single-news.lc-single-news-first .lc-news-excerpt p {
	text-align: left;
}
section.lc-news .lc-single-news.lc-single-news-first .lc-news-excerpt p {
	flex: 1;
}
section.lc-news .lc-single-news.lc-single-news-first .lc-news-excerpt .lc-read-all {
	text-align: center;
}
section.lc-news .lc-single-news .lc-news-image {
	width: 100%;
	height: 350px;
	overflow: hidden;
}
section.lc-news .lc-single-news a.lc-news-link {
	display: block;
}
section.lc-news .lc-single-news .lc-news-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
section.lc-news .lc-single-news .lc-news-excerpt {
	padding: 35px;
	text-align: center;
	background-color: #fff;
}
section.lc-news .lc-single-news .lc-news-excerpt h2 {
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
}
section.lc-news .lc-single-news .lc-news-excerpt p {
	text-align: center;
	font-size: 1rem;
}
section.lc-news .lc-single-news .lc-news-excerpt .lc-read-all {
	display: inline-block;
	background-color: var(--main-color);
	color: #fff;
	padding: 8px 20px;
	text-transform: uppercase;
	font-weight: 500;
}
section.lc-single .lc-article {
	width: calc(100% - 250px);
	padding-right: 50px;
	float: left;
}
section.lc-single .lc-article .lc-article-text {
	padding: 75px;
}
section.lc-single .lc-article picture {
	width: 100%;
	height: 450px;
	overflow: hidden;
	display: block;
}
section.lc-single .lc-article picture img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
section.lc-single .lc-article .lc-article-text {
	background-color: #fff;
}
section.lc-single .lc-article .lc-article-text h1 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 25px;
}
section.lc-single aside {
	width: 250px;
	float: right;
}
section.lc-single aside .lc-single-news {
	margin-bottom: 25px;
}
section.lc-single aside .lc-single-news:last-of-type {
	margin: 0;
}
section.lc-single aside .lc-single-news .lc-news-image {
	width: 100%;
	height: 150px;
	overflow: hidden;
}
section.lc-single aside .lc-single-news .lc-news-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
section.lc-single aside .lc-single-news .lc-news-excerpt {
	padding: 20px 0;
}
section.lc-single aside .lc-single-news .lc-news-excerpt h2 {
	font-size: 1.2rem;
	font-weight: 600;
}
section.lc-single aside .lc-single-news .lc-news-excerpt p {
	font-size: 1rem;
}
section.lc-single aside .lc-single-news .lc-news-excerpt .lc-read-all {
	font-weight: 600;
	text-decoration: underline;
}
section.lc-contacts .lc-title p {
	margin-top: 50px;
	font-size: 1.8rem;
	font-weight: 500;
}
section.lc-contacts .lc-title p a {
	text-decoration: underline;
}
section.lc-contacts address {
	margin: 0;
}
section.lc-contacts .lc-social {
	margin-top: 30px;
}
section.lc-contacts .lc-social .lc-social-icon {
	width: 50px;
	display: inline-block;
	margin-right: 4px;
}
section.lc-contacts .lc-social .lc-social-icon img {
	width: 100%;
	height: auto;
}
section.lc-contact-form .lc-title h3 {
	text-align: center;
}
section.lc-contact-form .lc-form {
	position: relative;
	background-color: white;
	padding: 60px 60px 120px 60px;
}
section.lc-contact-form .lc-form form {
	margin-top: 30px;
}
section.lc-contact-form .lc-form .lc-field {
	margin-bottom: 20px;
}
section.lc-contact-form .lc-form .lc-field label {
	font-size: .8rem;
	color: #888;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}
section.lc-contact-form .lc-form .lc-field input,
section.lc-contact-form .lc-form .lc-field textarea {
	width: 100%;
	border: 1px solid #ddd;
	padding: 14px 18px;
	font-size: 1.1rem;
	transition-duration: var(--transition-duration);
}
section.lc-contact-form .lc-form .lc-field textarea {
	height: 200px;
}
section.lc-contact-form .lc-form .lc-field input:focus,
section.lc-contact-form .lc-form .lc-field textarea:focus {
	border-color: var(--main-color);
}
section.lc-contact-form .lc-form .lc-field input[type=radio] {
	padding: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border-width: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 4px;
	cursor: pointer;
	flex-shrink: 0;
}
section.lc-contact-form .lc-form .lc-field input[type=radio]:before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background-color: var(--main-color);
	border-radius: 50%;
	opacity: 0;
	transition-duration: var(--transition-duration);
}
section.lc-contact-form .lc-form .lc-field input[type=radio]:checked:before {
	opacity: 1;
}
section.lc-contact-form .lc-form button {
	width: 240px;
	height: 60px;
	background-color: var(--main-color);
	cursor: pointer;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
section.lc-contact-form .lc-form button img {
	width: 40px;
	transition-duration: var(--transition-duration);
}
section.lc-contact-form .lc-form button:hover img {
	transform: translateX(5px);
}



footer .lc-newsletter {
	background-color: #222;
}
footer .lc-newsletter .lc-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 0;
}
footer .lc-newsletter .lc-content h4 {
	color: #fff;
	font-size: 1.8rem;
	margin-right: 30px;
}
footer .lc-newsletter .lc-content form {
	flex: 1 1 auto;
	display: flex;
}
footer .lc-newsletter .lc-content form input {
	padding: 20px;
	height: 60px;
	border: 1px solid rgba(255,2555,255,.2);
	background-color: transparent;
	max-width: 400px;
	width: 100%;
	color: #fff;
}
footer .lc-newsletter .lc-content form input::placeholder {
	opacity: 1;
	transition-duration: var(--transition-duration);
}
footer .lc-newsletter .lc-content form input:focus::placeholder {
	opacity: 0;
}
footer .lc-newsletter .lc-content form button {
	height: 60px;
	width: 60px;
	background-color: var(--main-color);
	border: 0;
	cursor: pointer;
	flex-shrink: 0;
}
footer .lc-newsletter .lc-content form button img {
	width: 60%;
	transition-duration: var(--transition-duration);
}
footer .lc-newsletter .lc-content form button:hover img {
	transform: translateX(3px);
}
footer .lc-footer {
	background-color: var(--secondary-color);
	padding-top: 70px;
	padding-bottom: 70px;
}
footer .lc-footer-col,
footer .lc-footer-col h5 {
	color: #fff;
	font-size: .9rem;
	line-height: 2em;
}
footer .lc-footer-col a:hover {
	text-decoration: underline;
}
footer .lc-footer .lc-footer-col h5 {
	padding: 0;
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
}
footer .lc-footer .address.lc-footer-col a {
	text-decoration: underline;
}
footer .lc-footer .logo svg {
	fill: #fff;
	width: 100px;
}
footer .lc-bottom-footer {
	background-color: var(--secondary-color);
}
footer .lc-bottom-footer .container {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid rgba(255,255,255,.15);
}
footer .lc-bottom-footer .lang ul {
	text-align: right;
	width: 100%;
}
footer .lc-bottom-footer .lang li {
	display: inline;
	margin-right: 4px;
}
footer .lc-credits {
	background-color: var(--secondary-color);
	color: white;
	font-size: 12px;
	text-align: right;
}
footer .lc-credits .container {
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid rgba(255,255,255,.15);
}
footer .lc-credits a {
	//color: var(--main-color);
	text-decoration: underline;
}
@media screen and (max-width: 1024px) {
	header.lc-header .lc-d-nav li {
		margin: 0;
		margin-right: 15px;
		position: relative;
	}
	header.lc-header .lc-tools .lc-search input {
		width: 130px;
	}
	header.lc-header .lc-tools .lc-search input:focus {
		width: 180px;
	}

}
@media screen and (max-width: 768px) {
	main {
		padding-top: 35px;
	}
	header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-topbar {
		justify-content: flex-start;
	}
	header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-nav-topbar {
		margin-left: 50px;		
	}
	header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-mobile-blocks {
		display: block;
	}
	header.lc-header .lc-tools .lc-m-nav .lc-nav .lc-desktop-blocks {
		display: none;
	}
	header.lc-header .lc-logo {
		padding: 8px;
		width: var(--header-height);
		height: var(--header-height);
	}
	header.lc-header .lc-d-nav {
		display: none;
	}
	section.lc-products aside {
		// display: none;
		display: block;
		position: relative;
		width: 100%;
		margin: 0;
		float: none;
		top: auto;
		margin-bottom: 30px;
		font-size: 0;
	}
	section.lc-products aside h5 {
		display: none;
	}
	section.lc-products .sidebar li {
		display: inline-block;
		margin: 0 2px 2px 0;
		font-size: 0;
	}
	section.lc-products .sidebar li a {
		display: block;
		background-color: #ccc;
		padding: 3px 5px;
		color: ;
	}
	section.lc-products .sidebar li.lc-active a {
		background-color: var(--main-color);
		color: white;
	}
	section.lc-products .lc-list {
		float: none;
		width: auto;
	}
	section.lc-news .lc-single-news.lc-single-news-first .lc-news-image {
		width: 50%;
		height: 350px;
	}
	section.lc-news .lc-single-news .lc-news-image {
		height: 250px; 
	}
	section.lc-single .lc-article {
		width: 100%;
		padding-right: 0;
		float: none;
	}
	section.lc-single .lc-article + aside {
		display: none;
	}
	section.lc-single .lc-article picture {
		height: 300px;
	}
	section.lc-contacts .lc-map {
		margin-top: 35px;
		height: 450px;
	}
}
@media screen and (max-width: 576px) {
	section.lc-intro .lc-content {
		height: 70vh;
	}
	section {
		padding-top: 35px;
		padding-bottom: 35px;
	}
	section.lc-slide-blocks .swiper-slide {
		height: 300px;
		width: 200px !important;
	}
	.lc-header-image {
		height: 150px;
	}
	.lc-breadcrumbs li a {
		max-width: 100px;
	}
	section.lc-single-product .lc-product-image {
		padding-right: 15px;
		margin-bottom: 30px;
	}
	section.lc-news .lc-single-news.lc-single-news-first {
		margin-bottom: 20px;
	}
	section.lc-news .lc-single-news.lc-single-news-first a.lc-news-link {
		display: block;
	}
	section.lc-news .lc-single-news.lc-single-news-first .lc-news-excerpt h2, section.lc-news .lc-single-news.lc-single-news-first .lc-news-excerpt p {
		text-align: center;
	}
	section.lc-news .lc-single-news.lc-single-news-first .lc-news-image {
		width: 100%;
		height: 250px;
	}
	section.lc-download .lc-download-single .lc-download-image .lc-download-button div {
		width: 90%;
		font-size: .8rem;
	}
	section.lc-contact-form .lc-form {
		padding: 30px 30px 60px 30px;
	}
	footer .lc-newsletter .lc-content {
		display: block;
	}
	footer .lc-newsletter .lc-content h4 {
		margin: 0 0 20px 0;
	}
}
@media screen and (max-width: 414px) {
	section.lc-full-image picture {
		height: 300px;
	}
	.lc-next-prev {
		margin-bottom: 20px;
	}
	.lc-next-prev a {
		font-size: .9rem;
	}
	section.lc-single .lc-article picture {
		height: 250px;
	}
	section.lc-single .lc-article .lc-article-text {
		padding: 35px;
	}
	section.lc-single .lc-article .lc-article-text h1 {
		font-size: 2rem;
	}
}
@media screen and (max-width: 320px) {
	header.lc-header .lc-tools .lc-search input:focus {
		width: 130px;
	}

}
/* DEBUG 
* { outline: 2px dotted red }
* * { outline: 2px dotted green }
* * * { outline: 2px dotted orange }
* * * * { outline: 2px dotted blue }
* * * * * { outline: 1px solid red }
* * * * * * { outline: 1px solid green }
* * * * * * * { outline: 1px solid orange }
* * * * * * * * { outline: 1px solid blue }
*/
