@import url('./_config.css');
@import url('./cookies.css');


[x-cloak] {display: none !important;}

h1, h2, h3, h4, h5, h6 {font-weight: var(--titleWeight)}
b, strong {font-weight: var(--boldWeight)}

.container {
	max-width: 90%;
	width: var(--containerWidth);
}

.container-lg {
	width: 1700px;
	max-width: 98%;
	margin: 0 auto;
}

.btn {
	font-weight: bold;
	padding: 1em 2em;
	align-items: center;
	justify-content: center;
	border-radius: var(--borderRadius);
	border: 2px solid var(--primary);
}

.btn:hover {border-color: var(--primaryLight);}
.btn:focus {border-color: var(--primaryDark);}

.btn.secondary {
	color: var(--titleColor);
	border-color: var(--secondary);
}

.btn.alt {
	color: var(--titleColor);
	background-color: #fff;
	border: 2px solid var(--borderColor);
}

.btn.secondary:hover {
	filter: brightness(1.1);
	background-color: var(--secondary);
}

.btn.secondary:focus {
	filter: brightness(.99);
	background-color: var(--secondary);
}

.btn.alt:hover {
	background-color: white;
	opacity: .7;
}

.navbar .btn + .btn {margin-left: 10px;}


p, #main li {font-family: var(--lexend);}


body {
	background-image: url(/assets/img/body-bg.svg);
	background-position: right top;
	background-repeat: no-repeat;
}


/*
			N A V B A R
*/

.navbar {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
	transition: all .2s;
}

.affix {background-color: #fff;}

.navbar-logo {
	margin: 8.5px 0;
	text-decoration: none;
	position: relative;
	isolation: isolate;
}

.navbar-logo::before {
	content: '';
	display: block;
	width: 100px;
	height: 145.7px;
	background-image: url(/assets/img/logo-before.svg);
	background-repeat: no-repeat;

	position: absolute;
	z-index: -1;
	left: -50px;
	top: -20px;
}

.logo-text {
	color: black;
	font-size: 1.75rem;
	line-height: 1.1;
}

.logo-text small {font-size: 1.75rem;}

.navbar-logo-image {
	display: block;
	height: 103px;
}

.navbar-logo-image-2 {
	height: 55px;
	margin-left: 15px;
}

.navbar-top .links a:not(.btn) {
	text-decoration: none;
	color: var(--titleColor);
	margin-right: 40px;
	transition: color .2s;
}

.navbar-top .links a:not(.btn):hover {
	color: var(--primary);
}


.navbar .btn {
	font-weight: bold;
	font-size: 1.125rem;
}

.navbar-top {
	background-color: #fff;
}

.navbar-top .container::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100px;
	right: 100px;
	box-shadow: 0 5px 30px -20px hsl(0 0% 0% / .2);
	z-index: -1;
}

.navbar-top .container {
	position: relative;
	isolation: isolate;
	background-color: #fff;
}

.navbar-bottom {
	background-color: transparent;
}

.affix {
	top: -120px;
	box-shadow: 0 0 30px hsl(0 0% 0% / .1);
}



/*
			N A V B A R   N A V
*/

.navbar-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	align-items: center;
}

.navbar-nav li {
	list-style: none;
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

.navbar-nav > li:not(:first-child) {
	padding-left: var(--navMargin);
}

.navbar-nav a {
	will-change: auto;
}

.navbar-nav {
	justify-content: space-evenly;
}

.navbar-nav > li {
	float: auto;
}

.navbar-nav > li > a {
	color: var(--titleColor);
	font-size: 1.5625rem;
	font-weight: 700;
	display: inline-flex;
	text-decoration: none;
	padding: 15px 0;
	width: 100%;
	text-align: center;
	transition: all .2s;
	outline: none;
	position: relative;
	overflow: hidden;
}
/*
.nav-dropdown > a::after {
	filter: invert(1);
} */


.navbar-nav a::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	will-change: transform;
	background-color: var(--primary);
	transition: all .2s var(--ease);
}


