/*
Theme Name: Koduje Marzenia
Template: blocksy
Author: Mehelbangin
Description: 2024
Version: 2.0.1712426648
Updated: 2024-04-06 20:04:08

*/

/* BASIC STYLES */

:root {
	--main: #867770;
	--second: #6b1f20;
	--hover: #e75f61;
	--border-radius: 0px;
	--border: 0px solid var(--main);
	--shadow: 0px 1px 20px 0px rgb(0 0 0 / 10%);
	--section: #ffdede;
	--gradient:linear-gradient(90deg, var(--main) 0%, var(--second) 100%) !important;
	--txt: "Lato", sans-serif;
	--txtHeader: "Lato", sans-serif;
}
*{
	box-sizing:border-box;
}
body{
	background: #303030 !important;
	margin: 0;padding: 0;
	font-family: var(--txt);
}
@media screen and (max-width:992px){
	body{
		overflow-x:hidden;
	}
}
*:focus{outline: none !important;}
h1,h2,h3,h4,h5,h6{
    margin: 0;padding: 0;
	font-family: var(--txtHeader);
	font-weight: 400 !important;
}
p{
	margin:0; padding:0;
	margin-bottom:8px;
	font-weight:300 !important;
	font-size: 20px;
	line-height: 30px;
	color:#f8f8f8 !important;
}
@media screen and (max-width:768px){
	p {
		font-size: 14px;
		line-height: 24px;
	}
}
p:last-child{
	margin-bottom: 0px;
}
a{
	text-decoration:none;
	font-family: var(--txt);
}
a:hover{
	text-decoration:none;
}
img{
	width:100%;
	height:auto;
}
h1{
	font-size:60px;
	font-weight:800;
	line-height:65px;
}
h2 {
	font-size:28px !important;
	line-height:38px !important;
}
h6{
	text-transform:uppercase;
	font-size:20px;
	color:var(--main);
	letter-spacing:7px;
}
@media screen and (max-width:576px){
	h1{
		font-size:40px !important;
		line-height:50px;
	}
	h2 {
		font-size:22px !important;
		line-height:32px !important;
	}
}
::selection{
	background-color:var(--main) !important;
	color:#fff;
}

/* BONUS CLASSES */

.bg-center{
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
.position-relative{
	position:relative;
}
.txt-center{
	text-align:center;
}
.txt-center p {
	text-align: center;
}
.txt-white{
	color:#f8f8f8;
}
.txt-white p {
	color:#f8f8f8;
}
.txt-black{
	color: #000;
}
.txt-black p {
	color: #000;
}
.bg-color{
	background:var(--section);
}
.bg-black{
	background:#000;
}
.bg-gradient{
	background: var(--gradient);
}
.margin-auto{
	margin-right: auto;
	margin-left: auto;
}

.txt-main {
	color:var(--main) !important;
}

/* BUTTONS */

/* common btn */

.common-btn a {
	padding:10px 0px;
	font-size:16px;
	cursor:pointer;
	color:var(--main);
	/* border-radius: var(--border-radius); */
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:300;
	position: relative;
}
.common-btn a::after {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0px;
	transition: all 0.25s ease-out;
	background-color: var(--main);
}
@media screen and (min-width:992px){
	.common-btn a:hover::after{
		width: 0%;
	}
}
/* @media screen and (max-width:576px){
	.common-btn a{
		padding:15px 33px;
	}
} */

/* second btn */

.second-btn a {
	background:var(--second);
	padding:15px 60px;
	border:2px solid var(--second);
	font-size:16px;
	cursor:pointer;
	color:#fff;
	border-radius: var(--border-radius);
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:500;
}
@media screen and (min-width:992px){
	.second-btn a:hover{
		background:none;
		color:var(--second);
		border:2px solid var(--second);
	}
}
@media screen and (max-width:576px){
	.second-btn a{
		padding:15px 33px;
	}
}

/* white btn */

.white-btn a {
	/* padding:10px 0px; */
	font-size:20px;
	line-height: 30px;
	cursor:pointer;
	color:#fff;
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:400;
	position: relative;
}
/* .white-btn a::after {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0px;
	transition: all 0.25s ease-out;
	background-color: #fff;
} */
@media screen and (min-width:992px){
	.white-btn a:hover::after{
		width: 0%;
	}
}
/* @media screen and (max-width:576px){
	.white-btn a{
		padding:15px 33px;
	}
} */

/* black btn */

.black-btn a {
	background:#000;
	padding:15px 60px;
	border:2px solid #000;
	font-size:16px;
	cursor:pointer;
	color:#fff;
	border-radius:var(--border-radius);
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:500;
}
@media screen and (min-width:992px){
	.black-btn a:hover{
		background:none;
		color:#000;
		border:2px solid #000;
	}
}
@media screen and (max-width:576px){
	.black-btn a{
		padding:15px 33px;
	}
}

/* CONTAINER */

.container{
/* 	max-width:1336px !important; */
	margin:0 auto;
	padding-left:50px !important;
	padding-right:50px !important;
}
@media screen and (max-width:768px){
	.container {
		padding-left:20px !important;
		padding-right:20px !important;
	}
})
.container-smaller{
		max-width:1100px !important;
		margin:0 auto;
		padding-left:50px !important;
		padding-right:50px !important;
	}

/*--- FLEX ---*/

.display-flex{
	display:flex;
}
.flex-direction-column{
	flex-direction: column;
}
@media screen and (max-width:768px){
	.flex-direction-column-m{
		flex-direction: column;
	}
}
.align-items-center{
	align-items:center;
}
.align-items-end{
	align-items:end;
}
.align-items-start{
	align-items:start;
}
.justify-content-center{
	justify-content:center;
}
.justify-content-end{
	justify-content:end;
}
.justify-content-start{
	justify-content:start;
}
.justify-content-space-between{
	justify-content: space-between;
}

/*--- GRID ---*/

.grid {
	display:grid;
}

.grid-2 {
	display:grid;
	grid-template-columns: repeat(2,1fr);
}

.grid-3 {
	display:grid;
	grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
	display:grid;
	grid-template-columns: repeat(4,1fr);
}

.grid-5 {
	display:grid;
	grid-template-columns: repeat(5,1fr);
}

.grid-6 {
	display:grid;
	grid-template-columns: repeat(6,1fr);
}

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

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

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

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

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

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

.grid-2-1-1 {
	display: grid;
/* 	grid-template-columns: 2fr 1fr 1fr 1fr; */
	grid-template-columns: 50% 25% 25%;
}
.grid-1-1-2{
	display: grid;
	grid-template-columns:  1.2fr 1.2fr 3fr;
}

.grid-2-2-3 {
	display: grid;
	grid-template-columns:  1.2fr 1fr 3fr;
}
@media (min-width:1530px) and (max-width:1670px){
	.grid-2-2-3 {
		grid-template-columns:  1.2fr 0.9fr 3fr;
	}
}
@media screen and (min-width:1670px) {
	.grid-2-2-3 {
		grid-template-columns:  1.2fr 0.7fr 3fr;
	}
}

.grid-3221 {
	display: grid;
	grid-template-columns:  1.5fr 1.5fr 1fr;
}

/* RESPONSIVE GRID */

@media screen and (max-width:1170px){
	.grid-1-xl {
/* 		grid-template-columns:1fr; */
		grid-template-columns:100%;
	}
	.grid-2-xl {
		grid-template-columns:repeat(2, 1fr);
	}
	.grid-3-xl {
		grid-template-columns:repeat(3, 1fr);
	}
	.grid-1-2-xl {
		grid-template-columns: 1fr 2fr;
	}
}
@media screen and (max-width:992px){
	.grid-1-l {
		grid-template-columns:1fr;
	}
	.grid-2-l {
		grid-template-columns:1fr 1fr;
	}
	.grid-3-l {
		grid-template-columns:repeat(3, 1fr);
	}
}
@media screen and (max-width:768px){
	.grid-1-m {
		grid-template-columns: 1fr;
	}
	.grid-2-m {
		grid-template-columns:1fr 1fr;
	}
	.grid-3-m {
		grid-template-columns:1fr 1fr 1fr;
	}
}
@media screen and (max-width:576px){
	.grid-1-s {
		grid-template-columns:1fr;
	}
	.grid-2-s {
		grid-template-columns:1fr 1fr;
	}
}

