@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--main-900: #1C1C1C;
	--main-700: #2C2C2C;
	--main-500: #4C4C4C;
	--main-400: #8C8C8C;
	--main-300: #CCCCCC;
	--main-200: #ECECEC;
	--main-100: #FCFCFC;

	--basic-success: #198754;
	--basic-warning: #FFC107;
	--basic-error: #DC3545;
	--basic-focus: #007BFF;

	--brand-first: #121B26;
	--brand-second: #C1CBD9;

	--btn-light: #C1CBD9;
	--btn-dark: #121B26;
	--btn-light-hover: #FCFCFC;
	--btn-dark-hover: #1C1C1C;
	--btn-light-disabled: #CCCCCC;
	--btn-dark-disabled: #4C4C4C;

	--add-gray: #74776B;
	--add-green: #98CE00;
	--add-black: #000004;
	--add-red: #E3000F;
}

*,
*::before,
*::after {
	border: 0;
	margin: 0;
	padding: 0;
	outline: 0;
	box-sizing: border-box;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
	margin: 0;
}

html,
body {
	overflow: visible;
	overflow-x: hidden;
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	color: var(--main-100);
	background-color: var(--main-900);

	letter-spacing: .25px;
	overflow-x: hidden;

	@media (max-width: 1200px) {
		& {
			padding-top: 73px;
		}
	}
	@media (min-width: 1200px) {
		& {
			padding-top: 88px;
		}
	}
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	margin-top: 32px;
	margin-bottom: 32px;
	border: 0;
	border-top: 1px solid rgba(28, 28, 28, .1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

.is--d1 {
	font-size: 6rem;
	line-height: 0.88;
	letter-spacing: -0.04rem;

	@media (max-width: 1200px) {
		& {
			font-size: 4.5rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 2.5rem;
		}
	}
}

.is--d2 {
	font-size: 4rem;
	line-height: 0.88;
	letter-spacing: -0.04rem;

	@media (max-width: 1200px) {
		& {
			font-size: 3rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 2rem;
		}
	}
}

h1,
.is--h1 {
	font-size: 3rem;
	line-height: 1.1;
	letter-spacing: -0.02rem;

	@media (max-width: 1200px) {
		& {
			font-size: 2rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 1.75rem;
		}
	}
}

h2,
.is--h2 {
	font-size: 2.5rem;
	line-height: 1.14;
	letter-spacing: -0.02rem;

	@media (max-width: 1200px) {
		& {
			font-size: 1.75rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 1.5rem;
		}
	}
}

h3,
.is--h3 {
	font-size: 2rem;
	line-height: 1.16;

	@media (max-width: 1200px) {
		& {
			font-size: 1.5rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 1.25rem;
		}
	}
}

h4,
.is--h4 {
	font-size: 1.5rem;
	line-height: 1.18;

	@media (max-width: 1200px) {
		& {
			font-size: 1.25rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 1.125rem;
		}
	}
}

h5,
.is--h5 {
	font-size: 1.25rem;
	line-height: 1.2;

	@media (max-width: 1200px) {
		& {
			font-size: 1.125rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 1rem;
		}
	}
}

h6,
.is--h6 {
	font-size: 1.125rem;
	line-height: 1.2;

	@media (max-width: 1200px) {
		& {
			font-size: 1rem;
		}
	}
}

.is--body {
	font-size: 1rem;
	line-height: 1.5;
}

.is--caption {
	font-size: 0.75rem;
	line-height: 1.5;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.5s;
}

a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 75%;
}

sub,
sup {
	position: relative;
	font-size: 50%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: 0;
	transform: translateY(-50%);
}

sup {
	top: -5px;
	transform: translateY(50%);
}

img,
svg {
	max-width: 100%;
	height: auto;
	display: block;
}


.container {
	padding: 0 32px;

	@media (max-width: 1200px) {
		& {
			padding: 0 16px;
		}
	}

	&.is--standard {
		max-width: 1400px;
		width: 100%;
		margin: 0 auto;

		@media (max-width: 1600px) {
			& {
				max-width: 1200px;
			}
		}
	}

	&.is--narrow {
		width: 700px;
		margin: 0 auto;

		@media (max-width: 1200px) {
			& {
				max-width: 700px;
				width: 100%;
				padding: 0 16px;
			}
		}
	}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 300;
	transition: all .5s;
	background-color: var(--add-black);

	@media (max-width: 1200px) {
		& {
			padding: 12px 0;
		}
	}

	& .header__columns {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 32px;
	}

	& .header__logo {
		&>* {
			width: auto;
			max-height: 64px;

			@media (max-width: 1200px) {
				& {
					max-height: 48px;
				}
			}
		}
	}

	& .header__nav {
		position: relative;
		&::before {
			content: "";
			position: absolute;
			top: 0;
			height: 100%;
			left: -30px;
			width: 300vw;
			background: #719900;
			z-index: -1;
		}
		@media (max-width: 1200px) {
			& {
				display: none;
			}
		}

		& div>ul {
			display: flex;
			flex-direction: row;
			gap: 24px;
			list-style: none;
		}

		& div>ul>li {
			position: relative;
			padding: 32px 0;
		}

		& ul ul {
			display: none;
			position: absolute;
			top: 100%;
			left: -100%;
			background-color: var(--brand-first);
			margin: 0;
			white-space: nowrap;
			list-style: none;
		}

		& ul ul li {
			position: relative;
			border-bottom: 1px solid var(--main-500)
		}

		& ul ul li a {
			color: var(--main-100);
			display: block;
			padding: 16px 32px;
		}

		& ul ul ul {
			top: 0;
			left: 100%;
			background-color: var(--main-500);
		}

		ul li:hover>ul {
			display: block !important;
		}
	}

	& .header__contacts {
		display: flex;
		flex-direction: row;
		gap: 32px;

		@media (max-width: 1200px) {
			& {
				display: none;
			}
		}
	}

	& .header__contact {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 8px;
	}

	& .header__socials {
		display: flex;
		flex-direction: row;
		gap: 16px;

		@media (max-width: 1200px) {
			& {
				display: none;
			}
		}
	}

	& .header__lang-toggle {
		text-transform: uppercase;

		@media (max-width: 1200px) {
			& {
				display: none;
			}
		}

		& div>ul {
			display: flex;
			flex-direction: row;
			gap: 8px;
			list-style: none;
		}

		& li {
			opacity: 0.7;
		}

		& .current-lang {
			opacity: 1;
			font-weight: 700;
		}
	}

	& .header__hamburger {
		filter: invert(1);
		@media (min-width: 1201px) {
			& {
				display: none;
			}
		}

	}
}

.menu-mobile {
	display: none;
	position: fixed;
	top: 73px;
	right: 0;
	left: 0;
	max-height: calc(100vh - 152px);
	background-color: var(--main-900);
	padding: 16px 0;
	text-align: right;
	overflow-y: scroll;
	z-index: 300;

	& ul {
		list-style-type: none;
	}

	& a {
		color: var(--main-100);
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 16px;
		padding: 16px 0;
		position: relative;
	}

	& a:after {
		content: '';
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		bottom: 0;
		width: 100%;
		height: 1px;
		background-color: rgba(255, 255, 255, .1);
	}

	& .menu>li:last-child>a:after {
		display: none;
	}

	& .menu-item-has-children>a {
		position: relative;
		padding-right: 24px;
	}

	& .menu-item-has-children>a:before {
		content: '';
		position: absolute;
		top: 52%;
		transform: translateY(-50%);
		right: 3px;
		background-image: url('../assets/img/plus.svg');
		background-repeat: no-repeat;
		width: 8px;
		height: 8px;
		filter: brightness(0%) invert(100%);
	}

	.sub-menu {
		display: none;
	}
}

.footer {
	font-size: 1rem;
	background-color: var(--add-black);
	color: var(--main-200);
	padding: 64px 0 16px 0;

	@media (max-width: 1200px) {
		& {
			padding-top: 48px;
		}
	}

	& .footer__logo {
		@media (max-width: 1200px) {
			& {
				grid-column: span 2;
			}
		}

		@media (max-width: 576px) {
			& {
				grid-column: 1;
			}
		}

		&>svg {
			height: 48px;
			width: auto;

			@media (max-width: 1200px) {
				& {
					height: 32px;
				}
			}
		}
	}

	& .footer__columns {
		display: flex;
		justify-content: space-between;

		@media (max-width: 1200px) {
			& {
				flex-wrap: wrap;
			}
		}

		& ul {
			list-style-type: none;
		}

		& .footer__contact {
			display: flex;
			flex-direction: row;
			align-items: center;
			gap: 8px;
			
		}

		@media (max-width: 1200px) {
			& {
				display: grid;
				grid-template-columns: repeat(2, minmax(0, 1fr));
			}
		}

		@media (max-width: 576px) {
			& {
				grid-template-columns: 1fr;
			}
		}
	}

	& .footer__columns:first-child {
		padding-bottom: 64px;
		align-items: flex-start;

		@media (max-width: 1200px) {
			& {
				gap: 32px;
				padding-bottom: 48px;
			}
		}
	}

	& .footer__columns:last-child {
		padding-top: 16px;
		font-size: 0.875rem;
		border-top: 1px solid var(--add-green);
		align-items: center;

		@media (max-width: 1024px) {
			& {
				gap: 16px;
			}
		}
	}

	& .footer__title {
		font-size: 1.25rem;
		padding-bottom: 16px;
		line-height: 1.2;

		@media (max-width: 1200px) {
			& {
				font-size: 1.125rem;
			}
		}

		@media (max-width: 768px) {
			& {
				font-size: 1rem;
			}
		}
	}

	& .footer__items {
		display: flex;

		@media (max-width: 1024px) {
			& {
				display: contents;
			}
		}
	}

	& .footer__copyright {
		position: relative;
		padding-right: 8px;
		border-right: 1px solid var(--main-500);

		@media (max-width: 1024px) {
			& {
				padding-right: 0;
				border-right: none;
				order: 1;
				grid-column: span 2;
			}
		}

		@media (max-width: 576px) {
			& {
				grid-column: 1;
			}
		}
	}

	& .footer__privacy-policy {
		padding-left: 8px;

		@media (max-width: 1024px) {
			& {
				padding-left: 0;
				order: 0;
			}
		}
	}

	& .footer__webdesign {
		display: flex;
		align-items: center;

		@media (max-width: 1024px) {
			& {
				justify-content: flex-start;
				order: -1;
			}
		}

		& a {
			display: inline-block;
			margin-left: 8px;
		}

		& img {
			height: 28px;

			@media (max-width: 1600px) {
				& {
					height: 24px;
				}
			}
		}
	}
}

/* Section */

.section {
	padding: 96px 0;

	@media (max-width: 1600px) {
		& {
			padding: 64px 0;
		}
	}
}

.is--mt {
	margin-top: 96px;

	@media (max-width: 768px) {
		& {
			margin-top: 64px;
		}
	}
}

.is--mb {
	margin-bottom: 96px;

	@media (max-width: 768px) {
		& {
			margin-bottom: 64px;
		}
	}
}

.is--pt {
	padding-top: 96px;

	@media (max-width: 768px) {
		& {
			padding-top: 32px;
		}
	}
}

.is--pb {
	padding-bottom: 96px;

	@media (max-width: 768px) {
		& {
			padding-bottom: 32px;
		}
	}
}



.section__columns {
	display: grid;
	grid-gap: 32px;
}

.is--gap-0 {
	grid-gap: 0;
}

.is--gap-8 {
	grid-gap: 8px;
}

.is--gap-16 {
	grid-gap: 16px;
}

.is--gap-24 {
	grid-gap: 24px;

	@media (max-width: 1200px) {
		& {
			grid-gap: 16px;
		}
	}

	@media (max-width: 768px) {
		& {
			grid-gap: 32px;
		}
	}
}

.is--gap-32 {
	grid-gap: 32px;

	@media (max-width: 1200px) {
		& {
			grid-gap: 16px;
		}
	}

	@media (max-width: 768px) {
		& {
			grid-gap: 32px;
		}
	}
}

.is--gap-64 {
	grid-gap: 64px;

	@media (max-width: 1200px) {
		& {
			grid-gap: 32px;
		}
	}
}

.section__columns iframe {
	max-width: 100%;
}

.section__columns--one,
.section__columns--1 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.section__columns--two,
.section__columns--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));

	@media (max-width: 768px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}

