* { border: none; margin: 0px; padding: 0px;  }

:root {
  --purpledark: #3D3F9D;
  --purplemiddle: #7E80E3;
  --purplelight: #BBBDFF;
  --purplevlight: #E6E7FF;
  --txt: #1D2939;
}

body {
	background: #fff;
	width: 100%;
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	font-family: "Poppins", Sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--purpledark);
	overflow-x: hidden;
	position: relative;
}

	body.overflow {
		overflow: hidden;
	}

.contactButton {
	list-style: none;	
}

.contactButton a,
.contactButtonMail a,
.wp-block-button .wp-block-button__link {
	font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
    border-radius: 30px;
    padding: 8px 25px 8px 8px;
	text-align: center;
	color: var(--purpledark);
	background: #E6E7FF;
	box-shadow: 0px 1px 2px 0px #1018280D;
	transition: all 0.4s ease;
}

.contactButton a,
.contactButtonMail a {
	background: var(--purplemiddle);
	color: #fff;
}

.arrowDown .wp-block-button__link:before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: #fff;
	background-image: url(../graf/ico_arrowDown.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 14px auto;
	border-radius: 50%;
}

.contactButton a:before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: #fff;
	background-image: url(../graf/ico_phone.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 16px auto;
	border-radius: 50%;
}

.contactButtonMail a:before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background-color: #fff;
	background-image: url(../graf/ico_mail.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 18px auto;
	border-radius: 50%;
}
	
	.wp-block-button .wp-block-button__link:hover {
		background: var(--purplelight);
		transition: all 0.4s ease;
	}
	
	.contactButton a:hover {
		background: var(--purpledark);
		color: #fff;
	}

.hide-on-desktop {
	display: none;
}

.hide-on-mobile {
	display: block;
}

@media (max-width: 1000px) {
	.hide-on-mobile {
		display: none;
	}
	.hide-on-desktop {
		display: block;
	}
}

*:focus {
	outline: 0;
}	

.is-style-fw-padding,
.fw-padding {
	width: 100%;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit,
.fit {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-1400,
.fit-1400 {
	width: 100%;
	max-width: 1450px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-1300,
.fit-1300 {
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-1200,
.fit-1200 {
	width: 100%;
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-1100,
.fit-1100 {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-1000,
.fit-1000 {
	width: 100%;
	max-width: 1050px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-800,
.fit-800 {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

.is-style-fit-600,
.fit-600 {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	padding: 0 3%;
	box-sizing: border-box;
}

a {
	color: var(--black);
	text-decoration: none;
	transition: all .2s ease;
	-webkit-transition: all .2s ease;
	
	cursor: pointer;
}

	a:hover {
		color: var(--green2);
		text-decoration: none;
		
		transition: all .2s ease;
		-webkit-transition: all .2s ease;
		cursor: pointer;
	}


h1 {
	color: var(--purpledark);
	font-family: "Poppins", Sans-serif;
	font-weight: 600;
	font-size: clamp(42px, 6vw, 80px);
	line-height: 1.1;
}

h2 {
	color: var(--purpledark);
	font-family: "Poppins", Sans-serif;
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 400;
	line-height: 1.1;
}

h3 {
	font-family: "Poppins", Sans-serif;
	font-size: clamp(24px, 4vw, 30px);
	font-weight: 400;
	line-height: 1.3;
}

h1 strong,
h2 strong,
h3 strong {
	font-weight: 600;
}

header {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
	
	display: flex;
	align-items: center;
	gap: 5%;
	justify-content: space-between;
}

	header a {
		padding: 0 !important;
	}
	
		header a:before {
			background-color: var(--purplemiddle) !important;
			background-image: url(../graf/ico_phoneWhite.svg) !important;
		}
		
		header a span {
			display: none;
		}
		
		header .contactButton a:before {
			width: 42px;
			height: 42px;
			background-size: 20px;
		}
		
#content {
	overflow-x: hidden;
}

	#hero {
		
	}
	
	#hero > .wp-block-group {
		position: relative;
		z-index: 1;
		display: grid;
		grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
		grid-template-rows: auto auto auto auto auto;
		gap: 30px 0;
		grid-auto-flow: row;
		align-items: flex-start;
		padding: 0 3%;
	}

		#hero .imgBox {
			grid-area: 1 / 1 / 4 / 9;
			z-index: -1;
		}
		
			#hero .imgBox .img {
				display: block;
				width: 135%;
				height: 100%;
				min-height: 620px;
				position: absolute;
				right: 10%;
				top: 10%;
			}
		
				#hero .imgBox .img img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
				}
			

		#hero .header { 
			grid-area: 1 / 4 / 2 / 11;
			
			color: var(--purpledark);
			line-height: 1;
		}
			
			#hero .header em {
				padding-left: 8%;
				color: var(--purplemiddle);
				font-style: normal;
			}

			#hero .header strong {
				font-weight: 600;
				padding-left: 16%;
			}
	
		#hero .icons { 
			grid-area: 2 / 6 / 3 / 11; 
			
			flex-direction: column;
			gap: 20px;
		}

			#hero .icons .wp-block-column {
				flex-grow: 0;
				flex-basis: auto;
			}
			
			#hero .icons .wp-block-media-text {
				grid-template-columns: 35px auto !important;
				align-items: flex-start;
			}
			
			#hero .icons .wp-block-media-text__media {
				width: 35px;
				min-width: 35px;
				height: 35px;
				align-self: flex-start;
			}
			
				#hero .icons .wp-block-media-text__media img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
					object-position: 50% 50%;
				}
				
			#hero .icons .wp-block-media-text__content {
				color: var(--purplemiddle);
				font-size: 14px;
				font-weight: 600;
				margin: 0;
				padding: 0 0 0 10px;
			}
			
				#hero .icons .wp-block-media-text__content strong {
					font-weight: 600;
					color: var(--purpledark);
				}
			
		#hero .slogan { 
			grid-area: 3 / 5 / 4 / 11;
						
			font-size: 14px;
			color: var(--purpledark);
			font-weight: 600;
			
			border-radius: 50px;
			background: var(--purplevlight);
			box-shadow: -7px 3px 4px 0px #2A2B665C;
			
			grid-template-columns: 100px auto !important;
		}

		#hero .desc { 
			grid-area: 5 / 1 / 5 / 11; 
			
			color: var(--purpledark);
			font-weight: 600;
			font-size: 20px;
			padding-top: 50px;
		}

			#hero .desc em {
				font-style: normal;
				color: var(--purplelight);
			}

		#hero .button {
			grid-area: 6 / 1 / 6 / 11;
		}

