@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
* {
	font-family: "Inter", sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}

:root {
	--mainColor: #111;
	--hoverColor: #b12828;
	--maxWidth: 1280px;
	--fancybox-accent-color: #b12828;
}

::-moz-selection {
	background-color: var(--hoverColor);
	color: #111;
}

::selection {
	background-color: var(--hoverColor);
	color: #111;
}

.wrapper {
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
}

body {
	min-height: 100vh;
}

.fancybox__container {
	color: var(--hoverColor);
}

div.topbar {
	display: none;
	background-color: #000;
}
div.topbar section.topbar {
	display: flex;
	flex-direction: column;
	align-items: center;
}
div.topbar section.topbar div.contact {
	text-align: center;
	margin: 5px 0;
	background-color: transparent;
	color: #fff;
	font-weight: 300;
}
div.topbar section.topbar div.contact a {
	font-weight: 500;
	color: #fff;
}
div.topbar section.topbar div.contact a:hover {
	color: var(--hoverColor);
}
div.topbar section.topbar div.form {
	position: relative;
	width: 85%;
	margin: 5px 0;
	height: 35px;
}
div.topbar section.topbar div.form input {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	border: 1.5px solid var(--hoverColor);
	background: linear-gradient(135deg, #151515 0%, #000000 100%);
	padding-left: 10px;
	color: #fff;
}
div.topbar section.topbar div.form input:focus {
	outline: var(--hoverColor) solid 2px;
}
div.topbar section.topbar div.form button {
	position: absolute;
	background-color: transparent;
	color: #fff;
	font-size: 18px;
	border: 0;
	outline: 0;
	width: 50px;
	height: 100%;
	right: 0;
	border-radius: 0 8px 8px 0;
}

nav {
	width: 100%;
	position: sticky;
	top: 0;
	background-color: var(--mainColor);
	z-index: 999;
	transition: top 0.5s ease, background-color 0.5s ease;
}
nav .nav-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 100%;
	transition: background-color 0.3s;
}
nav .nav-container.active {
	background-color: #111;
}
nav .nav-container img {
	height: 65px;
	width: auto;
	justify-self: start;
	margin-left: 20px;
	transition: 0.3s;
}
nav .nav-container img:hover {
	transform: scale(1.03);
}
nav .nav-container .burger {
	flex-direction: column;
	justify-content: end;
	align-items: center;
	margin-right: 20px;
	background: none;
	border: none;
}
nav .nav-container .burger .line {
	width: 28px;
	height: 4px;
	background: #fff;
	margin: 10px;
	border-radius: 20px;
	transition: 0.3s ease-in-out;
}
nav .nav-container .burger.active .line:first-child {
	transform: rotate(45deg) translate(4px, 4px);
	background-color: #fff;
}
nav .nav-container .burger.active .line:nth-child(2) {
	transform: rotate(-45deg) translate(6px, -6px);
	background-color: #fff;
}
nav .nav-container .subline {
	opacity: 0;
	position: absolute;
	width: calc(100% - 40px);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 1.5px;
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	transition: opacity 0.5s;
}
nav .nav-container .subline.active {
	opacity: 1;
}
nav .nav-container .ul-container {
	display: flex;
	justify-content: space-between;
	/* max-height: 0; */
	opacity: 0;
	pointer-events: none;
	overflow-x: hidden;
	overflow-y: scroll;
	transition: max-height 0.3s ease-in-out;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #111;
	list-style-type: none;
	height: calc(100vh - 80px);
	width: 100%;
	flex-direction: column;
	padding-top: 20px;
	transition: opacity 0.5s;
	font-weight: normal;
	z-index: 100;
}
nav .nav-container .ul-container .links-container li a.active {
	color: var(--hoverColor);
}
nav .nav-container .ul-container .links-container .submenu {
	list-style-type: none;
}
nav .nav-container .ul-container .links-container .submenu p.active {
	color: var(--hoverColor);
}
nav .nav-container .ul-container .links-container .submenu .submenu-btn {
	font-size: 20px;
	margin-left: 20px;
	margin-right: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	transition: color 0.3s;
	cursor: pointer;
}
nav .nav-container .ul-container .links-container .submenu .submenu-btn:hover {
	color: var(--hoverColor);
}
nav .nav-container .ul-container .links-container .submenu .submenu-btn i {
	position: absolute;
	right: 0;
	margin-right: 20px;
}
nav .nav-container .ul-container .links-container .submenu .submenu-content {
	position: absolute;
	display: flex;
	overflow-y: scroll;
	opacity: 0;
	pointer-events: none;
	flex-direction: column;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	transform: translateX(100%);
	z-index: 50;
	background-color: #111;
	transition: transform 0.5s ease-out, opacity 0.2s ease-out;
	padding: 30px 20px 0;
}
nav
	.nav-container
	.ul-container
	.links-container
	.submenu
	.submenu-content.active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}
nav .nav-container .ul-container .links-container .submenu .submenu-content a {
	font-size: 15px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 0.2px solid #ddd;
}
nav
	.nav-container
	.ul-container
	.links-container
	.submenu
	.submenu-content
	a:first-of-type {
	font-size: 13px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	color: #ddd;
	border-bottom: none;
	letter-spacing: normal;
	cursor: pointer;
}
nav
	.nav-container
	.ul-container
	.links-container
	.submenu
	.submenu-content
	a:first-of-type
	i {
	padding-right: 10px;
}
nav .nav-container .ul-container.active {
	opacity: 1;
	pointer-events: auto;
	scroll-behavior: unset;
}
nav .nav-container .ul-container a {
	font-size: 20px;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: normal;
	/* position: relative; */
	/* padding: 10px; */
	letter-spacing: 2px;
	color: #fff;
	transition: color 0.3s;
}
nav .nav-container .ul-container a p {
	margin-left: 20px;
	margin-right: 20px;
}
nav .nav-container .ul-container a:hover {
	color: red;
}
nav .nav-container .ul-container li {
	margin-top: 15px;
}
nav .nav-container .ul-container .contact-links {
	margin-bottom: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
nav .nav-container .ul-container .contact-links li a {
	font-size: 15px;
	font-weight: normal;
	text-transform: none;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	padding: 20px 25px;
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	color: #fff;
	border-radius: 8px;
	transition: background-color 0.3s;
}
nav .nav-container .ul-container .contact-links li a:hover {
	background-color: var(--hoverColor);
}
nav .nav-container .ul-container .contact-links li a i {
	font-size: 20px;
	padding-right: 8px;
}
nav .nav-container .ul-container .contact-links li:last-of-type {
	margin-top: 60px;
}

header {
	position: relative;
	z-index: 200;
}
header .header-carousele {
	position: relative;
	height: calc(100vh - 90px);
	width: 100%;
	overflow: hidden;
	background-color: var(--mainColor);
}
header .header-carousele .slick-track {
	display: flex !important;
}
header .header-carousele .slick-slide {
	height: 100vh !important;
}
header .header-carousele .card {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
header .header-carousele .card:nth-of-type(1) .image {
	background-image: url(../img/header/header-mobile.webp);
}
header .header-carousele .card:nth-of-type(2) .image {
	background-image: url(../img/header/header2-mobile.webp);
}
header .header-carousele .card .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}
header .header-carousele .card .image img {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	width: 100%;
	transform: scale(1.05);
}
header .header-carousele .card .image img.zooming {
	animation: zoomIn 9s ease-in-out forwards;
}
@keyframes zoomIn {
	from {
		transform: scale(1.05);
	}
	to {
		transform: scale(1.15);
	}
}
header .header-carousele .card .image .shadow {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgb(0, 0, 0);
}
header .header-carousele .card .shadow {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}
header .header-carousele .card .description {
	position: absolute;
	bottom: 25%;
	left: 50%;
	width: 100%;
	padding: 0 10px;
	transform: translate(-50%, 0);
	color: #fff;
	text-align: center;
}
header .header-carousele .card .description span {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 8px;
	border: 1px solid var(--hoverColor);
	background-color: rgba(21, 21, 21, 0.6);
}
header .header-carousele .card .description p {
	margin: 0 20px 50px;
	font-size: 18px;
}
header .header-carousele .card .description h1 {
	font-size: 40px;
	font-weight: 500;
	margin-top: 15px;
	margin-bottom: 20px;
}
header .header-carousele .card .description a {
	padding: 20px 40px;
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid #d0d5dd;
	font-size: 14px;
	font-weight: bold;
	transition: border 0.3s, color 0.3s;
}
header .header-carousele .card .description a:hover {
	color: #111;
	border: 1px solid #111;
}

.features {
	padding: 60px 0;
	background-color: #000;
	border-top: 1px solid var(--hoverColor);
}
.features .container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 20px;
}
.features .container .card {
	position: relative;
	height: 220px;
	width: 100%;
	color: #fff;
	border: 1px solid #272727;
	background: linear-gradient(
		172deg,
		rgb(0, 0, 0) 0%,
		rgb(16, 16, 16) 50%,
		rgb(0, 0, 0) 100%
	);
	border-radius: 8px;
	overflow: hidden;
	z-index: 0;
}
.features .container .card:hover img {
	left: 0;
}
.features .container .card h2 {
	font-weight: 600;
	font-size: 32px;
	margin: 20px 10px;
	z-index: 1000;
}
.features .container .card:nth-of-type(2) img {
	bottom: -30px;
	width: 250px;
}
.features .container .card:nth-of-type(3) img {
	bottom: -30px;
	width: 200px;
}
.features .container .card img {
	position: absolute;
	bottom: -15px;
	left: -30px;
	width: 300px;
	transition: left 1s ease-in-out;
	z-index: -10;
}
.features .container .card a {
	position: absolute;
	bottom: 15px;
	right: 15px;
	z-index: 1000;
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	padding: 15px 20px;
	background: linear-gradient(0deg, rgb(21, 21, 21) 0%, rgb(9, 9, 9) 100%);
	border-radius: 8px;
	border: 1px solid var(--hoverColor);
	transition: background 0.3s, background-color 0.3s, color 0.3s;
}
.features .container .card a i {
	padding-left: 10px;
}
.features .container .card a:hover {
	background: none;
	background-color: #ddd;
	color: #000;
}