@media (max-width: 768px) {
	.is--reverse .section__column:nth-child(1) {
		order: 2;
	}

	.is--reverse .section__column:nth-child(2) {
		order: 1;
	}
}

.section__columns--three,
.section__columns--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));

	

	@media (max-width: 576px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}


.section__columns--four,
.section__columns--4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));

	@media (max-width: 1200px) {
		& {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}


	@media (max-width: 576px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}

.section__columns--five,
.section__columns--5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));

	@media (max-width: 1200px) {
		& {
			grid-template-columns: repeat(4, minmax(0, 1fr));
		}
	}

	@media (max-width: 992px) {
		& {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}
	}

	@media (max-width: 768px) {
		& {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}

	@media (max-width: 576px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}

.section__columns--six,
.section__columns--6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));



	@media (max-width: 1500px) {
		& {
			grid-template-columns: repeat(3, minmax(0, 1fr));
		}
	}

	@media (max-width: 576px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}

.is--align-top {
	align-items: start;
}

.is--align-middle {
	align-items: center;
}

.is--align-bottom {
	align-items: end;
}

.is--bg,
.is--parallax {
	position: relative;
	color: var(--main-100) !important;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.is--parallax {
	background-attachment: fixed;
}

.is--bg,
.is--parallax svg path {
	fill: var(--main-100) !important;
}

.is--bg:before,
.is--parallax:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .8);
	z-index: 100;
}

