/*
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: #53cdfe;
	--second: #6b1f20;
	--hover: #e75f61;
	--border-radius: 20px;
	--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: 'Poppins', sans-serif;
	--txtHeader: 'Poppins', sans-serif;
/* 	"Unbounded", sans-serif; */
}
*{
	box-sizing:border-box;
}
body{
	background: #fafbfc !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);
}
p{
	margin:0; padding:0;
	margin-bottom:8px;
}
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:40px;
	font-weight:800;
	line-height:50px;
}
h6{
	text-transform:uppercase;
	font-size:18px;
	color:var(--main);
	letter-spacing:5px;
}
@media screen and (max-width:576px){
	h1{
		font-size:17px !important;
		line-height:27px;
	}
}
::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:#fff;
}
.txt-white p {
	color:#fff;
}
.txt-white h1 {
	color:#fff;
}
.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;
}

/* BUTTONS */

/* common btn */

.common-btn a {
	background:var(--main);
	padding:15px 60px;
	border:2px solid var(--main);
	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;
	text-transform:uppercase;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
}
@media screen and (min-width:992px){
	.common-btn a:hover{
		background:none;
		color:var(--main);
		border:2px solid var(--main);
	}
}
@media screen and (max-width:576px){
	.common-btn a{
		padding:15px 12px;
	}
}

/* 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 {
	background:#fff;
	padding:15px 60px;
	border:2px solid #fff;
	font-size:16px;
	cursor:pointer;
	color:#000;
	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){
	.white-btn a:hover{
		background:none;
		color:#fff;
		border:2px solid #fff;
	}
}
@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:20px !important;
	padding-right:20px !important;
}
.container-small {
	max-width:992px !important;
	margin:0 auto;
	padding-left:20px !important;
	padding-right:20px !important;
}
.p-margin-bottom p {
	margin-bottom: 25px;
}

/*--- 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:  1fr 1fr 1fr 2fr;
}

/* 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-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:#fff !important;
	display:flex;
	flex-direction:column;
	justify-content:center;
	height:120px !important;
	
	display:none;
}
#header.bg-header{
	background:#000;
}
@media screen and (max-width:1000px){
	#header{
		padding:10px 0px;
	}
}
@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:50px;
} */

.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%);
}
.bannerOneImg__h6 {
	background:var(--main);
	max-width: max-content;
	padding:5px 10px;
	color:#000;
	border-radius:7px;
	position:relative;
	display:flex;
	align-items:center;
	gap:10px;
}
.bannerOneImg__h6::before {
	content:"";
	background:#fff;
	min-width:20px;
	height:20px;
	border-radius:50%;
	display:inline-block;
}
@media screen and (max-width:576px){
	.bannerOneImg__h6{
		font-size:9px !important;
		letter-spacing:1px !important;
	}
	.bannerOneImg__h6::before {
		min-width:10px;
		height:10px;
	}
}

/* !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;
	transition: all 0.4s ease-out;
	margin-bottom:15px;
	box-shadow:0px 1px 20px 0px rgb(0 0 0 / 10%);
	border-radius:20px;
	background:#fafbfc;
}
.allFAQ .imgFaq__box:last-child {
	margin-bottom:0px;
}
@media screen and (min-width:992px){
	.allFAQ{
		width:80%;
		margin-left:auto;
		margin-right:auto;
	}
}
.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;
	}
}

/* !faq-full */

/* .faqFull {
	background:#fff;
} */
.imgFaq__title {
	font-weight:500;
	color:#000;
	font-size:18px;
	line-height:26px;
}
@media screen and (max-width:576px){
	.imgFaq__title {
		font-size:16px;
		line-height:24px;
	}
}

/* !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 */

.sliderRight__imgBox {
	background:#fff;
	padding:0px 10px;
	border-radius:20px;
	box-shadow:0px 1px 20px 0px rgb(0 0 0 / 10%);
}

.swiper-slide{
	text-align: left;
	font-size: 20px;
	/* width: auto !important; */
	width: 400px !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: 380px;
	object-fit: contain;
	border-radius: var(--border-radius);
}
@media screen and (min-width:768px){
	.swiper-slide {
		width: 510px !important;
	}
}
.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(--second) !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: 60px !important;
	right: 15px !important;
}
.swiper-button-prev{
	width: 60px !important;
}

/* progress bar swiper */

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

.swiper-pagination-progressbar {
    background-color: #007bff; /* Kolor paska postępu */
}

