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

*/

/* BASIC STYLES */

@font-face {
    font-family: 'Neultica 4F Black';
    src: url('fonts/neultica/Neultica_4F-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Neultica 4F Black';
    src: url('fonts/neultica/Neultica_4F-Black_Italic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'TAN Aegean';
    src: url('fonts/tanaegean/TAN_-_AEGEAN.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Centaur MT Pro';
    src: url('fonts/centaur/CentaurMTPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Centaur MT Pro';
    src: url('fonts/centaur/CentaurMTPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Centaur MT Pro';
    src: url('fonts/centaur/CentaurMTPro-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}


/* font-family: 'Neultica 4F Black', sans-serif;
font-family: 'TAN Aegean', serif;
font-family: 'Centaur MT Pro', serif; */



:root {
	--main: #f3ebde;
	--second: #edd58e;
	--gray:#575656;
	--hover: #e75f61;
	--border-radius: 0px;
	--border: 0px solid var(--main);
	--shadow: 0px 1px 20px 0px rgb(0 0 0 / 10%);
	--section: #ffdede;
	--gradient:#181818 !important;
	--txt: "Montserrat", serif;
/* 	--txt:"Poppins", serif; */
/* 	--txtHeader: "Newsreader", serif; */
/* 	--txtHeader: "Spectral", serif; */
	--txtHeader: "Montserrat", serif;
/* 		"Abril Fatface", serif; */
}
*{
	box-sizing:border-box;
}
body{
	background: #fff !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{
    margin: 0;padding: 0;
	font-family: var(--txtHeader);
	color:#000;
}
h6 {
	 margin: 0;padding: 0;
	font-family: var(--txtHeader);
}
p{
	margin:0; padding:0;
	margin-bottom:8px;
	color:#000;
}
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:56px;
	font-weight:400;
	line-height:64px;
}
h2 {
	font-size:34px;
	line-height:44px;
}
h6{
	text-transform:uppercase;
	font-size:18px;
	color:#3d3d3d;
	letter-spacing:2px;
	position:relative;
/* 	display:flex;
	align-items:center; */
	gap:10px;
}
/* h6::before {
	content:"";
	width:40px;
	background-color:var(--second);
	height:1px;
	display:inline-block;
} */
@media screen and (max-width:576px){
	h1{
		font-size:24px !important;
		line-height:32px;
	}
	h2 {
		font-size:22px;
		line-height:30px;
	}
	h3 {
		font-size:20px;
		line-height:28px;
	}
	h4 {
		font-size:19px;
		line-height:27px;
	}
	h5 {
		font-size:16px;
		line-height:24px;
	}
	h6{
		text-transform:uppercase;
		font-size:13px;
		letter-spacing:0px;
	}
	h6::before {
		width:24px;
	}
}
::selection{
	background-color:var(--second) !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 !important;
}
.txt-black p {
	color: #000;
}
.txt-second {
	color:var(--second);
}
.txt-second p {
	color:var(--second);
}
.bg-color{
	background:var(--section);
}
.bg-gradient{
	background: var(--gradient);
	background:#fff7ef;
}
.bg-body {
	background:#eceaec !important;
}
.bg-white {
	background:#fff;
}
.bg-black {
	background:#000;
}
.margin-auto{
	margin-right: auto;
	margin-left: auto;
}

/* BUTTONS */

/* common btn */

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

/* second btn */

.second-btn a {
	background:var(--second);
	padding:10px 50px;
	border:2px solid var(--second);
	font-size:16px;
	cursor:pointer;
	color:#000;
	border-radius: 0px;
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:300;
	display:flex;
	align-items:center;
	justify-content:center;
}
@media screen and (min-width:992px){
	.second-btn a:hover{
		background:#ffeebb;
		color:#000;
		border:2px solid #ffeebb;
	}
}
@media screen and (max-width:576px){
	.second-btn a{
		padding:15px 15px;
		font-size:14px;
	}
}

/* white btn */

.white-btn a {
	background:#fff;
	padding:10px 50px;
	border:2px solid #fff;
	font-size:16px;
	cursor:pointer;
	color:#000;
	border-radius:0px;
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:300;
}
@media screen and (min-width:992px){
	.white-btn a:hover{
		background:#e5e5e5;
		color:#000;
		border:2px solid #e5e5e5;
	}
}
@media screen and (max-width:576px){
	.white-btn a{
		padding:15px 15px;
		font-size:14px;
	}
}

/* black btn */

.black-btn a {
	background:#000;
	padding:10px 50px;
	border:2px solid #231f20;
	font-size:16px;
	cursor:pointer;
	color:#fff;
	border-radius:0px;
	display:inline-block;
	text-align:center;
	transition:all 0.4s ease-out;
	width:max-content;
	font-weight:300;
}
.black-btn a img {
	filter:invert(1);
}
@media screen and (min-width:992px){
	.black-btn a:hover{
		background:#231f20;
		color:#fff;
		border:2px solid #231f20;
	}
}
@media screen and (max-width:576px){
	.black-btn a{
		padding:15px 15px;
		font-size:14px;
	}
}

@media screen and (min-width:1170px){
	.common-btn a {
		font-size:18px;
	}
	.second-btn a {
		font-size:18px;
	}
	.white-btn a {
		font-size:18px;
	}
	.black-btn a {
		font-size:18px;
	}
}

/* CONTAINER */

.container{
	max-width:1336px !important;
	margin:0 auto;
	padding-left:20px !important;
	padding-right:20px !important;
}

/*--- FLEX ---*/

.display-flex{
	display:flex;
}
.display-block {
	display: block !important;
}
.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 !important;
}
.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 1fr;
}

.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;
}
.padding-top-8{
	padding-top:80px !important;
}
.padding-top-9{
	padding-top:90px !important;
}
.padding-top-10{
	padding-top:100px !important;
}
.padding-top-11{
	padding-top:110px !important;
}
.padding-top-12{
	padding-top:120px !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;
	}
	.gap-0-m {
		gap:0px;
	}
}

@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;
	display:flex;
	flex-direction:column;
	justify-content:center;
	border-bottom:1px solid #edd58e;
/* 	height:120px !important; */
}
#header.bg-header{
/* 	background:#eceaec; */
	background:#fff;
}
.page-id-972 #header {
	background:transparent;
}
.page-id-972 #header.bg-header{
	background:#fff;
}
/* .page-id-972 .ct-header .default-logo {
	filter:invert(1);
}
.page-id-972 .ct-header.bg-header .default-logo {
	filter:brightness(0);
} */
/* @media screen and (max-width:1000px) {
	#header {
		height:90px !important;
	}
} */





/* @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:154px;
}
.page-id-972 .page-margin-top{
	margin-top:0px;
}


@media screen and (max-width:1000px){
	.page-margin-top{
		margin-top:110px;
	}
}

.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);
}
/* @media screen and (max-width:576px){
	.imgContent__img {
		height:300px;
	}
} */

/* !offer-one */

.offerOne__img{
	height:220px;
	width:100%;
	object-fit:cover;
	border-radius:var(--border-radius);
}
.offerOne__tile{
	padding: 30px 20px;
	background-color: #fff;
	border-radius:var(--border-radius);
}

/* !banner-one */

.bannerOne{
	display: flex;
	align-items: center;
	/* min-height: 90vh; */
/* 	min-height: calc(100vh - 120px); */
	padding: 240px 0px;
/* 	margin-left:20px;
	margin-right:20px;
	border-radius:20px; */
}
@media screen and (max-width:576px){
	.bannerOne {
		padding:180px 0px;
	}
}
.bannerOne__gradient{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	overflow: visible;
	background: linear-gradient(90deg, #181818 0.58%, #181818 99.91%);
	-webkit-mask: linear-gradient(160deg, #181818 5%, transparent 100%);
/* 	border-radius:20px; */
}
@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 #353535;
	margin-bottom:10px;
	transition: all 0.4s ease-out;
}
/* @media screen and (min-width:992px){
	.imgFaq__box:hover {
		background:#e7e0d9;
	}
} */
@media screen and (max-width:992px){
	.imgFaq__box {
		padding:16px 10px;
	}
}
.faqSticky__icon{
	width:30px;
/* 	filter:invert(1); */
}
.imgFaq__answer p{
	margin-top: 24px;
	color:#313131;
}	
.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{
	margin-bottom:0px !important;
}
.imgFaq__icon{
	width:20px;
	height:20px;
	position:absolute;
	right:0;
	top:50%;
	transition: all 0.4s ease-out;
	transform: translate(0%, -50%);
/* 	filter:invert(1); */
}
.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: 8px;
	gap: 15px;
	color:#fff;
	font-size:17px;
	
}
@media screen and (max-width:576px){
	.imgBenefitsList__box {
		font-size:14px;
		margin-bottom:8px;
		gap:8px;
	}
}
.imgContentAbout .imgBenefitsList__box{
	font-style:italic;
}


.imgBenefitsList__box::before{
	content: "";
	display: inline-block;
	min-width: 24px;
	height: 24px;
	background-image: url(/wp-content/uploads/2025/01/check.png);
	background-size: cover;
	filter:invert(1);
}

.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: 80px;
}
@media screen and (min-width:992px){
	.benefitsSticky__stickyDiv{
		position: sticky;
		top: 174px;
	}
}

/* !slider-right-overflow */