.is--bg .container,
.is--parallax .container {
	position: relative;
	z-index: 100;
}

.is--wide {
	&>.section__img {
		margin-left: -32px;
		margin-right: -32px;

		@media (max-width: 1200px) {
			& {
				margin-left: -16px;
				margin-right: -16px;
			}
		}
	}

	& .section__column:nth-child(2n+1) .section__img {
		margin-left: -32px;
		margin-right: 0;

		@media (max-width: 1200px) {
			& {
				margin-left: -16px;
			}
		}

		@media (max-width: 768px) {
			& {
				margin-right: -16px;
			}
		}
	}

	& .section__column:nth-child(2n) .section__img {
		margin-left: 0;
		margin-right: -32px;

		@media (max-width: 1200px) {
			& {
				margin-right: -16px;
			}
		}

		@media (max-width: 768px) {
			& {
				margin-left: -16px;
			}
		}
	}
}

.is--standard .is--full-img .section__img {
	width: calc(100svw / 2);

	@media (max-width: 768px) {
		& {
			width: 100svw;
		}
	}
}

@media (min-width: 769px) {
	.is--standard .is--full-img.is--gap-8 .section__img {
		width: calc((100svw - 8px) / 2);
	}

	.is--standard .is--full-img.is--gap-16 .section__img,
	.is--standard .is--full-img.is--gap-24 .section__img,
	.is--standard .is--full-img.is--gap-32 .section__img {
		width: calc((100svw - 16px) / 2);
	}

	.is--standard .is--full-img.is--gap-64 .section__img {
		width: calc((100svw - 32px) / 2);
	}
}