.swiper-horizontal>.swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal{
	top: unset !important;
	bottom: -44px;
	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;
}
.swpier-slider-headerArrow{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
.swiper-button-next img {
	border-radius: var(--border-radius);
}
.swiper-button-prev img {
	border-radius: var(--border-radius);
}
@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__icon{
	width: auto;
	height: 70px;
	object-fit: contain;
}
.benefitsBoxes__box{
	padding: 20px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
/* 	background-color: #fff; */
	border:3px solid var(--main);
}
.benefitsBoxes{
	margin-top: -40px;
}
@media screen and (max-width:992px){
	.benefitsBoxes__mobilePadding{
		padding: 0px 20px;
	}
}

/* !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-radius: var(--border-radius);
	border: var(--border);
}
.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:2px solid var(--main);
   border-radius: var(--border-radius);
   background:transparent;
   text-align:center;
   font-size:16px;
   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 #fff;
	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 #fff;
	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:2px solid #fff;
   border-radius: var(--border-radius);
   resize:none;
   height:90px;
   margin-bottom:20px;
   background:transparent;
   text-align:center;
   font-size:16px;
   color:#fff;
}
.txt-area:focus{
   outline:none;
   background:transparent;
   border:2px solid #fff;
   color: #fff !important;
}
.wpcf7 .wpcf7-submit{
   float:none !important;
}

/* PRZYCISK - CONTACT FORM */

input[type=submit]{
   all: unset;
   background:#000 !important;
   border-radius: var(--border-radius);
   border: 2px solid #000;
   padding:15px 60px !important;
   font-size:16px !important;
   cursor:pointer !important;
   margin-top:20px !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: transparent !important;
	   color: #000 !important;
   }
}

.wpcf7-not-valid-tip{
   color:#fff;
   font-size:10px;
   padding-left:20px;
   margin-top:7px;
}
span .wpcf7-list-item-label{
   font-size:13px;
}
@media screen and (min-width:768px){
   .wpcf7-not-valid-tip{
	   font-size:13px;
   }
}
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: rgba(255,255,255,0.4);
}
.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);
}


/* !landing-banner */

.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: 20px;
  }
  .embed-responsive-16by9--higher {
	padding-bottom: 106%;
	border-radius: 20px;
  }
  @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;
  }

.mainVideo__width{
	margin-left:auto;
	margin-right:auto;
}

@media screen and (min-width:1330px){
	.mainVideo__width{
		width:80%;
	}
}
@media (min-width:992px) and (max-width:1330px){
	.mainVideo__width{
		width:85%;
	}
}

.landingBanner__underBtn{
	text-align:center;
	color:#fff;
	font-style:italic;
	font-size:13px;
	margin-top:10px;
}

.landingBanner__arrowDown{
	width:22px;
}

.sectionGlow-topLeft::after{
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	width:100%;
	height:100%;
	background:linear-gradient(180deg, var(--main) 0%, transparent 40%);
	-webkit-mask:radial-gradient(circle at 0% 0%, var(--main) 0%, transparent 15%);
	z-index:0;
}

.sectionGlow-topRight::before {
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	width:100%;
	height:100%;
	background:linear-gradient(180deg, var(--main) 0%, transparent 40%);
	-webkit-mask:radial-gradient(circle at 100% 0%, var(--main) 0%, transparent 15%);
	z-index:0;
}

.start-video-box{
/* 	height: 590px; */
	width: 100%;
	object-fit: cover;
	border-radius:20px;
}
/* @media screen and (max-width:576px){
	.start-video-box {
		height: 520px;
	}
} */


.start-video-box.has-media-controls-hidden::-webkit-media-controls {
    display: none;
}

.video-overlay-play-button {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
/*     padding: 10px calc(50% - 50px); */
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.95;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(0, 4, 46, 0.61) 0%, rgba(0, 4, 46, 0.61));
    transition: opacity 150ms;
	border: 8px solid var(--main);
}

.video-overlay-play-button:hover {
    opacity: 1;
}

.video-overlay-play-button.is-hidden {
    display: none;
}

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


@media screen and (min-width:1170px){
	.landingBanner__desc{
		width: 70%;
	}
}

/* !landing-problem */

/* .landingProblem{
	background-color: #fff;
} */
.bigger-p {
	font-size: 20px;
}
.bigger-p p {
	font-size: 20px;
}
.landingPoblem__icon {
	width: 33px;
}
.landingProblem__allBox{
	padding: 20px;
	border-radius: 20px;
	background:#fff;
}
.landingProblem__allBox .landingProblem__box {
	margin-bottom: 15px;
}
.landingProblem__allBox .landingProblem__box:last-child {
	margin-bottom: 0px;
}
.landingProblem__minIcon {
	min-width: 40px;
}
@media screen and (max-width:576px){
	.bigger-p {
		font-size: 16px;
	}
	.bigger-p p {
		font-size: 16px;
	}
}