.swiper-slide{
	text-align: left;
	font-size: 20px;
	/* width: auto !important; */
	width: 600px !important;
	height: auto !important;
/* 	margin-right: 20px !important; */
	cursor: pointer;
	background-color: #f1f1f1;
	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:#939292 !important;
}
.swiper-pagination-progressbar {
	background:#cbcbcb !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: #fff7ef;
	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;
/* 	filter:invert(1); */
}
.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;
	}
} */

.infoContact {
	/* margin-top:-80px; */
	position:relative;
	z-index:1;
}

/* !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 - 50px) !important; */
	padding-top: 210px;
	padding-bottom:120px;
/* 	margin-top:86px; */
/* 	border-radius:10px;
	margin-left:40px;
	margin-right:40px; */
}
.bannerSlider__gradient{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	overflow: visible;
/* 	background: linear-gradient(90deg, #000 0.58%, #000 99.91%); */
	background:linear-gradient(180deg, #000 0.58%, #000 99.91%);
/* 	-webkit-mask: linear-gradient(120deg, #000 5%, transparent 100%); */
	-webkit-mask: linear-gradient(180deg, #000 5%, transparent 100%);
/* 	border-radius:10px; */
}
@media screen and (max-width:992px){
	.bannerSlider {
		min-height:auto !important;
		padding-bottom: 130px;
		padding-top: 200px;
/* 		margin-left:10px; */
/* 		margin-right:10px; */
	} 
}
/* @media screen and (max-width:1000px){
	.bannerSlider{
		margin-top:76px;
	}
} */

/* !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 {
	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: 10px 0px 0px 10px;
}
.bannerOneImg__imgMobile{
	height: 350px;
	object-fit: cover;
	width: 100%;
	border-radius: 10px;
}
@media screen and (max-width:992px){
	.bannerOneImg__content{
		padding-top: 70px;
	}
}
@media screen and (min-width:992px){
	.bannerOneImg__content{
		padding-top: 70px;
		padding-bottom: 70px;
	}
}

/* !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);
	border:2px solid #fff;
	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-radius: var(--border-radius);
	border: var(--border);
}
.contactInfo__phone{
	display: flex;
	align-items: center;
	gap: 16px;
}
.contactInfo__phone::before{
	content: "";
	display: inline-block;
	min-width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/09/phone-receiver-silhouette.png);
	background-size: cover;
/* 	filter:invert(1); */
}
.contactInfo__email {
	display: flex;
	align-items: center;
	gap: 16px;
}
.contactInfo__email::before{
	content: "";
	display: inline-block;
	min-width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/09/email.png);
	background-size: cover;
/* 	filter:invert(1); */
}
.contactInfo__adres{
	display: flex;
	align-items: center;
	gap: 16px;
}
.contactInfo__adres::before{
	content: "";
	display: inline-block;
	min-width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/09/maps-and-flags-1.png);
	background-size: cover;
/* 	filter:invert(1); */
}
.contactInfo__firstcontact{
	display: flex;
	gap: 20px;
	align-items:center;
}
.contactInfo__firstcontact::before{
	content: "";
	display: inline-block;
	min-width: 50px;
	height: 50px;
	background-image: url(/wp-content/uploads/2025/02/circle-1-2-1.png);
	background-size: cover;
	
}
.contactInfo__secondcontact{
	display: flex;
	gap: 20px;
	align-items:center;
}
.contactInfo__secondcontact::before{
	content: "";
	display: inline-block;
	min-width: 50px;
	height: 50px;
	background-image: url(/wp-content/uploads/2025/02/circle-2-2-1.png);
	background-size: cover;
}

.contactInfo__thirdcontact{
	display: flex;
	gap: 20px;
	align-items:center;
}
.contactInfo__thirdcontact::before{
	content: "";
	display: inline-block;
	min-width: 50px;
	height: 50px;
	background-image: url(/wp-content/uploads/2025/02/circle-2-2-1.png);
	background-size: cover;
	display:none;
}

@media screen and (max-width:768px){
	.contactInfo__firstcontact{
		align-items:start;
		flex-direction:column;
	}
	.contactInfo__secondcontact {
		align-items:start;
		flex-direction:column;
	}
	.contactInfo__thirdcontact{
		align-items:start;
		flex-direction:column;
	}
}

.contactInfo__facebook{
	display: flex;
	align-items: center;
	gap: 16px;
}
.contactInfo__facebook::before{
	content: "";
	display: inline-block;
	min-width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/05/facebook.png);
	background-size: cover;
}


.contactInfo__instagram{
	display: flex;
	align-items: center;
	gap: 16px;
}
.contactInfo__instagram::before{
	content: "";
	display: inline-block;
	min-width: 30px;
	height: 30px;
	background-image: url(/wp-content/uploads/2024/05/instagram.png);
	background-size: cover;
}



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

/**//**//**//**//**//**/
/* 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-bottom:2px solid #fff;
   border-radius: 0px !important;
   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 #000;
   color: #000 !important;
}

/* form contact */

.formMain input[type=text], .formMain input[type=email], .formMain input[type=number], .formMain input[type=tel]{
	border:none;
	border-bottom:2px solid #000;
	color:#000 !important;
}
.formMain input[type=text]:focus,.formMain input[type=email]:focus, .formMain input[type=number]:focus, .formMain input[type=tel]:focus{
	border-bottom:2px solid #000;
	color:#000 !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:#000;
   color:#000;
   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;
   border-bottom:2px solid #000;
   border-radius: var(--border-radius);
   resize:none;
   height:90px;
   margin-bottom:20px;
   background:transparent;
/*    text-align:center; */
   font-size:16px;
   color:#000;
}
.txt-area:focus{
   outline:none;
   background:transparent;
	border:none;
   border-bottom:2px solid #000;
   color: #000 !important;
}
.wpcf7 .wpcf7-submit{
   float:none !important;
}

/* PRZYCISK - CONTACT FORM */

input[type=submit]{
   all: unset;
   background:var(--second) !important;
   border-radius: var(--border-radius);
/*    border: 2px solid var(--second); */
   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:#000 !important;
   display:flex !important;
}
@media screen and (min-width:992px){
   input[type=submit]:hover{
	   background: var(--second) !important;
/* 	   border:2px solid #504c48; */
	   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: #000;
 margin: 0;
}
input[type="checkbox"] {
 appearance: none;
 background-color: transparent;
 border-radius: 0px;
 margin: 0;
 font: inherit;
 color: currentColor;
 width: 20px !important;
 height: 20px;
 border: 0.15em solid #000;
 transform: translateY(-0.075em);
 margin-right:10px;
	display: grid;
 place-content: center;
   cursor:pointer;
	border-radius:0px;
}
input[type="checkbox"]::before {
 content: "";
 width: 20px;
 height: 20px;
 border-radius: 0px;
 transform: scale(0);
 transition: 120ms transform ease-in-out;
   background-color:#000;
}
#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:#000;
   color:#000;
   margin: 0px !important;
   margin-top: 10px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
	display:none;
}
.wpcf7 label:not(.wpcf7-form-control-wrap){
   display:flex !important;
}

.wpcf7 .wpcf7-submit:disabled{
	cursor: not-allowed !important;
	background: #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);
	background:#fff;
}
.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: 80%;
		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, #2d2d2d 30%, transparent);
/* 	border-radius:20px; */
}
@media screen and (max-width:768px){
	.ctaFullBox__gradient {
		background: linear-gradient(90deg, #2d2d2d 24%, transparent);
	}
}

/* !place-map */

.placeMap__content{
	padding: 20px;
	border-radius: var(--border-radius);
	background:#fff7ef !important;
}
@media screen and (min-width:1170px){
	.placeMap__content{
		position:sticky;
		top:174px;
	}
}
.placeMap__icon{
	width: 35px;
	min-width:35px;
	height: 35px;
/* 	filter:invert(1); */
}
/* .contact-map{
	filter:grayscale(100%);
} */
.contact-map iframe{
	width: 100% !important;
    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:300px;
	}
}

/* !entry-content */

.entryContent__stickyBox{
	padding: 20px;
	border-radius: var(--border-radius);
	background:#fff7ef !important;
}
.entryContent__img{
	height:500px;
	object-fit:cover;
	width:100%;
	border-radius: var(--border-radius);
}
.entryContent__mainDesc h2 {
	margin-bottom:20px;
/* 	margin-top:30px; */
}
.entryContent__lineSeparator{
	height:1px;
	width:100%;
	background-color:var(--second);
}
@media screen and (min-width:992px){
	.entryContent__stickyBox{
		position:sticky;
		top:190px;
	}
}
@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);
	
	font-size: 16px;
	background-color: #fff !important;
/* 	border:1px solid var(--second); */
	display:flex !important;
	flex-direction:column;
	justify-content:space-between;
}
@media screen and (max-width:576px){
	.slide__reviewsProduct {
		padding:30px;
	}
}

/* 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;
	color:#000 !important;
}
.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;
}
/* #shipping_method li {
	display:flex;
} */







.overMenu__anchor {
	color:#000 !important;
	display:flex;
	align-items:center;
	gap:10px;
	transition:all 0.3s ease-out;
}
@media screen and (min-width:992px){
	.overMenu__anchor:hover {
		gap:20px;
	}
}
.overMenu__anchor img {
	width:20px;
}


@media screen and (min-width:992px){
	.bannerSlider__box--desc p {
		font-size:24px;
	}
}

.wpcf7 .wpcf7-not-valid-tip {
	display:none !important;
}
@media screen and (max-width:576px){
	.overMenu__anchor {
		font-size:10px;
	}
}