@media (min-width: 1201px) {
	.is--standard .is--full-img.is--gap-24 .section__img {
		width: calc((100svw - 24px) / 2);
	}

	.is--standard .is--full-img.is--gap-32 .section__img {
		width: calc((100svw - 32px) / 2);
	}

	.is--standard .is--full-img.is--gap-64 .section__img {
		width: calc((100svw - 64px) / 2);
	}
}

.is--standard .is--full-img .section__column .section__img {
	@media (max-width: 768px) {
		& {
			margin-left: -16px;
		}
	}
}

.is--standard .is--full-img .section__column:first-child .section__img {
	margin-left: calc((0px - ((100svw - 1400px)/2)) - 32px);

	@media (max-width: 1600px) {
		& {
			margin-left: calc((0px - ((100svw - 1200px)/2)) - 32px);
		}
	}

	@media (max-width: 1200px) {
		& {
			margin-left: -16px;
		}
	}
}

.section__buttons {
	display: inline-block;

	&>div {
		display: flex;
		flex-direction: row;
		gap: 32px;
		width: fit-content;

		@media (max-width: 1200px) {
			& {
				gap: 16px;
			}
		}
	}
}

.section__desc {

	& p:not(:last-child),

	& ul:not(:last-child),
	& ol:not(:last-child),
	& table:not(:last-child),
	& h1:not(:last-child),
	& h2:not(:last-child),
	& h3:not(:last-child),
	& h4:not(:last-child),
	& h5:not(:last-child),
	& h6:not(:last-child) {
		margin-bottom: 32px;
	}

	& ul,
	& ol {
		padding-left: 24px;
		text-align: left;
	}

	& table {
		text-align: left;
		border-collapse: collapse;
	}

	& table th,
	& table td {
		padding: 16px;
	}

	& a {
		font-weight: 700;
	}
}

.is--align-left {
	text-align: left;
}

.is--align-center {
	text-align: center;
}

.is--align-right {
	text-align: right;
}