@media screen and (max-width: 550px) {
	#hero .header {
		grid-area: 1 / 3 / 2 / 11;
		font-size: 55px;
	}
	
	#hero .slogan {
		grid-area: 3 / 4 / 4 / 11
	}
	
	#hero .desc {  
		padding-top: 0;
		font-size: 18px;
	}
}

@media screen and (max-width: 450px) {
	#hero > .wp-block-group {
		gap: 25px 0;
	}

	#hero .header {
		grid-area: 1 / 2 / 2 / 11;
		font-size: 50px;
	}
	
	#hero .slogan {
		grid-area: 3 / 3 / 4 / 11
	}
}

#witamyCie {
	margin: -30px auto 70px auto;
	overflow: hidden;
}


	#witamyCie .wp-block-columns {
		display: flex;
		flex-direction: column-reverse;
		grid-auto-flow: row;
		gap: 20px;
	}
	
		#witamyCie .wp-block-columns:before {
			content: "";
			
		}
		
		#witamyCie .wp-block-column:first-child {
			padding: 20px 3%;
			align-self: center;
		}
		
			#witamyCie .wp-block-column:first-child em {
				color: var(--purplelight);
				font-style: normal;
			}
			
			#witamyCie .wp-block-column:first-child p {
				margin: 0 0 20px 0;
			}
		
			#witamyCie .wp-block-column:first-child strong {
				font-size: 20px;
				color: var(--purpledark);
				font-weight: 600;
			}
			
			#witamyCie .wp-block-column:first-child .witamyCieHeader,
			#witamyCie .wp-block-column:first-child .witamyCieHeader strong {
				font-size: 30px;
				margin-bottom: 10px;
			}
			
		#witamyCie .wp-block-column:last-child {
			position: relative;
			width: 100%;
			display: flex;
			justify-content: flex-end;
		}
		
			#witamyCie .wp-block-column:last-child figure {
				aspect-ratio: 1 / 1;
				border-radius: 50%;
				background: linear-gradient(14.02deg, #B4B5FF 9.54%, #9698F0 48.74%, #8183E9 91.07%);
				overflow: hidden;
				
				display: flex;
				align-items: flex-end;
				justify-content: center;
				
				width: 90%;
				max-width: 550px;
				right: -10%;
				position: relative;
			}
			
				#witamyCie .wp-block-column:last-child figure img {
					position: relative;
					display: block;
					width: 90%;
					height: 90%;
					object-fit: contain;
					object-position: 30% 100%;
				}
				
#banerKontakt {
	margin: 80px auto 50px auto;
}			

	#banerKontakt .wp-block-columns {
		position: relative;
		gap: 0;
		
		background: var(--purplelight);
		padding: 20px;
		box-sizing: border-box;
		border-radius: 30px;
		flex-direction: column;
		align-items: flex-start;
	}
	
		#banerKontakt .wp-block-columns figure {
			position: absolute;
			z-index: -1;
			left: 0;
			top: 0;
			transform: translate(-10%, -65%);
			
			width: 180px;
			height: 180px;
		}
	
			#banerKontakt .wp-block-columns figure img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: contain;
				object-position: 50% 50%;
			}
		
		#banerKontakt .wp-block-column:nth-child(1) {
			flex-basis: 0;
			max-width: 0;
		}
		
		#banerKontakt .wp-block-column:nth-child(2) {
			flex-grow: 1;
			flex-basis: auto;
			
			font-size: 16px;
			font-weight: 600;
			color: var(--purpledark);
		}
		
		#banerKontakt .wp-block-column:nth-child(3) {
			text-align: left;
			padding-top: 20px;
		}
		
			#banerKontakt .wp-block-column:nth-child(3) .wp-block-buttons {
				text-align: left;
				justify-content: flex-start;
			}
		
				#banerKontakt .wp-block-column:nth-child(3) .wp-block-buttons a {
					background: #fff;
				}
		
				#banerKontakt .wp-block-column:nth-child(3) .wp-block-buttons a:before {
					background-color: var(--purplemiddle);
					background-image: url(../graf/ico_phoneWhite.svg);
					transition: all 0.3s ease;
				}
				
			#banerKontakt .wp-block-column:nth-child(3) .wp-block-buttons a:hover {
				background: var(--purplemiddle);
			}
				
				#banerKontakt .wp-block-column:nth-child(3) .wp-block-buttons a:hover:before {
					background-color: var(--purplelight);
					transition: all 0.3s ease;
				}
				
					
					
#banerKontakt2 {
	margin: 200px auto 50px auto;
}

	#banerKontakt2 .wp-block-columns {
		position: relative;
		gap: 0;
		
		background: var(--purplelight);
		padding: 20px;
		box-sizing: border-box;
		border-radius: 30px;
		flex-direction: column;
	}
	
		#banerKontakt2 .wp-block-columns figure {
			position: absolute;
			z-index: -1;
			right: 0;
			top: 0;
			transform: translate(-10%, -55%);
			
			width: 210px;
			height: 210px;
		}
	
			#banerKontakt2 .wp-block-columns figure img {
				display: block;
				width: 100%;
				height: 100%;
				object-fit: contain;
				object-position: 50% 50%;
			}
		
		#banerKontakt2 .wp-block-column:nth-child(3) {
			flex-basis: 0;
			max-width: 0;
		}
		
		#banerKontakt2 .wp-block-column:nth-child(1) {
			flex-grow: 1;
			flex-basis: auto;
			
			font-size: 18px;
			font-weight: 600;
			color: var(--purpledark);
		}
		
		#banerKontakt2 .wp-block-column:nth-child(2) {
			padding-top: 20px;
			
		}
		
			#banerKontakt2 .wp-block-column:nth-child(2) .wp-block-buttons {
				justify-content: flex-start;
			}
		
				#banerKontakt2 .wp-block-column:nth-child(2) .wp-block-buttons a {
					background: #fff;
				}
		
				#banerKontakt2 .wp-block-column:nth-child(2) .wp-block-buttons a:before {
					background-color: var(--purplemiddle);
					background-image: url(../graf/ico_phoneWhite.svg);
					transition: all 0.3s ease;
				}
				
			#banerKontakt2 .wp-block-column:nth-child(2) .wp-block-buttons a:hover {
				background: var(--purplemiddle);
			}
				
				#banerKontakt2 .wp-block-column:nth-child(2) .wp-block-buttons a:hover:before {
					background-color: var(--purplelight);
					transition: all 0.3s ease;
				}
				