/* Z-INDEX */

.z-index-1{
	z-index: 1;
	position: relative;
}
.z-index-2{
	z-index: 2;
	position: relative;
}
.z-index-3{
	z-index: 3;
	position: relative;
}
.z-index-4{
	z-index: 4;
	position: relative;
}
.z-index-5{
	z-index: 5;
	position: relative;
}
.z-index-6{
	z-index: 6;
	position: relative;
}
.z-index-7{
	z-index: 7;
	position: relative;
}
.z-index-8{
	z-index: 8;
	position: relative;
}
.z-index-9{
	z-index: 9;
	position: relative;
}
.z-index-10{
	z-index: 10;
	position: relative;
}

/* Display none */

@media screen and (max-width:992px){
	.display-none-l{
		display: none !important;
	}
}
@media screen and (min-width:992px){
	.display-none-desktop{
		display: none !important;
	}
}


/* MARGINS - FULL */

.margin-1{
	margin:10px !important;
}.margin-2{
	margin:20px !important;
}
.margin-3{
	margin:30px !important;
}
.margin-4{
	margin:40px !important;
}
.margin-5{
	margin:50px !important;
}
.margin-6{
	margin:60px !important;
}
.margin-7{
	margin:70px !important;
}
.margin-8{
	margin:80px !important;
}
.margin-9{
	margin:90px !important;
}
.margin-10{
	margin:100px !important;
}
.margin-11{
	margin:110px !important;
}
.margin-12{
	margin:120px !important;
}
.margin-13{
	margin:130px !important;
}
.margin-14{
	margin:140px !important;
}
.margin-15{
	margin:150px !important;
}
.margin-16{
	margin:160px !important;
}
.margin-17{
	margin:170px !important;
}
.margin-18{
	margin:180px !important;
}
.margin-19{
	margin:190px !important;
}
.margin-20{
	margin:200px !important;
}
/* MARGIN TOP */
.margin-top-1{
	margin-top:10px !important;
}
.margin-top-2{
	margin-top:20px !important;
}
.margin-top-3{
	margin-top:30px !important;
}
.margin-top-4{
	margin-top:40px !important;
}
.margin-top-5{
	margin-top:50px !important;
}
.margin-top-6{
	margin-top:60px !important;
}
.margin-top-7{
	margin-top:70px !important;
}
.margin-top-8{
	margin-top:80px !important;
}
.margin-top-9{
	margin-top:90px !important;
}
.margin-top-10{
	margin-top:100px !important;
}
.margin-top-11{
	margin-top:110px !important;
}
.margin-top-12{
	margin-top:120px !important;
}
.margin-top-13{
	margin-top:130px !important;
}
.margin-top-14{
	margin-top:140px !important;
}
.margin-top-15{
	margin-top:150px !important;
}
.margin-top-16{
	margin-top:160px !important;
}
.margin-top-17{
	margin-top:170px !important;
}
.margin-top-18{
	margin-top:180px !important;
}
.margin-top-19{
	margin-top:190px !important;
}
.margin-top-20{
	margin-top:200px !important;
}

/* MARGIN BOTTOM */

.margin-bottom-1{
	margin-bottom:10px !important;
}
.margin-bottom-2{
	margin-bottom:20px !important;
}
.margin-bottom-3{
	margin-bottom:30px !important;
}
.margin-bottom-4{
	margin-bottom:40px !important;
}
.margin-bottom-5{
	margin-bottom:50px !important;
}
.margin-bottom-6{
	margin-bottom:60px !important;
}
.margin-bottom-7{
	margin-bottom:70px !important;
}
.margin-bottom-8{
	margin-bottom:80px !important;
}
.margin-bottom-9{
	margin-bottom:90px !important;
}
.margin-bottom-10{
	margin-bottom:100px !important;
}

/* PADDING - FULL */

.padding-1{
	padding:10px !important;
}
.padding-2{
	padding:20px !important;
}
.padding-3{
	padding:30px !important;
}
.padding-4{
	padding:40px !important;
}
.padding-5{
	padding:50px !important;
}
.padding-6{
	padding:60px !important;
}
.padding-7{
	padding:70px !important;
}
.padding-8{
	padding:80px !important;
}
.padding-9{
	padding:90px !important;
}
.padding-10{
	padding:100px !important;
}
.padding-11{
	padding:110px !important;
}
.padding-12{
	padding:120px !important;
}
.padding-13{
	padding:130px !important;
}
.padding-14{
	padding:140px !important;
}
.padding-15{
	padding:150px !important;
}
.padding-16{
	padding:160px !important;
}
.padding-17{
	padding:170px !important;
}
.padding-18{
	padding:180px !important;
}
.padding-19{
	padding:190px !important;
}
.padding-20{
	padding:200px !important;
}

/* PADDING BOTTOM */

.padding-bottom-1{
	padding-bottom:10px !important;
}
.padding-bottom-2{
	padding-bottom:20px !important;
}
.padding-bottom-3{
	padding-bottom:30px !important;
}
.padding-bottom-4{
	padding-bottom:40px !important;
}
.padding-bottom-5{
	padding-bottom:50px !important;
}
.padding-bottom-6{
	padding-bottom:60px !important;
}
.padding-bottom-7{
	padding-bottom:70px !important;
}
.padding-bottom-8{
	padding-bottom:80px !important;
}
.padding-bottom-9{
	padding-bottom:90px !important;
}
.padding-bottom-10{
	padding-bottom:100px !important;
}
.padding-bottom-11{
	padding-bottom:110px !important;
}
.padding-bottom-12{
	padding-bottom:120px !important;
}

/* PADDING TOP */
.padding-top-0{
	padding-top:0px !important;
}
.padding-top-1{
	padding-top:10px !important;
}
.padding-top-2{
	padding-top:20px !important;
}
.padding-top-3{
	padding-top:30px !important;
}
.padding-top-4{
	padding-top:40px !important;
}
.padding-top-5{
	padding-top:50px !important;
}
.padding-top-6{
	padding-top:60px !important;
}
.padding-top-7{
	padding-top:70px !important;
}
.padding-top-8{
	padding-top:80px !important;
}
.padding-top-9{
	padding-top:90px !important;
}
.padding-top-10{
	padding-top:100px !important;
}

/* GAP */

.gap-1{
	gap:10px;
}
.gap-2{
	gap:20px;
}
.gap-3{
	gap:30px;
}
.gap-4{
	gap:40px;
}
.gap-5{
	gap:50px;
}
.gap-6{
	gap:60px;
}
.gap-7{
	gap:70px;
}
.gap-8{
	gap:80px;
}
.gap-9{
	gap:90px;
}
.gap-10{
	gap:100px;
}
.gap-11{
	gap:110px;
}
.gap-12{
	gap:120px;
}
.gap-13{
	gap:130px;
}
.gap-14{
	gap:140px;
}
.gap-15{
	gap:150px;
}
@media screen and (max-width:992px){
	.gap-0-l{
		gap:0px;
	}
	.gap-1-l{
		gap:10px;
	}
	.gap-2-l{
		gap:20px;
	}
	.gap-3-l{
		gap:30px;
	}
	.gap-4-l{
		gap:40px;
	}
	.gap-5-l{
		gap:50px;
	}
	.gap-6-l{
		gap:60px;
	}
	.gap-7-l{
		gap:70px;
	}
	.gap-8-l{
		gap:80px;
	}
	.gap-9-l{
		gap:90px;
	}
	.gap-8-l{
		gap:100px;
	}
}