/* !offer-two */

.offerTwo__img {
	height:400px;
	object-fit: cover;
	width: 100%;
}
.offerTwo__tile {
	background: var(--main);
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: all 0.3s ease-out;
}
.offerTwo__imgBox::after {
	content: "";
	background: linear-gradient(180deg, var(--main) 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}
.offerTwo__paddingX {
	padding: 0px 15px;
}
.offerTwo__arrowBox {
	background-color: var(--second);
	height: 70px;
	width: 70px;
/* 	border-radius: 50%; */
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0px;
	right: 0px;
	transition: all 0.3s ease-out;
}
.offerTwo__arrowImg {
	width: 35px;
}
.typeCourse__icon {
	width: 30px;
}
@media screen and (min-width:992px){
	.offerTwo__tile:hover .offerTwo__arrowBox {
		background-color: var(--gray);
	}
}
@media screen and (max-width:576px){
	.offerTwo__img {
		height: 300px;
	}
}


.offerTwo__line {
	height:2px;
	background:var(--gray);
	width:100%;
}


.typeCourse__thumbnail--box {
/* 	position: absolute;
	top: 50%;
	transform:translate(0px, -50%);
	left: 0px;
	width: 100%;
	padding: 15px 32px;
	z-index: 1; */
	background:#fff7ef;
	padding:20px;
}

.typeCourse__thumbnail--overlay {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color:#1a1a1a;
	opacity: 0.5;
	transition: all 0.3s ease-out;
	border-radius:var(--border-radius);
}

@media screen and (min-width:992px){
	.typeCourse__item:hover .typeCourse__thumbnail--overlay {
		opacity: 0.2;
	}
}

.typeCourse__h6 {
	font-size: 14px;
	letter-spacing: 2px;
}

.typeCourse__thumbnail--img {
	height: 370px;
	width: 100%;
	object-fit: cover;
	border-radius:var(--border-radius);
}
@media screen and (max-width:576px){
	.typeCourse__thumbnail--img {
		height:320px;
	}
}
/* @media screen and (min-width:1170px){
	.typeCourse__thumbnail--imgSLIDER {
		height:550px;
	}
} */


.threeImgContent__img--1{
	height: 400px;
	width: 100%;
	object-fit: cover;
}
.threeImgContent__img--2{
	height: 370px;
	width: 100%;
	object-fit: cover;
	margin-top: 60px;
}
.threeImgContent__img--3--box{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}
.threeImgContent__img--3{
	height: 360px;
	width: 100%;
	object-fit: cover;
	margin-top: -170px;
}

@media screen and (max-width:576px){
	.threeImgContent__img--1{
		height: 250px;
	}
	.threeImgContent__img--3--box {
		width:54%;
	}
	.threeImgContent__img--2{
		height: 230px;
		margin-top: 30px;
	}
	.threeImgContent__img--3{
		height: 220px;
		margin-top: -110px;
	}
}

@media screen and (max-width:992px){
	.order-2-l{
		order:2;
	}
}

@media screen and (min-width:992px){
	.imgFaq__title {
		font-size:18px;
	}
	.allFAQ {
		padding-left:100px;
	}
}


.infoForm__content--static {
	position: static;
	top: 0px;
}



.imgContentSecond__grid {
	padding: 20px;
	background-color: #fff;
}

.no-padding-top{
	padding-top:0px !important;
}

.imgContentSecond__first{
	position:relative;
	z-index:1;
	margin-top:-80px;
}



.codedropz-upload-inner::before {
	content:"";
	display:inline-block;
	min-width:60px;
	height:60px;
	margin-bottom:7px;
	background-size:cover;
	filter:invert(1);
	background-image:url(/wp-content/uploads/2024/09/cloud-computing.png);
}
.codedropz-upload-handler {
	border-radius:20px;
	margin-bottom:20px;
	border: 2px solid #fff !important;
}
.codedropz-upload-inner h4 {
	color:#fff !important;
	font-size:18px !important;
}
.codedropz-upload-inner span {
	color:#fff !important;
}
.cd-upload-btn {
	color:var(--gray) !important;
}
.dnd-upload-status .dnd-upload-image {
	display:none !important;
}
.dnd-upload-status .dnd-upload-details .dnd-progress-bar {
	display:none !important;
}
.dnd-upload-status .dnd-upload-details .name {
	color:#fff !important;
	padding:10px 0;
}
.dnd-upload-status .dnd-upload-details .name em {
	color:var(--gray) !important;
}
.dnd-upload-counter {
	display:none !important;
}

.dnd-upload-status .dnd-upload-details .remove-file span:after {
	background-image:url(/wp-content/uploads/2024/09/close.png) !important;
	width:25px;
	height:25px;
}

.single-post h1 {
	font-size:38px;
	line-height:48px;
}
@media screen and (max-width:768px){
	.single-post h1 {
		font-size:26px !important;
		line-height:36px !important;
	}
}


.offer-move-up {
	margin-top:-80px;
}
.offer-move-up .offerTwo__line{
	display:none;
}




/* !single-course */

.singleCourse__stickyBox {
	position: sticky;
	top: 174px;
	padding: 15px;
	background-color: #fff7ef !important;
	border-radius:var(--border-radius);
/* 	border:1px solid var(--second); */
}
.singleCourse__mainHeader {
	font-size: 24px !important;
	line-height: 30px !important;
	font-weight:600;
}
.singleCourse__h6 {
	letter-spacing: 1px !important;
	font-size: 14px !important;
	line-height: 22px !important;
}

.singleCourse__priceTag {
	color: #000 !important;
	margin-top: 20px;
}

.promo-span {
	font-size: 28px !important;
}
.price-span {
	color: var(--gray);
	text-decoration-line: line-through;
}
.singleCourse__img--1 {
	height: 550px;
	object-fit: cover;
	width: 100%;
}
.singleCourse__img--2 {
	height: 270px;
	object-fit: cover;
	width: 100%;
}
@media screen and (max-width:430px){
	.singleCourse__img--1 {
		height: 280px;
	}
	.singleCourse__img--2 {
		height: 135px;
	}
}
.pdf-icon {
	width: 35px;
}
.singleCourse__teil {
	background-color:#fff7ef !important;
	padding: 20px;
	border-radius:var(--border-radius);
/* 	border:1px solid var(--second); */
	margin-top: 30px;
}

@media screen and (max-width:992px){
	.display-none-mobile {
		display:none !important;
	}
	.counter__section {
		gap:3px;
	}
	.counter__item {
		padding:2px 7px;
	}
}
@media screen and (min-width:992px){
	.display-none-desktop {
		display:none !important;
	}
	.time__item {
		font-size:30px !important;
	}
}

.singleCourse__category--anchor {
	color:var(--main) !important;
}
.singleCourse__category--anchor::after {
	content:"";
	width:100%;
	background:var(--main);
	height:1px;
	position:absolute;
	bottom:-2px;
	left:0px;
}

.scroll-mobile{
		position:absolute;
		top:0px;
		width:100%;
		height:1px;
		content:'';
		z-index:-1;
		visibility:hidden;
		top:-190px;
}
@media screen and (max-width:1000px){
	.scroll-mobile {
		top:-160px;
	}
}

.time__item{
	color:var(--second);
}
.time__txt{
	color:#000;
}


.typeCourse__thumbnail--box__top{
	bottom: unset;
	top: 0px;
}



.tax-rodzaj-portfolio .ct-header {
	background-color: #fff !important;
}
.tax-rodzaj-portfolio .ct-header .default-logo {
	filter: brightness(0);
}
.tax-rodzaj-portfolio .ct-header [data-id="menu"] > ul > li > a{
	--theme-link-initial-color:#000 !important;
	color: #fff !important;
}
.tax-rodzaj-portfolio .ct-header .ct-header-trigger .ct-icon {
	fill: #fff;
}


.tax-rodzaj-portfolio__padding {
	padding-top: 190px;
}
@media screen and (max-width:1000px){
	.tax-rodzaj-portfolio__padding {
		padding-top: 140px;
	}
}



/* 
.single-portfolio .ct-header {
	background-color: #fff !important;
} */
/* .single-portfolio .ct-header .default-logo {
	filter: brightness(0);
} */
/* .single-portfolio .ct-header [data-id="menu"] > ul > li > a{
	--theme-link-initial-color:#000 !important;
	color: #000 !important;
}
.single-portfolio .ct-header .ct-header-trigger .ct-icon {
	fill: #000;
} */


.single-portfolio__padding {
	padding-top: 190px;
}
@media screen and (max-width:1000px){
	.single-portfolio__padding {
		padding-top: 140px;
	}
}


.ctaFullBox h6 {
	letter-spacing: 2px;
}
.otherPortfolio h6 {
	letter-spacing: 2px;
}
@media screen and (max-width:768px){
	.ctaFullBox h6 {
		font-size: 14px;
	}
	.otherPortfolio h6 {
		font-size: 14px;
	}
}



.portfolioGallery__img{
	height: 450px;
	object-fit: cover;
	width: 100%;
}
@media screen and (max-width:768px){
	.portfolioGallery__img{
		height: 350px;
		object-fit: cover;
		width: 100%;
	}
}


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



.txtFull__desc h2 {
	margin-top: 30px;
	margin-bottom: 10px;
}
.txtFull__desc h2:first-child {
	margin-top: 0px;
	margin-bottom: 10px;
}

.txtFull__desc ul {
	color: #000;
}


.imgContentOffer__first {
/* 	margin-top: -80px; */
	position: relative;
	z-index: 2;
}


.imgContentOffer__img{
	height: 450px;
	object-fit: cover;
	width: 100%;
}
@media screen and (max-width:768px){
	.imgContentOffer__img {
		height: 350px;
	}
}
@media screen and (max-width:576px){
	.imgContentOffer__img {
		height: 300px;
	}
}

.page-id-972 [data-header*="type-1"] .ct-header [data-id="menu"] > ul > li > a {
	--theme-link-initial-color:#000;
	color:#fff;
}

.page-id-972 [data-header*="type-1"] .ct-header [data-id="menu"] > ul > li > a {
	--theme-link-initial-color:#fff;
	color:#fff;
}
.page-id-972 [data-header*="type-1"] .ct-header.bg-header [data-id="menu"] > ul > li > a {
	--theme-link-initial-color:#000;
	color:#000;
}


[data-header*="type-1"] .ct-header [data-id="menu-secondary"] > ul > li > a {
	--theme-font-weight:500 !important;
	--theme-link-initial-color: #000;
}

[data-header*="type-1"] .ct-header.bg-header [data-id="menu-secondary"] > ul > li > a {
	--theme-font-weight:500 !important;
	--theme-link-initial-color: #000 !important;
}



.page-id-972 [data-header*="type-1"] .ct-header [data-id="menu-secondary"] > ul > li > a {
	--theme-font-weight:500 !important;
	--theme-link-initial-color: #000 !important;
}

nav[class*=menu] .ct-menu-link {
	color:#000;
	font-weight:500 !important;
}
/* .page-id-972 nav[class*=menu] .ct-menu-link {
	color:#fff;
}
.page-id-972 .bg-header nav[class*=menu] .ct-menu-link {
	color:#000;
}
.page-id-972 .bg-header nav[class*=menu] .ct-menu-link[aria-current="page"] {
	color:var(--second);
}

.page-id-972 .ct-header .header-socialmedia{
	filter:invert(1);
}
.page-id-972 .ct-header .header-socialmedia{
	filter:invert(1);
}
.page-id-972 .ct-header.bg-header .header-socialmedia {
	filter:invert(0);
} */

.google-icon {
	width:70px;
}
.sliderReviews__name {
	font-style:italic;
}

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

/* macy two */

.container-macyJs--two {
    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--two > 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--two > div {
        width: 100%; /* Jedna kolumna na mniejszych ekranach */
    }
}


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

.container-paddings {
	padding:0px 20px;
}

/* macy three */

.container-macyJs--three {
    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--three > 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--three > div {
        width: 100%; /* Jedna kolumna na mniejszych ekranach */
    }
}


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


@media screen and (max-width:1000px){
	#header [data-column-set="2"]>div {
		padding:10px 0px;
	}
	nav[class*=menu] .ct-menu-link{
		color:#000 !important;
		font-weight:200 !important;
	}
	nav[class*=menu] .ct-menu-link[aria-current="page"]{
		color:#e0cf8e !important;
		font-weight:200 !important;
	}
	
}