.offer {
	padding: 15px 0;
	background: linear-gradient(
		180deg,
		rgb(0, 0, 0) 0%,
		rgb(24, 24, 24) 50%,
		rgb(36, 36, 36) 100%
	);
	border-bottom: 1px solid #fff;
}
.offer .description {
	padding: 0 20px;
}
.offer .description p {
	font-size: 16px;
	color: var(--hoverColor);
	margin-bottom: 10px;
}
.offer .description h2 {
	font-weight: 600;
	font-size: 36px;
	color: #fff;
}
.offer .container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 40px 20px;
	color: #fff;
}
.offer .container .card {
	padding: 30px 20px;
	background-color: #121212;
	box-shadow: 1px 4px 9px 0 rgba(0, 0, 0, 0.15),
		5px 16px 17px 0 rgba(0, 0, 0, 0.13), 11px 36px 23px 0 rgba(0, 0, 0, 0.08),
		20px 65px 27px 0 rgba(0, 0, 0, 0.02), 31px 101px 30px 0 rgba(0, 0, 0, 0);
	border-radius: 8px;
}
.offer .container .card i {
	margin-bottom: 8px;
	color: var(--hoverColor);
	font-size: 32px;
}
.offer .container .card h3 {
	font-size: 20px;
	font-weight: 600;
}
.offer .container .card p {
	font-size: 14px;
	margin-top: 15px;
	color: #e6e6e6;
	line-height: 150%;
}

.info {
	background: linear-gradient(
		180deg,
		rgb(36, 36, 36) 0%,
		rgb(20, 20, 20) 50%,
		rgb(0, 0, 0) 100%
	);
}
.info .container {
	padding: 40px 20px 50px;
	color: #fff;
}
.info .container .image {
	display: none;
}
.info .container .description h2 {
	color: var(--hoverColor);
	font-weight: 600;
	margin-bottom: 15px;
}
.info .container .description p {
	color: #e6e6e6;
	line-height: 150%;
	font-size: 15px;
	font-weight: 400;
}
.info .container .description p:first-of-type {
	display: none;
}
.info .container .description p:nth-of-type(2) {
	margin-bottom: 8px;
}

.lastproduct {
	width: 100%;
	background-color: #000;
}
.lastproduct h2 {
	background: linear-gradient(
		173deg,
		rgb(93, 17, 17) 0%,
		rgb(177, 40, 40) 50%,
		rgb(77, 14, 14) 100%
	);
	text-align: center;
	padding: 20px;
	color: #fff;
	font-weight: 500;
}
.lastproduct .products {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 40px 20px;
}
.lastproduct .products .product {
	position: relative;
	width: 100%;
	display: flex;
	border: 1.5px solid #272727;
	border-radius: 8px;
	overflow: hidden;
}
.lastproduct .products .product a {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: #fff;
}
.lastproduct .products .product a .img {
	height: 250px;
	background-color: #f5f5f7;
}
.lastproduct .products .product a .img img {
	width: 100%;
	height: 100%;
}
.lastproduct .products .product a .txt {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: linear-gradient(
		173deg,
		rgb(0, 0, 0) 0%,
		rgb(16, 16, 16) 50%,
		rgb(0, 0, 0) 100%
	);
	padding: 10px;
}
.lastproduct .products .product a .txt .title h3 {
	font-size: 22px;
	margin: 10px 5px;
}
.lastproduct .products .product a .txt .details {
	margin-left: 5px;
}
.lastproduct .products .product a .txt .details p {
	color: #a1a3a7;
}
.lastproduct .products .product a .txt .details p:first-of-type {
	margin-bottom: 5px;
}
.lastproduct .products .product a .txt .details p i {
	color: var(--hoverColor);
	padding-right: 5px;
}
.lastproduct .products .product a .txt .details p .icon-svg {
	width: 20px;
}
.lastproduct .products .product a .txt .price {
	margin: 20px 5px 0 5px;
	font-weight: 700;
	font-size: 20px;
	padding-bottom: 20px;
}
.lastproduct .products .product a .txt button {
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	width: 100%;
	padding: 15px 40px;
	margin-top: auto;
	margin-bottom: 20px;
	border: 0;
	font-size: 16px;
	border-radius: 8px;
	color: #fff;
	transition: font-weight 0.3s;
}
.lastproduct .products .product a .txt button i {
	padding-left: 10px;
}
.lastproduct .products .product a .txt button:hover {
	font-weight: 700;
	cursor: pointer;
}

.reviews {
	background: linear-gradient(
		180deg,
		rgb(48, 48, 48) 0%,
		rgb(20, 20, 20) 50%,
		rgb(0, 0, 0) 100%
	);
	padding: 40px 0 60px;
}
.reviews h2 {
	font-weight: 500;
	font-size: 20px;
	padding: 0 20px;
	color: #fff;
	text-align: center;
}
.reviews .reviews-carousele {
	position: relative;
	width: 100%;
	margin-top: 30px;
	color: #fff;
	padding: 0 50px;
}
.reviews .reviews-carousele .slick-list {
	overflow: hidden;
}
.reviews .reviews-carousele .slick-track {
	display: flex !important;
}
.reviews .reviews-carousele .card {
	width: 100%;
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.reviews .reviews-carousele .card .stars {
	margin-bottom: 20px;
}
.reviews .reviews-carousele .card .stars i {
	color: var(--hoverColor);
}
.reviews .reviews-carousele .card .content {
	line-height: 150%;
	padding: 0 10px;
}
.reviews .reviews-carousele .card .name {
	font-size: 14px;
	margin-top: 30px;
}
.reviews .reviews-carousele .card .role {
	font-size: 14px;
	color: #c2c2c2;
}
.reviews .reviews-carousele .arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	height: 25px;
	width: 25px;
	border: 1.5px solid var(--hoverColor);
	border-radius: 50%;
	transition: background-color 0.3s, border 0.3s;
}
.reviews .reviews-carousele .arrow i {
	color: var(--hoverColor);
}
.reviews .reviews-carousele .arrow:hover {
	background-color: #fff;
	border: 1.5px solid #fff;
}
.reviews .reviews-carousele .previous-arrow {
	left: 5px;
}
.reviews .reviews-carousele .next-arrow {
	right: 5px;
}

