@import url('https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&family=Staatliches&display=swap');

body {
	font-family: "National Park", sans-serif;
	font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333446;
	font-size: 18px;
}

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

h1 {
	font-size: 24px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 32px;
}

h1, h2, h3, h4, h5 { margin: 0; padding: 0; }
p { margin: 0; padding: 0; }

/* HEADER */

header {
	position: sticky;
	left: 0;
	top: 0;
	right: 0;
	background-color: #fff;
	z-index: 10001;
}

header .wrapper {
	display: flex;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

header .wrapper .logo {
	width: 160px;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	margin-left: auto;
}

header .wrapper nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

header .wrapper nav ul li {
	position: relative;
}

header .wrapper nav ul li a {
	display: block;
	padding: 5px 10px;
	border-radius: 7px;
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
    color: #343434;
	transition: .2s;
	font-size: 15px;
}

header .wrapper nav ul li a:not(.btn):hover {
	background-color: #edfff1;
	color: #2db34a;
}

header .wrapper nav ul li a.btn {
    padding: 8px 20px;
}

/* HERO */

.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80vh;
	min-height: 620px;
}

.hero.page {
	height: auto;
	min-height: 100%;
}

.hero .wrapper {
	text-align: center;
	max-width: 790px;
	margin: 0 auto;
}

.hero .wrapper h1 {
	font-size: 72px;
}

.hero .wrapper p {
	margin-top: 30px;
	font-size: 24px;
}

.hero .wrapper .buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
	gap: 20px;
}

/* CONTACT BOXES */

.contact-boxes {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
}

.contact-boxes .item {
	text-align: center;
}

.contact-boxes .item p {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 20px;
}

.contact-boxes .item .btn {
	width: 100%;
}

/* IMAGE ANIMATION */

.image-animation {
	position: relative;
	padding: 150px;
	text-align: center;
	background: url(../img/flip-z-wlascicielem.webp);
	background-size: cover;
	background-position: center center;
	border-radius: 15px;
	z-index: 1;
}

.image-animation:after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #2db34a;
	opacity: .7;
	z-index: 2;
}

.image-animation * {
	position: relative;
	z-index: 3;
}

.image-animation h2 {
	color: #fff;
}

.image-animation p {
	font-size: 24px;
	color: #fafafa;
}

/* STEPS */

.steps {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 35px;
}

.steps .item {
	position: relative;
	background-color: #daf7e0;
	padding: 60px 30px;
	border-radius: 15px;
	color: #333446;
}

.steps .item p {
	font-size: 18px;
}

.steps .item .icon {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background-color: #2db34a;
	color: #fff;
}

.steps .item .icon i {
	position: relative;
	top: 2px;
	font-size: 30px;
	line-height: 30px;
}

.steps .item span {
	display: block;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 30px;
}

.steps .item h4 {
	text-transform: uppercase;
	margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 7px;
    font-weight: 600;
    transition: .2s;
	text-transform: uppercase;
}

.btn i {
   padding-right: 6px;
   font-size: 18px;
   line-height: 18px;
   position: relative;
   top: 3px;
   color: #fff;
}

.btn-1 {
	color: #333446 !important;
    border: 2px solid #333446;
}

.btn-1 i {
	color: #333446 !important;
}

.btn-2 {
	color: #fff !important;
    border: 2px solid #2db34a;
	background-color: #2db34a;
}

.btn-3 {
	color: #2db34a !important;
    border: 2px solid #2db34a;
	background-color: transparent;
}

.btn-4 {
	color: #333446 !important;
    border: 2px solid #fff;
	background-color: #fff;
}

.btn-5 {
	color: #fff !important;
    border: 2px solid #fff;
	background-color: transparent;
}

.btn-5:hover {
	color: #333446 !important;
	background-color: #fff;
}

.btn-3:hover {
	color: #fff !important;
	background-color: #2db34a;
}

.btn.size-2 {
	font-size: 18px;
}