.btn {
	font-weight: 700;
	line-height: 1.5;
	display: inline-flex;
	align-items: center;
	font-size: 1.1rem;
	width: fit-content;
	gap: 16px;
	border-radius: 10px;

	&.is--primary-dark,
	&.is--primary-light,
	&.is--secondary-dark,
	&.is--secondary-light {
		padding: 12px 16px;
	}

	&.is--primary-dark {
		background-color: var(--add-red);
		border: 1px solid var(--add-red);
		color: var(--main-100);
	}

	&.is--primary-light {
		background-color: var(--btn-light);
		border: 1px solid var(--btn-light);
		color: var(--btn-dark);
	}

	&.is--secondary-dark {
		border: 1px solid var(--add-red);
		color: var(--main-100);
	}

	&.is--secondary-light {
		border: 1px solid var(--btn-light);
		color: var(--btn-light);
	}

	&.is--tertiary-dark {
		color: var(--btn-dark);
	}

	&.is--tertiary-light {
		color: var(--btn-light);
	}

	&.is--primary-dark:hover,
	&.is--secondary-dark:hover {
		background-color: var(--main-900);
		border: 1px solid var(--main-900);
		color: var(--main-100);
	}

	&.is--primary-light:hover,
	&.is--secondary-light:hover {
		background-color: var(--btn-light-hover);
		border: 1px solid var(--btn-light-hover);
		color: var(--btn-dark-hover);
	}

	&.is--tertiary-dark:hover {
		color: var(--btn-dark-hover);
	}

	&.is--tertiary-light:hover {
		color: var(--btn-light-hover);
	}

	&.is--primary-dark:disabled {
		background-color: var(--btn-dark-disabled);
		border: 1px solid var(--btn-dark-disabled);
		color: var(--btn-light-disabled);
	}

	&.is--primary-light:disabled {
		background-color: var(--btn-light-disabled);
		border: 1px solid var(--btn-light-disabled);
		color: var(--btn-dark-disabled);
	}

	&.is--secondary-dark:disabled {
		border: 1px solid var(--btn-dark-disabled);
		color: var(--btn-dark-disabled);
	}

	&.is--secondary-light:disabled {
		border: 1px solid var(--btn-light-disabled);
		color: var(--btn-light-disabled);
	}

	&.is--tertiary-dark:disabled {
		color: var(--btn-dark-disabled);
	}

	&.is--tertiary-light:disabled {
		color: var(--btn-light-disabled);
		
	}
}
.btn:after{
	content: "➤";
	
}
.btn.is--secondary-dark:after{
	
	color: var(--add-red);
}
.btn.is--primary-dark:after{
	
	color: var(--main-100);
}
.bottom-bar {
	position: fixed;
	left: 0;
	display: none;
	bottom: 0;
	width: 100%;
	z-index: 300;

	@media (max-width: 1200px) {
		& {
			display: block;
		}
	}

	& ul {
		list-style-type: none;
		display: flex;
	}

	& li {
		flex: 1;
		text-align: center;
	}

	& a {
		display: block;
		background-color: var(--btn-dark);
		padding: 16px 0;
		line-height: 1;
		position: relative;
	}

	& img {
		margin: 0 auto 0 auto;
		height: 20px;
		filter: brightness(0%) invert(100%);
	}
}

.wpcf7-form {
	text-align: left;

	&>p:not(:last-of-type) {
		margin-bottom: 32px;
	}

	&>p>label {
		font-size: 1rem;
	}

	&>p span {
		margin-top: 8px;
		display: block;
	}

	& input.wpcf7-form-control,
	& textarea.wpcf7-form-control {
		padding: 16px;
		background-color: transparent;
		border: 1px solid var(--add-green);
		width: 100%;
		display: block;
		box-sizing: border-box;
		outline: 0;
		color: var(--main-100);
		font-family: 'Inter', sans-serif;
		font-weight: 400;
		font-size: 1rem;

		@media (max-width: 1600px) {
			& {
				font-size: 0.875rem;
			}
		}
	}

	& input.wpcf7-form-control::placeholder,
	& textarea.wpcf7-form-control::placeholder {
		font-family: 'Inter', sans-serif;
		font-weight: 400;
		font-size: 1rem;
		color: var(--main-100);
		opacity: .5;

		@media (max-width: 1600px) {
			& {
				font-size: 0.875rem;
			}
		}
	}

	& input.wpcf7-form-control:focus,
	& textarea.wpcf7-form-control:focus {
		outline: 0;
	}

	& input.wpcf7-form-control.wpcf7-not-valid,
	& textarea.wpcf7-form-control.wpcf7-not-valid {
		border: 2px solid var(--basic-error);
	}

	& .wpcf7-list-item {
		margin: 0;
		display: block;
	}

	& .wpcf7-not-valid>.wpcf7-list-item {
		border: 2px solid var(--basic-error);
		padding: 16px;
	}

	& .wpcf7-acceptance label {
		display: flex;
		align-items: flex-start;
	}

	& .wpcf7-acceptance input {
		margin-right: 8px;
		position: relative;
		top: 5.5px;
	}

	& .wpcf7-radio {
		display: flex;
		flex-wrap: wrap;
		margin: -4px;
	}

	& .wpcf7-radio .wpcf7-list-item {
		width: 100%;
		padding: 4px;
	}

	& .wpcf7-radio label {
		display: flex;
		align-items: flex-start;
	}

	& .wpcf7-radio input {
		margin-right: 8px;
		position: relative;
		top: 4px;
	}

	& .wpcf7-response-output {
		padding: 16px !important;
		margin: 16px 0 !important;
		width: 100%;
		font-size: 0.875rem;
		line-height: 1.5;
	}

	& .wpcf7-not-valid-tip {
		font-size: 0.75rem;
		line-height: 1;
		display: block;
	}

	& .ajax-loader,
	& .wpcf7-spinner {
		display: none;
	}

	& .wpcf7-submit {
		line-height: 1.5 !important;
		display: inline-flex !important;
		align-items: center !important;
		text-transform: uppercase !important;
		padding: 16px 32px !important;
		background-color: var(--add-black) !important;
		border: 1px solid var(--add-green) !important;
		color: var(--add-green) !important;
		width: auto !important;
		position: relative !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
	}

	& .wpcf7-submit:hover {
		cursor: pointer;
	}
}