.ctaMini__icon {
	width: 34px;
}

.arrow-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease-out;
	color:var(--second) !important;
	max-width:max-content;
}
@media screen and (min-width:992px){
	.arrow-btn a:hover {
		gap: 20px;
		opacity: 0.6;
		color: var(--second) !important;
	}
	.ctaMini {
		padding-top: 120px !important;
		padding-bottom: 120px !important;
	}
}

.padding-left-50 {
	padding-left: 50px;
}
@media screen and (max-width:992px){
	.padding-left-50 {
		padding-left: 0px;
	}
}
@media screen and (min-width:1170px){
	.padding-left-170-desktop {
		padding-left: 170px;
	}
}


.header-line {
	width: 100%;
	height: 1px;
	background-color: var(--second);

}


.igFeed__postImg {
	height: 390px;
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}
@media screen and (max-width:430px){
	.igFeed__postImg {
		height: 320px;
	}
}
.igFeed__igIcon{
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: 50px;
	/* transform: translate(-50%, -50%); */
}
.igFeed__box{
	width: 100%;
	height: 100%;
	display: block;
}

.arrow-btn--bigger a{
	font-size: 22px;
}


.offerInterior__img {
	height: 280px;
	width: 100%;
	object-fit: cover;
	border-radius:20px;
}
@media screen and (max-width:430px){
	.offerInterior__img {
		height: 270px;
	}
}
/* .offerInterior__box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 0px 10px;
	z-index: 2;
} */

/* .offerInterior__img{
	position: relative;
} */

.offerInterior__bg {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: #000;
	opacity: 0.4;
	border-radius:20px;
}
/* .offerInterior__h5 {
	font-size: 17px !important;
}
 */
.offerInterior__box{
	padding:20px;
}
.offerInterior__boxBtn{
	display: flex;
	justify-content: end;
	align-items: center;
}
@media screen and (max-width:992px){
	.offerInterior__boxBtn {
		justify-content: start;
	}
}


.imgContentAbout__iconLogo {
	width: 100px;
}

/* .social-img-footer--black{
	filter: invert(0) !important;
} */


.formCenter__formBox{
	padding: 0px;
	border-radius: 0px;
	border: none;
}

.singleCourse__price {
	font-weight:700 !important;
}
.ct-header.bg-header .ct-header-trigger.ct-toggle::before{
	content:"MENU";
	color:#000;
	margin-right:10px;
	font-size:12px;
} 
.ct-header .ct-header-trigger.ct-toggle::before{
	content:"MENU";
	color:#000;
	margin-right:10px;
	font-size:12px;
} 

.page-id-972 .ct-header .ct-header-trigger.ct-toggle::before{
	content:"MENU";
	color:#fff;
	margin-right:10px;
} 
.page-id-972 .ct-header.bg-header .ct-header-trigger.ct-toggle::before{
	content:"MENU";
	color:#000;
	margin-right:10px;
} 




/* !steps-work-left */

.stepsWorkLeft__icon{
	opacity: 0.12;
	position: absolute;
	top: -60px;
	left: -70px;
	width: 110px;
}
@media screen and (max-width:992px){
	.stepsWorkLeft__icon {
		transform: translate(-50%, 0px);
		left: 50%;
		width: 100px;
	}
	.txt-center-l {
		text-align: center;
	}
}
@media (min-width:992px) and (max-width:1430px){
	.stepsWorkLeft__icon {
		left: -10px;
	}
}

.steps__desc a {
	position: relative;
	color: #000 !important;
	font-style: italic;
}
.steps__desc a::after {
	content: "";
	position: absolute;
	bottom: -3px;
	left: 0px;
	width: 100%;
	height: 1px;
	background-color: #000;
	transition: all 0.3s ease-out;
}
.offerFancy__circle {
	width:25px;
	min-width:25px;
}
@media screen and (min-width:992px){
	.steps__desc a:hover::after {
		width: 0%;
	}
}

.offerFancy__img1 {
	width:100%;
	height:500px;
	object-fit:cover;
	border-radius:var(--border-radius);
}
.offerFancy__img2 {
	width:100%;
	height:420px;
	object-fit:cover;
	border-radius:var(--border-radius);
}

@media screen and (max-width:992px){
	.arrow-btn--offerFancy {
		display:flex;
		justify-content:center;
	}
}
@media screen and (max-width:576px){
	.offerFancy__img1 {
		height:260px;
	}
	.offerFancy__img2 {
		height:260px;
	}
}

.typeCourse__thumbnail--icon {
	position:absolute;
	bottom:20px;
	right:20px;
	background:transparent;
	height:60px;
	width:60px;
	border-radius:50%;
	border:1px solid #fff;
	transition:all 0.3s ease-out;
	display:flex;
	justify-content:center;
	align-items:center;
	z-index:10;
	
/* 	display:none; */
}
@media screen and (max-width:768px){
	.typeCourse__thumbnail--icon{
		height:40px;
		width:40px;
	}
}
.typeCourse__thumbnail--icon img {
	width:24px;
	z-index:2;
	position:relative;
}
/* .typeCourse__item {
	margin-bottom:20px;
} */
.typeCourse__list .typeCourse__item:last-child {
	margin-bottom:0px;
}

.imgContentLine__img {
	height:auto;
	object-fit:cover;
	border-radius:var(--border-radius);
	z-index:2;
	position:relative;
}
.imgContentLine__line {
	position:absolute;
	top:20px;
	left:0px;
	width:calc(100% - 20px);
	height:100%;
	border:1px solid var(--second);
	z-index:0;
	border-radius:var(--border-radius);
}
@media screen and (max-width:576px){
	.imgContentLine__img {
		height:auto;
	}
}


@media (min-width:1000px) and (max-width:1330px){
	.ct-menu-link:not(:empty) {
		padding:7px !important;
	}
	[data-header*="type-1"] .ct-header [data-id="menu"] > ul > li > a {
		--theme-font-size:10px !important;
	}
	.btn-menu-call {
		font-size:10px !important;
	}
}