#metodaOpisowegoMowienia {
	margin: 70px auto 50px auto;
	color: var(--purpledark);
}		
		
	#metodaOpisowegoMowienia h2 {
		margin-bottom: 15px;
	}
		
	#metodaOpisowegoMowienia h3 {
		margin-bottom: 30px;
	}
	
	#metodaOpisowegoMowienia sup {
		font-size: 16px;
	}
		
	#metodaOpisowegoMowienia p {
		margin: 20px 0;
	}
	
	
#boxes {
	margin: 0 auto 50px auto;
}
			
	#boxes .wp-block-columns {
		gap: 2%;
		padding: 0 0;
		flex-direction: column-reverse;
	}
	
		#boxes .wp-block-column:nth-child(1) {
			position: relative;
		}
		
			#boxes .wp-block-column:nth-child(1) .dymek {
				position: absolute;
				top: 5vw;
				left: 50%;
				transform: translateX(-50%);
				background: #fff;
				border-radius: 50px;
				padding: 20px;
				
				display: flex;
				align-items: center;
				flex-direction: row;
				gap: 10px;
				width: 280px;
				font-weight: 500;
				font-size: 14px;
				line-height: 1.4;
			}
			
			#boxes .wp-block-column:nth-child(1) .dymek:before {
				content: "";
				display: block;
				width: 28px;
				height: 20px;
				background: #fff;
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(-20px, 25px);
			}
			
			#boxes .wp-block-column:nth-child(1) .dymek:after {
				content: "";
				display: block;
				width: 15px;
				height: 12px;
				background: #fff;
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(0px, 45px);
			}
				
				
				#boxes .wp-block-column:nth-child(1) .dymek figure {
					flex-basis: 60px;
					min-width: 60px;
					height: 60px;
					align-self: center;
				}
				
					#boxes .wp-block-column:nth-child(1) .dymek figure img {
						display: block;
						width: 100%;
						height: 100%;
						object-fit: contain;
						object-position: 50% 50%;
					}
				
			#boxes .wp-block-column:nth-child(1) figure.wp-block-image {
				display: block;
				width: 100vw;
				height: 95vh;
				min-height: 550px;
				
				overflow: hidden;
				border-radius: 30px;
			}
			
				#boxes .wp-block-column:nth-child(1) figure.wp-block-image img {
					display: block;
					width: 100% !important;
					height: 100% !important;
					object-fit: cover;
					object-position: 50% 50%;
				}
		
		#boxes .wp-block-column:nth-child(2) {
			position: relative;
			display: flex;
			width: 100%;
			gap: 0;
			flex-basis: unset;
			height: auto;
			overflow-x: auto;
			overflow-y: hidden;
			padding: 80px 3% 0 3%;
		}
		
			#boxes .wp-block-column:nth-child(2) .stworek {
				position: absolute;
				left: -55px;
				top: -170px;
				width: 300px;
				height: 350px;
				z-index: -1;
			}
		
			#boxes .wp-block-column:nth-child(2) .stworek img {
				display: block;
				width: 100% !important;
				height: 100% !important;
				object-fit: contain;
				object-position: 50% 50%;
			}
			
		#boxes .wp-block-media-text {
			width: 50vw;
			min-width: 400px;
			
			background: var(--purplelight);
			border-radius: 30px;
			
			display: flex;
			flex-direction: column;
			gap: 20px;
			padding: 25px 25px;
			box-sizing: border-box;
			margin: 25px 10px;
			
			font-size: 16px;
			color: var(--purpledark);
		}
		
			#boxes .wp-block-media-text .wp-block-media-text__media {
				align-self: flex-start;
				width: 50px;
				height: 50px;
			}
		
				#boxes .wp-block-media-text .wp-block-media-text__media img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
				}
				
			#boxes .wp-block-media-text .wp-block-media-text__content {
				padding: 0 0;
			}
			
@media screen and (max-width: 500px) {
	#boxes .wp-block-media-text {
		min-width: 320px;
	}
}
		
		
#dobreMiejsce {
	margin: 50px auto 50px auto;
	
	color: var(--purpledark);
}		

	#dobreMiejsce h2  {
		margin-bottom: 30px;
		padding: 0 0;
		font-size: clamp(24px, 3vw, 40px);
	}
	
	#dobreMiejsce h2 em {
		font-style: normal;
		color: var(--purplelight);
	}
	
	#dobreMiejsce .wp-block-columns {
		margin-top: 30px;
		flex-direction: column;
	}
	
		#dobreMiejsce .wp-block-column {
			border-radius: 30px;
			padding: 20px 0 0 20px;
			box-sizing: border-box;
			
			box-shadow: 8px 8px 10px rgba(0 0 0 / 0.025);
			
			display: grid; 
			grid-template-columns: 30px auto; 
			grid-template-rows: auto auto; 
			gap: 10px 15px;
		}
		
		#dobreMiejsce .wp-block-column:nth-child(1) {
			background-color: var(--purplelight);
			color: var(--purpledark);
		}
		
		#dobreMiejsce .wp-block-column:nth-child(2) {
			background-color: var(--purplevlight);
			color: var(--purpledark);
		}
		
		#dobreMiejsce .wp-block-column:nth-child(3) {
			background-color: var(--purpledark);
			color: #fff;
		}
		
			#dobreMiejsce .wp-block-column h3 {
				grid-area: 1 / 2 / 2 / 3; 
				align-self: center;
				
				display: block;
				font-size: 20px;
				font-weight: 600;
				padding-right: 35px;
			}
			
			#dobreMiejsce .wp-block-column figure.ico {
				grid-area: 1 / 1 / 2 / 2;	
				align-self: center;
			}
			
			#dobreMiejsce .wp-block-column figure.img {
				grid-area: 2 / 1 / 3 / 3;
				
				text-align: right;
				margin-top: auto;
				width: 100%;
				height: 150px;
				
				display: flex;
				justify-content: flex-end;
				align-items: flex-end;
			}
	
				#dobreMiejsce .wp-block-column figure.img img {
					width: 100%;
					height: 100%;
					object-fit: contain;
					object-position: 100% 100%;
				}

			