/* WIDTH */

.width-10 {
	width:10%;
}

.width-20 {
	width:20%;
}

.width-30 {
	width:30%;
}

.width-40 {
	width:40%;
}

.width-50 {
	width:50%;
}

.width-60 {
	width:60%;
}

.width-65 {
	width:65%;
}

.width-70 {
	width:70%;
}

.width-80 {
	width:80%;
}

.width-90 {
	width:90%;
}

.width-100 {
	width:100%;
}

@media screen and (max-width:992px){
	.width-100-l {
		width:100% !important;
	}
}

@media screen and (max-width:768px){
	.width-100-m {
		width:100% !important;
	}
}

@media screen and (max-width:576px){
	.width-100-s {
		width:100% !important;
	}
}

/* BLOCKSY  */

/* header */

#header{
	position:fixed;
	top:0px;
	left:0px;
	right:0px;
	width:100%;
	transition: background-color 0.4s ease-out;
	background:#303030 !important;
	display:flex;
	flex-direction:column;
	justify-content:center;
	height:80px !important;
	/* border-bottom:1px solid var(--main); */
}
#header.bg-header{
	background:#000;
}
@media screen and (max-width:1000px){
	#header{
		padding:10px 0px;
	}
}
@media screen and (min-width:992px){
	#header {
		display: none !important;
	}
}
@media screen and (min-width:1000px){
	/* .sub-menu{
		background-color: #000 !important;
	} */
	/* .sub-menu .ct-menu-link{
		color: #3a4f66;
	} */
}

/* margin for content */

.page-margin-top{
	margin-top:120px;
}

.page-margin-top--double{
	margin-top: 240px;
}

.page-margin-bottom{
	margin-bottom: 120px;
}

/* no margin for home page */

/* .home.page-template .page-margin-top{
	margin-top: 0px;
} */

/* default height screen none */

#main-container{
	min-height: auto !important;
}

/* zamowienie - sticky right div */

@media (min-width:1000px) {
	.ct-order-review{
		top: 140px !important;
	}
}

.entries.wp-block-blocksy-post-template.is-layout-flow.wp-block-post-template-is-layout-flow{
	display: none !important;
}

/* BLOCKSY - END */

/* !BLOCKS */
/* !BLOCKS */
/* !BLOCKS */

/* !img-content */

/* .imgContent__img{
	height:450px;
	width:100%;
	object-fit:cover;
	border-radius:var(--border-radius);
	border:var(--border);
} */

/* !offer-one */

.offerOne__img{
	height:280px;
	width:100%;
	object-fit:cover;
}
.offerOne__tile{
	padding: 30px 20px;
	background-color: var(--section);
}

/* !banner-one */