.typeCourse__item--noMargin {
	margin-bottom:0px !important;
}
@media screen and (min-width:768px){
	.swiper-button-next--otherPortfolio{
		top: -50px !important;
		right:0px !important;
	}
	.swiper-button-prev--otherPortfolio{
		top: -50px !important;
		right:90px !important;
		left:unset !important;
	}
	.swiper-button-prev--otherPortfolio.swiper-button-disabled{
		opacity: 0.35 !important;
	}
}
@media screen and (max-width:768px){
	.swiper-button-next--otherPortfolio{
		top: -50px !important;
		right:unset !important;
		left:60px !important;
	}
	.swiper-button-prev--otherPortfolio{
		top: -50px !important;
		left:0px !important;
		right:unset !important;
	}
	.swiper-button-prev--otherPortfolio.swiper-button-disabled{
		opacity: 0.35 !important;
	}
	.teamSlider__paddingBtmMobile {
		padding-bottom:70px;
	}
}

/* 
@media screen and (max-width:768px){
	.swiper-button-prev--otherPortfolio {
		right:60px !important;
	}
} */


.single-portfolio .ctaFullBox {
	margin-top:0px !important;
}

.imgContentAbout__img {
	height:auto;
	object-fit:cover;
	width:100%;
	border-radius:var(--border-radius);
	z-index:10;
	position:relative;
}
@media screen and (max-width:768px){
	.imgContentAbout__img {
		height:auto;
	}
}
.page-id-1709 .ctaFullBox {
	margin-top:0px !important;
}
.page-id-1052 .ctaFullBox {
	margin-top:0px !important;
}

.packageBoxes__box {
	border: 2px solid var(--second);
	max-height:max-content;
	border-radius:var(--border-radius);
}
.packageBoxes__desc {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}
.packageBoxes__h3{
	background-color: var(--second);
	color: #fff !important;
	text-align: center;
	padding: 15px;
	border-radius:20px;
	margin:20px;
	font-size:19px;
	line-height:27px;
}
.packageBoxes__desc ul li {
	color: #000;
	background-image: url(/wp-content/uploads/2024/10/circle.png);
	background-position: left top 3px;
	background-repeat: no-repeat;
	background-size: 14px;
	padding: 0 0 0 1.25rem;
	padding-left: 30px;
	margin: 10px 0;
}
.packageBoxes__desc ul {
	list-style: none;
	padding-left: 0px !important;
}
@media screen and (max-width:768px){
	.imgBenefitsList__box::before {
		min-width:20px;
		height:20px;
	}
}

.second-btn--icon{
	width:22px;
	margin-right:7px;
	filter:invert(1);
}
.second-btn--calendar a {
	padding:6px 16px;
	font-size:12px;
}

.gallery-main__anchor img {
	border-radius:var(--border-radius);
}

[data-header*="type-1"] #offcanvas .ct-panel-inner{
	width:100%;
	background-color:#000;
}


.ctaCall__img {
	width:190px;
	height:190px;
	border-radius:50%;
	object-fit:cover;
}

.ctaCall__greenCircle{
	width:20px;
	height:20px;
	border-radius:50%;
	background-color:#21e321;
	position:absolute;
	bottom:40px;
	right:0px;
	animation: pulsegreen 2s infinite;
}
@keyframes pulsegreen{
	0%{
		transform:scale(0.9);
		box-shadow:0 0 0 0 rgb(35, 74, 72, 0.7);
	}
	70%{
		transform:scale(1);
		box-shadow:0 0 0 15px rgb(35, 74, 72, 0);
	}
	100%{
		transform:scale(0.9);
	}
}
.ctaCall{
	border-top:1px solid var(--second);
	position:relative;
}
/* .ctaCall::before {
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	width:100%;
	height:100%;
	background:linear-gradient(180deg, var(--second) 0%, transparent 40%);
	-webkit-mask: radial-gradient(circle at 50% -50%, var(--second) 0%, transparent 48%);
	z-index:-1;
} */
/* .headerLeft::before {
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	width:100%;
	height:100%;
	background:linear-gradient(180deg, var(--second) 0%, transparent 40%);
	-webkit-mask: radial-gradient(circle at 50% -50%, var(--second) 0%, transparent 48%);
	z-index:-1;
} */
.padding-left-2{
	padding-left:20px;
}


.footer__main{
	position:relative;
}
/* .footer__main::after {
	content:"";
	position:absolute;
	top:0px;
	bottom:0px;
	right:0px;
	left:0px;
	width:100%;
	height:100%;
	background:linear-gradient(0deg, var(--second) 0%, transparent 100%);
	-webkit-mask:radial-gradient(circle at 100% 100%, var(--second) -60%, transparent 50%);
	z-index:0;
} */
.footer__container{
	position:relative;
	z-index:10;
}
.painBanner__desc ul {
	color:#000;
}

.typeCourse__thumbnail--icon img{
	transition:all 0.3s ease-out;
}
@media screen and (min-width:992px){
	.typeCourse__item:hover .typeCourse__thumbnail--icon img {
		transform:rotate(45deg);
	}
}
@media screen and (max-width:992px){
	.typeCourse__thumbnail--icon img{
		transform:rotate(45deg);
	}
}

.hr-line-colored{
	width:100%;
	background:#353535;
	height:1px;
}


.scroll-mobile{
		position:absolute;
		top:0px;
		width:100%;
		height:1px;
		content:'';
		z-index:-1;
		visibility:hidden;
		top:-120px;
}
@media screen and (max-width:1000px){
	.scroll-mobile {
		top:-90px;
	}
}

.headerLeft__img1 {
	border-radius:0px 20px 20px 0px;
	height:300px;
	object-fit:cover;
}
.headerLeft__img2{
	border-radius:20px 0px 0px 20px;
	height:300px;
	object-fit:cover;
	margin-top:100px;
}
.headerLeft__h6{
	margin-top:50px;
}
@media screen and (max-width:992px){
	.headerLeft__img1{
		display:none;
	}
	.headerLeft__img2{
		display:none;
	}
	.padding-x-2-l{
		padding:0px 20px;
	}
	.headerLeft__h6{
		margin-top:0px;
	}
}

@media screen and (min-width:992px){
	.faqSticky__stickyBox{
		position:sticky;
		top:150px;
	}
}

.loading-box {
	height:30px;
	position:relative;
	margin-bottom:20px;
	background:#292929;
	border-radius:20px;
	padding:6px;
	width:360px;
	margin-left:auto;
	margin-right:auto;
}
@media screen and (max-width:576px){
	.loading-box{
		width:220px;
	}
}
.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:var(--second);
	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;
	}
}

.container-small{
	padding:0px 20px;
}

@media screen and (min-width:1330px){
	.landingCalendar__widthHeader{
		width: 55%;
	}
}
@media screen and (min-width:992px){
	.imgContentAbout__stickyBox{
		position:sticky;
		top:174px;
	}
}

.benefitsBoxes__h4{
	font-size:22px;
	line-height:30px;
}


.slickCarMain__img{
	border-radius:var(--border-radius);
	height:550px;
	object-fit:cover;
}
.slickCarSecond__img{
	
	cursor:pointer;
	height:100px;
	object-fit:cover;
	border-radius:12px;
}
.singleCourse__big {
	width:64%;
}
.singleCourse__small {
	width:36%;
}
.slickCarSecond__box {
	margin-left:10px;
	margin-right:10px;
}
@media screen and (max-width:992px){
	.singleCourse__big {
	width:100%;
}
.singleCourse__small {
	width:100%;
}
.slickCarSecond__box {
	margin-left:5px;
	margin-right:5px;
}
	.slickCarMain__img{
		height:260px;
	}
}

.width-100-important{
	width:100% !important;
}

.arrow-car{
	position:absolute;
	cursor:pointer;
	z-index:12;
	top:50%;
	height:45px;
	width:45px;
	
}
.arrow-car--left{
	left:-20px;
}
.arrow-car-right{
	right:-20px;
}
@media screen and (min-width:992px){
	.arrow-car{
		width:60px;
	}
}
@media screen and (max-width:992px){
	.slickCarSecond {
		margin-bottom:20px;
	}
}


.galleryProject__threeImg{
	height: 250px;
	object-fit: cover;
	border-radius: var(--border-radius);
}
@media screen and (max-width:768px){
	.galleryProject__threeImg {
		height: auto;
	}
}

.galleryProject__twoImg{
/* 	height: 360px; */
	object-fit: cover;
	border-radius: var(--border-radius);
}
@media screen and (max-width:768px){
	.galleryProject__twoImg {
		height: auto;
	}
}

.txtFull__singleCourse ul {
	color:#000;
}

.imgBenefitsList__box--smaller{
	font-size:16px;
}
.imgBenefitsList__box--smaller::before{
	min-width:20px;
	height:20px;
	filter:invert(1);
}

.bannerSlider__googleIcon{
	width:40px;
}
.bannerSlider__starsIcon{
	width:92px;
}

.bannerSlider__reviewNumber{
	font-size:15px;
	line-height:15px;
	font-weight:500;
	color:#fff;
}
.slick-portfolioBox{
	height:auto !important;
	padding:0px 10px;
}
.slick-portfolioBox--img{
	height:400px;
	width:700px;
}

/* slider-portfolio */

.typeCourse__thumbnail--imgSLIDER{
	width:840px;
}
.typeCourse__thumbnail--SLIDER{
	padding:0px 10px;
	margin-bottom:0px !important;
}