#aplikacjaMobilna {
	margin: 100px auto 50px auto;
}

	#aplikacjaMobilna > .wp-block-columns {
		position: relative;
		z-index: 5;
		
		display: flex;
		flex-direction: column;
		gap: 0;
			
	}
	
	#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(1) {
		order: 1;
	}
		
		#aplikacjaMobilna h2 {
			display: block;
			margin-bottom: 20px;
		}
		
			#aplikacjaMobilna h2 strong {
				display: inline-block;
				position: relative;
			}
			
			#aplikacjaMobilna h2 strong:before {
				content: "";
				display: block;
				width: 130px;
				height: 55px;
				
				position: absolute;
				right: 0px;
				top: 0px;
				transform: translate(60px, -20px);
				
				background-image: url(../graf/txtUczyszZdalnie.svg);
				background-size: contain;
				background-repeat: no-repeat;
			}
			
		
		#aplikacjaMobilna .desc {
			color: var(--purpledark);
			width: 100%;
			max-width: 100%;
		}
					
	#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) {
		order: 3;
		
		position: relative;
		z-index: 1;
	}

			#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
				display: flex;
				width: 106%;
				left: -3%;
				position: relative;
				overflow-x: auto;
				flex-wrap: nowrap !important;
				padding-top: 50px;
				padding-bottom: 30px;
				
				gap: 0;
				margin-top: -200px;
				align-items: flex-start !important;
			}
		
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
					width: 100%;
					min-width: 350px;
					position: relative;
					display: block;
					padding: 30px;
					box-sizing: border-box;
					border-radius: 20px;
					box-shadow: 0px 16px 25px -8px rgba(12, 12, 13, 0.4);
					font-size: 14px;
					margin: 0 15px;
				}
					
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(1),
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(4) {
					background: var(--purplemiddle);
					color: #fff;
				}
				
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(2),
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(3) {
					background: var(--purplevlight);
					color: var(--purpledark);
				}
	
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column strong {
					font-size: 28px;
					line-height: 1.2;
					margin-bottom: 20px;
					display: block;
					font-weight: 600;
				}
		
	#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) {
		order: 2;
		position: relative;
		z-index: -1;
	}

	
		#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) figure.img {
			position: relative;
			left: -3%;
			
			width: 100%;
			height: 100%;
			max-height: 75vw;
			min-height: 600px;
			margin: 0 auto;
		}
		
			#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) figure.img img {
				display: block;
				width: 100% !important;
				height: 100% !important;
				object-fit: contain;
				object-position: 0% 50%;
			}
			
			#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) .dymek {
				position: absolute;
				top: 50px;
				left: 40%;
				background: var(--purplelight);
				border-radius: 50px;
				padding: 20px;
				
				display: flex;
				align-items: center;
				flex-direction: row;
				gap: 10px;
				width: 270px;
				font-weight: 300;
				font-size: 14px;
				line-height: 1.4;
			}
			
			#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) .dymek:before {
				content: "";
				display: block;
				width: 28px;
				height: 20px;
				background: var(--purplelight);
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(-20px, 25px);
			}
			
			#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) .dymek:after {
				content: "";
				display: block;
				width: 15px;
				height: 12px;
				background: var(--purplelight);
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(0px, 45px);
			}
				
				
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) .dymek .wp-block-media-text__content {
					padding: 0;
				}
				
				#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) .dymek figure {
					flex-basis: 55px;
					min-width: 55px;
					height: 55px;
					align-self: center;
				}
					
					#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) .dymek figure img {
						display: block;
						width: 100%;
						height: 100%;
						object-fit: contain;
						object-position: 50% 50%;
					}

@media screen and (max-width: 550px) {
	
	#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(3) .dymek {
		left: unset;
		right: 3%;
	}
	
	#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
		margin-top: -200px;
		padding-top: 0;
	}
	
	#aplikacjaMobilna > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
		min-width: 300px;
		margin: 0 10px;
	}
}




			
#graKarciana {
	margin: 100px auto 50px auto;
}

	#graKarciana > .wp-block-columns {
		position: relative;
		z-index: 5;
		
		display: flex;
		flex-direction: column;
		gap: 0;
			
	}
	
	#graKarciana > .wp-block-columns > .wp-block-column:nth-child(1) {
		order: 1;
	}
		
		#graKarciana h2 {
			display: block;
			margin-bottom: 20px;
		}
		
			#graKarciana h2 strong {
				display: inline-block;
				position: relative;
			}
			
			#graKarciana h2 strong:before {
				content: "";
				display: block;
				width: 130px;
				height: 55px;
				
				position: absolute;
				right: -15px;
				top: -15px;
				transform: translate(45px, 25px);
				
				background-image: url(../graf/txtUczyszBawiac.svg);
				background-size: contain;
				background-repeat: no-repeat;
			}
			
		#graKarciana .desc {
			color: var(--purpledark);
			width: 100%;
			max-width: 100%;
		}
					
	#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) {
		order: 3;
		
		position: relative;
		z-index: 1;
		margin-top: -60px;
	}

			#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
				display: flex;
				width: 106%;
				left: -3%;
				position: relative;
				overflow: auto;
				flex-wrap: nowrap !important;
				padding-bottom: 30px;
				padding-top: 50px;
				
				gap: 0;
				align-items: flex-start !important;
			}
		
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
					width: 100%;
					min-width: 350px;
					position: relative;
					display: block;
					padding: 30px;
					box-sizing: border-box;
					border-radius: 20px;
					box-shadow: 0px 16px 25px -8px rgba(12, 12, 13, 0.4);
					font-size: 14px;
					margin: 0 15px;
				}
					
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(1),
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(4) {
					background: var(--purplemiddle);
					color: #fff;
				}
				
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(2),
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(3) {
					background: var(--purplevlight);
					color: var(--purpledark);
				}
	
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column strong {
					font-size: 28px;
					line-height: 1.2;
					margin-bottom: 20px;
					display: block;
					font-weight: 600;
				}
		
	#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) {
		order: 2;
		position: relative;
		z-index: -1;
		width: 100%;
		height: 100%;
		min-height: 400px;
		max-height: 70vw;
	}

	
		#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) figure.img {
			position: relative;
			
			width: 100%;
			height: 100%;
		}
		
			#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) figure.img img {
				display: block;
				width: 100% !important;
				height: 100% !important;
				object-fit: contain;
				object-position: 50% 0%;
			}
			
			#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) .dymek {
				position: absolute;
				top: 50px;
				left: 40%;
				background: var(--purplelight);
				border-radius: 50px;
				padding: 20px;
				
				display: flex;
				align-items: center;
				flex-direction: row;
				gap: 10px;
				width: 270px;
				font-weight: 300;
				font-size: 14px;
				line-height: 1.4;
			}
			
			#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) .dymek:before {
				content: "";
				display: block;
				width: 28px;
				height: 20px;
				background: var(--purplelight);
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(-20px, 25px);
			}
			
			#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) .dymek:after {
				content: "";
				display: block;
				width: 15px;
				height: 12px;
				background: var(--purplelight);
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(0px, 45px);
			}
				
				
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) .dymek .wp-block-media-text__content {
					padding: 0;
				}
				
				#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) .dymek figure {
					flex-basis: 55px;
					min-width: 55px;
					height: 55px;
					align-self: center;
				}
					
					#graKarciana > .wp-block-columns > .wp-block-column:nth-child(3) .dymek figure img {
						display: block;
						width: 100%;
						height: 100%;
						object-fit: contain;
						object-position: 50% 50%;
					}

	
	#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
		margin-top: -100px;
	}
	
	#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
		min-width: 300px;
		margin: 0 10px;
	}

	@media screen and (max-width: 450px) {
		#graKarciana > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
			margin-top: -150px;
		}
	}






			
