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

body {
	background-color: #000;
	width: 100%;
	overflow-x: hidden;
}

.home {
	background: #000 url(/assets/img/homebg.jpg) top no-repeat;
	background-size: 100% auto;
}

.home header .bg {
	background: #000 url(/assets/img/homebg.jpg) top no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}


.home header {
	overflow: hidden;
	position: relative;
}

/* navbar */

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

.affix {
	background-color: hsla(0, 0%, 0%, .8);
	backdrop-filter: blur(5px);
}

.navbar-logo {
	margin: 42px 0;
	transition: all .2s ease;
}

.affix .navbar-logo {margin: 10px 0;}

.navbar-logo-image {
	display: block;
	height: 70.2px;
	transition: all .2s ease;
}

.affix .navbar-logo-image {height: 55px;}

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

#galeria .grid {
	gap:0
}

#galeria a,
#galeria img {
	display: block;
	max-width: 100%;
}

.slogan {
	margin-bottom: 60px;
}

.slogan h1 {
	margin-top: 0;
	margin-bottom: 5px;
	line-height: 1;
}

.slogan h1 span {
	font-size: .35em;
	text-transform: uppercase;
	letter-spacing: .3em;
	display: block;
    margin-top: 1rem;
}

.slogan p {
	font-size: 2.375rem;
	margin-bottom: 0;
	line-height: 1;
}


/* navbar-nav */

.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) {
	margin-left: 40px;
}

.navbar-nav > li > a {
	color: var(--textColor);
	font-size: 0.875rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 700;
	display: inline-flex;
	text-decoration: none;
	padding: 66px 0;
	transition: all .2s;
}

.affix .navbar-nav > li > a {
	padding: 25px 0;
}

.nav-dropdown > a::after {
	filter: invert(1);
	opacity: .5;
}


.navbar-nav a::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 6px;
	background-color: var(--primary);
	transition: all .2s var(--easeOutExpo);
}

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

.navbar-nav li:hover > a::before,
.navbar-nav a:hover::before,
.navbar-nav .nav-active::before {
	width: 100%;
}

.navbar-nav ul {
	position: absolute;
	display: none;
	top: 60%;
	left: 0;
	margin: 0;
	padding: 0;
	min-width: 250px;
	background-color: white;
}

.navbar-nav ul a {
	padding: 10px 15px;
	font-size: 0.8125rem;
	display: flex;
	color: black;
	justify-content: space-between;
	text-decoration: none;
	transition: all .2s ease;
}

.navbar-nav ul a::after {
	transform: rotate(-90deg);
	filter: invert(0);
	opacity: .5;
}

.navbar-nav ul a::before {
	height: 2px;
}

.navbar-nav ul li:hover > a,
.navbar-nav ul a:hover {
	padding: 10px 10px 10px 20px;
}

.navbar-nav ul li:hover > a,
.navbar-nav ul a:hover,
.navbar-nav ul a.nav-active {
	color: var(--primary);
	background-color: #000;
}

@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);}
}

.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 span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--primary);
	transition: all var(--fastSpeed) var(--easeOutBack);
	transform-origin: right;
}

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

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

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

.mobile-menu-toggler.active-toggler span: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);
	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 {
	background-color: var(--primary);
}

a {text-decoration: none;}



h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.1;
}

b, strong {
	font-weight: 700;
}

.btn {
	padding: 1.3rem 2.5rem;
	color: black;
	font-weight: bold;
}



#firma {
	padding: var(--sectionPadding) 0;
}

#firma h2, #dlaczego h2 {
	margin-top: 0;
	margin-bottom: 30px;
}

#firma .btn {margin-top: 15px;}

#dlaczego {
	padding-bottom: var(--sectionPadding);
}

.droplet {
	border-radius: 100% 100% 100% 0;
}

.md\:row-reverse .droplet {
	border-radius: 100% 100% 0 100%;
}



.madeby {
	color: white;
	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: var(--secondary);
	padding: 70px 0;
	color: white;
	line-height: 1.3;
}

address {
	font-style: normal;
}

footer hr {
	opacity: .2;
	background-color: #fff;
	margin: 80px 0 40px;
}

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

footer li {
	margin: 0 30px 0 0;
	padding: 0;
	list-style: none;
}

footer a {
	color: white;
	transition: opacity .2s;
}

footer a:hover {
	opacity: .8;
}





@media screen and (max-width: 1280px) {
	.droplet {
		width: 100%;
	}
}

@media screen and (max-width: 1199px) {
	.home main .md\:w-4-12 {
		width: 41.66666666%;
		max-width: 41.66666666%;
		flex-basis: 41.66666666%;
	}

	footer {
		font-size: 0.875rem;
	}

	footer .mr-60 {
		margin-right: 30px;
	}
}

@media screen and (max-width: 1023px) {
	.home main .w-full {
		width: 100%;
		max-width: 100%;
		flex-basis: 100%;
	}

	.droplet {
		border-radius: 100% !important;
		height: 60vh;
		width: 60vh;
		margin-top: 30px;
	}

	.home section {
		text-align: center;
	}

	p.flex {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-top: 30px;
	}

	p.flex img {
		margin-right: 0;
		margin-bottom: 15px;
	}

	section {
		width: 100%;
		overflow-x: hidden;
	}
}


@media screen and (max-width: 768px) {
	footer .flex.items-center {
		flex-direction: column;
	}
	footer .flex.mr-60 {
		margin-right: 0;
		margin-bottom: 30px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	footer .flex.items-center img {
		margin-right: 0;
		margin-bottom: 10px;
	}
}


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

	.navbar-logo {margin: 20px 0;}

	.home header .bg {background-size: 180% auto;}

	.droplet {
		max-height: 280px;
		max-width: 280px;
	}

	.slogan p {font-size: 1.6rem;}
}