.navbar-nav a:focus::before,
.navbar-nav a:hover::before,
.navbar-nav .nav-active::before {
	left: 0;
}

.navbar-nav .nav-active {
	color: var(--primary);
}

.navbar-nav ul {
	position: absolute;
	display: none;
	top: 100%;
	left: var(--navMargin);
	margin: 0;
	padding: 10px;
	min-width: 290px;
	background-color: white;
	box-shadow: 0 10px 30px hsla(0, 0%, 0%, .2);
}

.navbar-nav > li:first-child > ul {left: 0;}
.navbar-nav > li:last-child > ul {left: auto; right: 0;}

.navbar-nav ul a {
	padding: 10px 15px;
	display: flex;
	font-size: 1rem;
	color: var(--textColor);
	justify-content: space-between;
	text-decoration: none;
	overflow: hidden;
	line-height: 1.3;
	transition: all .3s var(--ease);
}

.navbar-nav ul a::after {
	transform: rotate(-90deg);
}

.navbar-nav ul a::before {
	content: '>';
	font-family: monospace;
	font-weight: bold;
	font-size: 1rem;
	width: auto;
	height: auto;
	display: block;
	transform: translateX(0) !important;
	visibility: visible;
	background: none;
	position: absolute;
	top: 8px;
	left: 0;
	opacity: 0;
	color: var(--primary);
}

.navbar-nav ul a:hover::before {
	transform: translateX(10px) !important;
	opacity: 1;
}
.navbar-nav ul a:hover {
	padding-left: 25px;
	padding-right: 5px;
}

.navbar-nav ul .active > a,
.navbar-nav ul a.active {
	color: var(--primary);
}

.navbar-nav > li > .open,
.navbar-nav .nav-dropdown:hover > ul {
	display: block;
	animation: showDropdown .3s 1 forwards;
}

.navbar-nav .open .open,
.navbar-nav ul .nav-dropdown:hover > ul {
	display: block;
	animation: showNextDropdown .3s 1 forwards;
}

.navbar-nav ul ul {
	top: 0; left: 100%;
}


/* mobile menu */

.mobile-menu-toggler {
	width: 32px;
	height: 24px;
	padding: 0;
	border: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	position: relative;
	background: none;
	transition: all var(--fastSpeed) var(--easeOutBack);
	outline: none;
}

.mobile-menu-toggler div {
	display: block;
	height: 2px;
	width: 32px;
	background-color: var(--primary);
	transition: all var(--fastSpeed) var(--easeOutBack);
	transform-origin: right;
}

.mobile-menu-toggler div:last-child {
	width: 70%;
}

.mobile-menu-toggler.active-toggler div:first-of-type {
	transform: rotate(-45deg);
}

.mobile-menu-toggler.active-toggler div:last-child {
	transform: rotate(45deg);
	width: 100%;
}

.mobile-menu-toggler.active-toggler div:nth-of-type(2) {
	display: none;
}

.mobile-nav {
	transition: transform var(--fastSpeed) var(--easeOutQuart);
	transform: translateX(-100%);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	max-width: 80vw;
	width: 300px;
	/* background-color: hsla(0, 0%, 0%, 0.8);
	backdrop-filter: blur(10px); */
	background-color: var(--primary);
	margin: 0;
	padding: 0;
	z-index: 99999;
	overflow-y: auto;
}

.mobile-nav.show {
	transform: translateX(0);
}

.mobile-nav ul,
.mobile-nav li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-nav ul {
	background-color: hsla(0, 0%, 0%, .3);
}

.mobile-nav a {
	display: block;
	font-size: 1rem;
	text-decoration: none;
	font-weight: 700;
	color: white;
	box-sizing: border-box;
	padding: 10px 15px;
	border-bottom: 1px solid hsla(0, 0%, 100%, .2);
}

.mobile-nav ul a {
	font-size: 0.875rem;
	font-weight: normal;
	padding-left: 30px;
}

.mobile-nav ul ul a {
	padding-left: 45px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
	color: var(--primary);
	background-color: #fff;
}