#panelNauczyciela {
	margin: 100px auto 50px auto;
}

	#panelNauczyciela > .wp-block-columns {
		position: relative;
		z-index: 5;
		
		display: flex;
		flex-direction: column;
		gap: 0;
			
	}
	
	#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(1) {
		order: 1;
	}
		
		#panelNauczyciela h2 {
			display: block;
			margin-bottom: 20px;
		}
		
			#panelNauczyciela h2 strong {
				display: inline-block;
				position: relative;
			}
			
			#panelNauczyciela h2 strong:before {
				content: "";
				display: block;
				width: 130px;
				height: 65px;
				
				position: absolute;
				right: 0px;
				top: -20px;
				transform: translate(45px, 25px);
				
				background-image: url(../graf/txtSledziszPostepy.svg);
				background-size: contain;
				background-repeat: no-repeat;
			}
			
		#panelNauczyciela .desc {
			color: var(--purpledark);
			width: 100%;
			max-width: 100%;
		}
					
	#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) {
		order: 3;
		
		position: relative;
		z-index: 1;
		margin-top: -100px;
	}

			#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
				display: flex;
				width: 106%;
				left: -3%;
				position: relative;
				overflow: auto;
				flex-wrap: nowrap !important;
				padding-bottom: 30px;
				padding-top: 50px;
				
				gap: 0;
				align-items: flex-start !important;
			}
		
				#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
					width: 100%;
					min-width: 350px;
					position: relative;
					display: block;
					padding: 30px;
					box-sizing: border-box;
					border-radius: 20px;
					box-shadow: 0px 16px 25px -8px rgba(12, 12, 13, 0.4);
					font-size: 14px;
					margin: 0 15px;
				}
					
				#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(1),
				#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(4) {
					background: var(--purplemiddle);
					color: #fff;
				}
				
				#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(2),
				#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(3) {
					background: var(--purplevlight);
					color: var(--purpledark);
				}
	
				#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column strong {
					font-size: 28px;
					line-height: 1.2;
					margin-bottom: 20px;
					display: block;
					font-weight: 600;
				}
		
	#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(3) {
		order: 2;
		position: relative;
		z-index: -1;
		margin-top: 30px;
	}

	
		#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(3) figure {
			position: relative;
			
			width: 100%;
			height: 100%;
			max-height: 70vw;
		}
		
			#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(3) figure img {
				display: block;
				width: 100% !important;
				height: 100% !important;
				object-fit: contain;
				object-position: 50% 50%;
			}

@media screen and (max-width: 550px) {
	#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {

	}
	
	#panelNauczyciela > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
		min-width: 300px;
		margin: 0 10px;
	}
	
}



			
#komponentyEdukacyjne {
	margin: 100px auto 50px auto;
}

	#komponentyEdukacyjne > .wp-block-columns {
		position: relative;
		z-index: 5;
		
		display: flex;
		flex-direction: column;
		gap: 0;
			
	}
	
	#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(1) {
		order: 1;
	}
		
		#komponentyEdukacyjne h2 {
			display: block;
			margin-bottom: 20px;
		}
		
			#komponentyEdukacyjne h2 strong {
				display: inline-block;
				position: relative;
			}
			
			#komponentyEdukacyjne h2 strong:before {
				content: "";
				display: block;
				width: 150px;
				height: 65px;
				
				position: absolute;
				right: 0px;
				top: 0px;
				transform: translate(-30px, -22px);
				
				background-image: url(../graf/txtUczyszEfektywnie.svg);
				background-size: contain;
				background-repeat: no-repeat;
			}
			
		
		#komponentyEdukacyjne .desc {
			color: var(--purpledark);
			width: 100%;
			max-width: 100%;
		}
					
	#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) {
		order: 3;
		
		position: relative;
		z-index: 1;
	}

			#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
				display: flex;
				width: 106%;
				left: -3%;
				position: relative;
				overflow-x: auto;
				flex-wrap: nowrap !important;
				padding-bottom: 30px;
				
				gap: 0;
				margin-top: -70px;
				align-items: flex-start !important;
			}
		
				#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
					width: 100%;
					min-width: 350px;
					position: relative;
					display: block;
					padding: 30px;
					box-sizing: border-box;
					border-radius: 20px;
					box-shadow: 0px 16px 25px -8px rgba(12, 12, 13, 0.4);
					font-size: 14px;
					margin: 0 15px;
				}
					
				#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(1) {
					background: var(--purplemiddle);
					color: #fff;
				}
				
				#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(2) {
					background: #fff;
					color: var(--purpledark);
				}
				
				#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column:nth-child(3) {
					background: var(--purplevlight);
					color: var(--purpledark);
				}
	
				#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column strong {
					font-size: 28px;
					line-height: 1.2;
					margin-bottom: 20px;
					display: block;
					font-weight: 600;
				}
		
	#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) {
		order: 2;
		position: relative;
		z-index: -1;
	}

	
		#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) figure.img {
			position: relative;			
			width: 100%;
			height: auto;
			margin: 0 auto;
		}
		
			#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) figure.img img {
				display: block;
				width: 100% !important;
				height: auto;
				aspect-ratio: 1400 / 880 !important;
				object-fit: none !important;
			}
			
			#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) .dymek {
				position: absolute;
				top: 50px;
				left: 40%;
				background: var(--purplelight);
				border-radius: 50px;
				padding: 20px;
				
				display: flex;
				align-items: center;
				flex-direction: row;
				gap: 10px;
				width: 270px;
				font-weight: 300;
				font-size: 14px;
				line-height: 1.4;
			}
			
			#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) .dymek:before {
				content: "";
				display: block;
				width: 28px;
				height: 20px;
				background: var(--purplelight);
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(-20px, 25px);
			}
			
			#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) .dymek:after {
				content: "";
				display: block;
				width: 15px;
				height: 12px;
				background: var(--purplelight);
				border-radius: 50%;
				
				position: absolute;
				left: 0;
				bottom: 0;
				transform: rotate(10deg) translate(0px, 45px);
			}
				
				
				#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) .dymek .wp-block-media-text__content {
					padding: 0;
				}
				
				#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) .dymek figure {
					flex-basis: 55px;
					min-width: 55px;
					height: 55px;
					align-self: center;
				}
					
					#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(3) .dymek figure img {
						display: block;
						width: 100%;
						height: 100%;
						object-fit: contain;
						object-position: 50% 50%;
					}