.bannerOne{
	display: flex;
	align-items: center;
	/* min-height: 90vh; */
	min-height: calc(100vh - 120px);
	padding: 120px 0px;
}
.bannerOne__gradient{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	overflow: visible;
	background: linear-gradient(90deg, #000 0.58%, #000 99.91%);
	-webkit-mask: linear-gradient(360deg, #000 5%, transparent 100%);
}
@media screen and (max-width:768px){
	.bannerOneImg__h6{
		font-size:16px !important;
		letter-spacing:2px !important;
	}
}

/* !about-numbers */

.aboutNumbers__img{
	height: 450px;
	width: 100%;
	object-fit: cover;
}
.aboutNumbers__teil{
	padding: 20px;
	border-top: 2px solid var(--main);
	border-bottom: 2px solid var(--main);
}

/* !img-faq */

.imgFaq__img{
	height: 550px;
	width: 100%;
	object-fit: cover;
	border-radius: var(--border-radius);
	border: var(--border);
}
.imgFaq__box{
	position: relative;
	padding:16px;
	cursor: pointer;
	border-radius: 0px;
	border-bottom: 1px solid var(--main);
	transition: all 0.4s ease-out;
}
.imgFaq__answer p{
	margin-top: 24px;
	color:#000;
}	
.imgFaq__answer{
	max-height:0px;
	overflow:hidden;
	transition: max-height 0.4s ease-out;
}
.imgFaq__title{
	margin-bottom: 0px !important;
}
.imgFaq__box.active .imgFaq__answer{
	max-height:1000px;
}

.imgFaq__box:first-child{
	padding-top: 0px !important;
}
.imgFaq__box:last-child{
	border-bottom: none;
}
.imgFaq__icon{
	width:20px;
	height:20px;
	position:absolute;
	right:0;
	top:50%;
	transition: all 0.4s ease-out;
	transform: translate(0%, -50%);
}
.imgFaq__box.active .imgFaq__icon{
	transform: translate(0%, -50%) rotate(180deg);
}
@media screen and (max-width:768px){
	.imgFaq__img{
		height:350px;
	}
}

/* !img-full */

.imgFull__img{
	height:440px;
	object-fit:cover;
	width:100%;
}

/* !img-benefits-list */

.imgBenefitsList__img{
	height: 550px;
	object-fit: cover;
	width: 100%;
	border-radius: var(--border-radius);
	border: var(--border);
}

.imgBenefitsList__box{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	gap: 15px;
}

.imgBenefitsList__box::before{
	content: "";
	display: inline-block;
	min-width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/05/checked.png);
	background-size: cover;
}

.imgBenefitsList__allBoxes .imgBenefitsList__box:last-child{
	margin-bottom: 0px;
}
@media screen and (max-width:768px){
	.imgBenefitsList__img{
		height:350px;
	}
}

/* !video-banner */

.videoBanner{
  	display: flex;
   	align-items: center;
   	justify-content: center;
   	z-index: 0;
   	/* min-height:100vh; */
	min-height: calc(100vh - 120px);
	padding-top:100px;
   	padding-bottom:100px;
}
.videoBanner video{
   height: 100%;
   width: 100%;
   bottom: 0;
   right: 0;
   position: absolute;
   top: 0;
   left: 0;
   object-fit: cover;
   z-index: -1;
}
.videoBanner__overlayMain{
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background:linear-gradient(90deg, #000 0.58%, #000 99.91%);
	-webkit-mask: linear-gradient(360deg, #000 5%, transparent 100%);
	overflow:visible;
}
.videoBanner__overlayCircle{
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	background:linear-gradient(90deg, var(--main) 0%, rgba(0, 64, 119, 0.2) 100%);
	-webkit-mask: radial-gradient(circle at 0% -20%, var(--main) 0%, transparent 45%);
}

/* !benefits-sticky */


.benefitsSticky__box{
	background-color: #fff;
	padding: 20px;
	/* box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1); */
	margin-bottom: 20px;
	border-radius: var(--border-radius);
}
.benefitsSticky__allBoxes .benefitsSticky__box:last-child{
	margin-bottom: 0px;
}
.benefitsSticky__icon{
	width: 90px;
}
@media screen and (min-width:992px){
	.benefitsSticky__stickyDiv{
		position: sticky;
		top: 180px;
	}
}

/* !slider-right-overflow */

.swiper-slide{
	text-align: left;
	font-size: 20px;
	/* width: auto !important; */
	/* width: 550px !important; */
	height: auto !important;
	margin-right: 20px !important;
	cursor: pointer;
	/* background-color: var(--second); */
	transition: all 0.3s ease-out;
	/* border-radius: var(--border-radius); */
}


.swiper-slide__img {
	width: 400px;
	height: 350px;
	object-fit: contain;
	border-radius: var(--border-radius);
}
.swpier-slider__descBox{
	padding: 0px 20px 20px 20px;
}
.swpier-slider__img__gradient{
	position: absolute;
	top: 0px;
	bottom: -1px;
	right: 0px;
	left: 0px;
	/* background: linear-gradient(0deg, var(--main) 0%, rgba(12, 0, 161, 0) 60%); */
	background: linear-gradient(180deg, transparent 0%, var(--second) 100%) !important;
	transition: all 0.3s ease-out;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background:var(--main) !important;
}


/* arrows swiper */

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
	content: "";
	display: none;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
	content: "";
	display: none;
}
.swiper-button-prev.swiper-button-disabled{
	opacity: 0 !important;
}
.swiper-button-next {
	width: 40px !important;
	right: 0px !important;
}
.swiper-button-prev{
	width: 40px !important;
	left: 0px !important;
}

/* progress bar swiper */

.swiper-pagination {
    width: 100%; /* Szerokość paginacji równa szerokości slidera */
    height: 5px; /* Wysokość paska */
}

.swiper-pagination-progressbar {
    background-color: #fff !important; /* Kolor paska postępu */
}

.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal{
	top: unset !important;
	bottom: -60px;
	width: 40% !important;
	left: 50% !important;
	transform: translateX(-50%);
}

@media screen and (max-width:768px){
	/* .swiper-slide{
		width: 300px !important;
	} */
	.swiper-slide__img{
		width: 300px !important;
		height: 280px !important;
	}
	.swpier-slider__descBox{
		height: calc(100% - 280px);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	/* arrows */
	.swiper-button-next{
		right: -20px !important;
		width: 50px !important;
	}
	.swiper-button-prev{
		left: -20px !important;
		width: 50px !important;
	}
}

/* !four-img-banner */

.fourImgBanner__img{
	width: 100%;
	object-fit: cover;
	border-radius:var(--border-radius);
}
.fourImgBanner__img--1{
	height: 400px;
}
.fourImgBanner__img--4{
	height: 400px;
}
.fourImgBanner__img--2{
	height: 350px;
	margin-top: 100px;
}
.fourImgBanner__img--3{
	height: 350px;
	margin-top: 30px;
}
@media screen and (max-width:992px){
	.fourImgBanner__img--3{
		margin-top: -50px;
	}
}
@media screen and (max-width:576px){
	.fourImgBanner__img--1{
		height: 320px;
	}
	.fourImgBanner__img--2{
		height: 270px;
	}
	.fourImgBanner__img--3{
		height: 270px;
	}
	.fourImgBanner__img--4{
		height: 320px;
	}
}

/* !entry-three */

.blog-box{
	padding:24px;
	border:var(--border);
	border-radius:var(--border-radius);
	box-shadow: var(--shadow);
	background-color: #fff;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
	transition:transform 0.3s ease-out;
}
.simple-button-anchor{
	color:#000;
	display:flex;
	align-items:center;
}
.simple-button-anchor img {
	width:20px;
	margin-left:10px;
	transition:all 0.3s ease-out;
}
.blog-box-anchor{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	border-radius:var(--border-radius);
}
.blog-box__header{
	display: -webkit-box;
	-webkit-line-clamp:2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-box__thumbnail{
	height: 250px;
	width: 100%;
	object-fit: cover;
	border-radius: var(--border-radius);
}

@media screen and (max-width:768px){
	.entryThree__btnBox{
		display: none;
	}
}
@media screen and (min-width:768px){
	.entryThree__btnBox{
		display: flex;
		flex-direction: column;
		align-items: end;
		justify-content: center;
	}
	.entryThree__mobileBtnBox{
		display: none;
	}
}
@media screen and (min-width:992px){
	.blog-box:hover .simple-button-anchor img{
		margin-left:24px;
	}
	.blog-box:hover {
		transform:scale(0.96);
	}
}

/* !entry-two */

.blog-box__thumbnail--bigger{
	min-height: 300px;
}

/* !entry-all */

.entryAll{
	margin-top:-80px;
}
@media screen and (min-width:992px){
	.entryAll{
		margin-top:-100px;
	}
}

/* !products-list-recent */

.productsList__teil{
	padding: 24px;
	border-radius: var(--border-radius);
	border: var(--border);
	box-shadow: var(--shadow);
	background:#fff;
}

.productsList__thumbnail{
	height: 450px;
	width: 100%;
	object-fit: cover;
}

.productsList__thumbnailBox--anchor{
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
}

/* !banner-slider */

.bannerSlider{
	display: flex !important;
	align-items: center;
	/* min-height: 90vh; */
	min-height: calc(100vh - 120px) !important;
	padding: 120px 0px;
}
.bannerSlider__gradient{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	overflow: visible;
	background: linear-gradient(90deg, #000 0.58%, #000 99.91%);
	-webkit-mask: linear-gradient(360deg, #000 5%, transparent 100%);
}

/* !gallery-five */

.galleryFive__imgBig{
	width: 100%;
	object-fit: cover;
	height: 500px;
	border-radius: var(--border-radius);
	border: var(--border);
}
.galleryFive__imgSmall{
	width: 100%;
	object-fit: cover;
	height: 245px;
	border-radius: var(--border-radius);
	border: var(--border);
}

@media screen and (min-width:992px){
	.galleryFive__boxBtn{
		display: flex;
		align-items: center;
		justify-content: end;
	}
	.no-display-desktop{
		display:none;
	}
}
@media screen and (max-width:992px){
	.galleryFive__boxBtn{
		display: none;
	}
}
@media screen and (max-width:576px){
	.galleryFive__imgBig{
		height: 320px;
	}
	.galleryFive__imgSmall{
		height: 170px;
	}
}

/* !products-categories */

.swpier-slide__anchor{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	border-radius: var(--border-radius);
}
.swpier-slider-icon{
	width: 30px;
	filter:brightness(0);
}
.swpier-slider-headerArrow{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
.swiper-button-next img {
	width: 40px;
}
.swiper-button-prev img {
	width: 40px;
}
@media screen and (max-width:992px){
	.swiper-button-next img {
		width: 25px;
	}
	.swiper-button-prev img {
		width: 25px;
	}
}
@media screen and (min-width:992px){
	.btn-right-desktop{
		display: flex;
		flex-direction: column;
		align-items: end;
		justify-content: center;
	}
}

/* !banner-one-img */

.bannerOneImg__absoluteImg{
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 48%;
	right: 0px;
}
.bannerOneImg__imgRight{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 20px 0px 0px 20px;
}
.bannerOneImg__imgMobile{
	height: 350px;
	object-fit: cover;
	width: 100%;
	border-radius: var(--border-radius);
}
@media screen and (max-width:992px){
	.bannerOneImg__content{
		padding-top: 50px;
	}
}
@media screen and (min-width:992px){
	.bannerOneImg__content{
		padding-top: 120px;
		padding-bottom: 120px;
	}
}

/* !benefits-boxes */

.benefitsBoxes__h4 {
	font-size:20px !important;
	line-height:26px !important;
}

.benefitsBoxes__icon{
	width: auto;
	height: 70px;
	object-fit: contain;
}
.benefitsBoxes__box{
	padding: 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
	background-color: #fff;
}
.benefitsBoxes{
	margin-top: -40px;
}
@media screen and (max-width:992px){
	.benefitsBoxes__mobilePadding{
		padding: 0px 20px;
	}
	.benefitsBoxes__h4 {
		font-size:17px !important;
		line-height:23px !important;
	}
}

/* !two-img-content */

.twoImgContent__img{
	height: 450px;
	object-fit: cover;
	width: 100%;
	border-radius: var(--border-radius);
	border: var(--border);
}
@media screen and (max-width:992px){
	.twoImgContent__img{
		height: 280px;
	}
}

/* !info-form */

/* .infoForm__content{
	padding: 30px;
	border-radius: var(--border-radius);
	border: var(--border);
} */
/* .infoForm__formBox{
	padding: 30px;
	border: 2px solid var(--main);
}
@media screen and (max-width:768px){
	.infoForm__formBox {
		padding:20px;
	}
} */
.contactInfo__phone{
	display: flex;
	align-items: center;
	gap: 16px;
}
/* .contactInfo__phone::before{
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/05/phone-form.png);
	background-size: cover;
} */
.contactInfo__email {
	display: flex;
	align-items: center;
	gap: 16px;
}
/* .contactInfo__email::before{
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/05/email-form.png);
	background-size: cover;
} */
.contactInfo__adres{
	display: flex;
	align-items: center;
	gap: 16px;
}
/* .contactInfo__adres::before{
	content: "";
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/05/place-form.png);
	background-size: cover;
} */



@media screen and (min-width:992px){
	/* .infoForm__content{
		position: sticky;
		top: 180px;
	} */
	.contactInfo__phone a:hover {
		opacity: 0.7;
		color: #fff;
	}
	.contactInfo__email a:hover{
		opacity: 0.7;
		color: #fff;
	}
}

/**//**//**//**//**//**/
/* CONTACT SECTION */
/**//**//**//**//**//**/


input[type=text],input[type=email],input[type=number],input[type=tel]{
	-webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   width:100%;
   padding:30px 25px;
   border:none !important;
   border-radius: var(--border-radius);
   background:transparent;
   text-align:center;
   font-size:18px;
   color:#000;
}
input[type=text]:focus,input[type=email]:focus,input[type=number]:focus,input[type=tel]:focus{
   outline:none;
   background:transparent;
   border:2px solid var(--main);
   color: #000 !important;
}

/* form contact */

.formMain input[type=text], .formMain input[type=email], .formMain input[type=number], .formMain input[type=tel]{
	/* border:2px solid var(--main); */
	background-color: #4b4b4b;
	color:#fff !important;
}
.formMain input[type=text]:focus,.formMain input[type=email]:focus, .formMain input[type=number]:focus, .formMain input[type=tel]:focus{
	/* border:2px solid var(--main); */
	background-color: #4b4b4b;
	color:#fff !important;
}

.contact-box{
   padding:40px;
   background:#234a48;
   box-shadow:0px 1px 20px 0px rgb(0 0 0 / 10%);
}
@media screen and (max-width:576px){
   .contact-box{
	   padding:40px 20px;
   }
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
   padding:15px;
   border-color:#fff;
   color:#fff;
   font-size:12px;
}
@media screen and (min-width:992px){
   .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	   font-size:16px;
   }
}
.txt-area{
	-webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   width:100%;
   padding:12px 20px;
   border:none !important;
   border-radius: var(--border-radius);
   resize:none;
   height:90px;
   margin-bottom:20px;
   background:#4b4b4b !important;
   text-align:center;
   font-size:18px;
   color:#fff;
}
.txt-area:focus{
   outline:none;
   background:transparent;
   border:2px solid var(--main);
   color: #fff !important;
}
.wpcf7 .wpcf7-submit{
   float:none !important;
}

/* PRZYCISK - CONTACT FORM */

input[type=submit]{
   all: unset;
   background:#4b4b4b !important;
   border-radius: var(--border-radius);
   border: 2px solid #4b4b4b;
   padding:15px 60px !important;
   font-size:20px !important;
   cursor:pointer !important;
   margin-top:60px !important;
   transition:all 0.4s !important;
   letter-spacing:1px !important;
   position:relative !important;
   overflow:hidden !important;
   font-weight:500 !important;
   z-index:1 !important;
   color:#fff !important;
   display:flex !important;
}
@media screen and (min-width:992px){
   input[type=submit]:hover{
	   background: var(--main) !important;
	   color: #000 !important;
	   border:2px solid var(--main) !important;
   }
}

.wpcf7-not-valid-tip{
   color:#fff;
   font-size:10px;
   padding-left:20px;
   margin-top:7px;
}
span .wpcf7-list-item-label{
   font-size:12px;
}
@media screen and (min-width:768px){
   .wpcf7-not-valid-tip{
	   font-size:12px;
   }
}
input[type="checkbox"] {
 -webkit-appearance: none;
 appearance: none;
 background-color: #fff;
 margin: 0;
}
input[type="checkbox"] {
 appearance: none;
 background-color: transparent;
 border-radius: 5px;
 margin: 0;
 font: inherit;
 color: currentColor;
 width: 20px !important;
 height: 20px;
 border: 0.15em solid #fff;
 transform: translateY(-0.075em);
 margin-right:10px;
	display: grid;
 place-content: center;
   cursor:pointer;
}
input[type="checkbox"]::before {
 content: "";
 width: 20px;
 height: 20px;
 border-radius: 5px;
 transform: scale(0);
 transition: 120ms transform ease-in-out;
   background-color:#fff;
}
#wpadminbar #adminbarsearch .adminbar-button{
   display:none !important;
}
input[type="checkbox"]:checked::before {
 transform: scale(1);
}
label{
   display:flex;
   justify-content:center;
   align-items:center;
   cursor:pointer;
}
.wpcf7-list-item label{
   display:flex;
   justify-content:center;
   align-items:center;
   cursor:pointer;
}
::placeholder{
   color: #fff;
   font-size: 18px;
   font-weight: 300;
}
.wpcf7 form.sent .wpcf7-response-output{
   border-color:#fff;
   color:#fff;
   margin: 0px !important;
   margin-top: 10px !important;
}
.wpcf7 label:not(.wpcf7-form-control-wrap){
   display:flex !important;
}

.wpcf7 .wpcf7-submit:disabled{
	cursor: not-allowed !important;
	background-color: #a09fa5 !important;
	border: 2px solid #a09fa5 !important;
	color: #7c7983 !important;
	opacity: 1 !important;
}

/* end contact */



/* !products-list-slider */

.productsList__teil.swiper-slide{
	background-color: #fff !important;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.productsListSlider__thumbnail{
	height: 260px;
	width: 100%;
	object-fit: contain;
	background:#fff;
	border-radius: var(--border-radius);
}

/* !contact-info-banner */

.contactInfoBanner__content{
	padding: 30px;
	border-radius: var(--border-radius);
	border: var(--border);
}
.contactInfoBanner__imgMobile{
	height: 350px;
	object-fit: cover;
	width: 100%;
	border-radius: var(--border-radius);
}
.contactInfoBanner__absoluteImg{
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 70%;
	right: 0px;
}
.contactInfoBanner__imgRight{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 20px 0px 0px 20px;
}
@media screen and (max-width:992px){
	.contactInfoBanner{
		padding-top: 70px;
	}
}
@media screen and (min-width:992px){
	.contactInfoBanner__content{
		margin-top: 120px;
		margin-bottom: 120px;
	}
}

/* !form-center */


.formCenter__gridBox{
	margin-top: -80px;
	z-index: 1;
	position: relative;
	padding-left: 20px;
	padding-right: 20px;
}

@media screen and (min-width:992px){
	.formCenter__gridBox{
		width: 70%;
		margin-left: auto;
		margin-right: auto;
		margin-top: -50px;
		z-index: 1;
		position: relative;
	}
}

/* !cta-full-box */

.ctaFullBox__content{
	padding: 30px;
	background-color: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}
.ctaFullBox__gradient{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, var(--second) 0%, transparent);
}

/* !place-map */

.placeMap__content{
	padding: 20px;
	border-radius: var(--border-radius);
}
.placeMap__icon{
	width: 90px;
	height: 90px;
}
.contact-map{
	filter:grayscale(100%);
}
.contact-map iframe{
	width: 100%;
    min-height: 500px;
    height: 100%;
	border-radius: var(--border-radius);
}
@media screen and (max-width:768px){
	.contact-map iframe{
		min-height: 350px;
	}
}

/* !img-content-slider */

.imgContentSlider__desc p {
	font-size:16px !important;
}


.swiper-slide__contentOffer{
	width: 100%;
}

.swiper-main{
	overflow-y: hidden;
	width: 100%;
	height: auto;
	overflow-x: hidden;
}


.swiper-slide-imgContentSlider{
	width: 100% !important;
	margin-right: 0px !important;
}
.swiper-slide__imgContentSlider{
	height: 500px;
	object-fit: cover;
	width: 100%;
	border-radius:var(--border-radius);
}

.swiper-button-next--offer{
	right: 20px !important;
	bottom: -70px !important;
	top: unset !important;
}
.swiper-button-prev--offer{
	right: 100px !important;
	left: unset !important;
	bottom: -70px !important;
	top: unset !important;
}
.swiper-button-prev--offer.swiper-button-disabled{
	opacity: 0.35 !important;
}
.imgContentSlider__contentBox{
	padding:20px 20px 20px 0px;
}
@media screen and (max-width:992px){
	.swiper-button-next--offer{
		right: 0px !important;
		bottom: 50% !important;
		top: unset !important;
		transform:translateY(-50%) !important;
	}
	.swiper-button-prev--offer.swiper-button-disabled{
		opacity: 0 !important;
	}
	.swiper-button-prev--offer{
		left: 0px !important;
		bottom: 50% !important;
		transform:translateY(-50%) !important;
		top: unset !important;
	}
	.imgContentSlider__contentBox{
		padding:20px !important;
	}
}
@media screen and (max-width:768px){
	.swiper-slide__imgContentSlider{
		height:350px;
	}
}

/* !entry-content */

.entryContent__stickyBox{
	padding: 20px;
	border-radius: var(--border-radius);
}
.entryContent__img{
	height:500px;
	object-fit:cover;
	width:100%;
	border-radius: var(--border-radius);
}
.entryContent__mainDesc h2 {
	margin-bottom:10px;
	margin-top:20px;
}
.entryContent__lineSeparator{
	height:1px;
	width:100%;
	background-color:var(--main);
}
@media screen and (min-width:992px){
	.entryContent__stickyBox{
		position:sticky;
		top:150px;
	}
}
@media screen and (max-width:768px){
	.entryContent__img{
		height:350px;
	}
}

/* widget - Price Filter WooCommerce */

.priceFilter__box input[type="checkbox"]{
	border: 0.15em solid var(--main);
}
.priceFilter__box input[type="checkbox"]::before{
	background-color: var(--main);
}
.ct-sidebar .ct-widget:not(:last-child){
	margin-bottom: 20px !important;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--main);
}

/* WOOCOMMERCE */

/* overall */

/* custom thumbnail */

.related figure {
	display:none !important;
}
.header__taxProduct.container figure {
	display:none !important;
}
.custom-product-thumbnail {
	width:100%;
	background:#fff;
	padding:20px;
	border-radius:var(--border-radius);
}
.custom-product-thumbnail img {
	height:300px;
	object-fit:contain;
	width:100%;
}

/* make it grid */

/* basic */

header .ct-cart-content{
	display: none !important;
}

/* MAIN SHOP PAGE */

.headerBox__mainShop{
	margin-top: 190px;
}
.singleCategory__box{
	width: 100% !important;
	background-color: var(--second);
	border-radius: var(--border-radius);
	transition: all 0.3s ease-out;
}
.singleCategory__box .swiper-slide__img{
	width: 100% !important;
}
@media screen and (min-width:992px){
	.singleCategory__box:hover{
		transform: scale(0.95);
	}
}

/* TAXONOMY PRODCUT PAGE */

.header__taxProduct{
	margin-top: 190px;
	margin-bottom: 70px;
}
.tax-product_cat .wp-post-image{
	aspect-ratio: auto !important;
	height: 260px;
	width: 100%;
	object-fit: contain;
}

/* widget woocommerce */

.tax-product_cat .ct-container aside.ct-hidden-sm{
	display: block !important;
}
.tax-product_cat .ct-container aside.ct-hidden-sm .ct-sidebar{
	background-color: #fff;
	padding: 20px;
	position: sticky;
	top: 150px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}
.tax-product_cat .ct-container aside.ct-hidden-sm .ct-sidebar .widget-title{
	margin-bottom: 15px;
}
.productCatList__ul li a.active {
	color: var(--main);
	font-weight: 700;
}

/* SINGLE PRODUCT PAGE */

.single-product .woocommerce-tabs.wc-tabs-wrapper{
	display:none;
}

.single-product .ct-container-full{
	margin-top: 190px;
	margin-bottom: 70px;
}
.hero-section{
	margin-bottom: 20px !important;
}
.single-product .wp-post-image {
	height: 600px;
	object-fit: contain;
	width: 100%;
	background:#fff;
}
.single-product .related .wp-post-image{
	height: 300px;
	object-fit: contain;
	width: 100%;
}
.single-product input[type=number]{
	border: 2px solid var(--main) !important;
	color: #000 !important;
}
.single-product .product_title.entry-title {
	font-size: 30px !important;
	line-height:38px !important;
}
.single-product div.woocommerce-product-gallery{
	margin-bottom: 0px !important;
}
.reviewsSingleProduct__box{
	display: flex;
	gap: 10px;
	align-items: center;
}
.lastSingleProduct__box{
	display: flex;
	gap: 10px;
	align-items: center;
}
.last__txtBox{
	font-weight: 600;
}
.descProduct__img{
	height: 500px;
	width: 100%;
	object-fit: contain;
	background:#fff;
	border-radius: var(--border-radius);
	border: var(--border);
}
.related{
	display: block !important;
}
.related__header{
	font-size: 32px !important;
}

.descProduct__desc ul {
	list-style: none;
	padding-left: 0px;
}
.descProduct__desc ul li {
	background-image: url(/wp-content/uploads/2024/05/checked.png);
	background-position: left top 3px;
	background-repeat: no-repeat;
	background-size: 21px;
	padding: 0 0 0 30px;
	margin: 10px 0px;
}

/* reviews slider */

.slide__reviewsProduct {
	padding: 30px;
	border-radius: var(--border-radius);
	border: var(--border);
	box-shadow: var(--shadow);
	font-size: 16px;
	background-color: #fff !important;
}

/* counter */

#counter-date{
	display: none;
}
.counter__item{
	border: 2px solid var(--main);
	padding: 2px 14px;
	border-radius: var(--border-radius);
}
.counter__section{
	display: flex;
	gap: 20px;
	text-align: center;
}
.time__item{
	font-weight: 800;
}
.counter__header{
	color: #000;
	font-weight: 700;
}

@media screen and (max-width:768px){
	.single-product .wp-post-image{
		height:320px !important;
	}
	.descProduct__img{
		height: 320px !important;
	}
	.related [data-products], .upsells [data-products]{
		--shop-columns:repeat(1, minmax(0, 1fr)) !important;
	}
}
@media screen and (max-width:1000px){
	.single-product div.woocommerce-product-gallery{
		margin-bottom: 24px !important;
	}
}
@media screen and (min-width:992px){
	.second-order-img{
		order: 2 !important;
	}
}
@media (min-width:1000px){
	.ct-default-gallery .product-entry-wrapper{
		display: grid !important;
		grid-template-columns: repeat(2,1fr);
		gap: 32px;
	}
	.ct-default-gallery .entry-summary{
		width: 100% !important;
		margin-inline-start: 0px !important;
	}
	.ct-default-gallery .woocommerce-product-gallery{
		width: 100% !important;
	}
	.single-product .sticky-summary .entry-summary{
		position: static;
	}
}
@media screen and (max-width:576px){
	.single-product .product_title.entry-title{
		font-size: 22px !important;
		line-height:28px !important;
	}
}


/* CART PAGE (KOSZYK) */

.coupon button {
	border-radius: var(--border-radius) !important;
}
.cart_totals{
	border-radius: var(--border-radius);
	border: 2px solid var(--main) !important;
}
.ct-woocommerce-cart-form .cart_totals{
	top:150px !important;
}

/* ORDER (ZAMOWIENIE) PAGE */

#customer_details .woocommerce-shipping-fields{
	display: none !important;
}
.ct-order-review{
	border-radius: var(--border-radius);
	border: 2px solid var(--main) !important;
}
table.shop_table tr{
	--theme-table-border-style:solid !important;
}
#payment .payment_methods>.wc_payment_method>label, #payment .payment_methods>.woocommerce-PaymentMethod>label{
	justify-content: start !important;
}
#shipping_method label {
	justify-content: start;
}