.faq-section {
	background-color: #000;
	padding-top: 60px;
	border-top: 1px solid #fff;
	line-height: 150%;
}
.faq-section h2 {
	color: var(--hoverColor);
	text-align: center;
	font-size: 30px;
}
.faq-section .description {
	text-align: center;
	color: #a3a3a3;
	margin-top: 20px;
	padding: 0 20px;
}
.faq-section .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px 20px 50px;
	color: #a3a3a3;
	text-align: left;
}
.faq-section .container .accordion {
	width: 100%;
}
.faq-section .container .accordion .accordion-item.active .accordion-content {
	pointer-events: all;
	opacity: 1;
	max-height: 250px;
	padding: 10px 15px;
}
.faq-section
	.container
	.accordion
	.accordion-item.active
	.accordion-header
	.line1 {
	opacity: 0;
}
.faq-section .container .accordion .accordion-item .accordion-header {
	cursor: pointer;
	padding: 20px 30px 20px 5px;
	position: relative;
	border-bottom: 1.5px solid #a3a3a3;
}
.faq-section
	.container
	.accordion
	.accordion-item
	.accordion-header:hover
	.line1 {
	background-color: var(--hoverColor);
}
.faq-section
	.container
	.accordion
	.accordion-item
	.accordion-header:hover
	.line2 {
	background-color: var(--hoverColor);
}
.faq-section .container .accordion .accordion-item .accordion-header .line1 {
	opacity: 1;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
	height: 14px;
	background-color: #a3a3a3;
	transition: opacity 0.3s, background-color 0.3s;
}
.faq-section .container .accordion .accordion-item .accordion-header .line2 {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 2px;
	background-color: #a3a3a3;
	transition: background-color 0.3s;
}
.faq-section .container .accordion .accordion-item .accordion-header p {
	text-align: left;
	padding-right: 30px;
	font-size: 15px;
}
.faq-section .container .accordion .accordion-item .accordion-content {
	pointer-events: none;
	opacity: 0;
	max-height: 0;
	padding: 0 15px;
	font-size: 15px;
	transition: max-height 0.2s linear, padding 0.2s linear;
}
.faq-section .container .accordion .accordion-item .accordion-content p {
	color: #a3a3a3;
}
.faq-section .container .question {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
	gap: 20px;
}
.faq-section .container .question h3 {
	text-align: center;
	font-size: 22px;
	color: #fff;
	font-weight: 400;
}
.faq-section .container .question a {
	background: linear-gradient(173deg, rgb(21, 21, 21) 0%, rgb(9, 9, 9) 100%);
	text-align: center;
	text-decoration: none;
	color: #fff;
	border: 1px solid var(--hoverColor);
	border-radius: 8px;
	padding: 15px 25px;
	transition: background 0.3s, color 0.3s, border 0.3s;
}
.faq-section .container .question a:hover {
	background: linear-gradient(
		173deg,
		rgb(221, 221, 221) 0%,
		rgb(99, 99, 99) 100%
	);
	color: var(--mainColor);
	border: 1px solid #000;
}

.brands {
	background: linear-gradient(
		173deg,
		rgb(20, 20, 20) 0%,
		rgb(48, 48, 48) 50%,
		rgb(20, 20, 20) 100%
	);
}
.brands .container {
	display: flex;
	flex-direction: row;
	overflow: scroll;
	scrollbar-width: none;
	padding: 30px 0;
}
.brands .container::-webkit-scrollbar {
	display: none;
}
.brands .container .brand {
	width: 90%;
	margin: 0 5%;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
}
.brands .container .brand:hover img {
	filter: none;
}
.brands .container .brand img {
	width: 60%;
	filter: grayscale(100%);
	transition: filter 0.3s;
}

div.contact {
	background-color: #f7f7f7;
	margin: 20px 0;
}
div.contact section.contact {
	display: flex;
	flex-direction: column;
	height: 60vh;
}
div.contact section.contact div.img {
	flex-basis: 25vh;
	min-width: 25vh;
	background-image: url(/img/main_slider/4.jpg);
	background-size: cover;
	background-position: center;
	transition: 0.3s linear;
	position: relative;
	overflow: hidden;
}
div.contact section.contact div.img div.pomoc {
	position: absolute;
	background-color: var(--hoverColor);
	width: 30px;
	height: 100%;
	writing-mode: vertical-rl;
	text-align: center;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
	transform: rotate(-45deg);
	right: 10%;
	bottom: 20%;
}
div.contact section.contact div.img:hover {
	background-size: 130%;
}
div.contact section.contact div.info {
	flex-basis: 35vh;
	width: 100%;
	text-align: center;
	position: relative;
}
div.contact section.contact div.info div.txt {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
}
div.contact section.contact div.info h4 {
	font-size: 26px;
	margin-bottom: 10px;
}
div.contact section.contact div.info p {
	font-size: 18px;
	margin: 10px;
}
div.contact section.contact div.info button {
	background-color: transparent;
	border: 2px solid #000;
	border-radius: 5px;
	padding: 10px;
	margin: 10px;
	font-size: 16px;
}
div.contact section.contact div.info button:hover {
	background-color: var(--hoverColor);
	color: #fff;
	cursor: pointer;
}

div.iframe {
	position: relative;
	width: 100%;
	height: 320px;
}
div.iframe iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

footer {
	margin-top: 60px;
	background: linear-gradient(
		0deg,
		rgb(48, 48, 48) 0%,
		rgb(20, 20, 20) 50%,
		rgb(0, 0, 0) 100%
	);
	border-top: 1px solid #fff;
}

.footer-img {
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 20px 0;
}
.footer-img a {
	text-decoration: none;
}
.footer-img p {
	color: #fff;
	font-size: 15px;
}

footer a img {
	width: 100px;
}

.footer-line {
	height: 0.5px;
	width: 100%;
	background-color: #fff;
}

.footer-container {
	display: grid;
	margin: 20px;
}
.footer-container .footer-3 {
	margin-top: 30px;
}
.footer-container .footer-4 .social-media-container {
	margin: 30px 0;
	display: flex;
	justify-content: space-around;
	gap: 20px;
}
.footer-container .footer-4 .social-media-container a i {
	font-size: 45px;
}

.footer-container p {
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	letter-spacing: 1px;
}

.footer-container a {
	display: block;
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	margin: 3px 0;
	transition: 0.1s;
}

.footer-container a:hover {
	color: var(--hoverColor);
}

.footer-container span {
	font-weight: bold;
}

.footer-container .link-container {
	margin: 20px 0 40px;
}

.contact-information {
	margin-top: 20px;
}
.contact-information a p {
	transition: color 0.3s;
}
.contact-information a p:hover {
	color: var(--hoverColor);
}
.contact-information a i {
	padding-right: 5px;
}

.contact-information p {
	font-weight: normal;
	padding: 3px 0;
	font-size: 14px;
	color: #fff;
	margin-bottom: 10px;
}

.contact-information .fa-solid {
	font-size: 20px;
	padding: 5px 10px;
}

.contact-information a {
	display: inline;
}

.footer-end {
	color: #fff;
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
}