@media screen and (max-width: 550px) {

	#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns {
		margin-top: -25px;
		padding-top: 0;
	}
	
	#komponentyEdukacyjne > .wp-block-columns > .wp-block-column:nth-child(2) .wp-block-columns .wp-block-column {
		min-width: 300px;
		margin: 0 10px;
	}
}



				
#appBg {
	position: relative;
	margin: 50px auto;
	padding: 0 0;
}

	#appBg .wp-block-cover {
		position: relative;
		overflow: hidden;
		border-radius: 30px;
		padding: 40px 3%;
		width: 100vw;
		height: 95vh;
		min-height: 500px;
	}
	
		#appBg .wp-block-cover .wp-block-cover__inner-container  {
			width: 55%;
			min-width: 220px;
			margin: 0 auto;
			background: var(--purplelight);
			padding: 20px;
			border-radius: 30px;
		}
	
			#appBg .wp-block-cover .wp-block-cover__inner-container .wp-block-media-text {
				display: flex;
				gap: 20px;
				flex-direction: column-reverse;
			}
	
			#appBg .wp-block-cover .wp-block-cover__inner-container .wp-block-media-text__content {
				font-size: 18px;
				font-weight: 600;
				color: var(--purpledark);
				text-align: center;
				padding: 0 0;
			}
			
			#appBg .wp-block-cover .wp-block-cover__inner-container figure {
				width: 100%;
				max-width: 160px;
			}
				
#problemy {
	margin: 70px auto 0 auto;
	padding: 0 0;
}

	#problemy .problemyInner {
		padding: 30px 3% 50px 3%;
		box-sizing: border-box;
		border-radius: 40px;
		background: linear-gradient(14.15deg, #B4B5FF 9.62%, #9698F0 49.13%, #8183E9 91.8%);
	}
	
		#problemy .problemyInner h2 {
			color: #fff;
			font-weight: 500;
			margin: 40px auto;
		}
		
		#problemy .problemyInner .wp-block-columns {
			justify-content: center;
			width: 100%;
			margin: 0 auto;
			gap: 20px;
			margin-top: 20px;
			
			display: flex;
			flex-direction: column;
		}
				
			#problemy .problemyInner .wp-block-media-text {
				width: 100%;
				max-width: 400px;
				grid-template-columns: 50px auto !important;
				gap: 20px;
				background: #fff;
				padding: 15px 20px;
				box-sizing: border-box;
				border-radius: 100px;
				margin: 0 auto;
			}
			
				#problemy .problemyInner .wp-block-media-text figure {
					background: var(--purplemiddle);
					border-radius: 50%;
					display: block;
					width: 45px;
					height: 45px;
					aspect-ratio: 1 / 1;
					padding: 10px;
					box-sizing: border-box;
					
					display: flex;
					align-items: center;
					justify-content: center;
				}
			
				#problemy .problemyInner .wp-block-media-text .wp-block-media-text__content {
					padding: 0 0;
					color: var(--purpledark);
					font-size: 14px;
				}
				
				
#wyobrazSobie {
	margin: -50px auto 70px auto;
	padding: 0 0;
}

	#wyobrazSobie .wyobrazSobieInner {
		padding: 30px 3% 50px 3%;
		box-sizing: border-box;
		border-radius: 40px;
	}
	
		#wyobrazSobie .wyobrazSobieInner h2 {
			color: #fff;
			font-weight: 500;
			text-shadow: 0px 0px 11px #050505;
			margin: 40px auto;
		}
		
		#wyobrazSobie .wyobrazSobieInner .wp-block-columns {
			justify-content: center;
			width: 100%;
			margin: 0 auto;
			gap: 20px;
			margin-top: 20px;
			
			display: flex;
			flex-direction: column;
		}
			
			#wyobrazSobie .wyobrazSobieInner .wp-block-media-text {
				width: 100%;
				max-width: 400px;
				grid-template-columns: 50px auto !important;
				gap: 20px;
				background: #fff;
				padding: 15px 20px;
				box-sizing: border-box;
				border-radius: 100px;
				margin: 0 auto;
			}
			
				#wyobrazSobie .wyobrazSobieInner .wp-block-media-text figure {
					background: var(--purplelight);
					border-radius: 50%;
					display: block;
					width: 45px;
					height: 45px;
					aspect-ratio: 1 / 1;
					padding: 10px;
					box-sizing: border-box;
					
					display: flex;
					align-items: center;
					justify-content: center;
				}
			
				#wyobrazSobie .wyobrazSobieInner .wp-block-media-text .wp-block-media-text__content {
					padding: 0 0;
					color: #344054;
					font-size: 14px;
				}
				
#wszystkoMozliwe {
}

	#wszystkoMozliwe h3 {
		font-size: 22px;
		font-weight: 600;
		color: var(--purpledark);
		line-height: 1.2;
	}

	#wszystkoMozliwe > .wp-block-columns {
		gap: 0;
		position: relative;
		flex-direction: column !important;
	}
	
		#wszystkoMozliwe > .wp-block-columns .wp-block-column:first-child {
			flex-basis: 100%;
			max-width: 100%;
			padding: 0 0 250px 0;
		}
	
		#wszystkoMozliwe > .wp-block-columns .wp-block-column:last-child {
			align-self: flex-end;
		}

			#wszystkoMozliwe > .wp-block-columns .wp-block-column:last-child figure {
				position: absolute;
				right: -10vw;
				bottom: -5%;
				width: 130%;
				height: 80%;
			}
			
				#wszystkoMozliwe > .wp-block-columns .wp-block-column:last-child figure img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
					object-position: 100% 100%;
				}
				
	#wszystkoMozliwe #banerKontakt {
		margin: 0 auto;
		padding: 0 0;
	}