.woocommerce-checkout .woocommerce-account-fields{
	display:none;
}

/* THANKY YOU (PODZIEKOWANIE) PAGE */

.woocommerce-customer-details address{
	border-radius: var(--border-radius) !important;
	padding: 20px !important;
	border: 1px solid var(--main) !important;
}





/* added */

.prodCat__boxGrid {
	background:#fff;
	border-radius:20px;
	box-shadow:var(--shadow);
}

.descHeader__box {
	background:#fff;
	border-radius:20px;
	box-shadow:var(--shadow);
	padding:20px;
}

.descHeader__box h4 {
	margin-bottom:20px !important;
}



/* @media screen and (min-width:992px){
	#header {
		display:none !important;
	}
} */

[data-header*="type-1"] .ct-header [data-id="menu"] > ul > li > a {
	font-weight:400 !important;
}

/* !two-img-one-three */

.twoImgOneThree__img {
	height: 600px;
	object-fit: cover;
	width: 100%;
}
@media screen and (max-width:992px){
	.twoImgOneThree__img {
		height: auto;
	}
}

.social-icons-menu {
	width:15px;
	height:15px;
	object-fit:contain;
}


.lightbox .lb-image {
	border:none !important;
}

.gallery-main__anchor {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
	transition: all 0.3s ease-out;
}