.gallery {
	display: grid;
	grid-gap: 16px;

	&.gallery-columns-1 {
		grid-template-columns: repeat(1, 1fr);
	}

	&.gallery-columns-2 {
		grid-template-columns: repeat(2, 1fr);

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	&.gallery-columns-3 {
		grid-template-columns: repeat(3, 1fr);

		@media (max-width: 768px) {
			& {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	&.gallery-columns-4 {
		grid-template-columns: repeat(4, 1fr);

		@media (max-width: 1200px) {
			& {
				grid-template-columns: repeat(4, 1fr);
			}
		}

		@media (max-width: 768px) {
			& {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	&.gallery-columns-5 {
		grid-template-columns: repeat(5, 1fr);

		@media (max-width: 1200px) {
			& {
				grid-template-columns: repeat(4, 1fr);
			}
		}

		@media (max-width: 768px) {
			& {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	&.gallery-columns-6 {
		grid-template-columns: repeat(6, 1fr);

		@media (max-width: 1200px) {
			& {
				grid-template-columns: repeat(4, 1fr);
			}
		}

		@media (max-width: 768px) {
			& {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	&.gallery-columns-7 {
		grid-template-columns: repeat(7, 1fr);

		@media (max-width: 1200px) {
			& {
				grid-template-columns: repeat(4, 1fr);
			}
		}

		@media (max-width: 768px) {
			& {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	&.gallery-columns-8 {
		grid-template-columns: repeat(8, 1fr);

		@media (max-width: 1200px) {
			& {
				grid-template-columns: repeat(4, 1fr);
			}
		}

		@media (max-width: 768px) {
			& {
				grid-template-columns: repeat(2, 1fr);
			}
		}

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	&.gallery-columns-9 {
		grid-template-columns: repeat(9, 1fr);

		@media (max-width: 1200px) {
			& {
				grid-template-columns: repeat(6, 1fr);
			}
		}

		@media (max-width: 768px) {
			& {
				grid-template-columns: repeat(3, 1fr);
			}
		}

		@media (max-width: 425px) {
			& {
				grid-template-columns: repeat(1, 1fr);
			}
		}
	}

	& br {
		display: none;
	}

	& .gallery-item {
		margin-top: 0 !important;
		width: 100% !important;
		position: relative;
		background-color: #000;
		overflow: hidden;
	}

	& img {
		width: 100%;
		height: 100%;
		aspect-ratio: 4/3;
		
		object-fit: cover;
		object-position: center;
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
	& img:hover {
		transform: scale(1.1);
		opacity: 0.6;
	}
}

.section__header {
	margin-bottom: 32px;
}

.breadcrumbs {
	padding: 16px 0;
	font-size: 12px;
	font-weight: 400;
	border-bottom: 1px solid rgba(252, 252, 252, .1);

	& .breadcrumbs__link {
		padding: 0 8px;
		border-right: 1px solid var(--main-300);
	}

	& .breadcrumbs__current {
		padding: 0 8px;
	}
}


.sub-menu .menu-item{
	background-color: var(--main-700);
	color: var(--main-100);	
	transition: all 0.5s;
}
.sub-menu > .menu-item > a{
	color: var(--main-100);
	padding-right: 35px;
}

.sub-menu .menu-item:hover{
	background-color: var(--add-red);
	
}
.sub-menu > .menu-item:hover > a{
	color: var(--add-black);
}






@keyframes slidein {
	from {
		margin-left: 500px;
	}

	to {
		margin-left: 0px;
	}
}

#img__slide {

	animation: slidein 3s;
}
.section__columns:has(#dlaczego__text) {
	align-items: center;
}
.section__desc>div>	ul {
	margin-top: 10px;
}
.section__desc>div>	ul>li {
	padding-left: 10px;
}
.section__desc>div>	ul>li::marker {
	color: var(--add-green);
	font-size: 1.5rem;
	
	content: "✓";

	@media (max-width: 1200px) {
		& {
			font-size: 1.25rem;
		}
	}

	@media (max-width: 768px) {
		& {
			font-size: 1.125rem;
		}
	}
}
.section__desc>ul>li{
	padding-left: 1rem;
}

#h1__druk{
	
	
	
	font-weight: 600;
	color: var(--main-100);
}

#h1__wielko{
	
	
	font-weight: 800;
	color: var(--add-green);
}

#h1__title{
	font-size: 4em;
	margin-top: 1em;
}
#h1__title p {
	margin: 0;
}



  figure {
	
	display: flex;
	flex-flow: column;
	

	margin: auto;
  }
  
  figure img{
	margin-bottom: 0;
  }
  
	.figurecaption {
	display: none;
	background-color: rgba(28, 28, 28, .8);
	color: #fff;
	display: none;
	
	margin-top: -24px;
	text-align: center;
	overflow: hidden;
  }
  figure:hover .figurecaption{
	display: block;
  }
  figure p{
	display: none;
  }


  .menu-item:hover{
	color: var(--add-red);
  }
  .header__social:hover a svg g g g path{
	fill: var(--add-red) !important;
  }
  .header__social a svg g g g path{
	transition: all 0.5s;
  }
  .footer__social:hover a svg g g g path{
	fill: var(--add-red) !important;
  }
  .footer__social a svg g g g path{
	transition: all 0.5s;
  }
  #list__main{
	font-size: 32px;
  }

  #list__main li:not(:last-child) {
    margin-bottom: 10px;
}


@media screen and (max-width: 768px) {
	#moblie__disable{
		display: none;
	}

  }
  @media screen and (min-width: 1150px) {
	#h1__title{
		font-size: 4rem;
	}
  }
  @media screen and (max-width: 1150px) and (min-width: 900px) {
	#h1__title{
		font-size: 3rem;
	}
  }
  @media screen and (max-width: 900px) and (min-width: 768px) {
	#h1__title{
		font-size: 2rem;
	}
  }

  @media screen and (max-width: 600px) {
	#h1__title{
		font-size: 3rem;
	}
  }
  @media screen and (max-width: 450px) {
	#h1__title{
		font-size: 2rem;
	}
  }
  .section__column{
	margin-bottom: 16px;
  }
@media screen and (max-width:768px){
	.figurecaption{
		display: block;
	  }
}
img.hover-shadow {
  transition: 0.3s;
}
.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#list__main li{
	padding-left: 20px;
}

@media screen and (min-width:1200px){
	#site404{
		padding-top: 90px;
	}
}
#site404{
	height: 80vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.img404{
	max-height: 450px;
	font-size: 15rem;
	color: var(--add-green);
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.h1404{
	padding-bottom: 20px;
}
.container > .section__img img{
	max-height: 575px;
	object-fit: cover;
	border-radius: 0 60px 0 60px;
}
.container >  .section__img{
	width: 100%;
}
.is--wide:has(.section__img){
	padding: 0 !important;
}
.footer__data:hover{
	color: var(--add-red);
}
.footer__data p{
	transition: all 0.5s;
}
.footer__data p>a{
	transition: all 0s !important;
}
.bTrans{
	width: 100%;
}
@media screen and (min-width:1200px){
	.bTrans{
		transition: transform 0.4s;
	}
	.bTrans:hover{
		transform: scale(1.2) rotate(0.01deg) !important;
	}
	
}
.banner__main{
	height: 800px;
	width: 90vw;
	background-color: var(--main-400) !important;
	display: flex;
	align-items: center;
}
.button__holder{
	display: flex;
	flex-direction: row;
	gap: 20px;
	@media screen and (max-width:770px) {
		flex-direction: column;
		
	}
}
#column__main_2>div >div>div:first-child{
	background-color: var(--add-red);
	padding: 30px;
	border-radius: 0 60px 0 60px;
	align-self: center;
	width: 110%;
	z-index: 10;
	@media screen and (max-width:770px) {
		width: 100%;
	}
}
#column__main_2>div >div>div:last-child{
	align-self: center;
}


#column__main_2>div >div>div:last-child>div>div>p>img{
	border-radius: 0 60px 0 60px;
}
.panel__oferta{
	border: 1px solid var(--main-700);
	padding: 25px;
	border-radius: 0px 50px 0px 50px;
	
}
.panel__oferta>h4{
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 20px;
	border-top: 1px solid var(--main-700);
	font-weight: bold;
}
.border__img>img{
	border-radius: 0 60px 0 60px;
	margin-left: 50px;
}
#dlaczego__text{
	background-color: #151515;
	padding: 50px;
	margin-right: 20px;
	margin-left: -120px;
	border-radius: 0 60px 0 60px;
	@media  screen and (max-width:770px) {
		margin-left: 20px;
	}
}
#dlaczego__text>ul>li{
	padding-top: 10px;
}
.img__round_2{
	border-radius: 0 60px 0 60px;
	
}
.img__round_2:nth-child(1){
	padding-bottom: 20px;
}
.img__round_2:nth-child(2){
	padding-top: 20px;
}
.img__round_1{
	border-radius: 0 60px 0 60px;

}
.img__size_1{
	height: 480px;
	width: 480px;
	aspect-ratio: auto 480 / 480;
	border-radius: 0 60px 0 60px;
}
.img__size_2{
	height: 220px;
	width: 100%;
	aspect-ratio: auto 220 / 480;
	border-radius: 0 60px 0 60px;
}
.opinia>p{
	text-align: center;
	line-height: 1.3;
}
.opinia__user{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.user__data{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	background-color: var(--add-black);
	border-radius: 32.5px;
}
.user__data>img{
	height: 65px;
	width: 65px;
	border-radius: 50%;
}
.user__data>p{
	padding-right: 20px;
	font-size: 24px;
}
.opinia__buttons{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.opinia__button{
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin: 20px 10px;
	margin-top: 40px;
	background-color: var(--main-900);
	border: 1px solid var(--main-100);
	cursor: pointer;

}
.opinia__button_clicked{
	border-radius: 50%;
	background-color: var(--main-100) !important;
	border: 1px solid var(--main-100);
	cursor: pointer;
}
#opinia2{
	display: none;
}
#opinia3{
	display: none;
}
.opinia__container{
	width: 100%;
	height: max-content;
}