/*
			H E A D E R
*/

.swiper-slide-content {
	max-width: 30%;
	font-size: 1.5625rem;
	line-height: 1.5;
}

.swiper-slide-content .btn {font-size: 1rem;}

.h1 {line-height: 1.1;}





/*
			M A I N   S E C T I O N S
*/

.skrot {
	background-color: var(--bgLight);
	border-radius: var(--borderRadius);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 4/2.8;

	font-size: 1.25rem;
	font-weight: bold;
	color: var(--titleColor);

	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: all .3s;

	background-image: url(/assets/img/box-bg.svg);
	background-size: cover;
}

.skrot:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -5px hsl(0 0% 0% / .2);
}

.skrot::before {
	content:'';
	display: block;
	width: 64px;
	height: 64px;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 15px;
	position: relative;
	z-index: 20;
	transition: all .3s;
}

/* .skrot::after {
	content:'';
	display: block;
	width: 210px;
	height: 210px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	bottom: -30px;
	right: -30px;
	opacity: .05;
	z-index: -1;
	transition: all .3s;
}

.skrot:hover::after {
	transform: rotate(-5deg) scale(1.1);
} */

.skrot::after {display: none;}

.skrot-1::before, .skrot-1::after {background-image: url(/assets/img/laptop-icon.svg);}
.skrot-2::before, .skrot-2::after {background-image: url(/assets/img/woman-icon.svg);}
.skrot-3::before, .skrot-3::after {background-image: url(/assets/img/water-icon.svg);}
.skrot-4::before, .skrot-4::after {background-image: url(/assets/img/list-icon.svg);}

.card.horizontal {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
}

.card.horizontal .card-image {
	margin-right: 30px;
	width: 200px;
	height: 165px;
	flex-shrink: 0;
	overflow: hidden;
	border-radius: var(--borderRadius);
	flex-shrink: 0;
}

.card.horizontal .card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-image img {transition: all var(--normalSpeed) var(--ease);}

.card.horizontal:hover .card-image img {
	transform: scale(1.1);
}

.card-title {margin-top: 0; margin-bottom: 0;}

.card-title--link {
	color: var(--titleColor);
	transition: color .2s;
}

.card:hover .card-title--link {color: var(--primary);}

.card-body p {
	margin: 0;
	line-height: 1.3;
}

.card-date {
	margin: .85rem 0;
	color: hsl(0 0% 60%);
}

.news-slides .absolute {
	width: 486px;
	height: 182px;
	padding: 40px 40px 40px 60px;
	background: url(/assets/img/news-slide-caption-bg.svg) left bottom -1px no-repeat;
}

.news-slides .absolute strong {
	color: var(--titleColor);
	font-size: var(--h3);
	line-height: 1.1;
}

.news-slides .card-date {
	margin-bottom: 0;
	margin-top: 0.5rem;
}

.news-slides a img {transition: all var(--normalSpeed) var(--ease);}
.news-slides a:hover img {transform: scale(1.1);}

.btn.wide {
	padding-left: 6em;
	padding-right: 6em;
}


#logotypy a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 123px;
}

#logotypy a img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}




/*
			F O O T E R
*/

.madeby {
	color: var(--textColor);
	text-decoration: none;
	line-height: 1;
	display: inline-block;
}

.madeby small {
	float: left;
	margin: 4px 4px 0 0;
	font-size: 0.6875rem;
}


footer {
	background-color: hsl(184 44% 82%);
	position: relative;
	padding-top: 200px;
}

footer::before {
	content: '';
	display: block;
	width: 100%;
	height: 223px;
	background-color: #fff;
	background-image: url(/assets/img/footer-bg.svg);
	background-repeat: no-repeat;
	background-position: 0 0;

	position: absolute;
	top: 0;
	left: 0;

}


footer p {
	line-height: 1.3;
}

footer hr {
	opacity: .2;
	background-color: black;
	margin: 0;
}

footer ul {
	margin: 0;
	padding: 0;
}