@media screen and (min-width:992px){
	.gallery-main__anchor::after {
		content: ""; /* Dodanie contentu w stanie początkowym */
		position: absolute; /* Upewnienie się, że ::after zajmuje całą powierzchnię */
		top: 0px;
		bottom: 0px;
		left: 0px;
		right: 0px;
		background: transparent;
		opacity: 0; /* Ustawienie początkowej wartości opacity */
		transition: all 0.3s ease-out;
	}

	.gallery-main__anchor:hover::after {
		background: #000;
		opacity: 0.4;
	}
}

/* !three-img-one-one-two */

.threeImgOneOneTwo__img {
	height: 600px;
	object-fit: cover;
	width: 100%;
}
@media screen and (max-width:992px){
	.threeImgOneOneTwo__img {
		height: auto !important;
	}
}

/* !five-img-on-three */

.fiveImgOnThree__img {
	height: 750px;
	width: 100%;
	object-fit: cover;
}
.fiveImgOnThree__img-3 {
	height: 200px;
	width: 100%;
	object-fit: cover;
}
.fiveImgOnThree__img-4 {
	height: 530px;
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width:992px){
	.fiveImgOnThree__img {
		height: auto !important;
	}
	.fiveImgOnThree__img-3 {
		height: auto !important;
	}
	.fiveImgOnThree__img-4 {
		height: auto !important;
	}
}