.breadcrumbs:has(>.is__row){
	margin-bottom: 0px !important;
}
#boxes__trusted>div>div>div>div{
	border: var(--main-700) 1px solid;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 70px;
	padding-right: 70px;
	border-radius: 0 40px 0 40px;
}
#boxes__trusted>div>div>div>div:nth-child(2){
	border: none;
	display: flex;
	align-items: center;
	@media (max-width: 768px) {
		& {
			order: -1;
		}
	}
}

#boxes__trusted>div>div>.section__columns--6{
	grid-template-columns: repeat(3, minmax(0, 1fr));


	@media (max-width: 768px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}
#box__products>div>div>.section__columns--5{
	grid-template-columns: repeat(4, minmax(0, 1fr));

	@media (max-width: 1450px) {
		& {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}
	@media (max-width: 750px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}
#box__products>div>div>.section__columns--4{
	grid-template-columns: repeat(4, minmax(0, 1fr));

	@media (max-width: 1450px) {
		& {
			grid-template-columns: repeat(2, minmax(0, 1fr));
		}
	}
	@media (max-width: 750px) {
		& {
			grid-template-columns: repeat(1, minmax(0, 1fr));
		}
	}
}
#box__products>div>div>div>div{
	width: 400px;
	padding: 20px;
}
#box__products>div>div>div>div>div>header{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px var(--main-700) solid;
	font-weight: 900 !important;
}
#box__products>div>div>div>div>div>div>p#text{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px var(--main-700) solid;
	
}
#box__products>div>div>div>div>div>div>ul>li{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px var(--main-700) solid;
	list-style: none;
	padding-left: 0;
}
#box__products>div>div>div>div>div>div>ul>li:last-child{
	border-bottom: none !important;
}
#box__products>div>div>div>div>div>div>ul{
	padding-left: 0;
}
#box__products>div>div>div>div>div>header>h2{	
	font-weight: 900 !important;
}

.footer__socials {
	display: flex;
	gap: 16px;
}