/* !landing-solution */

.landingSolution__pBox{
	font-weight: 600;
}

.landingSolution__icon {
	width: 85px;
}
/* .landingSolution__minIcon {
	min-width:30px;
} */

.square-box {
	background-color: #53cdfe;
	width: 20px;
	height: 25px;
	border-radius:3px;
}

.square-box.active {
	background-color:#fff;
}

.fade {
    opacity: 0;
    transition: opacity 0.1s;
}

.fade-active {
    opacity: 1;
    transition: opacity 0.1s;
}

.landingSolution{
	background-color: #000;
}
.landingHow__img{
	border-radius: 20px;
}

@media screen and (min-width:992px){
	.landingHow__img{
		width: 70%;
	}
}

@media screen and (max-width:576px){
	.landingSolution__box-H3 h3{
		font-size:20px;
	}
}

/* !landing-reviews */

.landingReviews__img{
	border-radius:20px;
}

.landingWhat__box{
	display: flex;
	align-items: start;
	margin-bottom: 15px;
	gap: 15px;
}

.landingWhat__box::before{
	content: "";
	display: inline-block;
	min-width: 34px;
	height: 34px;
	background-image: url(/wp-content/uploads/2024/07/check.png);
	background-size: cover;
}
@media screen and (max-width:576px){
	.landingWhat__box::before {
		min-width: 28px;
		height: 28px;
	}
}


.landingWhat__boxBefore{
	display: flex;
	align-items: start;
	margin-bottom: 10px;
	gap: 10px;
}

.landingWhat__boxBefore::before{
	content: "";
	display: inline-block;
	min-width: 26px;
	height: 26px;
	background-image: url(/wp-content/uploads/2025/02/cross.png);
	background-size: cover;
}
@media screen and (max-width:576px){
	.landingWhat__boxBefore::before {
		min-width: 23px;
		height: 23px;
	}
}



.landingWhat__boxAfter{
	display: flex;
	align-items: start;
	margin-bottom: 10px;
	gap: 10px;
}

.landingWhat__boxAfter::before{
	content: "";
	display: inline-block;
	min-width: 26px;
	height: 26px;
	background-image: url(/wp-content/uploads/2024/07/check.png);
	background-size: cover;
}
@media screen and (max-width:576px){
	.landingWhat__boxAfter::before {
		min-width: 23px;
		height: 23px;
	}
}


.landingHow{
	background-color: #fff;
}
.landingWhat__allBoxes{
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
}

/* !landing-bonuses */

.landingBonuses__img{
	height:320px;
	object-fit:contain;
}
@media screen and (max-width:576px){
	.landingBonuses__img {
		height:250px;
	}
}

.landingBonuses{
	background-color: #fff;
}
.landingBonuses__box{
	background-color: #fafbfc !important;
	padding: 20px;
	border-radius: 20px;
}

.landingBonuses__allBoxes .landingBonuses__box{
	margin-bottom:30px;
}
.landingBonuses__allBoxes .landingBonuses__box:last-child{
	margin-bottom:0px;
}

.swiper-pagination-progressbar{
	background: rgb(227 189 189 / 45%) !important;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: #53cdfe !important;
}

.landingSolution__h6{
	letter-spacing: 1px;
}

/* !landing-guarantee */


.landingGuarantee{
	background:#fff;
}
.landingGuarantee__img{
	width: 280px;
}
@media screen and (max-width:768px){
	.landingGuarantee__img{
		width: 200px;
	}
}

/* extraordinary button */

.extraordinary-btn a {
	animation: pulse 2s infinite;
}
@keyframes pulse{
	0%{
		transform:scale(0.9);
		box-shadow:0 0 0 0 #fff;
	}
	70%{
		transform:scale(1);
		box-shadow:0 0 0 15px #fff;
	}
	100%{
		transform:scale(0.9);
	}
}

/* !landing-summary */

.landingSummary {
	background-color:#000;
}

@media screen and (max-width:576px){
	.landingSummary__header h3 {
		font-size:18px !important;
	}
	h2{
		font-size:22px !important;
		line-height:30px;
	}
	.landingSolution__h6 {
		font-size:14px;
	}
}


/* 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: 40px !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: 32px !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;
}

@media screen and (min-width:992px){
	.mobile-only-br {
		display:none;
	}
}

/* TIDY CALL */