/* !four-img-on-two */

.fourImgOnTwo__img {
	height: 600px;
	width: 100%;
	object-fit: cover;
}
.fourImgOnTwo__img--2 {
	height: 180px;
	width: 100%;
	object-fit: cover;
}
.fourImgOnTwo__img--3 {
	height: 400px;
	width: 100%;
	object-fit: cover;
}

@media (min-width:992px) and (max-width:1170px){
	.fourImgOnTwo__img {
		height: 400px;
	}
	.fourImgOnTwo__img--2 {
		height: 120px;
	}
	.fourImgOnTwo__img--3 {
		height: 260px;
	}
}
@media (min-width:1170px) and (max-width:1430px) {
	.fourImgOnTwo__img {
		height: 500px;
	}
	.fourImgOnTwo__img--2 {
		height: 130px;
	}
	.fourImgOnTwo__img--3 {
		height: 350px;
	}
}
@media screen and (max-width:992px) {
	.fourImgOnTwo__img {
		height: auto;
	}
	.fourImgOnTwo__img--2 {
		height: auto;
	}
	.fourImgOnTwo__img--3 {
		height: auto;
	}
}

/* !two-img-height */

.twoImgHeight__img {
	height: 770px;
	object-fit: cover;
	width: 100%;
}
@media screen and (min-width:1670px){
	.twoImgHeight__img {
		height: 900px;
	}
}
@media screen and (max-width:992px){
	.twoImgHeight__img {
		height: auto;
	}
}


.postCard__section .fourImgOnTwo__img--2 {
	height: 160px;
}
.postCard__section .fourImgOnTwo__img--3 {
	height: 420px;
}
@media screen and (max-width:992px){
	.postCard__section .fourImgOnTwo__img--2 {
		height: auto;
	}
	.postCard__section .fourImgOnTwo__img--3 {
		height: auto;
	}
}


/* !four-img-on-three */

.fourImgOnThree__img {
	height: 800px;
	width: 100%;
	object-fit: cover;
}
.fourImgOnThree__img--3 {
	height: 210px;
	width: 100%;
	object-fit: cover;
}
.fourImgOnThree__img--4 {
	height: 570px;
	width: 100%;
	object-fit: cover;
}

/* !slider-right-projects */

/* .sliderRightOverflow {
	background-color: #141414;
} */

.sliderRightProjects .wp-post-image{
	height: 345px !important;
	object-fit: cover;
	width: 100%;
}

@media (min-width:1170px) and (max-width:1300px) {
	.sliderRightProjects .wp-post-image {
		height: 230px !important;
	}
}
@media (min-width:1300px) and (max-width:1500px){
	.sliderRightProjects .wp-post-image {
		height: 275px !important;
	}
}
@media (min-width:1500px) and (max-width:1670px) {
	.sliderRightProjects .wp-post-image {
		height: 310px !important;
	}
}
@media screen and (min-width:1670px){
	.sliderRightProjects .wp-post-image {
		height: 390px !important;
	}
}
@media (min-width:992px) and (max-width:1170px) {
	.sliderRightProjects .wp-post-image {
		height: 300px !important;
	}
}
@media (min-width:576px) and (max-width:768px){
	.sliderRightProjects .wp-post-image {
		height: 420px !important;
	}
}
@media (min-width:430px) and (max-width:576px){
	.sliderRightProjects .wp-post-image {
		height: 305px !important;
	}
}
@media screen and (max-width:430px){
	.sliderRightProjects .wp-post-image {
		height: 212px !important;
	}
}
.sliderRightProjects__header {
	font-size: 24px;
	line-height: 30px;
	padding: 0px 15px;
	text-align: center;
	width: 100%;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
}

@media screen and (max-width:768px){
	
	.sliderRightProjects__header {
		font-size: 14px;
	}
}


/* !all-projects */

/* .allProjects__header {
	position: sticky;
	top: 100px;
} */

.allProjects__teil .wp-post-image {
	height: 280px;
	width: 100%;
	object-fit: cover;
}


.lb-data .lb-number {
	display: none !important;
}


[data-header*="type-1"] .ct-header [data-id="menu"] .sub-menu {
	--dropdown-background-color:#000 !important;
	--dropdown-divider: 0px dashed rgba(255, 255, 255, 0.1) !important;
}
[data-header*="type-1"] .ct-header [data-id="menu"] .sub-menu .ct-menu-link {
	--theme-link-initial-color: #fff !important;
}


.infoFormImg__img {
	height: 480px;
	object-fit: cover;
	width: 100%;
}
@media screen and (max-width:992px){
	.infoFormImg__img {
		height: auto !important;
	}
}