footer li {
	margin: 0 0 1em 0;
	padding: 0;
	list-style: none;
}

footer li a {
	line-height: 1.1;
	display: block;
}

footer h4,
footer h5,
footer h6 {
	margin-top: 0;
}

footer a {
	color: var(--textColor);
	transition: color .2s;
	text-decoration: none;
}

footer a:hover {
	color: var(--primary);
}

.tel-xl {
	margin-bottom: 30px;
}

.tel-xl a {
	color: var(--primary);
	font-weight: bold;
	font-size: var(--h2);
	line-height: 1;
}

.tel-xl small {
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--titleColor)
}

.tel-xl a span {color: var(--textColor); font-weight: normal;}


.swiper-pagination-bullet {
	background-color: var(--primary) !important;
}

header .swiper-pagination {
	flex-direction: row;
	display: flex;
	justify-content: flex-end;
	padding-right: 15px;
	padding-bottom: 5px;
}



/*
			K E Y F R A M E S
*/

@keyframes showDropdown {
	0% {opacity: 0; transform: translateY(-10px);}
	100% {opacity: 1; transform: translateY(0);}
}

@keyframes showNextDropdown {
	0% {opacity: 0; transform: translateX(-10px);}
	100% {opacity: 1; transform: translateX(0);}
}



.wizytowka {
	padding: 30px 40px;
	background: var(--bgLight);
	border-radius: var(--borderRadius);
	margin-top: 30px;
  }

  .wizytowka h3,
  .wizytowka h4 {
	margin-top: 10px;
  }

  .wizytowka img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
	vertical-align: middle;
  }




/*
			||							||
			||							||
			||		M  E  D  I  A		||
			||		Q U E R I E S		||
			||							||
			||							||

*/


@media screen and (max-width: 1600px) {
	.swiper-title.h1 {
		font-size: clamp(1.3rem, var(--h1), 3vw);
	}

	.swiper-slide-content {
		font-size: clamp(1rem, 1.5625rem, 1.5vw);
		max-width: 430px;
		width: 35%;
	}

	.swiper-slide .absolute.md\:p-100 {
		padding: 5vw;
	}

	#news .swiper-container, #news .swiper-slide {
		height: 100%;
	}

	#news .swiper-slide a img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}



@media screen and (max-width: 1536px) {
	.card-date {
		margin: 3px 0;
	}

	.card-title {font-size: clamp(1rem, var(--h4), 1.3vw);}

	.card-body p {
		font-size: clamp(.75rem, 1rem, 1vw);
	}

	.card.horizontal .card-image {
		width: 33%;
		height: auto;
		aspect-ratio: 4/3.5;
	}
}



@media screen and (max-width: 1480px) {
	.navbar .btn {
		font-size: 1rem;
		padding: 0.8em 1.5em;
	}

	.navbar-top .links a:not(.btn) {margin-right: 20px;}

	.navbar-logo-image {
		height: 90px;
	}
}



@media screen and (max-width: 1410px) {
	:root {
		--navMargin: 30px !important
	}

	.navbar-nav > li > a {
		font-size: 1.225rem;
	}
}



@media screen and (max-width: 1340px) {
	.navbar-logo-image {
		height: 65px;
	}
}


@media screen and (max-width: 1300px) {
	.navbar .btn {
		font-size: 1rem;
		padding: 0.8em;
	}
}