.arrows-slick-blue{
	position:absolute;
	transform:translateY(-50%);
	top:50%;
	cursor:pointer;
	z-index:10;
	transition:opacity 0.3s ease-out;
	width:70px;
	height:70px;
}
.arrow-rightBlue{
	right:calc(50% + -465px);
}
.arrow-leftBlue{
	left:calc(50% + -465px);
}
@media (min-width:768px) and (max-width:1000px){
	.typeCourse__thumbnail--imgSLIDER{
		width:600px;
	}
	.arrows-slick-blue{
		width:60px;
		height:60px;
	}
	.arrow-rightBlue{
		right:calc(50% + -340px);
	}
	.arrow-leftBlue{
		left:calc(50% + -340px);
	}
}
@media (min-width:576px) and (max-width:768px){
	.typeCourse__thumbnail--imgSLIDER {
		width:420px;
		height:350px;
	}
	.arrows-slick-blue{
		width:50px;
		height:50px;
	}
	.arrow-rightBlue{
		right:calc(50% + -245px);
	}
	.arrow-leftBlue{
		left:calc(50% + -245px);
	}
}
@media screen and (max-width:576px){
	.typeCourse__thumbnail--imgSLIDER {
		width:280px;
		height:280px;
	}
	.arrows-slick-blue{
		width:50px;
		height:50px;
	}
	.arrow-rightBlue{
		right:calc(50% + -175px);
	}
	.arrow-leftBlue{
		left:calc(50% + -175px);
	}
	.sliderPortfolio__header{
		font-size:16px;
		line-height:24px;
	}
}
@media (min-width:576px) and (max-width:992px){
	.sliderPortfolio__header{
		font-size:19px;
		line-height:27px;
	}
}
@media screen and (min-width:1170px){
	.sliderPortfolio__desc p {
		font-size:16px;
		width:50%;
	}
}
/* 
content-img-circle */

.contentImgCirlce__img1{
	height:200px;
	object-fit:cover;
	border-radius:var(--border-radius);
}
.contentImgCirlce__img2{
	height:300px;
	object-fit:cover;
	border-radius:var(--border-radius);
}
.contentImgCirlce__img3{
/* 	height:300px; */
	object-fit:cover;
	border-radius:var(--border-radius);
}
/* .contentImgCirlce__img1--1{
	margin-top:50px;
}
@media screen and (max-width:768px){
	.contentImgCirlce__img1--1{
		margin-top:30px;
	}
} */
.contentImgCircle__circle{
	width:70px;
	height:70px;
/* 	animation:rotatecircle 9s infinite linear; */
	border-radius:50%;
}
@keyframes rotatecircle {
	0% {
		transform:rotate(0deg);
	}
	100% {
		transform:rotate(359deg);
	}
}
.contentImgCircle__circleBox{
	position:absolute;
	top:0%;
	left:0%;
	transform:translate(-20px, -20px);
	z-index:10;
}
@media screen and (max-width:576px){
	.contentImgCirlce__img1{
		height:110px;
	}
	.contentImgCirlce__img2{
		height:210px;
	}
/* 	.contentImgCirlce__img3{
		height:210px;
	} */
	.contentImgCircle__circle{
		width:70px;
		height:70px;
	}
}
.contentImgCircle__box{
	display:flex; 
/* 	align-items:center; */
	gap:10px;
	margin-bottom:10px;
	padding-bottom:10px;
	border-bottom:1px solid #c9c9c9;
}
.contentImgCircle__box::before {
	content:"";
	display:inline-block;
	min-width:13px;
	height:13px;
/* 	background-size:cover;
	background-image:url(/wp-content/uploads/2025/01/square-box.png); */
	background:#000;
	margin-top:5px;
/* 	border-radius:50%; */
}

@media screen and (min-width:992px){
	.videoOffer__desc p {
		font-size:20px;
	}
}
.down-arrow-video{
	width:40px;
	height:40px;
}
@media screen and (max-width:768px){
	.down-arrow-video{
		width:30px;
		min-width:30px;
		height:30px;
	}
}

.videoOffer__icon{
	width:50px;
	height:50px;
}
@media screen and (max-width:768px){
	.videoOffer__icon{
		width:40px;
		height:40px;
	}
}

.videoOffer__arrowright{
	width:30px;
}
@media screen and (max-width:768px){
	.videoOffer__arrowright{
		width:22px;
	}
}
.videoOffer__box{
	display:flex;
	align-items:center;
	gap:20px;
	justify-content:space-between;
	background:#fff;
	padding:15px;
	border-radius:var(--border-radius);
	transition:all 0.2s ease-out;
}
.videoOffer__box{
	margin-bottom:15px;
}
@media screen and (min-width:992px){
	.videoOffer__box:hover {
		transform:scale(0.95);
		background:#fbfbfb;
	}
}

.ctaTeam__img1{
	height:350px;
	object-fit:cover;
	border-radius:var(--border-radius);
}
@media screen and (max-width:576px){
	.ctaTeam__img1{
		height:200px;
	}
}
.ctaTeam{
	border-top:1px solid #000;
}

.calculator__result {
	max-width:max-content;
	background:var(--second);
	padding:5px 60px;
	border-radius:var(--border-radius);
	font-size:20px;
	color:#fff;
	margin-top:20px;
}
.calculator__lawOffer{
	font-size:10px;
	margin-top:10px;
}
.calculator__label{
	font-size:20px;
}
@media screen and (max-width:768px){
	.calculator__result {
		padding:5px 10px;
		font-size:16px;
	}
	.calculator__label{
		font-size:18px;
	}
}

.calculator__grid{
	background:#eceaec;
	border-radius:var(--border-radius);
}
.calculator__contentBox{
	padding:70px 20px;
}
.calculator__img{
	border-radius:var(--border-radius);
	height:480px;
	object-fit:cover;
}
@media screen and (max-width:992px){
	.calculator__contentBox{
		padding:20px;
		padding-bottom:30px;
	}
}
@media screen and (max-width:576px){
	.calculator__img{
		height:300px;
	}
}

.typeCourse__thumbnail--imgPUBLIC{
	width:auto !important;
}
@media screen and (min-width:1170px){
	.typeCourse__thumbnail--imgPUBLIC{
		height:400px !important;
	}
}
.typeCourse__thumbnail--overlayPUBLIC{
	opacity:0.1;
}
/* .btn-menu-topNav {
    pointer-events: none; 
    text-decoration: none; 
    cursor: default; 
} */
.mobile-menu[data-submenu-dots=yes] [class*=children]>ul li a:not(:empty):before{
	display:none;
}
[data-header*="type-1"] #offcanvas .ct-panel-inner{
	background-color:#fff !important;
}

.tidycal-embed{
	border-radius:20px !important;
}
@media screen and (min-width:1000px){
	.ct-icon {
		fill:var(--second);
	}
	.sub-menu {
		background:#fff !important;
	}
	.sub-menu .ct-menu-link {
		color:#000 !important;
	}
/* 	.ct-header .ct-header-trigger .ct-icon {
		fill:#000;
	}

	.ct-header.bg-header .ct-header-trigger .ct-icon {
		fill:#000;
	} */
}
@media screen and (max-width:1000px){
	.ct-icon {
		fill:#000;
	}
}




.page-id-972 .ct-header .ct-header-trigger .ct-icon {
	fill:#fff;
}

.page-id-972 .ct-header.bg-header .ct-header-trigger .ct-icon {
	fill:#000;
}
nav[class*=menu] .ct-menu-link{
	text-transform:uppercase;
}
@media screen and (max-width:576px){
	nav[class*=menu] .ct-menu-link{
		font-size:16px;
	}
}

.contentImgCircle__circleBox--leftDownCorner{
	top:unset;
	right:unset;
	bottom:-140px;
	left:-140px;
	z-index:2;
}
.contentImgCircle__circleBox--rightUpCorner{
	top:-50px;
	bottom:unset;
	left:unset;
	right:-15px;
	transform:none;
}
/* @media screen and (min-width:992px){
	.allPortfolio{
		padding-top:110px;
	}
	.bigger-p-desktop{
		font-size:20px;
	}
}
@media screen and (max-width:992px){
	.allPortfolio{
		padding-top:70px;
	}
} */
.bannerOnePortfolio__icons{
	width:50px;
	height:50px;
}
@media screen and (max-width:576px){
	.bannerOnePortfolio__icons{
		width:42px;
		height:42px;
	}
}
.hr-portfolio{
	height:2px;
	width:100%;
	background:#eceaec;
}
@media screen and (min-width:1170px){
	.grid-75-desktop{
		width:75%;
	}
}
@media screen and (max-width:1170px){
	.grid-75-desktop{
		width:100%;
	}
}

.singleCourse__boxRight{
	display:flex;
	gap:15px;
	margin-bottom:7px;
}
.singleCourse__boxRight::before {
	content:"";
	display:inline-block;
	min-width:24px;
	height:24px;
	background-image:url(/wp-content/uploads/2025/01/check.png);
	background-size:cover;
	filter:invert(0);
}




.page-id-2669 .slickCarSecond {
	display:none;
}
@media screen and (max-width:992px){
	.page-id-2669 .singleCourse__stickyBox{
		margin-top:30px;
	}
}

.page-id-2922 .slickCarSecond {
	display:none;
}
@media screen and (max-width:992px){
	.page-id-2922 .singleCourse__stickyBox{
		margin-top:30px;
	}
}

.page-id-2681 .slickCarSecond {
	display:none;
}
@media screen and (max-width:992px){
	.page-id-2681 .singleCourse__stickyBox{
		margin-top:30px;
	}
	.swiper-button-prev--offer__higherMobile {
		bottom:70% !important;
	}
	.swiper-button-next--offer__higherMobile{
		bottom:70% !important;
	}
}