#wild-episode .singleContentOne__img {
	height: 680px;
	object-fit: cover;
	width: 100%;
}
@media screen and (max-width:768px){
	#wild-episode .singleContentOne__img {
		height: auto !important;
	}
}
@media screen and (min-width:1370px){
	#wild-episode .singleContentOne__img {
		height: 1000px !important;
	}
}

.singleContentTwo__all {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width:768px){
	.singleContentTwo__all {
		width: 100%;
	}
}
.singleContentTwo__teil {
	margin-bottom: 20px;
}
.singleContentTwo__all .singleContentTwo__teil:last-child {
	margin-bottom: 0px !important;
}




.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
  }
  .embed-responsive-16by9 {
	padding-bottom: 56.25%; /* 9/16 = 0.5625 (56.25%) */
	border-radius: 0px;
  }
  .embed-responsive-16by9--higher {
	padding-bottom: 106%;
	border-radius: 0px;
  }
  @media screen and (max-width:992px){
	.embed-responsive-16by9--higher {
		padding-bottom: 100%;
	}
  }
  .embed-responsive-item {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* #sectionParis .singleContentFour__boxSticky {
	position: sticky;
	top: 100px;
} */



.video-container {
	position: relative;
	display: inline-block;
}

.video-container video {
	display: block;
	filter: brightness(50%); /* Wyszarzone tło */
	cursor: pointer;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	width: 80px; /* Rozmiar przycisku */
	height: 80px;
}

.logo__img {
	width: 280px;
}
@media screen and (max-width:430px){
	.logo__img {
		width: auto;
	}
}

@media screen and (min-width:992px){
	.margin-logo-section {
		margin-top: 145px;
	}
}

.menu__anchor {
	color: #f8f8f8 !important;
	font-size: 20px;
	line-height: 32px;
	transition: all 0.3s ease-out;
	font-weight:300;
}
.menu__anchor.active {
	font-weight:400;
}
@media screen and (min-width:992px){
	.menu__anchor:hover {
		opacity: 0.8;
	}
}


@media screen and (min-width:1170px){
	.infoForm__formBox {
		width: 50%;
		margin-left: auto;
		margin-right: auto;
	}
}

.contactAnchor__email{
	font-size: 20px;
	line-height: 30px;
	font-weight: 300 !important;
}
@media screen and (max-width:768px){
	.contactAnchor__email {
		font-size: 14px;
		line-height: 24px;
	}
}

@media screen and (max-width:992px){
	.infoForm__content {
		display: none !important;
	}
}


@media screen and (min-width:1170px){
	.imgAuthor__teil {
		width: 50%;
		margin-left: auto;
		margin-right: auto;
	}
}
@media (min-width:768px) and (max-width:1170px){
	.imgAuthor__teil {
		width: 70%;
		margin-left: auto;
		margin-right: auto;
	}
}




/* .swiper-slide-projectSlider{
	width: 100% !important;
	margin-right: 0px !important;
} */
.swiper-container--allProjects {
	overflow-y: hidden;
	overflow-x: hidden;
	width: 100%;
	height: auto;
}

.contentPaddingSliderProjects {
	padding: 0px 60px;
}
@media screen and (max-width:768px){
	.contentPaddingSliderProjects {
		padding: 0px 30px;
	}
}

.sliderRightProjects__overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-color: transparent;
	opacity: 0.5;
	transition: all 0.3s ease-out;
}
.sliderRightProjects__header {
	opacity: 0;
	transition: all 0.3s ease-out;
}
@media screen and (max-width:992px){
	.sliderRightProjects__overlay {
		background-color: #000;
	}
	.sliderRightProjects__header {
		opacity: 1;
	}
}

@media screen and (min-width:992px){
	.swiper-slide-projectSlider:hover .sliderRightProjects__overlay {
		background-color: #000;
	}
	.swiper-slide-projectSlider:hover .sliderRightProjects__header {
		opacity: 1;
	}
}

@media screen and (max-width:992px){
	.sliderRightProjects__section {
		padding-top: 240px !important;
		padding-bottom: 240px !important;
	}
}

.sliderRightProjects__overlay--video {
	top:-9px;
}

@media screen and (max-width:992px){
	.singleContentFive {
		margin-top:80px;
	}
	.singleContentSix {
		margin-top:80px;
	}
	.singleContentThree {
		margin-top:80px;
	}
	.singleContentOne {
		margin-top:80px;
	}
	.singleContentFour {
		margin-top:80px;
	}
	.singleContentTwo {
		margin-top:80px;
	}
	.infoForm {
		margin-top:80px;
	}
	.imgContent {
		margin-top:80px;
	}
}
.line-h-40 {
	line-height:40px;
}

#bodiesOfWater .embed-responsive-16by9 {
	padding-bottom: 76.25%;
}
.threeImgEqual__header {
	position:sticky;
	top:70px;
}




.container-macyJs {
    display: flex; /* Zastosuj flexbox do szybkiego układu kolumn */
    flex-wrap: wrap; /* Pozwala na zawijanie kolumn */
    gap: 20px; /* Ustawienie odstępów między elementami */
    justify-content: space-between; /* Dostosowuje przestrzenie pomiędzy elementami */
}

.container-macyJs > div {
    width: calc(50% - 10px); /* Domyślna szerokość 2 kolumny z odstępem 20px */
}

/* Dostosowanie dla mniejszych ekranów */
@media (max-width: 576px) {
    .container-macyJs > div {
        width: 100%; /* Jedna kolumna na mniejszych ekranach */
    }
}


.macy-hidden {
    opacity: 0; /* Ukrywa zawartość kontenera */
    transition: opacity 0.5s ease; /* Dodaje efekt łagodnego pojawiania się */
}


.mobile-menu[data-submenu-dots=yes] [class*=children]>ul li a:not(:empty):before {
	background:none !important;
}

nav[class*=menu] .ct-menu-link {
	font-weight:300;
}
nav[class*=menu] li[class*=current-menu-]>.ct-menu-link, nav[class*=menu] li[class*=current-menu-]>.ct-sub-menu-parent {
	color:#fff !important;
	font-weight:400 !important;
}
nav[class*=menu] li:hover>.ct-menu-link, nav[class*=menu] li:hover>.ct-sub-menu-parent {
	color:#fff !important;
}
.mobile-menu li.dropdown-active>.ct-sub-menu-parent svg {
	fill: #fff !important;
}


.flags__menu {
	display:flex;
	gap:10px;
	padding:0px;
	list-style:none;
}
.flags__menu {
	margin-top:20px;
}

@media screen and (max-width:992px){
	.padding-top-7-mobile {
		padding-top:70px;
	}
	.flags__box{
		display:none;
	}
}

/* english menu mobile */

.menu-item-object-custom.menu-item-1362 {
	align-items: start;
}
.menu-item-object-custom.menu-item-1362 .flags__menu {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	align-items: center;
	padding: 5px 0px;
}
.menu-item-object-custom.menu-item-1362 .flags__menu .ct-menu-link {
	display: none !important;
}
.menu-item-object-custom.menu-item-1362 .flags__menu li a {
	font-size: 16px !important;
}

/* polish menu mobile */

.menu-item-object-custom.menu-item-1363 {
	align-items: start;
}
.menu-item-object-custom.menu-item-1363 .flags__menu {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	align-items: center;
	padding: 5px 0px;
}
.menu-item-object-custom.menu-item-1363 .flags__menu .ct-menu-link {
	display: none !important;
}
.menu-item-object-custom.menu-item-1363 .flags__menu li a {
	font-size: 16px !important;
}




.menu-item-object-custom.menu-item-1365 .ct-menu-link {
	display: none !important;
}
.menu-item-object-custom.menu-item-1365 {
	padding: 5px 0px;
}


.menu-item-object-custom.menu-item-1366 .ct-menu-link {
	display: none !important;
}
.menu-item-object-custom.menu-item-1366 {
	padding: 5px 0px;
}