@media screen and (max-width: 1199px) {
	.navbar-logo-image {
		height: 50px;
	}

	.navbar-logo-image-2 {
		height: 35px;
		margin-left: 10px;
	}

	.navbar .btn {
		font-size: .85rem;
		padding: 0.6em;
	}

	.navbar-top .links a:not(.btn) {
		margin-right: 15px;
		font-size: .75rem;
	}

	.navbar-top .links a:not(.btn) img.mr-10 {
		margin-right: 5px;
		height: 16px;
	}

	.navbar-nav > li > a {
		font-size: 1rem;
	}

	.card-body p {
		-webkit-line-clamp: 2;
		overflow: hidden;
		-webkit-box-orient: vertical;
		display: -webkit-box;
	}

	.copy {
		font-size: .75rem;
	}
}



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

	[class*="md:w-"]:not([class*="sm:w-"]) {
		padding-left: 0;
		padding-right: 0;
	}

	.md\:row:not(.sm\:row) {
		margin-left: 0;
		margin-right: 0;
	}

	.card.horizontal {margin-top: 30px;}

	footer .md\:w-8-12 .md\:w-4-12 {margin-top: 30px;}

	footer {
		text-align: center;
	}

	footer .last, footer .last > .flex {
		flex-direction: column;
		align-items: center;
	}

	footer .social {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.tel-xl {
		text-align: left;
		justify-content: center;
	}

	.affix {top: 0;}

}


@media screen and (max-width: 920px) {
	.bip {margin-left: 0;}
	.bip img {height: 25px !important;}

	.navbar-logo-image {
		height: 45px;
	}

	.navbar-logo-image-2 {
		height: 30px;
	}
}


@media screen and (max-width: 777px) {
	.navbar-logo + .flex > .flex > a span {display: none;}

	.navbar-top .links a:last-child {margin-right: 0; margin-left: 5px;}

	.navbar .btn.alt strong {display: none;}
	.navbar .btn.alt img {margin-right: 0;}

	.navbar-logo-image {
		height: 40px;
	}

	.swiper-slide-content {
		width: 50%;
	}

	.swiper-slide-content .btn {
		font-size: .75rem;
		padding: 1em;
	}

	.news-slides a {
		display: flex;
		flex-direction: column;
	}

	.news-slides a img {
		border-radius: .5rem;
	}

	.news-slides .absolute {
		width: 100%;
		height: auto;
		padding: 1rem 0 0 0;
		background: none;
		position: relative;
		inset: auto;
		order: 2;
	}

	.card.horizontal .card-image {
		width: 25%;
		height: auto;
		aspect-ratio: 4/3.5;
	}

	#logotypy a {
		height: 85px;
	}

	.navbar-logo-image {
		height: 45px;
	}

	.navbar-logo-image-2 {
		height: 25px;
	}
}



@media screen and (max-width: 639px) {
	.skrot {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		padding: 30px;
		aspect-ratio: auto;
	}

	.skrot::before {
		margin-bottom: 0;
		margin-right: 30px;
	}

	.links {display: none;}

	.mobile-nav a.flex {
		display: flex;
	}

	.mobile-nav a.flex img {
		filter: invert(1);
		-webkit-filter: invert(1);
	}

	.mobile-nav a.flex:hover img,
	.mobile-nav a.flex:focus img {
		filter: invert(0);
		-webkit-filter: invert(0);
}

	.mobile-nav .bip.ml-15 {margin-left: 0;}

	.mobile-nav .bip img {
		margin: 0;
		padding: 5px 10px;
		background-color: #fff;
		border-radius: .25rem;
		-webkit-border-radius: .25rem;
		-moz-border-radius: .25rem;
		-ms-border-radius: .25rem;
		-o-border-radius: .25rem;
}
}



@media screen and (max-width: 590px) {
	.links {display: none;}
}

@media screen and (max-width: 425px) {
	.swiper-slide-content .btn,
	.swiper-slide-content p:last-child,
	.swiper-slide-content p:empty {display: none;}

	.skrot {
		font-size: 1rem;
		line-height: 1.1;
		text-align: center;
	}

	.news-slides .absolute strong {font-size: var(--h4);}

	.card.horizontal .card-image {margin-right: 15px;}

	.btn.wide {
		padding-left: .5rem;
		padding-right: .5rem;
		width: 100%;
	}
}



@media screen and (max-width: 375px) {
	:root {
		--sectionPadding: 60px !important;
	}

	.tel-xl {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.tel-xl img {
		margin-right: 0;
		margin-bottom: 5px;
	}

	.skrot {padding: 15px;}

	.skrot::before {
		width: 40px;
		height: 40px;
		background-size: contain;
		margin-right: 15px;
	}

}