@media screen and (max-width: 500px) {
	#wszystkoMozliwe > .wp-block-columns .wp-block-column:first-child {
		position: relative;
		top: -30px;
	}
	
		
	#wszystkoMozliwe > .wp-block-columns .wp-block-column:last-child figure {
		right: -15vw;
		width: 90%;
		height: 80%;
	}
}

			
#plany {
	margin: 70px auto 50px auto;
	padding: 0 0;
}			

	#plany .planyInner {
		background: var(--purplelight);
		padding: 30px 25px;
		box-sizing: border-box;
		border-radius: 40px;
		overflow: hidden;
	}
	
	#plany .planyInner .talkee-background-paw {
		filter: brightness(0) invert(1);
		z-index: 1 !important;
		opacity: 0.25;
	}
		
		#plany .planyInner .wp-block-columns {
			z-index: 5;
			position: relative;
			padding: 0 0;
			gap: 0;
			flex-direction: column;
		}
		
		#plany .planyInner .wp-block-column:nth-child(1) {

		}
	
			#plany .planyInner .wp-block-column:nth-child(1) h2 {
				font-weight: 600;
				font-size: clamp(28px, 4vw, 50px);
			}
			
		#plany .planyInner .wp-block-column:nth-child(2) {

		}
				
			#plany .planyInner .wp-block-column:nth-child(2) .whiteBox {
				background: #fff;
				border-radius: 30px;
				padding: 25px 25px 55px 25px;
				box-sizing: border-box;
				margin-top: 70px;
				
				font-size: 18px;
				color: var(--purpledark);
				font-weight: 400;
			}
	
				#plany .planyInner .wp-block-column:nth-child(2) .whiteBox figure {
					width: 50px;
					height: 50px;
					margin: 0 0 20px 0 !important;
				}

				
		#plany .planyInner .wp-block-column:nth-child(3) {

		}
	
			#plany .planyInner .wp-block-column:nth-child(3) figure {
				position: absolute;
				z-index: -1;
				right: -20px;
				top: 0;
				
				width: 220px;
				height: 220px;
				transform: rotate(-25deg);
			}
	
				#plany .planyInner .wp-block-column:nth-child(3) figure img {
					display: block;
					width: 100%;
					height: 100%;
					object-fit: contain;
					object-position: 50% 50%;
				}
		
#wideo {
	background: linear-gradient(14.15deg, #B4B5FF 9.62%, #9698F0 49.13%, #8183E9 91.8%);
	margin: 50px auto;
	padding: 50px 0 0 0;
	overflow: hidden;
}
	
	#wideo h2 {
		color: #fff;
		font-weight: 600;
		font-size: clamp(22px, 5vw, 34px);
	}
	
	#wideo h2 em {
		color: var(--purplelight);
		font-style: normal;
	}


#anikaSlezak {
	margin: 50px auto 0 auto;
	position: relative;
	z-index: -5;
}
	

	#anikaSlezak .wp-block-columns {
		display: flex;
		gap: 0;
		flex-direction: column-reverse;
	}

		#anikaSlezak .wp-block-column:first-child {
			position: relative;
			width: 100%;
			flex-basis: 100%;
			height: auto;
			overflow: hidden;
			flex-grow: unset;
			text-align: right;
			
			display: flex;
			width: 100%;
			justify-content: flex-end;
		}
		
			#anikaSlezak .wp-block-column:first-child figure {				
				height: auto;
				width: 100%;
				max-width: 400px;
				aspect-ratio: 1 / 1;
				position: relative;
				right: -5%;
				border-radius: 50%;
				background: linear-gradient(14.02deg, #B4B5FF 9.54%, #9698F0 48.74%, #8183E9 91.07%);
				overflow: hidden;
				margin: 0 0 !important;
				
				display: flex;
				align-items: flex-end;
				justify-content: center;
			}
			
				#anikaSlezak .wp-block-column:first-child figure img {
					display: block;
					width: 90%;
					height: 90%;
					object-fit: contain;
					object-position: 100% 50%;
					position: relative;
					bottom: -1%;
				}

		#anikaSlezak .wp-block-column:last-child {
			padding: 0 3%;
			align-self: center;
			color: var(--purpledark);
			font-size: 18px;
		}
		
			#anikaSlezak .wp-block-column:last-child em {
				color: var(--purplelight);
				font-style: normal;
			}
			
			#anikaSlezak .wp-block-column:last-child p {
				margin: 0 0 20px 0;
			}
		
			#anikaSlezak .wp-block-column:last-child strong {
				font-size: 24px;
				color: var(--purpledark);
				font-weight: 600;
				line-height: 1.2;
			}
			
			#anikaSlezak .wp-block-column:last-child figure.podpis {
				margin-top: 0;
				margin-bottom: 25px;
				width: 100%;
				text-align: right;
			}
			
				#anikaSlezak .wp-block-column:last-child figure.podpis img {
					width: 100%;
					max-width: 160px;
					height: auto;
				}

@media screen and (max-width: 550px) {
	#anikaSlezak .wp-block-column:first-child figure {
		width: 420px;
		min-width: 420px;
		height: 420px;
		box-sizing: border-box;
		position: relative;
		right: -10%;
	}
}