.swiper-slide--white{
	background-color:#fff;
}

.imgContentSlider__desc ul {
	color:#000;
	font-size:16px;
}

.teamTwo__personBox{
	border-radius:var(--border-radius);
}
.teamTwo__img{
	height:280px;
	object-fit:cover;
	border-radius:var(--border-radius);
}
@media screen and (max-width:1170px){
	.teamTwo__img {
		height:auto;
	}
}

.teamTwo__work{
	text-transform:uppercase;
	font-size:11px;
	letter-spacing:2px;
}
@media screen and (max-width:768px){
	.teamTwo__work{
		letter-spacing:0px;
	}
}

.teamTwo__boxPhone{
	display:flex;
	gap:15px;
	align-items:center;
}
.teamTwo__boxPhone::before {
	content:"";
	display:inline-block;
	min-width:20px;
	height:20px;
	background-image:url(/wp-content/uploads/2024/12/phone-call.png);
	background-size:cover;
}

.teamTwo__boxEmail{
	display:flex;
	gap:15px;
	align-items:center;
}
.teamTwo__boxEmail::before {
	content:"";
	display:inline-block;
	min-width:20px;
	height:20px;
	background-image:url(/wp-content/uploads/2024/12/email.png);
	background-size:cover;
}

.bannerPlace__place{
	display:flex;
	align-items:center;
	gap:20px;
}
.bannerPlace__place::before {
	content:"";
	display:inline-block;
	min-width:50px;
	height:50px;
	background-image:url(/wp-content/uploads/2024/12/map.png);
	background-size:cover;
	filter:invert(1);
}


.bannerPlace__poland{
	display:flex;
	align-items:center;
	gap:20px;
}
.bannerPlace__poland::before {
	content:"";
	display:inline-block;
	min-width:55px;
	height:55px;
	background-image:url(/wp-content/uploads/2024/12/poland.png);
	background-size:cover;
	filter:invert(1);
}

@media screen and (max-width:768px){
	.teamBox__content{
		padding-left:20px;
		padding-right:20px;
		padding-bottom:20px;
	}
	.bannerPlace__place::before{
		min-width:30px;
		height:30px;
	}
	.bannerPlace__poland::before {
		min-width:40px;
		height:40px;
	}
	.bannerPlace__place {
		align-items:start;
	}
	.bannerPlace__poland {
		align-items:center;
	}
}
.calculatorFull__contentBox{
	padding:20px;
	background-color:#fff;
	border-radius:var(--border-radius);
}
@media screen and (min-width:992px){
	.calculatorFull__grid{
		display:flex;
		justify-content:center;
	}
	.calculatorFull__contentBox{
		width:80%;
	}
	.formWhite__contentBox{
		width:80%;
	}
}

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

@media screen and (max-width:992px){
	.formWhite__contentBox--widthFullMobile {
		width:100%;
	}
}

/* faq 1 */

.imgFaq__box--one{
	position: relative;
	padding:16px;
	cursor: pointer;
	border-radius: 0px;
	border-bottom: 1px solid #e1dae1;
	transition: all 0.4s ease-out;
}
@media screen and (min-width:992px){
	.imgFaq__box--one:hover {
		background:#fff;
	}
}
@media screen and (max-width:992px){
	.imgFaq__box--one {
		padding:16px 0px;
	}
}
.faqSticky__icon--one{
	width:30px;
}
.imgFaq__answer--one p{
	margin-top: 24px;
	color:#000;
}	
.imgFaq__answer--one{
	max-height:0px;
	overflow:hidden;
	transition: max-height 0.4s ease-out;
}
.imgFaq__title--one{
	margin-bottom: 0px !important;
}
.imgFaq__box--one.active .imgFaq__answer--one{
	max-height:1000px;
}

.imgFaq__box--one:last-child{
	border-bottom: none;
}
.imgFaq__icon--one{
	width:20px;
	height:20px;
	position:absolute;
	right:0;
	top:50%;
	transition: all 0.4s ease-out;
	transform: translate(0%, -50%);
}
.imgFaq__box--one.active .imgFaq__icon--one{
	transform: translate(0%, -50%) rotate(180deg);
}

.hr--black{
	background:#000 !important;
}

/* faq 2 */

.imgFaq__box--two{
	position: relative;
	padding:16px;
	cursor: pointer;
	border-radius: 0px;
	border-bottom: 1px solid #e1dae1;
	transition: all 0.4s ease-out;
}
@media screen and (min-width:992px){
	.imgFaq__box--two:hover {
		background:#fff;
	}
}
@media screen and (max-width:992px){
	.imgFaq__box--two {
		padding:16px 0px;
	}
}
.faqSticky__icon--two{
	width:30px;
}
.imgFaq__answer--two p{
	margin-top: 24px;
	color:#000;
}	
.imgFaq__answer--two{
	max-height:0px;
	overflow:hidden;
	transition: max-height 0.4s ease-out;
}
.imgFaq__title--two{
	margin-bottom: 0px !important;
}
.imgFaq__box--two.active .imgFaq__answer--two{
	max-height:1000px;
}

.imgFaq__box--two:last-child{
	border-bottom: none;
}
.imgFaq__icon--two{
	width:20px;
	height:20px;
	position:absolute;
	right:0;
	top:50%;
	transition: all 0.4s ease-out;
	transform: translate(0%, -50%);
}
.imgFaq__box--two.active .imgFaq__icon--two{
	transform: translate(0%, -50%) rotate(180deg);
}


/* faq 3 */

.imgFaq__box--three{
	position: relative;
	padding:16px;
	cursor: pointer;
	border-radius: 0px;
	border-bottom: 1px solid #e1dae1;
	transition: all 0.4s ease-out;
}
@media screen and (min-width:992px){
	.imgFaq__box--three:hover {
		background:#fff;
	}
}
@media screen and (max-width:992px){
	.imgFaq__box--three {
		padding:16px 0px;
	}
}
.faqSticky__icon--three{
	width:30px;
}
.imgFaq__answer--three p{
	margin-top: 24px;
	color:#000;
}	
.imgFaq__answer--three{
	max-height:0px;
	overflow:hidden;
	transition: max-height 0.4s ease-out;
}
.imgFaq__title--three{
	margin-bottom: 0px !important;
}
.imgFaq__box--three.active .imgFaq__answer--three{
	max-height:1000px;
}

.imgFaq__box--three:last-child{
	border-bottom: none;
}
.imgFaq__icon--three{
	width:20px;
	height:20px;
	position:absolute;
	right:0;
	top:50%;
	transition: all 0.4s ease-out;
	transform: translate(0%, -50%);
}
.imgFaq__box--three.active .imgFaq__icon--three{
	transform: translate(0%, -50%) rotate(180deg);
}

.typeCourse__thumbnail--allPublic{
	margin-bottom:0px !important;
}
.typeCourse__thumbnail--imgallPublic{
	height:auto !important;
}

.typeCourse__thumbnail--overlayallPUBLIC{
	opacity:0;
	background-color:#fff;
}

.galleryPublic__anchor{
	max-width:max-content;
	color:#6f6f6f !important;
	position:relative;
}
.galleryPublic__anchor::after {
	content:"";
	width:100%;
	height:1px;
	background:#6f6f6f;
	position:absolute;
	bottom:-2px;
	left:0px;
	transition:all 0.3s ease-out;
}
@media screen and (min-width:992px){
	.galleryPublic__anchor:hover::after {
		width:0%;
	}
}
@media screen and (max-width:576px){
	.galleryPublic__anchor {
		font-size:14px;
	}
}

.guarantee__icon{
	width:120px;
	height:120px;
/* 	filter:invert(1); */
}
@media screen and (max-width:768px){
	.guarantee__icon{
		width:100px;
		height:100px;
	}
}


.scroll-mobile{
		position:absolute;
		top:0px;
		width:100%;
		height:1px;
		content:'';
		z-index:-1;
		visibility:hidden;
		top:-110px;
}
@media screen and (min-width:1000px){
	.scroll-mobile {
		top:-120px;
	}
}
.btn-menu-topNav{
	background-color:var(--second) !important;
}

.bannerSlider__person{
	width:50px;
	min-width:50px;
	height:50px;
	border-radius:50%;
	object-fit:cover;
}
.bannerSlider__person--mrgLeft{
	margin-left:-10px;
}
.offerInterior__anchorBox{
	transition:all 0.25s ease-out;
}
@media screen and (min-width:992px){
	.offerInterior__anchorBox:hover{
		transform:scale(0.98);
	}
}

.typeCourse__thumbnail--logo {
	position:absolute;
	bottom:20px;
	right:20px;
}
.typeCourse__thumbnail--logo img {
	filter:invert(1);
	width:20px;
	z-index:2;
	position:relative;
}

.offerInterior__h5{
	text-transform:uppercase;
}

.page-id-3087 .slickCarSecond{
	display:none;
}
.page-id-3089 .slickCarSecond{
	display:none;
}
.page-id-3216 .slickCarSecond{
	display:none;
}

[data-header*="type-1"] .ct-header [data-id="menu"] .sub-menu{
	--dropdown-background-color:#000 !important;
}

[data-header*="type-1"] .ct-header [data-id="menu"] .sub-menu .ct-menu-link{
	font-weight:300 !important;
}
@media screen and (min-width:1170px){
	[data-header*="type-1"] .ct-header [data-id="menu"] .sub-menu .ct-menu-link {
		font-size:13px !important;
	}
}