.bg-1 { background-color: #edfff1; }
.bg-2 { background-color: #2db34a; }
.bg-3 { background-color: #fff; }

.video-bg {
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
}

.video-bg video {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.overlay {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #2db34a;
	z-index: 2;
	opacity: .8;
}

.video-bg .container * {
	position: relative;
	z-index: 3;
}

.section-title.center {
	max-width: 920px;
	margin: 0 auto;
}

.section-title span {
	font-weight: 500;
	color: #2db34a;
	font-size: 18px;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.section-title span.badge {
	background-color: #edfff1;
	font-size: 18px;
}

.section-title p {
	font-size: 24px;
}

.case-study {
	overflow: hidden;
}

.reviews {
	overflow: hidden;
}

.owl-carousel.case {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.owl-carousel.case .owl-stage-outer {
	overflow: visible;
}

.owl-carousel.case .item {
	height: 650px;
	overflow: hidden;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.owl-carousel.case .item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 15px;
	display: block;
	filter: blur(6px);
}

.owl-carousel.case .item img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 15px;
	display: block;
	filter: blur(6px);
}

.owl-carousel.owl-drag .owl-item.center img {
	filter: blur(0px);
}

.owl-carousel.reviews .item {
	padding: 0 80px;
}

.owl-carousel.reviews .item h3 {
	color: #fff;
	margin-bottom: 20px;
}

.owl-carousel.reviews .item p {
	color: #fff;
	font-size: 24px;
}

.owl-carousel .owl-nav {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.owl-carousel.case .owl-nav {
	top: 40%;
	transform: translateY(-60%);
}

.owl-carousel .owl-nav button.owl-prev {
	right: auto;
	left: 0;
}

.owl-carousel.case .owl-nav button.owl-prev {
	right: auto;
	left: 20px;
}

.owl-carousel .owl-nav button.owl-next {
	right: 0;
	left: auto;
}

.owl-carousel.case .owl-nav button.owl-next {
	right: 50px;
	left: auto;
}

.owl-carousel.case .owl-dots {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	z-index: 1000;
	margin-top: 20px;
}

.owl-carousel.case .owl-dots button {
	position: relative;
}

.owl-carousel.case .owl-dots button span {
	display: block;
	background-color: #ddd;
	width: 20px;
	height: 6px;
	border-radius: 5px;
}

.owl-carousel.case .owl-dots button.active span {
	width: 30px;
	background-color: #2db34a;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
	position: absolute;
	color: #fff;
	font-size: 80px;
}

/* FORM WRAPPER */

.form-wrapper {
	padding: 50px;
	background-color: #fff;
	border-radius: 10px;
	border-top: 8px solid #2db34a;
	margin: 0 auto;
}

.form-wrapper h6 {
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: #2db34a;
}

.form-wrapper .question {
	display: none;
}

.form-wrapper .icon-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	flex-wrap: wrap;
	gap: 30px;
}

.form-wrapper .icon-items.grid-3 {
	grid-template-columns: 1fr 1fr 1fr;
}

.form-wrapper .icon-items.grid-4 {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.form-wrapper .icon-items .item {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	flex-direction: column;
	height: 120px;
	border: 3px solid #2db34a;
	border-bottom: 0;
	text-align: center;
	border-radius: 10px;
	transition: .1s;
	box-shadow: 0 5px 0 0 #2db34a;
}

.form-wrapper .icon-items .item.selected,
.form-wrapper .icon-items .item:hover {
	background-color: #2db34a;
}

.form-wrapper .icon-items .item h4 {
	color: #000;
	text-transform: uppercase;
	font-size: 18px;
	color: #2db34a;
	font-weight: 600;
	transition: .1s;
	margin-top: 5px;
}

.form-wrapper .icon-items .item i {
	display: block;
	font-size: 50px;
	line-height: 50px;
	color: #2db34a;
	transition: .1s;
}

.form-wrapper .icon-items .item.selected h4,
.form-wrapper .icon-items .item:hover h4,
.form-wrapper .icon-items .item:hover i {
	color: #fff;
}

.form-wrapper .icon-items .item a {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}

.form-space {
	position: relative;
	margin-bottom: 20px;
}

.form-space.big-center {
	width: 50%;
	margin: 0 auto;
	margin-bottom: 20px;
}

.form-space:last-child {
	margin-bottom: 0px;
}

.form-space label {
	font-weight: 500;
	color: #333446;
	margin-bottom: 15px;
	font-size: 16px;
	text-align: center;
}

.form-space input {
	display: block;
	width: 100%;
	border: 0;
	padding: 15px 20px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 5px 15px 0 rgb(0 0 0 / 10%);
}

.form-wrapper .buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}


/* ACCORDION */

.accordion-item {
	border: 0;
	border-radius: 5px;
	background: transparent;
}

.accordion-flush .accordion-item {
	border-radius: 5px;
	border-bottom: 1px solid #999;
}

.accordion-item:last-child {
	margin-bottom: 0px;
}

.accordion-button {
	background: transparent;
	padding: 25px 0;
	border-radius: 5px;
	font-size: 28px;
    font-weight: 500;
}

.accordion-item:last-of-type .accordion-button.collapsed {
	border-radius: 5px;
}

.accordion-body {
	padding: 20px 0;
}

.accordion-button:not(.collapsed) {
	background-color: transparent;
}

/* FOOTER */

footer {
	padding-top: 100px;
    background-color: #fff;
    color: #333446;
	font-size: 16px;
	border-top: 1px solid #dfdfdf;
}

footer .footer-logo {
	width: 120px;
}

footer .footer-logo img {
	width: 100%;
}

footer .footer-bottom {
	padding-top: 100px;
	padding-bottom: 100px;
	font-size: 14px;
	color: #878787;
}

footer .footer-bottom .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer .footer-bottom .wrapper ul {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

footer .footer-bottom .wrapper ul li a {
	text-transform: uppercase;
	color: #343434;
	font-weight: 500;
	text-decoration: none;
}

footer .footer-bottom .wrapper ul li a:hover {
	color: #2db34a;
}

footer .about {
	font-size: 13px;
	line-height: 18px;
	color: #555;
}

footer .about span {
	font-weight: 600;
	color: #333446;
}

.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }

iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	h2 {
		font-size: 34px;
	}
	h3 {
		font-size: 26px;
	}
	h4 {
		font-size: 24px;
	}
	header .wrapper .logo {
		width: 140px;
	}
	header .wrapper nav {
		display: none;
	}
	.hero .wrapper h1 {
		font-size: 38px;
	}
	.hero .wrapper .buttons {
		gap: 10px;
	}
	.steps {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.image-animation {
		padding: 30px;
	}
	.contact-boxes {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.btn {
		padding: 15px 15px;
	}
	.btn.size-2 {
		font-size: 16px;
	}
	.image-animation p {
		font-size: 20px;
	}
	.section-title p {
		font-size: 20px;
	}
	.accordion-button {
		font-size: 20px;
	}
	.hero .wrapper p {
		font-size: 20px;
	}
	iframe {
		height: 550px;
	}
	.owl-carousel.case .item {
		height: 330px;
	}
	.owl-carousel.reviews .item {
		padding: 0 40px;
		text-align: center
	}
	.owl-carousel.reviews .item p {
		font-size: 18px;
	}
	footer .footer-bottom .wrapper {
		flex-direction: column;
		justify-content: center;
	}
	footer .footer-bottom .wrapper ul {
		margin-top: 20px;
		flex: 1;
		gap: 5px;
		flex-direction: column;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1280px;
	}
}