#kontakt {
	position: relative;
	margin-top: -50px;
	background: var(--purplelight);
	padding: 50px 0;
}

			
	#kontakt figure.stworek {
		position: absolute;
		z-index: -2;
		top: 0;
		left: 0;
		width: 330px;
		height: 330px;
	}
			
		#kontakt figure.stworek img {
			transform: translateY(-60%) rotate(-23deg);
		}
			
	#kontakt h2 {
		font-size: clamp(50px, 10vw, 100px);
		font-weight: 600;
	}
	
	
	#kontakt .footerBox {
		width: 94%;
		max-width: 350px;
		
		background: #fff;
		padding: 30px;
		border-radius: 30px;
		margin: 35px auto;
		color: var(--purpledark);
	}
	
		#kontakt .footerBox p {
			margin: 10px 0;
		}
			
		
		#kontakt .footerBox .contactButton,
		#kontakt .footerBox .contactButtonMail {
			margin: 0 0;
		}
		
		#kontakt .footerBox .contactButton a {
			background: #fff;
			box-shadow: unset;
			color: var(--purpledark);
		}
			
			#kontakt .footerBox .contactButton a:before {
				background-color: var(--purplemiddle);
				background-image: url(../graf/ico_phoneWhite.svg);
				transition: all 0.3s ease;
			}

		#kontakt .footerBox .contactButton a:hover {
			color: #fff;
			background: var(--purplemiddle);
		}
			
			#kontakt .footerBox .contactButton a:hover:before {
				background-color: var(--purplelight);
				transition: all 0.3s ease;
			}
		
		#kontakt .footerBox .contactButtonMail a {
			background: #fff;
			box-shadow: unset;
			color: var(--purpledark);
		}
			
			#kontakt .footerBox .contactButtonMail a:before {
				background-color: var(--purplemiddle);
				transition: all 0.3s ease;
			}

		#kontakt .footerBox .contactButtonMail a:hover {
			color: #fff;
			background: var(--purplemiddle);
		}
			
			#kontakt .footerBox .contactButtonMail a:hover:before {
				background-color: var(--purplelight);
				transition: all 0.3s ease;
			}
		
	#kontakt .wp-block-buttons {
		margin-top: 30px;
		gap: 25px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	#kontakt .wp-block-buttons .instagram a {
		background: linear-gradient(135deg, #FFE185 14.65%, #FFBB36 29.49%, #FF5176 41.51%, #F63395 51.41%, #A436D2 66.97%, #5F4EED 85.35%);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 5px;
		
		aspect-ratio: 1 / 1;
		height: 62px;
		border-radius: 50%;
	}
	
		#kontakt .wp-block-buttons .instagram a img {
			width: 28px !important;
			height: auto;
		}
		
		#kontakt .wp-block-buttons .instagram a:hover {
			background: var(--purplemiddle);
		}

	#kontakt .wp-block-buttons .facebook a {
		background: linear-gradient(135deg, #1677F1 14.65%, #176EE9 27.37%, #1D55D3 47.17%, #252EB0 72.63%, #2B189C 85.35%);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 5px;
		
		aspect-ratio: 1 / 1;
		height: 62px;
		border-radius: 50%;
	}
	
		#kontakt .wp-block-buttons .facebook a img {
			width: 18px !important;
			height: auto;
		}
		
		#kontakt .wp-block-buttons .facebook a:hover {
			background: var(--purplemiddle);
		}

	#kontakt .wp-block-buttons .tiktok a {
		background: linear-gradient(135deg, #23004A 14.65%, #010003 82.53%, #000000 85.35%);
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 5px;
		
		aspect-ratio: 1 / 1;
		height: 62px;
		border-radius: 50%;
	}
	
		#footer .wp-block-buttons .tiktok a img {
			width: 28px !important;
			height: auto;
		}
		
		#kontakt .wp-block-buttons .tiktok a:hover {
			background: var(--purplemiddle);
		}
	
@media screen and (max-width: 550px) {
	#kontakt figure.stworek {
		left: -15vw;
	}
}
		
footer {
	position: relative;
	top: -1px;
	background: var(--purplelight);
	text-align: center;
	color: var(--purpledark);
	padding-bottom: 50px !important;
	font-size: 16px;
}




.talkee-video-slider-container {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.talkee-video-slider {
    width: 100%;
}

.talkee-slide {
    padding: 0 10px;
    box-sizing: border-box;
	opacity: 0.8;
    transition: all 0.3s ease;
}

.talkee-slide.slick-center {
    opacity: 1;
    z-index: 2;
}

.talkee-video-link {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
}

.talkee-video-link img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop to fill */
    display: block;
}

.talkee-video-footer {
	display: flex;
	gap: 15px;
	align-items: center;

    position: absolute;
    bottom: 30px;
    left: 0;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
    z-index: 10;
}

	.talkee-video-play-icon {
		flex-basis: 55px;
		width: 55px;
		height: 55px;
		transition: transform 0.3s ease;
	}
	
		.talkee-video-play-icon svg {
			width: 55px;
			height: 55px;
		}

	.talkee-video-link:hover .talkee-video-play-icon {
		transform: scale(1.1);
	}
	
	.talkee-video-footer .talkee-video-title {
		flex-grow: 1;
		color: #fff;
		text-align: right;
		font-size: 18px;
	}
		
		.talkee-video-footer .talkee-video-title strong {
			font-size: 22px;
		}




.glightbox-container .plyr__controls__item {
    transform: none !important;
    font-size: 14px !important;
    padding: 0 6px !important;
}

.glightbox-container .plyr__controls button svg,
.glightbox-container .plyr__controls__item svg {
    width: 20px !important;
    height: 20px !important;
}

.glightbox-container .plyr__volume {
    margin-right: 15px !important;
    flex-shrink: 0 !important;
}

.glightbox-container .plyr__menu {
    flex-shrink: 0 !important;
}


.talkee-video-link:hover .talkee-video-play-icon {
    transform: scale(1.1);
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 0;
    color: transparent;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

.slick-arrow:hover {
    background-color: var(--purpledark);
}

.slick-prev {
    left: 1%;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='%233D3F9D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.slick-next {
    right: 1%;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='%233D3F9D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.slick-arrow:hover.slick-prev {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.slick-arrow:hover.slick-next {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 18L15 12L9 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.glightbox-container .gclose,
.glightbox-container .gnext,
.glightbox-container .gprev {
    width: 26px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.glightbox-container .gclose svg,
.glightbox-container .gnext svg,
.glightbox-container .gprev svg {
    width: 100% !important;
    height: 100% !important;
}

.glightbox-container .gnext {
    position: absolute !important;
    top: 50% !important;
    right: 16px !important;
    transform: translateY(-50%) !important;
}

.glightbox-container .gprev {
    position: absolute !important;
    top: 50% !important;
    left: 16px !important;
    transform: translateY(-50%) !important;
}

.glightbox-container .gclose {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
}

.glightbox-container .gslide-video {
    height: 90vh !important;
    width: calc(90vh * 9 / 16) !important;
    max-height: 90vh !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.glightbox-container .gslide-video .gvideo-wrapper,
.glightbox-container .gslide-video iframe,
.glightbox-container .gslide-video video {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    max-width: none !important;
}