.plus-icon img {
	width:40px;
}
.plus-icon{
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
.icon1Box {
	background:#fafbfc !important;
	padding:15px;
	border-radius:20px;
	box-shadow:0px 1px 20px 0px rgb(0 0 0 / 10%);
}
@media screen and (max-width:992px){
	.flex-direction-l{
		flex-direction:column;
	}
}


/* thank you */

.thankYou__img{
	height: 400px;
	border-radius: 20px;
	object-fit: cover;
}
.thankYou__anchor {
	color: var(--main) !important;
	font-weight: 600 !important;
}
@media screen and (min-width:768px){
	.thankYou__img{
		width: 60%;
		height: 600px;
	}
}

.background-white {
	background-color: #fff !important;
}

/* .landingBannerSimple {
	min-height: 100vh;
	padding-top: 130px !important;
	padding-bottom: 130px !important;
} */




.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ę */
}



.loading-box {
	height:30px;
	position:relative;
	margin-bottom:20px;
	background:#535353;
	border-radius:20px;
	padding:6px;
	width:50%;
	margin-left:auto;
	margin-right:auto;
}
.loading-box---span{
	width:80%;
	border-top-right-radius:8px;
	border-bottom-right-radius:8px;
	border-top-left-radius:20px;
	border-bottom-left-radius:20px;
	overflow:hidden;
	text-align:center;
	line-height:24px;
	display:block;
	height:100%;
	background-color:#53cdfe;
	position:relative;
}
.loading-box---span::after {
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	left:0px;
	right:0px;
	background:linear-gradient(-45deg,rgba(0,0,0,.05) 25%,transparent 0,transparent 50%,rgba(0,0,0,.05) 0,rgba(0,0,0,.05) 75%,transparent 0,transparent);
	z-index:1;
	background-size:50px 50px;
	-webkit-animation: move 2s linear-infinite;
	animation:move 2s linear infinite;
	border-top-right-radius:8px;
	border-bottom-right-radius:8px;
	border-top-left-radius:20px;
	border-bottom-left-radius:20px;
	overflow:hidden;
}
@keyframes move {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position:50px 50px;
	}
}

@media screen and (max-width:992px){
	.span-block-l {
		display:block;
	}
	.benefitsBoxes__h3 {
		font-size:20px;
		line-height:28px;
	}
}

@media screen and (min-width:992px){
	.landingBannerThank__desc p {
		font-size:22px;
	}
	
}


.link-btn a {
	color:var(--main) !important;
	font-weight:600;
	font-size:18px;
	text-decoration:underline;
}

.oneVideoReview__box{
	background-color:#fff;
	box-shadow:0px 1px 20px 0px rgb(0 0 0 / 10%);
	border-radius:20px;
	padding:20px;
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:center;
}
.oneVideoReview__quotes{
	width:60px;
	min-width:60px;
	height:45px;
}
.oneVideoReview__name{
	text-transform:uppercase;
	letter-spacing:5px;
	font-size:14px;
}
@media (min-width:992px) and (max-width:1170px){
	.oneVideoReview__content h3 {
		font-size:22px;
	}
	.oneVideoReview__content h4 {
		font-size:20px;
	}
}
@media screen and (max-width:768px){
	.oneVideoReview__content h3 {
		font-size:18px;
	}
	.oneVideoReview__content h4 {
		font-size:16px;
	}
	.oneVideoReview__name{
		letter-spacing:1px;
	}
}


.video-mockups{
	width:100%;
	border-radius:20px;
}
.width-70-desktop {
		width:100%;
}
@media screen and (min-width:768px){
	.width-70-desktop {
		width:70%;
	}
}

@media screen and (max-width:992px){
	.order-2-l {
		order:2;
	}
	.landingReviews__h4{
		font-size:17px;
	}
	.oneVideoReview__name{
		font-size:12px;
	}
}


@media screen and (min-width:992px){
	.sticky-video-box {
		position:sticky;
		top:20px;
	}
}

.comparisonWebsite__box{
	padding:20px;
	border:2px solid var(--main);
	border-radius:20px;
}
@media screen and (max-width:768px){
	.comparisonWebsite__box {
		padding:10px;
	}
	.landingWhat__boxAfter p {
		font-size:14px;
	}
	.landingWhat__boxBefore p {
		font-size:14px;
	}
}

.page-id-1469 {
	background:#000 !important;
}
.bannerSlider__starsIcon{
	width:92px;
}
.bannerSlider__reviewNumber{
	font-size:23px;
	line-height:23px;
	font-weight:500;
	color:#fff;
}
.bannerSlider__person{
	width:50px;
	min-width:50px;
	height:50px;
	border-radius:50%;
	object-fit:cover;
	border:2px solid #000;
}

.bannerSlider__person--mrgLeft {
	margin-left:-10px;
}

.reviews__numberMain{
	width:50px;
	min-width:50px;
	border-radius:50%;
	height:50px;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-left:-10px;
	background:var(--main);
}
.reviews__numberMain p {
	font-weight:600;
	color:#000;
}