.footer-bottom-container {
	font-size: 14px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.serwispage {
	background-color: #000;
}
.serwispage .fault-search-container {
	padding: 100px 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}
.serwispage .fault-search-container i {
	font-size: 40px;
	color: var(--hoverColor);
	padding-bottom: 10px;
}

div.shoppage section.shoppage {
	margin-top: 40px;
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
div.shoppage section.shoppage div.filtry {
	width: 95%;
	padding: 30px 20px;
	background-color: #121212;
	box-shadow: 1px 4px 9px 0 rgba(0, 0, 0, 0.15),
		5px 16px 17px 0 rgba(0, 0, 0, 0.13), 11px 36px 23px 0 rgba(0, 0, 0, 0.08),
		20px 65px 27px 0 rgba(0, 0, 0, 0.02), 31px 101px 30px 0 rgba(0, 0, 0, 0);
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	color: #fff;
}
div.shoppage section.shoppage div.filtry .filters-container {
	margin-bottom: 10px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item.active
	.filters-content {
	opacity: 1;
	max-height: 300px;
	pointer-events: all;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item.active
	.filters-header {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item.active
	.filters-header
	i {
	transform: translateY(-50%) rotate(90deg);
	color: var(--hoverColor);
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-header {
	position: relative;
	border-radius: 8px;
	background-color: #3b3b3b;
	cursor: pointer;
	padding: 10px 20px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-header
	h3 {
	font-weight: 400;
	font-size: 19px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-header
	i {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(0);
	transition: transform 0.3s, color 0.3s;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content {
	opacity: 0;
	max-height: 0;
	pointer-events: none;
	transition: max-height 0.2s linear, padding 0.2s linear;
	background-color: #1f1f1f;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox {
	margin: 0 10px 10px 10px;
	padding: 20px 10px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox
	.single
	input[type="checkbox"]:checked
	+ label::before {
	background: var(--hoverColor);
	border-color: var(--hoverColor);
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox
	.single
	input[type="checkbox"]:checked
	+ label::after {
	content: "✓";
	position: absolute;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #fff;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox
	.single {
	margin-bottom: 5px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox
	.single:last-of-type {
	margin-bottom: 0;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox
	.single
	input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox
	.single
	label {
	position: relative;
	padding-left: 24px;
	line-height: 18px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	display: inline-block;
	min-height: 18px;
}
div.shoppage
	section.shoppage
	div.filtry
	.filters-container
	.filters-item
	.filters-content
	div.checkbox
	.single
	label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	background: #1f1f1f;
	border: 1px solid #fff;
}
div.shoppage section.shoppage div.filtry div.search {
	position: relative;
	height: 43.33px;
	margin-top: 10px;
}
div.shoppage section.shoppage div.filtry div.search input {
	position: absolute;
	width: 100%;
	left: 0;
	height: 43.33px;
	background-color: #3b3b3b;
	border: none;
	border-radius: 8px;
	color: #fff;
	padding-left: 35px;
}
div.shoppage section.shoppage div.filtry div.search input::-moz-placeholder {
	color: #fff;
}
div.shoppage section.shoppage div.filtry div.search input::placeholder {
	color: #fff;
}
div.shoppage section.shoppage div.filtry div.search i {
	position: absolute;
	width: 20px;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	height: 30px;
	line-height: 30px;
}
div.shoppage section.shoppage div.filtry div.price {
	margin: 25px 10px;
}
div.shoppage section.shoppage div.filtry div.price div#slider-range {
	margin: 0 10px;
	z-index: 0;
}
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	.ui-state-default,
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	.ui-widget-content
	.ui-state-default {
	border-radius: 50%;
}
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	.ui-state-active,
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	.ui-widget-content
	.ui-state-active,
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	.ui-widget-header
	.ui-state-active,
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	a.ui-button:active,
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	.ui-button:active,
div.shoppage
	section.shoppage
	div.filtry
	div.price
	div#slider-range
	.ui-button.ui-state-active:hover {
	border: 1px solid var(--hoverColor) !important;
	background: var(--hoverColor) !important;
	color: #fff !important;
}
div.shoppage section.shoppage div.filtry div.price p {
	font-size: 18px;
	margin-bottom: 20px;
}
div.shoppage section.shoppage div.filtry div.price p #amount {
	border: 0;
	color: var(--hoverColor);
	font-weight: bold;
	font-weight: 20px;
	background: none;
}
div.shoppage section.shoppage div.shop {
	display: flex;
	flex-direction: column;
	padding: 30px 0;
	width: 100%;
}
div.shoppage section.shoppage div.shop .results {
	padding-left: 10px;
	color: #fff;
	font-size: 14px;
}
div.shoppage section.shoppage div.shop div.pagination {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 10px;
}
div.shoppage section.shoppage div.shop div.pagination a {
	width: 35px;
	height: 35px;
	background-color: var(--hoverColor);
	text-align: center;
	line-height: 35px;
	margin: 0 2px;
	color: #fff;
}
div.shoppage section.shoppage div.shop div.pagination a.active,
div.shoppage section.shoppage div.shop div.pagination a:hover {
	background-color: #fff;
	color: var(--hoverColor);
	border: 1px solid var(--hoverColor);
}
div.shoppage section.shoppage div.shop div.products {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 20px;
	padding: 40px 10px;
}
div.shoppage section.shoppage div.shop div.products .product {
	position: relative;
	width: 100%;
	border: 1.5px solid #272727;
	border-radius: 8px;
	overflow: hidden;
}
div.shoppage section.shoppage div.shop div.products .product a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	color: #fff;
}
div.shoppage section.shoppage div.shop div.products .product a .img {
	height: 250px;
	background-color: #f5f5f7;
}
div.shoppage section.shoppage div.shop div.products .product a .img img {
	width: 100%;
	height: 100%;
}
div.shoppage section.shoppage div.shop div.products .product a .txt {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: linear-gradient(
		173deg,
		rgb(0, 0, 0) 0%,
		rgb(16, 16, 16) 50%,
		rgb(0, 0, 0) 100%
	);
	padding: 10px;
}
div.shoppage section.shoppage div.shop div.products .product a .txt .title h3 {
	font-size: 22px;
	margin: 10px 5px;
}
div.shoppage section.shoppage div.shop div.products .product a .txt .details {
	margin-left: 5px;
}
div.shoppage section.shoppage div.shop div.products .product a .txt .details p {
	color: #a1a3a7;
}
div.shoppage
	section.shoppage
	div.shop
	div.products
	.product
	a
	.txt
	.details
	p:first-of-type {
	margin-bottom: 5px;
}
div.shoppage
	section.shoppage
	div.shop
	div.products
	.product
	a
	.txt
	.details
	p
	i {
	color: var(--hoverColor);
	padding-right: 5px;
}
div.shoppage
	section.shoppage
	div.shop
	div.products
	.product
	a
	.txt
	.details
	p
	.icon-svg {
	width: 20px;
}
div.shoppage section.shoppage div.shop div.products .product a .txt .price {
	margin: 20px 5px 0 5px;
	padding-bottom: 20px;
	font-weight: 700;
	font-size: 20px;
}
div.shoppage section.shoppage div.shop div.products .product a .txt button {
	margin-top: auto;
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	width: 100%;
	padding: 15px 40px;
	margin-bottom: 20px;
	border: 0;
	font-size: 16px;
	border-radius: 8px;
	color: #fff;
	transition: font-weight 0.3s;
}
div.shoppage section.shoppage div.shop div.products .product a .txt button i {
	padding-left: 10px;
}
div.shoppage
	section.shoppage
	div.shop
	div.products
	.product
	a
	.txt
	button:hover {
	font-weight: 700;
	cursor: pointer;
}

section.relevantproducts {
	display: flex;
	flex-direction: column;
}
section.relevantproducts h2 {
	background: linear-gradient(
		173deg,
		rgb(93, 17, 17) 0%,
		rgb(177, 40, 40) 50%,
		rgb(77, 14, 14) 100%
	);
	text-align: center;
	padding: 20px;
	color: #fff;
	font-weight: 500;
}
section.relevantproducts .products {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 40px 20px;
}
section.relevantproducts .products .product {
	position: relative;
	width: 100%;
	display: flex;
	border: 1.5px solid #272727;
	border-radius: 8px;
	overflow: hidden;
}
section.relevantproducts .products .product a {
	display: flex;
	flex-direction: column;
	width: 100%;
	color: #fff;
}
section.relevantproducts .products .product a .img {
	height: 250px;
	background-color: #f5f5f7;
}
section.relevantproducts .products .product a .img img {
	width: 100%;
	height: 100%;
}
section.relevantproducts .products .product a .txt {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	background: linear-gradient(
		173deg,
		rgb(0, 0, 0) 0%,
		rgb(16, 16, 16) 50%,
		rgb(0, 0, 0) 100%
	);
	padding: 10px;
}
section.relevantproducts .products .product a .txt .title h3 {
	font-size: 22px;
	margin: 10px 5px;
}
section.relevantproducts .products .product a .txt .details {
	margin-left: 5px;
}
section.relevantproducts .products .product a .txt .details p {
	color: #a1a3a7;
}
section.relevantproducts .products .product a .txt .details p:first-of-type {
	margin-bottom: 5px;
}
section.relevantproducts .products .product a .txt .details p i {
	color: var(--hoverColor);
	padding-right: 5px;
}
section.relevantproducts .products .product a .txt .details p .icon-svg {
	width: 20px;
}
section.relevantproducts .products .product a .txt .price {
	margin: 20px 5px 0 5px;
	font-weight: 700;
	font-size: 20px;
	padding-bottom: 20px;
}
section.relevantproducts .products .product a .txt button {
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	width: 100%;
	padding: 15px 40px;
	margin-top: auto;
	margin-bottom: 20px;
	border: 0;
	font-size: 16px;
	border-radius: 8px;
	color: #fff;
	transition: font-weight 0.3s;
}
section.relevantproducts .products .product a .txt button i {
	padding-left: 10px;
}
section.relevantproducts .products .product a .txt button:hover {
	font-weight: 700;
	cursor: pointer;
}

::-webkit-scrollbar {
	display: none;
}

@keyframes slide {
	0% {
		opacity: 0;
		z-index: 0;
	}
	1% {
		opacity: 1;
		z-index: 1;
	}
	24% {
		opacity: 1;
		z-index: 1;
	}
	25% {
		opacity: 0;
		z-index: 0;
	}
	100% {
		opacity: 0;
		z-index: 0;
	}
}
@keyframes bgu {
	0% {
		background-image: url(/img/main_slider/1.jpg);
	}
	24% {
		background-image: url(/img/main_slider/1.jpg);
	}
	25% {
		background-image: url(/img/main_slider/2.jpg);
	}
	49% {
		background-image: url(/img/main_slider/2.jpg);
	}
	50% {
		background-image: url(/img/main_slider/3.jpg);
	}
	74% {
		background-image: url(/img/main_slider/3.jpg);
	}
	75% {
		background-image: url(/img/main_slider/4.jpg);
	}
	99% {
		background-image: url(/img/main_slider/4.jpg);
	}
}
div.modal section.modal {
	position: fixed;
	width: 90%;
	height: 70vh;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	background-color: #000;
	border-radius: 8px;
	border: solid 1.5px #fff;
	z-index: 999;
	display: none;
	flex-direction: column;
	padding: 20px 10px;
	box-sizing: border-box;
}
div.modal section.modal .text-field {
	background: linear-gradient(135deg, #151515 0%, #000000 100%);
	border: 1px solid var(--hoverColor);
	border-radius: 8px;
	color: #fff;
	padding-left: 8px;
}
div.modal section.modal.active {
	display: flex;
	align-items: stretch;
}
div.modal section.modal * {
	margin: 5px 20px;
}
div.modal section.modal img {
	max-width: 200px;
	display: none;
}
div.modal section.modal p.confirmation {
	background-color: green;
	padding: 20px 10px;
	color: #fff;
}
div.modal section.modal textarea {
	flex-grow: 1;
	resize: none;
	padding-top: 8px;
}
div.modal section.modal textarea.error {
	resize: none;
	border: 2px solid red;
}
div.modal section.modal textarea.error::-moz-placeholder {
	font-weight: 700;
	color: red;
}
div.modal section.modal textarea.error::placeholder {
	font-weight: 700;
	color: red;
}
div.modal section.modal button {
	padding: 15px;
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	color: #fff;
	border: 2px solid transparent;
	border-radius: 8px;
	align-self: center;
	transition: background-color 0.3s, color 0.3s, border 0.3s;
}
div.modal section.modal button:hover {
	background: transparent;
	border: 2px solid var(--hoverColor);
	background-color: #fff;
	color: var(--hoverColor);
	cursor: pointer;
}
div.modal section.modal input {
	height: 35px;
	resize: none;
	border: 1px solid var(--hoverColor);
}
div.modal section.modal input.error {
	height: 35px;
	resize: none;
	border: 2px solid red;
}
div.modal section.modal input.error::-moz-placeholder {
	font-weight: 700;
	color: red;
}
div.modal section.modal input.error::placeholder {
	font-weight: 700;
	color: red;
}
div.modal section.modal span.close {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--hoverColor);
	color: #fff;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 22px;
	transform: translate(100%, -75%);
	border-radius: 50%;
	transition: background-color 0.3s;
}
div.modal section.modal span.close:hover {
	background-color: #000;
	cursor: pointer;
}

div.wrapper.modal-open {
	filter: blur(10px);
}

button.Totop {
	width: 35px;
	height: 35px;
	position: fixed;
	bottom: 3%;
	right: 1%;
	color: #fff;
	opacity: 0;
	background-color: #4682b4;
	border: 1px solid #fff;
	display: none;
	transition: 0.5s linear;
}
button.Totop:hover {
	background-color: #000;
	color: #fff;
}
button.Totop.scroll {
	opacity: 1;
	display: block;
}

div.loading {
	display: flex;
	flex-direction: column;
}
div.loading p {
	padding: 5px 0;
}
div.loading div.loader {
	border: 8px solid #f3f3f3;
	border-radius: 50%;
	border-top: 8px solid var(--hoverColor);
	width: 50px;
	height: 50px;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* Breadcrumbs & pages outside wrapper */
main.page div.header {
	background-image: url(/img/header/header-mobile.webp);
	border-top: 1px solid var(--hoverColor);
	border-bottom: 1px solid var(--hoverColor);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	z-index: 0;
}
main.page div.header div.txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 60px 20px;
}
main.page div.header div.txt h1 {
	color: #fff;
	text-align: center;
	text-transform: capitalize;
	font-weight: 300;
	font-size: 50px;
	z-index: 1000000;
}
main.page div.header div.txt div.breadcrumbs section.breadcrumbs ol {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 20px;
	list-style-type: none;
}
main.page div.header div.txt div.breadcrumbs section.breadcrumbs ol li {
	padding-right: 5px;
	font-size: 15px;
	color: #fff;
}
main.page div.header div.txt div.breadcrumbs section.breadcrumbs ol li a {
	text-decoration: none;
	color: var(--hoverColor);
	font-weight: 300;
}
main.page div.header div.txt div.breadcrumbs section.breadcrumbs ol li a i {
	padding-right: 3px;
}
main.page div.header .shadow {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	z-index: -10;
}

main.contactpage {
	background-color: #000;
}
main.contactpage .special-data {
	font-weight: normal;
	padding: 40px 20px 0;
	text-align: center;
	color: #fff;
}
main.contactpage .location {
	padding: 60px 20px;
	border-top: 1px solid #fff;
}
main.contactpage .location .container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
}
main.contactpage .location .container .card {
	width: 100%;
}
main.contactpage .location .container .card h2 {
	background: linear-gradient(
		173deg,
		rgb(93, 17, 17) 0%,
		rgb(177, 40, 40) 50%,
		rgb(77, 14, 14) 100%
	);
	text-align: center;
	padding: 20px;
	color: #fff;
	font-weight: 500;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
main.contactpage .location .container .card .map-container {
	position: relative;
	width: 100%;
	height: 200px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
main.contactpage .location .container .card .map-container iframe {
	border: 0;
	width: 100%;
	height: 100%;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
main.contactpage .contact-subpage {
	padding-top: 40px;
}
main.contactpage .contact-subpage .container {
	display: flex;
	flex-direction: column;
	gap: 60px;
	color: #fff;
}
main.contactpage .contact-subpage .container .info-item {
	text-align: center;
}
main.contactpage .contact-subpage .container .info-item h2 {
	font-size: 22px;
	margin-bottom: 10px;
}
main.contactpage .contact-subpage .container .info-item p {
	font-size: 15px;
	padding: 5px 0;
	color: #c3c3c3;
}
main.contactpage .contact-subpage .container .info-item a {
	padding: 5px 0;
	display: block;
	font-size: 15px;
	color: #c3c3c3;
	text-decoration: none;
	transition: color 0.3s;
}
main.contactpage .contact-subpage .container .info-item a:last-of-type {
	margin-bottom: 30px;
}
main.contactpage .contact-subpage .container .info-item a:hover {
	color: var(--hoverColor);
}
main.contactpage .contact-subpage .container .info-item a i {
	padding-right: 10px;
}
main.contactpage .contact-subpage .container h2 {
	font-size: 28px;
	text-align: center;
}
main.contactpage .contact-subpage .container .adress {
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 40px;
}
main.contactpage .contact-subpage .contact-form-container {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	margin-top: 40px;
	background-color: var(--second-color);
}
main.contactpage .contact-subpage .contact-form-container .form-info {
	padding: 30px 20px 10px;
}
main.contactpage .contact-subpage .contact-form-container .form-info h2 {
	font-size: 28px;
	color: #fff;
}
main.contactpage .contact-subpage .contact-form-container .form-info p {
	color: #c3c3c3;
	margin: 5px 0 25px;
}
main.contactpage .contact-subpage .contact-form-container .contact-form {
	padding: 0 20px;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.submit-form {
	cursor: pointer;
	padding: 20px 40px;
	background-color: transparent;
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	border: none;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	margin-bottom: 50px;
	transition: color 0.3s, background-color 0.3s;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.submit-form:hover {
	color: #000;
}
main.contactpage .contact-subpage .contact-form-container .contact-form label {
	color: #fff;
	padding-left: 5px;
	font-size: 13px;
}
main.contactpage .contact-subpage .contact-form-container .contact-form .error {
	border: 1px solid rgb(194, 52, 52) !important;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.error-message {
	color: #fff;
	font-size: 12px;
	margin-bottom: 15px;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.error-message.visible {
	opacity: 1;
	transform: translateY(0);
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.message-status-form {
	position: relative;
	display: none;
	width: 100%;
	height: 50px;
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 20px 10px;
	background-color: #fff;
	text-align: center;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.message-status-form
	p {
	width: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-weight: bold;
	letter-spacing: 1.5px;
	color: var(--hoverColor);
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.message-status-form.active {
	display: block;
}
main.contactpage .contact-subpage .contact-form-container .contact-form input {
	padding-left: 10px;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	input::-moz-placeholder {
	color: #a1a3a7;
	font-size: 15px;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	input::placeholder {
	color: #a1a3a7;
	font-size: 15px;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.formField {
	margin-top: 5px;
	margin-bottom: 20px;
	width: 100%;
	height: 50px;
	background-color: transparent;
	background: linear-gradient(135deg, #151515 0%, #000000 100%);
	border-radius: 8px;
	border: 1px solid var(--hoverColor);
	color: #fff;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	.formMessage {
	height: 200px;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	textarea {
	color: #fff;
	resize: none;
	padding: 10px 0 0 10px;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	textarea::-moz-placeholder {
	color: #a1a3a7;
	font-size: 15px;
}
main.contactpage
	.contact-subpage
	.contact-form-container
	.contact-form
	textarea::placeholder {
	color: #a1a3a7;
	font-size: 15px;
}

main.galerypage {
	background-color: #000;
}
main.galerypage div.galery div.images {
	padding: 40px 20px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	align-items: center;
	justify-items: center;
	gap: 20px;
}
main.galerypage div.galery div.images div.img {
	width: 100%;
	overflow: hidden;
	transition: filter 0.3s;
}
main.galerypage div.galery div.images div.img:hover {
	filter: brightness(0.5);
}
main.galerypage div.galery div.images div.img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

main.searchpage div.results {
	max-width: var(--maxWidth);
	margin: 0 auto;
	padding: 20px;
}

main.shoppage {
	background: linear-gradient(
		180deg,
		rgb(48, 48, 48) 0%,
		rgb(20, 20, 20) 50%,
		rgb(0, 0, 0) 100%
	);
}

div.ui-slider-range.ui-widget-header {
	background: var(--hoverColor);
}

main.productpage {
	color: #fff;
	background-color: #000;
}
main.productpage div.productinfo {
	padding: 60px 20px;
	display: flex;
	flex-direction: column;
}
main.productpage div.productinfo div.galery {
	display: flex;
	flex-direction: column;
}
main.productpage div.productinfo div.galery div.imgbig {
	position: relative;
	width: 100%;
	background-color: #f5f5f7;
	border-radius: 4px;
}
main.productpage div.productinfo div.galery div.imgbig i {
	position: absolute;
	right: 0;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	font-size: 26px;
	color: #333;
	pointer-events: none;
	z-index: 100;
}
main.productpage div.productinfo div.galery div.imgbig .big-img {
	width: 100%;
	border-radius: 4px;
}
main.productpage div.productinfo div.galery div.images {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
main.productpage div.productinfo div.galery div.images div.img {
	height: 100%;
	width: auto;
	position: relative;
	background-color: #111111;
	border-radius: 4px;
	transition: filter 0.3s;
}
main.productpage div.productinfo div.galery div.images div.img:hover {
	filter: brightness(0.5);
}
main.productpage div.productinfo div.galery div.images div.img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 4px;
}
main.productpage div.productinfo div.informacje {
	display: flex;
	flex-direction: column;
	margin: 20px 0;
}
main.productpage div.productinfo div.informacje h2 {
	padding: 20px 0;
}
main.productpage div.productinfo div.informacje div.cena {
	color: var(--hoverColor);
	font-weight: 700;
	font-size: 20px;
	padding: 10px 0;
}
main.productpage div.productinfo div.informacje div.cena span {
	color: #fff;
}
main.productpage div.productinfo div.informacje div.dostawa {
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	padding: 10px 20px;
	margin: 10px 0;
	color: #fff;
	border-radius: 8px;
}
main.productpage div.productinfo div.informacje div.dostawa span {
	padding-right: 0;
}
main.productpage div.productinfo div.informacje div span {
	padding-right: 10px;
	color: #fff;
	font-weight: 700;
}
main.productpage div.productinfo div.informacje div.opis {
	color: #e6e6e6;
	font-size: 15px;
	line-height: 150%;
	padding: 20px 0;
}
main.productpage div.productinfo div.informacje div.opis ul li {
	margin-left: 30px;
}
main.productpage div.productinfo div.informacje div.opis p {
	margin-bottom: 10px;
	margin-top: 10px;
}
main.productpage div.productinfo div.informacje div.buttons {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
main.productpage div.productinfo div.informacje div.buttons a,
main.productpage div.productinfo div.informacje div.buttons button {
	width: 49%;
	margin: 10px 0;
	background: linear-gradient(
		100deg,
		rgb(131, 35, 35) 0%,
		rgb(169, 38, 38) 50%,
		rgb(120, 22, 22) 100%
	);
	border-radius: 8px;
	color: #fff;
	padding: 15px;
	border: 0;
	border: 2px solid transparent;
	font-size: 14px;
	text-align: center;
	transition: background 0s, background-color 0.3s, color 0.3s, border 0.3s;
}
main.productpage div.productinfo div.informacje div.buttons a:hover,
main.productpage div.productinfo div.informacje div.buttons button:hover {
	background: transparent;
	background-color: #fff;
	border: 2px solid var(--hoverColor);
	color: var(--hoverColor);
	cursor: pointer;
}

div.additionalinfo {
	padding: 0 20px 40px;
	background: linear-gradient(
		180deg,
		rgb(0, 0, 0) 0%,
		rgb(24, 24, 24) 50%,
		rgb(36, 36, 36) 100%
	);
}
div.additionalinfo section.additionalinfo h2 {
	text-align: center;
	margin-bottom: 30px;
}
div.additionalinfo section.additionalinfo table {
	padding: 20px 0;
	background-color: #121212;
	border-collapse: separate;
	width: 100%;
	border-radius: 8px;
	box-shadow: 1px 4px 9px 0 rgba(0, 0, 0, 0.15),
		5px 16px 17px 0 rgba(0, 0, 0, 0.13), 11px 36px 23px 0 rgba(0, 0, 0, 0.08),
		20px 65px 27px 0 rgba(0, 0, 0, 0.02), 31px 101px 30px 0 rgba(0, 0, 0, 0);
}
div.additionalinfo section.additionalinfo table thead tr {
	background-color: var(--hoverColor);
	padding: 20px 0;
	color: #fff;
}
div.additionalinfo section.additionalinfo table thead tr td:nth-child(2) {
	font-style: normal;
	font-weight: 700;
}
div.additionalinfo section.additionalinfo table tr {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 15px 0;
	margin: 0 10px;
	border-bottom: 1px solid #fff;
}
div.additionalinfo section.additionalinfo table tr:last-of-type {
	border-bottom: none;
}
div.additionalinfo section.additionalinfo table tr td:nth-child(1) {
	width: 40%;
	font-weight: 700;
}
div.additionalinfo section.additionalinfo table tr td:nth-child(2) {
	flex-grow: 1;
	width: 60%;
	font-style: italic;
}

.galery .images .img > a.js-swap img {
	transition: outline-color 0.2s, outline-width 0.2s, opacity 0.2s;
	outline: 2px solid transparent;
}

.galery .images .img > a.js-swap.active img {
	outline: 2px solid red; /* czerwona ramka */
}

.galery .images .img > a.js-swap:hover img {
	opacity: 0.9;
}

/* Media queries */
@media (min-width: 410px) {
	div.topbar section.topbar div.form {
		width: 300px;
	}
	div.contact section.contact div.img {
		background-size: 100%;
	}
	div.contact section.contact div.img div.pomoc {
		right: 5%;
		bottom: 20%;
	}
	main.galerypage div.galery div.images {
		grid-template-columns: repeat(2, 1fr);
		align-items: stretch;
	}
	div.breadcrumbs section.breadcrumbs ol li {
		font-size: 20px;
	}
}
@media (min-width: 500px) {
	.brands .container div.brand {
		width: 40%;
		margin: 0 5%;
	}
	main.productpage div.productinfo div.informacje div.buttons a,
	main.productpage div.productinfo div.informacje div.buttons button {
		width: 45%;
	}
}
@media (min-width: 768px) {
	.offer .description {
		text-align: center;
	}
	.offer .container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.offer .container .card p {
		font-size: 16px;
	}
	.lastproduct .products {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: stretch;
	}
	section.relevantproducts .products {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: stretch;
	}
	div.topbar section.topbar {
		flex-direction: row;
		justify-content: space-between;
	}
	div.topbar section.topbar div.form {
		width: 280px;
		height: 40px;
	}
	div.topbar section.topbar div.contact {
		margin: 10px;
	}
	div.topbar section.topbar div.form {
		margin: 10px;
	}
	div.navbar section.navbar div.nav {
		width: 50%;
	}
	div.navbar section.navbar div.burger.active {
		position: fixed;
		top: 10px;
		right: calc(50% + 10px);
		z-index: 1;
	}
	div.header section.header {
		height: 55vh;
	}
	div.header section.header div.slider div.slide h1 {
		font-size: 32px;
	}
	div.lastproduct section.lastproduct div.products {
		justify-content: center;
	}
	div.transport section.transport {
		flex-direction: row;
		height: 40vh;
	}
	div.transport section.transport div.location {
		padding: 50px 20px;
	}
	.brands .container div.brand {
		width: 30%;
		margin: 0 1.665%;
	}
	div.contact section.contact div.img div.pomoc {
		right: 3%;
		bottom: 20%;
	}
	div.shoppage section.shoppage div.shop div.products {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: stretch;
	}
	main.contactpage div.data section.data form div.input {
		width: 80%;
	}
	main.productpage div.productinfo {
		flex-direction: row;
	}
	main.productpage div.productinfo div.galery {
		position: sticky;
		top: 110px;
		align-self: flex-start;
		width: 45%;
	}
	main.productpage div.productinfo div.informacje {
		width: 55%;
		margin: 0 20px;
	}
	main.productpage div.productinfo div.informacje h2 {
		margin: 0;
	}
	main.productpage div.productinfo div.informacje div.buttons a,
	main.productpage div.productinfo div.informacje div.buttons button {
		padding: 10px 5px;
		font-size: 16px;
	}
	main.galerypage div.galery div.images {
		grid-template-columns: repeat(3, 1fr);
	}
	main.galerypage div.galery div.images div.img img {
		height: 250px;
	}
	.footer-container {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-container .footer-3 {
		margin-top: 0;
	}
}
@media (min-width: 992px) {
	div.topbar {
		display: block;
	}
	nav {
		top: 0;
	}
	nav .nav-container {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	nav .nav-container img {
		height: 65px;
		width: auto;
	}
	nav .nav-container .subline {
		display: none;
	}
	nav .nav-container .burger {
		display: none;
	}
	nav .nav-container .ul-container {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: end;
		opacity: 1;
		pointer-events: auto;
		top: 0;
		right: 0;
		height: auto;
		flex-direction: row;
		padding-top: 0px;
		transition: none;
		margin-left: 40px;
		overflow: visible;
		background-color: transparent;
	}
	nav .nav-container .ul-container .links-container {
		display: flex;
		flex-direction: row;
		align-items: center;
	}
	nav .nav-container .ul-container .links-container .submenu {
		position: relative;
		list-style-type: none;
	}
	nav .nav-container .ul-container .links-container .submenu .submenu-btn {
		color: #fff;
		font-weight: normal;
		font-size: 14px;
		text-transform: uppercase;
		justify-self: center;
		margin-left: 20px;
		margin-right: 20px;
		letter-spacing: 1px;
	}
	nav .nav-container .ul-container .links-container .submenu .submenu-btn i {
		position: relative;
		display: inline-block;
		margin-left: 10px;
		margin-right: 0;
		transform: rotate(90deg);
		transition: transform 0.3s;
	}
	nav
		.nav-container
		.ul-container
		.links-container
		.submenu
		.submenu-btn
		i.open {
		transform: rotate(270deg);
	}
	nav .nav-container .ul-container .links-container .submenu .submenu-content {
		position: absolute;
		display: grid;
		gap: 10px;
		grid-template-columns: repeat(1, 1fr);
		overflow-y: scroll;
		visibility: none;
		opacity: 0;
		pointer-events: none;
		height: auto;
		max-height: 400px;
		width: 300px;
		top: 40px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1000;
		background-color: var(--mainColor);
		transition: opacity 0.3s ease-out;
		padding-top: 0;
		padding: 10px 0;
		border-radius: 7px;
		box-shadow: 0px 7px 20px -5px var(--hoverColor);
	}
	nav
		.nav-container
		.ul-container
		.links-container
		.submenu
		.submenu-content.active {
		opacity: 1;
		pointer-events: auto;
		visibility: visible;
		left: 50%;
		transform: translateX(-50%);
	}
	nav
		.nav-container
		.ul-container
		.links-container
		.submenu
		.submenu-content
		a {
		font-size: 15px;
		padding: 15px 20px 15px 20px;
		margin-bottom: 0;
		border-bottom: none;
	}
	nav
		.nav-container
		.ul-container
		.links-container
		.submenu
		.submenu-content
		a:first-of-type {
		display: none;
	}
	nav .nav-container .ul-container a {
		font-size: 14px;
		font-weight: normal;
		text-align: center;
		margin-left: 20px;
		margin-right: 20px;
		letter-spacing: 1px;
		color: #fff;
		transition: color 0.3s;
	}
	nav .nav-container .ul-container a:hover {
		color: var(--hoverColor);
	}
	nav .nav-container .ul-container li {
		margin-top: 0;
	}
	nav .nav-container .ul-container .contact-links {
		display: none;
	}
	header {
		position: relative;
	}
	header .header-carousele .card:nth-of-type(1) .image {
		background-image: url(../img/header/header-desktop.webp);
	}
	header .header-carousele .card:nth-of-type(2) .image {
		background-image: url(../img/header/header2-desktop.webp);
	}
	header .header-carousele .card .description {
		position: absolute;
		display: flex;
		flex-direction: column;
		align-items: start;
		width: 70%;
		left: 100px;
		bottom: 50%;
		transform: translate(0, 50%);
	}
	header .header-carousele .card .description h1 {
		font-size: 60px;
	}
	header .header-carousele .card .description p {
		text-align: left;
		margin-left: 0;
	}
	header .header-carousele .card .description a {
		font-size: 16px;
	}
	.features .container {
		flex-direction: row;
	}
	.lastproduct .products {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	section.relevantproducts .products {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	.info .container {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 30px;
	}
	.info .container .image {
		display: block;
		width: 50%;
	}
	.info .container .image img {
		width: 100%;
		height: 100%;
	}
	.info .container .description {
		width: 50%;
	}
	.info .container .description h2 {
		font-size: 36px;
		color: #fff;
	}
	.info .container .description p:first-of-type {
		display: block;
		color: var(--hoverColor);
	}
	.reviews h2 {
		font-size: 24px;
	}
	.reviews .reviews-carousele .arrow {
		width: 50px;
		height: 50px;
	}
	main.page div.header {
		background-image: url(../img/header/header-desktop.webp);
	}
	main.page div.header div.txt {
		padding: 100px 20px;
		gap: 10px;
	}
	main.page div.header div.txt h1 {
		font-size: 60px;
	}
	.contact-subpage {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
	}
	.contact-subpage .container {
		width: 50%;
	}
	.contact-subpage .container .info-item h2 {
		font-size: 25px;
	}
	.contact-subpage .container .info-item p {
		font-size: 16px;
	}
	.contact-subpage .container .info-item a {
		font-size: 16px;
	}
	.contact-subpage .container .info-item a:last-of-type {
		margin-bottom: 50px;
	}
	.contact-subpage .container h2 {
		font-size: 20px;
		text-align: center;
	}
	.contact-subpage .container .adress {
		font-size: 30px;
		text-align: center;
	}
	.contact-subpage .contact-form-container {
		position: relative;
		width: 50%;
		margin-top: 0;
	}
	.contact-subpage .contact-form-container .form-info h2 {
		font-size: 30px;
	}
	main.contactpage .location {
		padding: 60px 20px;
	}
	main.contactpage .location .container {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		align-items: stretch;
	}
	main.contactpage .location .container .card .map-container {
		height: 300px;
	}
	main.productpage div.productinfo div.galery div.imgbig {
		min-height: 400px;
	}
	main.productpage div.productinfo div.galery div.imgbig img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 400px;
	}
	.footer-container {
		margin-top: 40px;
		margin-bottom: 0;
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		justify-items: center;
	}
}
@media (min-width: 1024px) {
	div.navbar section.navbar .burger {
		display: none;
	}
	div.navbar section.navbar div.nav {
		position: static;
		flex-basis: 100%;
		height: auto;
		background: 0 0;
		overflow: unset;
	}
	div.navbar section.navbar div.nav ul {
		flex-direction: row;
		justify-content: flex-end;
		flex-wrap: wrap;
	}
	div.navbar section.navbar div.nav ul li {
		flex-basis: auto;
		position: relative;
	}
	div.navbar section.navbar div.nav ul li a {
		height: 50px;
		line-height: 50px;
		color: #fff;
		font-weight: 700;
		font-size: 16px;
		padding: 0 22px;
	}
	div.navbar section.navbar div.nav ul li a.active,
	div.navbar section.navbar div.nav ul li a:hover {
		color: var(--hoverColor);
		background-color: transparent;
		border-bottom: 4px solid var(--hoverColor);
	}
	div.navbar section.navbar div.nav ul li ul.submenu {
		position: absolute;
		background-color: #000;
		width: 100%;
	}
	div.navbar section.navbar div.nav ul li ul.submenu li a {
		color: #fff;
		font-size: 14px;
	}
	div.navbar section.navbar div.nav ul li ul.submenu li a:hover {
		background-color: var(--hoverColor);
		border: 0;
	}
	div.header section.header div.slider div.slide button {
		font-size: 18px;
	}
	div.header section.header div.slider div.slide button:hover {
		background-color: var(--hoverColor);
		cursor: pointer;
	}
	div.lastproduct section.lastproduct div.products div.product {
		margin: 10px 10px;
	}
	div.transport section.transport div.location {
		padding: 30px;
	}
	div.transport section.transport div.location i {
		font-size: 46px;
	}
	div.transport section.transport div.location h4 {
		font-size: 26px;
	}
	div.transport section.transport div.location p {
		font-size: 20px;
	}
	.brands .container div.brand {
		width: 16.5%;
		margin: 0 1.5%;
	}
	.brands .container div.brand img {
		width: 90%;
	}
	div.contact section.contact div.info h4 {
		font-size: 36px;
	}
	div.contact section.contact div.info p {
		font-size: 24px;
	}
	div.breadcrumbs section.breadcrumbs ol li {
		font-size: 24px;
	}
	div.shoppage section.shoppage {
		flex-direction: row;
		align-items: start;
		gap: 30px;
	}
	div.shoppage section.shoppage div.shop div.products {
		grid-template-columns: repeat(3, 1fr);
	}
	div.shoppage section.shoppage div.filtry {
		overflow: scroll;
		width: 30%;
	}
	div.shoppage section.shoppage div.shop {
		max-height: 120vh;
		overflow: scroll;
		width: 70%;
	}
	div.additionalinfo section.additionalinfo h2 {
		text-align: left;
		font-size: 28px;
	}
	div.additionalinfo section.additionalinfo table tr {
		margin: 0 40px;
	}
	div.additionalinfo section.additionalinfo table tr td:nth-child(1) {
		width: 30%;
	}
	div.additionalinfo section.additionalinfo table tr td:nth-child(2) {
		width: 70%;
	}
	div.modal section.modal {
		width: 60%;
		height: 90vh;
	}
	div.modal section.modal button {
		width: 50%;
	}
	main.page div.header div.txt h1 {
		font-size: 46px;
	}
	main.contactpage div.data section.data {
		flex-direction: row;
	}
	main.contactpage div.data section.data div.dane {
		flex-basis: 55%;
		border: 2px solid var(--hoverColor);
		margin-left: 10px;
	}
	main.contactpage div.data section.data form {
		flex-basis: 45%;
		border: 2px solid var(--hoverColor);
		margin-right: 10px;
	}
}
@media (min-width: 1280px) {
	div.topbar section.topbar div.form {
		width: 320px;
	}
	div.navbar section.navbar div.logo img {
		width: 100%;
		height: 100%;
		padding-left: 5px;
	}
	div.header section.header div.slider div.slide h1 {
		font-size: 40px;
	}
	div.lastproduct section.lastproduct div.products div.product {
		margin: 10px 10px;
	}
	div.transport section.transport div.location {
		padding: 70px;
	}
	div.contact section.contact div.img div.pomoc {
		right: 2%;
		bottom: 20%;
	}
	div.shoppage section.shoppage div.products div.product {
		width: 21%;
		margin: 10px 10px;
	}
	div.shoppage section.shoppage div.products div.product {
		width: 22%;
		margin: 10px 10px;
	}
	main.galerypage div.galery div.images {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (min-width: 1280px) and (min-height: 700px) {
	div.modal section.modal img {
		display: block;
	}
}
@media (min-width: 1480px) {
	div.topbar section.topbar div.contact {
		margin: 10px 0;
	}
	div.topbar section.topbar div.form {
		margin: 10px 0;
	}
}
.grecaptcha-badge {
	display: none !important;
} /*# sourceMappingURL=style.css.map */