.entryContent h2 {
	margin-bottom:20px;
}

/* .entryAll .blog-box {
	background-color:#000 !important;
} */

.arrows-slick-blue img {
	border-radius:50%;
}
@media screen and (max-width:992px){
/* 	.imgBenefitsList__all {
		display:block;
	} */
	.bannerSLider__benefitsAll{
		width:100%;
	}
}
@media screen and (min-width:576px){
	.bannerSLider__benefitsAll{
		width:75%;
	}
}
@media screen and (min-width:768px){
	.bannerSLider__benefitsAll{
		width:55%;
	}
}
@media screen and (min-width:992px){
	.bannerSLider__benefitsAll{
		width:45%;
	}
}
@media screen and (min-width:1170px){
	.bannerSLider__benefitsAll{
		width:100%;
/* 		display:flex;
		justify-content:center;
		align-items:center;
		gap:20px; */
	}
	.imgBenefitsList__box {
		align-items:center;
	}
	.imgBenefitsList__allBoxes .imgBenefitsList__box:last-child {
		margin-bottom:20px;
	}
}



.padding-left-70-contentImgCircle__img1 {
	padding-left:70px;
}


.padding-right-30-contentImgCircle__img {
	padding-right:30px;
}
.padding-right-90-contentImgCircle__img {
	padding-right:90px;
}
/* 
.bannerPlace {
	margin:20px;
	margin-top:70px;
	margin-bottom:0px !important;
	border-radius:20px;
} */


/* @media screen and (min-width:576px){
	.imgContentLine {
		padding-bottom:130px;
	}
}
@media screen and (max-width:576px){
	.imgContentLine {
		padding-bottom:115px;
	} */
/* 	.contentImgCircle__circleBox {
		right:25px;
	} */
}



.benefitsBoxes__box--white {
	background-color:#fff;
	border:1px solid var(--second);
}

.arrow-car-right img {
	border-radius:50%;
}
.arrow-car--left img {
	border-radius:50%;
}

/* .ctaFullBox {
	margin-left:20px;
	margin-right:20px;
	border-radius:20px;
} */

.con-padding-20{
	padding-left:20px;
	padding-right:20px;
}
.offerInterior__flatBox{
	background:#e3e2dd;
	border-radius:var(--border-radius);
	margin-bottom:20px;
}

.offerInterior__flatBox--all .offerInterior__flatBox:last-child {
	margin-bottom:0px;
}


.black-btn--smallerOne a{
	padding:3px 30px;
	font-size:15px;
}

@media screen and (min-width:992px){
	.offerInterior__stickyBox{
		position:sticky;
		top:150px;
	}
}

.faqSticky__icon--i{
	font-size:30px;
	line-height:30px;
	margin-bottom:0px !important;
	font-weight:700;
	color:#000 !important;
}


.benefitsBoxes__icon--smaller{
	width:auto;
	height:36px;
	object-fit:contain;
}

@media screen and (min-width:1170px){
	.bannerSLider__ppp {
		font-size:20px;
	}
}


/* .second-btn--whiter a {
	background:#e3e2dd;
	border: 2px solid #e3e2dd;
	color:var(--second);
} */

@media screen and (min-width:992px){
	.faqSticky__descriptionMain{
		width:50%;
	}
	.bannerOneImg__header1 {
		font-size:41px;
		line-height:49px;
	}
}

@media screen and (min-width:1000px){
	[class*=animated-submenu]>.sub-menu {
		min-width:300px !important;
	}
}


.bannerSlider__gradient--second{
	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 40%);
}

.imgContent__boxPadding1{
	padding:20px;
}
.imgContent__grid{
	background:#fff !important;
	border-radius:20px;
}

.background-color-txt{
	max-width:max-content;
	background:var(--second);
	border-radius:50px;
	padding:1px 12px;
	color:#000;
}

@media screen and (min-width:1170px){
	.bannerOne__header {
		font-size:43px;
		line-height:53px;
	}
}


.page-id-972 .ct-header nav[class*=menu] .ct-menu-link {
	color:#fff;
}
.page-id-972 .ct-header.bg-header nav[class*=menu] .ct-menu-link {
	color:#000;
}

.page-id-972 .ct-header nav[class*=menu] li[class*=current-menu-]>.ct-menu-link {
	color:var(--second);
}

.phone__icon {
	width:20px;
	min-width:20px;
	margin-right:7px;
}



.icon-subheader {
	width: 18px;
	height: 18px;
}
.icon-subheader-small {
	width: 16px;
	height: 16px;
}
.icon-subheader-otomoto {
	height: 14px;
	width: auto;
}

@media screen and (max-width:992px){
	.smaller-p-subheader {
		font-size: 13px;
		color:#000 !important;
		text-decoration:none !important;
	}
	.icon-subheader {
		width: 14px;
		height: 14px;
	}
	.icon-subheader-small {
		width: 12px;
		height: 12px;
	}
	.icon-subheader-otomoto {
		height: 11px;
	}
}

.ct-header-text  {
	width:100% !important;
}

@media screen and (max-width:992px){
	.flex-center-box-mobile {
		justify-content:center;
	}
}
.benefitsBanner {
	margin-bottom:-50px;
}
.benefitsBanner h2 {
	font-weight:800; 
	letter-spacing:2px;
}
.benefitsBanner__main {
	background:#fff7ef;
	padding:20px;
	transform:translateY(-50px);
	
}
.benefitsBanner__box {
	padding:20px;
	border-right:2px solid #000;
}
.benefitsBanner__allBox .benefitsBanner__box:last-child {
    border-right: 0px !important;
}
@media screen and (max-width:992px){
	.benefitsBanner__box {
		border-right:0px !important;
		border-bottom:2px solid #000;
	}
	.benefitsBanner__allBox .benefitsBanner__box:last-child {
		border-bottom:0px !important;
	}
}

.benefitsSticky__anchor {
	transition:all 0.3s ease-out;
}
.benefitsSticky__box {
	transition:all 0.3s ease-out;
}
@media screen and (min-width:992px){
	.benefitsSticky__anchor:hover {
		transform:scale(0.96);
		background:#fdfdfd;
	}
	.benefitsSticky__anchor:hover .benefitsSticky__box {
		box-shadow:none;
	}
}

.entryContent h3 {
	margin-bottom:10px;
	margin-top:15px;
}


.swiper-button-next--reviews {
	top:-50px !important;
	right:0px !important;
}
.swiper-button-prev--reviews {
	top:-50px !important;
	right:90px !important;
	left:unset !important;
}
@media screen and (max-width:768px){
	.swiper-button-prev--reviews {
		right:60px !important;
	}
}

.swiper-slide--teamSlider{
	width:420px !important;
}
@media screen and (max-width:768px){
	.swiper-slide--teamSlider{
		width:335px !important;
	}
}


/* line btn */

.line-btn a {
	font-size:16px;
	cursor:pointer;
	color:#000;
	display:inline-block;
	text-align:center;
	transition:all 0.3s ease-out;
	width:max-content;
	font-weight:600;
	text-transform: uppercase;
	position: relative;
}
.line-btn a::after {
	content: "";
	height: 2px;
	position: absolute;
	width: 100%;
	bottom: -3px;
	left: 0px;
	background-color: #000;
	transition:all 0.3s ease-out;
}
@media screen and (min-width:992px){
	.line-btn a:hover{
		color:#000;
	}
	.line-btn a:hover::after{
		color:#000;
		width: 0%;
	}
}
@media screen and (max-width:576px){
	.line-btn a{
		font-size:14px;
	}
}

.person__icon--phone{
	width:20px;
	min-width:20px;
}
.person__icon--email {
	width:20px;
	min-width:20px;
}

.teamSlider__anchorContact{
	color:#000 !important;
	font-size:16px !important;
}
@media screen and (max-width:768px){
	.teamSlider__anchorContact{
		font-size:13px !important;
	}
}


.single__status{
	font-size:14px;
	font-weight:600;
	background:#000;
	color:var(--second);
	padding:2px 10px;
	border-radius:40px;
}

.teamSlider__aip{
	position:absolute;
	bottom:10px;
	right:10px;
	z-index:0;
	width:90px;
}
.teamSlider__aip img {
	opacity:0.1;
}
@media screen and (max-width:768px){
	.teamSlider__aip {
		width:70px;
	}
}

.benefitsBoxes__box--transparent{
	padding:20px;
}


.slickCarSecond{
	display:none !important;
}
@media screen and (max-width:992px){
	.slickCarMain {
		margin-bottom:30px;
	}
}

.bg-whiter{
	background:#fff !important;
}

.singleCourse__teil h4 {
	margin-top:20px;
	margin-bottom:10px;
}
.singleCourse__teil .benefitsBoxes__h4{
	margin-top:0px !important;
}

.placeMap.bg-gradient .placeMap__content {
	background:#fff !important;
}


@media screen and (min-width:1000px){
	.sub-menu .menu-item a {
		font-size:12px !important;
		padding:6px 15px !important;
	}
	.sub-menu .menu-item a:hover {
		color:var(--second) !important;
	}
}

.otherPortfolio{
	border-top:1px solid #000;
}

.noDots__anchor{
	text-decoration:none !important;
	color:#fff !important;
}
@media screen and (min-width:1170px){
	nav[class*=menu] .ct-menu-link {
		font-size:16px;
	}
}