/* VARIABLES */

:root {
  --primary-color: #009EE3; 
  --secondary-color: #006896;
  --light-color: #ffffff;
  --dark-color: #001118;

  --text-color: #151515;
  --bg-color: #ffffff;
}

/* RESET AND NORMALIZE */

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* LAYOUT */

.d-flex {
	display: flex;
}

@media all and (max-width: 768px) {
	.d-flex-mc {
		flex-direction: column;
	}
}

.flex-column {
	flex-direction: column;
}

.justify-content-between {
	justify-content: space-between;
}

.align-items-center {
	align-items: center;
}

.flex-grow-1 {
	flex-grow: 1!important;
}

.gap-40 {
	gap: 40px;
}

.mb-32 {
	margin-bottom: 32px;
}

@media all and (min-width: 769px) {
	.d-gap-60 {
		gap: 60px;
	}
	
	.mkz-row.d-gap-0 {
		gap: 0;
	}
}

@media all and (max-width: 768px) {
	.mkz-row.m-gap-32 {
		gap: 32px;
	}
	
	.row.m-gap-0 {
		gap: 0;
	}
	
	.row.m-nowrap {
		flex-wrap: nowrap;
	}
}

/* GLOBAL CLASSES */

.v2-primary-button {
	display: inline-block;
	color: #FFFFFF;
	background-color: var(--primary-color);
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	padding: 12px 32px;
	transition: all 0.3s ease-in-out;
	border: 0;
}

.v2-primary-button:hover {
	background-color: var(--secondary-color);
}

.v2-secondary-button {
	display: inline-block;
	color: var(--primary-color);
	background-color: transparent;
	border: 1px solid var(--primary-color);
	border-radius: 50px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	padding: 12px 32px;
	transition: all 0.3s ease-in-out;
}

@media all and (max-width: 768px) {
	.v2-primary-button, .v2-secondary-button {
		text-align: center;
		width: 100%;	
	}
}

/* TYPOGRAPHY */

.mkz-section-title-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 48px;
}

.mkz-section-subtitle {
	text-transform: uppercase;
}

.mkz-section-title {
	
}

.page-header h1 {
	margin-bottom: 16px;
}

.mkz-section-caption {
	font-size: 16px;
	color: #222;
	line-height: 1.5;
	max-width: 700px;
}

.text {
	
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	font-size: 14px;
	overflow-x: hidden;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, Inter, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	margin: 0;
	overflow-x: hidden;
	color: #222;
	background: var(--bg-color);
}

.mkz-bg-dark {
	background: var(--dark-color);
}

.mkz-bg-dark > * {
	color: var(--light-color);
}

.mkz-bg-dark .mkz-section-subtitle {
	color: #A8A8A8;
}

.mkz-bg-light {
	background: var(--light-color);
}

.mkz-bg-light > * {
	color: var(--dark-color);
}

.mkz-bg-light .mkz-section-subtitle {
	color: #888888;
}

body.page-template-page-sugar {
	background-color: #f5efef;
}

h1 {
	font-family: "NeutralFace";
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

h2, h2 b {
	font-family: "NeutralFace";
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

h3 {
	font-family: "NeutralFace";
	font-weight: 400;
	line-height: 1.1;
	text-transform: uppercase;
}

h4 {
	font-family: "NeutralFace";
	font-weight: 400;
	line-height: 1.1;
}

h5 {
	font-family: "NeutralFace";
	font-weight: 400;
	line-height: 1.1;
}

h6 {
	font-family: "NeutralFace";
	font-weight: 400;
	line-height: 1.1;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

header a {
	color: #000;
}

header .header-top {
	padding: 8px 0; border-bottom: 1px solid #eee; display: flex; justify-content: flex-end; gap: 32px;
}

header .header-top a {
	color: var(--primary-color);
	font-weight: 600;
}

header .header-top i {
	color: var(--primary-color);
	font-size: 16px;
}

p, span {
	line-height: 1.5;
}

p {
	margin-bottom: 16px;
}

img {
	position: relative;
	z-index: 3;
}

.container {
	width: 100%;
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 12px;
}

.container-sm {
	width: 100%;
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 30px;
}

.container-xl {
	width: 100%;
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 30px;
}

.page-template-page-sugar .container {
	max-width: 62.5rem;
}

.inline-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

ul li,
ol li {
	margin-bottom: 15px;
	line-height: 1.6;
	list-style-position: inside;
}

.flex-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.mkz-row.flex-3x {
	flex-wrap: wrap;
	gap: 40px;
}

.mkz-row.flex-3x .mkz-col {
flex: auto;
width: calc((100% - 80px) / 3);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.col-lg-3 {
	flex: /* 0 0 auto */;
	width: 25%;
}

.sugar-section__title {
	font-size: 3.125rem;
}
	
	.mkz-row.flex-3x .mkz-col {
		width: 100%;
	}
	
	.col-lg-3 {
		width: 100%;
		text-align: center;
	}
	
	.pbmit-footer-boxes-1 {
		justify-content: center!important;
	}
}

/***************/

/* HERO START */

.mkz-subtitle-links {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.mkz-subtitle-links a {
	font-size: 24px;
	line-height: 1.5;
	font-weight: 400;
	background: linear-gradient(#000, #000) no-repeat 0 100% / 0 1px;
transition: background-size .3s cubic-bezier(0.4,0.58,0.56,1);
}

.mkz-subtitle-links a:hover {
	background-size: 100% 1px;
}

.v2-hero-stars {
	display: flex;
	gap: 12px;
}

.v2-stars-rating .fas {
	color: var(--primary-color);
	font-size: 16px;
}

.hero-btn {
	color: #fff!important;
	margin-top: 12px;
}

.hero-content .mkz-subtitle {
	max-width: 600px;
}

@media all and (max-width: 768px) {
	.mkz-subtitle-links a {
		font-size: 20px;
	}
	
	.hero-btn {
		min-width: 200px;
		justify-content: center;
	}
	
	.v2-hero-stars {
		flex-direction: column;
	}
}

/* HERO END */


/* Header START */

.pre-header {
	height: 55px;
	line-height: 55px;
}

.pre-header li {
	margin-bottom: 0;
}

.v2-header {
	font-size: 14px;
}

.v2-header-top {
	border-bottom: 1px solid #eee;
}

.v2-header-main {
	background: var(--bg-color);
	border-bottom: 1px solid #eee;
}

.v2-header-main-right {
	gap: 32px;
}

.v2-header ul.navigation > li > a {
	height: auto;
	line-height: 1;
}

header i {
	color: var(--secondary-color);
	font-size: 20px;
}

.main-menu .navigation > li.dropdown:hover > ul, .main-menu .navigation > li > ul > li.dropdown:hover > ul {
-webkit-transform: translateY(30px);
-ms-transform: translateY(30px);
transform: translateY(30px)!important;
}

.site-header .site-branding img {
	width: auto;
}

.main-menu .navigation > li > ul a {
	text-transform: none;
}

.site-navigations ul.navigation > li > a {
	font-weight: 400;
}

#primary-menu {
	list-style-type: none;
	display: flex;
	gap: 48px;
}

.sub-menu, #primary-menu li, #primary-menu ul {
	list-style-type: none;
}

#primary-menu li {
	position: relative;
	margin-bottom: 0;
}

#primary-menu li a {
	display: block;
	padding: 20px 0;
	text-transform: uppercase;
}

#primary-menu li a:hover {
	color: var(--primary-color);
}

#primary-menu li:hover > ul, #primary-menu ul li.focus > ul {
left: auto;
}

#primary-menu ul {
display: block;
line-height: 2em;
padding: 20px 0;
background-color: #222;
float: left;
position: absolute;
top: calc(100% - 0.5rem);
left: -999em;
z-index: 99999;
}

#primary-menu ul li {
	padding: 0 20px;
}

#primary-menu ul li a {
	padding: 6px 20px;
	display: block;
	width: 200px;
	color: #fff;
	font-size: 12px;
}

.site-header .site-branding img {
display: inline-block;
max-width: 100%;
height: auto;
max-height: 60px;
z-index: 1;
position: relative;
}

.v2-header-main-right {
display: flex!important;
flex-basis: auto;
flex-grow: 1;
align-items: center;
}

@media all and (max-width: 768px) {
	.site-header .site-branding img {
		max-height: 40px;
	}
}

@media (min-width: 1140px) {
	.navbar-toggler {
		display: none;
	}
}

/* HEADER END */

/* Sekcje HOMEPAGE START */

.virtuvianae {
	display: none;
}

@media all and (min-width: 768px) {
.virtuvianae {
	display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    opacity: 0.4;
    z-index: 2;
    transform: translate(-50%, -50%);
}
}



.mkz-sekcja-super-cta {
	background: var(--dark-color);
}

.mkz-sekcja-jak-pracujemy {
	background: var(--secondary-color);
}

.mkz-sekcja-super-cta .mkz-row {
	align-items: center;
}

.mkz-sekcja-blog .mkz-section-title-wrapper {
	align-items: center;
}

.mkz-sekcja-blog .mkz-section-title-wrapper h2, .mkz-sekcja-blog .mkz-section-title-wrapper span {
	text-align: center;
}

.mkz-sekcja-super-cta h2, .mkz-sekcja-super-cta span {
	color: #fff;
}

.mkz-sekcja-jak-pracujemy h2, .mkz-sekcja-jak-pracujemy span {
	color: #fff;
}

.section-inner h3.pbmit-post-title {
	margin-top: 0;
}

section:not(.hero) {
		width: 100%;
		padding: 0;
		margin: 0;
	}
	
	.section-inner {
		padding: 100px 12px;
		width: 100%;
		max-width: 1400px;
		margin: 0 auto;
	}

.mkz-sekcja-liczby .section-inner {
	padding-top: 0;
}

	.mkz-2-col-layout {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 80px;
	}
	
	.mkz-row {
		display: flex;
		gap: 80px;
	}
	
	.mkz-row.gap-40 {
		gap: 40px;
	}
	
	.mkz-col {
		flex: 1;
		display: flex;
		flex-direction: column;
	}
	
	.mkz-col.content-in-col {
		display: flex;
		flex-direction: column;
		gap: 24px;
		align-items: flex-start;
	}

@media all and (max-width: 768px) {
	
	.container, section:not(.hero) {
		padding: 0 20px; 
	}
	
	.mkz-2-col-layout {
		flex-direction: column;
		gap: 40px;
	}
	
	.mkz-row {
		flex-direction: column;
		gap: 40px;
	}
	
	.mkz-sekcja-super-cta .mkz-row {
		flex-direction: column-reverse;
	}
	
	.section-inner {
		padding: 40px 20px;
	}
	
	.mkz-section-title-wrapper {
		margin-bottom: 40px;
	}
	
	.mkz-sekcja-blog .mkz-section-title-wrapper h2, .mkz-sekcja-blog .mkz-section-title-wrapper span {
		text-align: left;
	}
}
	
	.mkz-sekcja-liczby .mkz-col {
		gap: 8px;
	}
	
	hr {
		color: #A8A8A8;
		background: #A8A8A8;
		border: 0;
		width: 100%;
		max-width: 240px;
		height: 1px;
		display: block;
	}
	
	.mkz-liczby-title {
		font-size: 48px;
		color: #fff;
	}
	
	.mkz-liczby-subtitle {
		font-size: 16px;
		color: #A8A8A8;
	}
	
	.mkz-uslugi-slider .splide {
		display: flex;
	}
	
	.mkz-uslugi-slider .splide .splide__track {
		width: 80%;
	}
	
	.mkz-uslugi-slider .splide .splide__arrows {
		width: 20%;
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
		gap: 20px;
	}

.mkz-uslugi .mkz-section-title-wrapper, .mkz-metamorfozy .mkz-section-title-wrapper, .mkz-sekcja-blog .mkz-section-title-wrapper {
	gap: 0;
}

@media all and (max-width: 768px) {
.mkz-metamorfozy .section-inner {
	padding-top: 0;
}
	
	.mkz-metamorfozy .mkz-section-title {
		margin-top: 0;
	}
	
}

.lekarze-przyciski {
	display: flex;
gap: 12px;
flex-wrap: wrap;
}

.mkz-usluga-item {
	gap: 80px;
	align-items: center;
}

.mkz-usluga-item .col {
	flex: 1;
	text-align: left;
}

.mkz-usluga-item img {
	width: 100%;
}

.mkz-usluga-item .mkz-usluga-title {
	margin-top: 0;
}

.mkz-usluga-item .mkz-usluga-caption {
	margin-bottom: 32px;
	display: block;
}
	
	.mkz-usluga-slide, .mkz-usluga-item {
		position: relative;
		text-align: center;
	}
	
	.mkz-usluga-slide-title, .mkz-usluga-title {
		
	}
	
	.splide__arrow {
		width: 80px;
		height: 80px;
	}
	
	.splide__arrow img {
		width: 50px;
	}
	
	.hl-content-wrapper {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
	
	.hl-content-wrapper h3 {
		text-align: center;
		width: 100%;
		margin-top: 40px;
		display: block;
	}
	
	.hl-col {
		display: flex;
		flex-direction: column;
		gap: 16px;
		text-align: center;
		align-items: center;
	}
	
	.hl-content-wrapper .v2-hl-column-name {
		font-size: 20px;
		font-weight: 700;
	}

@media all and (max-width: 768px) {
	
	.mkz-usluga-item {
		gap: 32px;
	}
	
	.mkz-usluga-title {
		color: var(--dark-color);
	}
	
	.mkz-usluga-sidebar {
		display: none;
	}
}
	

/* Sekcje HOMEPAGE END */

/* PODSTRONA NA ACF FLEX START */

.page-header:not(.contact) .section-inner {
	padding-bottom: 16px;
}

section.acf-flex-text, section.acf-flex-1-image, section.acf-flex-2-images {
	margin: 48px 0;
}

.acf-flex-1-image .section-inner {
		padding: 0;
	}

.acf-flex-1-image img, .acf-flex-2-images img {
		width: 100%;
		height: auto;
		margin-top: 0;
		margin-bottom: 0;
		aspect-ratio: 3/2;
	object-fit: cover;
}

.acf-flex-2-images .section-inner {
		display: flex;
		gap: 40px;
		padding: 0;
	}
	
	.mkz-two-images-single {
		flex: 1;
	}

.acf-flex-text {
	padding: 0;
}
	
	.acf-flex-text h2, .text-images.container h2, .acf-flex-text h3, .text-images.container h3, .section-inner h2, .section-inner h3 {
		margin-bottom: 16px;
		margin-top: 32px;
	}

.section-inner .mkz-2-col-layout h2, .layout .section-inner h2, .members__item h2 {
	margin-top: 0;
}

	.text-images.container h2:first-child {
	margin-top: 0;
	}

	.acf-flex-text p, .text-images.container p {
		margin-bottom: 16px;
		line-height: 1.5;
	}
	
	.acf-flex-text ul, .text-images.container ul {
		margin-bottom: 16px;
	}
	
	.acf-flex-text li, .text-images.container li {
		list-style-position: inside;
		margin-bottom: 8px;
	}

.text-images.container {
	margin: 64px auto;
}

@media all and (max-width: 768px) {
	.acf-flex-text {
		padding: 0 20px;
	}
}

/* PODSTRONA NA ACF FLEX END */

/* CONTACT FORM START */

.v2-contact-form {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.form-control {
background-color: #fff;
color: #222;
height: 50px;
line-height: 50px;
padding: 20px 10px 20px 20px;
margin-bottom: 30px;
width: 100%;
}

.v2-contact-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
}

.v2-contact-form p {
	margin-bottom: 24px;
}

.v2-contact-form textarea.form-control {
	line-height: 1;
}

.v2-contact-form .form-control {
	font-size: 14px;
	border-radius: 8px;
	border: 1px solid #ddd;
}

.v2-kontakt-3ikony .v2-kontener {
	display: flex;
	justify-content: space-between;
	gap: 48px;
	padding: 100px 64px;
}

.v2-kontakt-icon-box {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.v2-kontakt-icon {
font-size: 40px;
line-height: 40px;
position: relative;
color: var(--color-primary);
}

.v2-kontakt-icon-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.v2-kontakt-icon-box a {
	text-decoration: underline;
}

.v2-black-button {
display: block;
padding: 16px 32px;
width: 100%;
background: var(--primary-color);
color: #fff;
border: none;
border-radius: 50px;
	font-size: 16px;
	text-transform: uppercase;
}

.v2-contact-form .col-md-12:has(span[data-name="acceptance-137"]) {
	margin-bottom: 24px;
}

.wpcf7-list-item-label {
	font-size: 12px;
}

.v2-kontakt-icon-box i {
	font-size: 32px;
	color: var(--primary-color);
}

@media all and (max-width: 768px) {
	.v2-kontakt-3ikony .v2-kontener {
		padding: 40px 20px;
	}
	
	.wpcf7-form-control {
		width: 100%;
	}
	
	.v2-kontakt-3ikony .v2-kontener {
		flex-direction: column;
	}
	
	.v2-contact-form p {
		margin-bottom: 0;
	}
}

/* CONTACT FORM END */

/* INNE */

li:not(.pricelist-nav__item--active) a.pricelist-nav__link {
	color: #000;
}

/* G-Translate */

.gtranslate_wrapper a.glink {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-bottom: 12px;
}
                
.gt_container--rvaygv a.glink span {
    margin-right: 5px;
    font-size: 15px;
    vertical-align: middle;
}
                
a.glink img {
    vertical-align: middle;
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: 0.8;
	width: 24px;
}
                
.gtranslate_wrapper:first-child {
    margin-top: 12px;
}
	
	@media all and (max-width: 768px) {
		.main-menu .navbar-collapse {
			display: none;
		}
	}

/***************************************************************/

@charset "UTF-8";
@font-face {
	font-family: 'ElegantIcons';
	src: url("fonts/ElegantIcons.eot");
	src: url("fonts/ElegantIcons.eot?#iefix") format("embedded-opentype"), url("fonts/ElegantIcons.woff") format("woff"), url("fonts/ElegantIcons.ttf") format("truetype"), url("fonts/ElegantIcons.svg#ElegantIcons") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
    font-family: "NeutralFace";
    src: url("../fonts/NeutralFace.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NeutralFace";
    src: url("../fonts/NeutralFace-Bold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}


/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'ElegantIcons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}



/* SPLIDE SLIDER START */

.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}

.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	-ms-flex-align: center;
	align-items: center;
	background: transparent;
	border: 1px solid #222;
	border-radius: 50%;
	cursor: pointer;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: .7;
	padding: 0;
	width: 80px;
	height: 80px;
	z-index: 1;
}

.splide__arrow svg {
	fill: #222;
	height: 1.2em;
	width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
	opacity: .9;
}

.splide__arrow:disabled {
	opacity: .3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: 1em;
}

.splide__arrow--prev svg {
	transform: scaleX(-1);
}

.splide__arrow--next {
	right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	bottom: .5em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: .7;
	padding: 0;
	position: relative;
	transition: transform .2s linear;
	width: 8px;
}

.splide__pagination__page.is-active {
	background: #fff;
	transform: scale(1.4);
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: .9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	background: #ccc;
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
}

@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

@media screen and (-ms-high-contrast: none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}
	.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
		border-color: #0bf;
	}
}

.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: .5em;
	top: 0;
}

/*** SPLIDE SLIDER END ***/


/*** MOBILE ***/

@media all and (max-width: 768px) {
	.v2-header-top, .pbmit-header-button {
		display: none;
	}
	
	.v2-header-main .pbmit-header-button, nav.main-menu {
		display: none;
		position: absolute;
		left: 0;
		top: 100%;
		background-color: var(--secondary-color);
		padding: 15px 30px;
		z-index: 4;
		width: 100%;
	}
	
	.rel {
		position: relative;
	}
	
	nav.main-menu.toggled {
		display: block;
	}
	
	#dropdown-language {
		display: none;
	}
	
	#primary-menu {
		flex-direction: column;
		gap: 0;
	}
	
	#primary-menu li a {
		color: #fff;
		text-align: left;
		padding: 20px 0;
	}
	
	#primary-menu ul {
		position: initial;
		background: transparent;
		padding: 0;
	}
	
	#primary-menu ul li {
		/* margin-bottom: 10px; */
	}
	
	#primary-menu ul li a {
		padding: 20px 20px;
	}
	
	.pbmit-menu-wrap {
		width: 100%;
	}
	
	.menu-toggle, .menu-toggle:hover, .menu-toggle [aria-expanded="true"] {
		background: transparent!important;
		border: none!important;
	}

}

/*** MOBILE END ***/


/***** TYPOGRAPHY RESPONSIVE *****/

@media (max-width: 1024px) {
	.sugar-section__title {
		font-size: 2.25rem;
	}
}

h1 {
	font-family: 'NeutralFace', Helvetica, Arial, Lucida, sans-serif;
	margin-top: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

h2 {
	font-family: 'NeutralFace', Helvetica, Arial, Lucida, sans-serif;
	margin-top: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

h3 {
	font-family: 'NeutralFace', Helvetica, Arial, Lucida, sans-serif;
	margin-top: 0;
	line-height: 1.2;
	text-transform: uppercase;animation-direction
}

h4 {
	font-family: 'NeutralFace', Helvetica, Arial, Lucida, sans-serif;
	margin-top: 0;
	line-height: 1.2;
}

h5 {
	font-family: 'NeutralFace', Helvetica, Arial, Lucida, sans-serif;
	margin-top: 0;
	line-height: 1.5em;
}

h6 {
	font-family: 'NeutralFace', Helvetica, Arial, Lucida, sans-serif;
	margin-top: 0;
	line-height: 1.5em;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 12px;
}

@media (max-width: 1024px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 25px;
	}
	h3 {
		font-size: 18px;
	}
	h4 {
		font-size: 14px;
	}
	h5 {
		font-size: 12px;
	}
	h6 {
		font-size: 11px;
	}
}

@media (max-width: 568px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 16px;
	}
	h5 {
		font-size: 14px;
	}
	h6 {
		font-size: 12px;
	}
}

.font-xl {
	font-size: 18px;
	line-height: 1.2em;
	font-weight: 700;
}

@media (max-width: 1024px) {
	.font-xl {
		font-size: 16px;
	}
}

.btn {
	color: #FFFFFF;
	background-color: var(--primary-color);
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	padding: 16px 48px;
	transition: all 0.3s ease-in-out;
	display: inline-flex;
	align-items: center;
	border: 0;
}

@media (max-width: 1024px) {
	.btn {
		font-size: 14px;
		padding: 15px 30px;
	}
}

.btn:hover, .btn:focus {
	background-color: var(--secondary-color);
}

.btn--secondary {
	font-size: 15px;
	font-weight: 500;
	padding: 15px 20px 15px 30px;
}

@media (max-width: 1024px) {
	.btn--secondary {
		font-size: 14px;
		padding: 12px 15px 12px 25px;
	}
}

.btn__icon {
	width: 25px;
	height: 25px;
	margin-left: 15px;
}

.btn--small {
	font-size: 13px;
	padding: 13px 25px;
}

.logo__image {
	width: auto;
	height: 75px;
	object-fit: contain;
	object-position: left center;
}

@media (min-width: 769px) {
	.onlymobile {
		display: none;
	}
	
	.onlydesktop {
		display: block;
	}
}

@media (max-width: 768px) {
	
	.btn {
		width: 100%;
	}
	
	.logo__image {
		height: 40px;
	}
	
	.onlymobile {
		display: block;
	}
	
	.onlydesktop {
		display: none;
	}
}

@media (max-width: 568px) {
	.logo__image {
		height: 35px;
	}
}

@media (max-width: 768px) {
	.site-header {
		justify-content: space-between;
		flex-wrap: wrap;
		height: auto;
	}
}

@media (max-width: 1000px) {
	.header-column {
		display: none;
	}
}

.main-navigation {
	display: block;
	width: 100%;
	font-weight: 300;
	font-size: 0.875rem;
}

@media (max-width: 768px) {
	.main-navigation {
		left: 0;
		top: 100%;
		background-color: #000;
		padding: 15px 30px;
		position: absolute;
		display: none;
	}
	.main-navigation.toggled {
		display: block;
	}
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
	position: relative;
}

.main-navigation ul::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100vw + 10px);
	height: 100%;
	background-color: #000;
	z-index: -1;
	display: none;
}

@media (max-width: 768px) {
	.main-navigation ul::before {
		display: block;
	}
}

.main-navigation a {
	color: #ffffff;
}

.main-navigation ul ul {
	background-color: #000000;
	float: left;
	position: absolute;
	top: calc(100% - 0.5rem);
	left: -999em;
	z-index: 99999;
}

@media (max-width: 768px) {
	.main-navigation ul ul {
		position: initial;
		float: none;
		padding-left: 20px;
	}
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
	padding: 0 12px;
}

@media (max-width: 768px) {
	.main-navigation li {
		padding: 0;
	}
}

.main-navigation a {
	display: block;
	text-decoration: none;
	padding: 31px 0;
	transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
	.main-navigation a {
		padding: 15px 0;
	}
}

.main-navigation a:hover, .main-navigation a:focus {
	opacity: 0.7;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

.menu-toggle {
	background-color: #000;
	border: 2px solid #fff;
	color: #fff;
	font-family: "Montserrat";
	padding: 5px 10px;
}

.menu-toggle:hover,
.menu-toggle [aria-expanded="true"] {
	color: #000;
	background-color: #fff;
}

@media screen and (min-width: 768px) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: flex;
	}
	.main-navigation li {
		margin-bottom: 0;
	}
	.main-navigation ul ul {
		display: block;
		line-height: 2em;
	}
	.main-navigation ul ul a {
		padding: 6px 20px;
	}
	.main-navigation ul ul li {
		padding: 0 20px;
	}
	.main-navigation .sub-menu {
		padding: 20px 0;
		border-top: 3px solid #ffffff;
	}
}

.hero {
	position: relative;
	min-height: calc(100vh - 86px);
	background-color: var(--light-color);
	color: #fff;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.hero-image-wrapper, .hero-image {
	width: 100%;
}

.hero a {
	color: inherit;
}

.hero::after, .hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* .hero::after {
	content: '';
	z-index: 1;
	background: black;
	background: linear-gradient(270deg, black 0%, rgba(0, 0, 0, 0.477836) 50%, rgba(255, 255, 255, 0) 100%);
} */

@media (max-width: 768px) {
	.hero::after {
		display: none;
	}
	
	.hero-image-wrapper img {
		height: 200px;
		object-fit: cover;
	}
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}

@media (max-width: 768px) {
	.hero-background {
		object-position: center;
	}
}

.hero-container {
	position: relative;
	z-index: 2;
	padding-top: 80px;
	padding-bottom: 80px;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 69%;
	gap: 32px;
	color: #000;
}

@media (max-width: 768px) {
	.hero-content {
		width: 100%;
		align-items: flex-start;
		text-align: left;
	}
	
		.hero-container {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.hero-content__title {
	margin: 0;
}

.hero-content__subtitle {
	font-size: 25px;
	font-weight: 300;
	margin: 10px 0 0;
}

@media (max-width: 1024px) {
	.hero-content__subtitle {
		font-size: 18px;
	}
}

.hero-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 40px;
}

@media (max-width: 1024px) {
	.hero-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

.hero-row__btn {
	margin-right: 50px;
}

@media (max-width: 1024px) {
	.hero-row__btn {
		margin-right: 0;
		margin-bottom: 20px;
	}
}

.hero-row__phone {
	color: inherit;
}

.hero-row__phone-number {
	text-decoration: underline;
}

.hero-social {
	margin-top: 60px;
}

.hero-social__list {
	margin: 0 !important;
	justify-content: center;
}

.hero-social__list .social-item {
	transition: transform 0.3s ease;
}

.hero-social__list .social-item:hover, .hero-social__list .social-item:focus {
	transform: translateY(-5px);
}

.hero-scroll {
	display: flex;
	justify-content: center;
	margin-top: 60px;
	transition: transform 0.3s ease;
}

.hero-scroll:hover, .hero-scroll:focus {
	transform: translateY(10px);
}

.footer {
	background-color: var(--dark-color);
	color: #fff;
	padding: 48px 12px;
}

.footer.site-footer {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer--widgetonly {
	padding: 0;
}

.footer-widget-block {
	padding: 50px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media (max-width: 768px) {
	.footer-widget-block {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	
	.pbmit-footer-copyright-text-area, .pbmit-footer-copyright-text-area div:nth-child(2) {
		flex-direction: column;
		margin: 32px 0;
	}
	
	.pbmit-footer-copyright-text-area {
		margin-top: 80px;
	}
	
	.footer iframe {
		margin: 48px 0;
	}
}

.footer-widget-block__title {
	font-size: 20px;
	margin-bottom: 40px;
}

.footer-widget-block a {
	color: #fff;
}

.footer-widget-block a:hover, .footer-widget-block a:focus {
	text-decoration: underline;
}

.footer-widget-details {
	flex: 0 0 25%;
}

@media (max-width: 1024px) {
	.footer-widget-details {
		flex-basis: 49%;
	}
}

@media (max-width: 568px) {
	.footer-widget-details {
		margin-bottom: 30px;
	}
}

.footer-widget-details__list {
	list-style: none;
	padding-left: 0;
	font-size: 1rem;
	font-weight: 400;
}

.footer-widget-details__item, .footer-widget-details__link {
	display: flex;
	align-items: center;
}

.footer-widget-details__item {
	margin-bottom: 24px;
}

.footer-widget-details__item:last-child {
	margin-bottom: 0;
}

.footer-widget-details__icon {
	width: 30px;
	margin-right: 15px;
}

.footer-widget-form {
	flex: 0 0 20%;
}

@media (max-width: 1024px) {
	.footer-widget-form {
		flex-basis: 49%;
	}
}

@media (max-width: 568px) {
	.footer-widget-form {
		margin-bottom: 30px;
	}
}

.footer-widget-days {
	flex: 0 0 36%;
}

@media (max-width: 1024px) {
	.footer-widget-days {
		flex: 0 0 100%;
	}
}

.footer-widget-days__list {
	list-style: none;
	padding-left: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
	grid-gap: 1rem 2rem;
	line-height: 1.4em;
}

.footer-widget-days__item {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.footer-widget-days__item-day {
	font-weight: bold;
	margin-bottom: 5px;
}

.footer-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.footer-top__description, .footer-top__logo {
	flex: 0 0 46%;
}

@media (max-width: 768px) {
	.footer-top {
		flex-direction: column;
	}
	.footer-top__description, .footer-top__logo {
		flex: 0 0 100%;
	}
}

.footer-middle {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.footer-middle {
		grid-template-columns: 1fr;
	}
}

.footer-middle__motto {
	font-size: 24px;
	font-weight: bold;
	margin: 0;
}

@media (max-width: 1024px) {
	.footer-middle__motto {
		font-size: 18px;
	}
}

.footer-social {
	justify-content: flex-start;
	margin: 0 0 20px 0 !important;
}

.footer-social .social-item {
	margin-right: 1rem;
}

.footer-social .social-item__link {
	width: auto;
	height: auto;
	background: transparent;
}

.footer-social .social-item__link:last-child {
	margin-right: 0;
}

.footer-contact__phone-link {
	font-weight: bold;
	color: #fff;
	display: flex;
	align-items: center;
}

.footer-contact__phone-link:hover {
	text-decoration: underline;
}

.footer-contact__phone-icon {
	filter: brightness(0) invert(1);
	height: 30px;
	margin-right: 14px;
}

.footer-hours__title {
	font-size: 20px;
}

.footer-hours__list {
	padding: 0;
	list-style-type: none;
}

.footer-bottom {
	font-size: 14px;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 568px) {
	.footer-bottom {
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
	}
}

.footer-goTop {
	padding: 10px 15px;
	border: 2px solid #fff;
	background-color: #fff;
	color: #191b1d;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	display: inline-flex;
}

.footer-goTop .fs1 {
	font-size: 25px;
}

.footer-goTop:hover, .footer-goTop:focus {
	color: #fff;
	background-color: transparent;
}

.social {
	margin: 0 0 0 6.25rem;
	padding-left: 0;
	list-style-type: none;
	display: flex;
	flex-direction: row;
}

.social-item {
	margin-bottom: 0;
	margin-right: 0.5rem;
}

.social-item:last-child {
	margin-right: 0;
}

.social-item__link {
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #ffffff;
	background-color: var(--color);
}

.heading-underline {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-transform: uppercase;
	color: #000000;
}

.heading-underline::after {
	content: '';
	width: 100px;
	height: 1px;
	background-color: #000000;
	margin-top: 10px;
}

@media (max-width: 991px) {
	.separator-space--desktop {
		display: none;
	}
}

@media (min-width: 992px) {
	.separator-space--mobile {
		display: none;
	}
}

.description-advantages-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.description-advantages-row {
		flex-direction: column;
		align-items: flex-start;
	}
}

.description-advantages-icons, .description-advantages-content {
	flex: 0 0 48%;
}

@media (max-width: 768px) {
	.description-advantages-icons, .description-advantages-content {
		flex-basis: 100%;
	}
}

@media (max-width: 768px) {
	.description-advantages-icons {
		margin-bottom: 20px;
	}
}

.description-advantages-icon {
	display: flex;
	align-items: center;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.description-advantages-icon {
		margin-bottom: 20px;
	}
}

.description-advantages-icon:last-child {
	margin-bottom: 0;
}

.description-advantages-icon__image {
	margin-right: 15px;
}

.services-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
	grid-gap: 40px;
	font-size: 14px;
	line-height: 1.6em;
	font-weight: 500;
	color: #666;
	padding-left: 0;
}

.services-list__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.services-list__icon {
	margin-bottom: 30px;
	height: 64px;
	object-fit: contain;
}

.services-list__title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 0;
	color: #000000;
}

.services-button {
	display: flex;
	justify-content: center;
	margin-top: 75px;
}

.sugar-services-wrapper {
	position: relative;
	z-index: 2;
}

.sugar-services-wrapper__clouds {
	position: absolute;
	left: -6.25rem;
	top: -1.875rem;
	z-index: -1;
	pointer-events: none;
}

.sugar-services-wrapper__clouds--2 {
	top: initial;
	left: initial;
	bottom: 20%;
	right: -10%;
}

.sugar-services-title {
	font-size: 2.25rem;
	text-align: center;
	margin-bottom: 5rem;
}

@media (max-width: 568px) {
	.sugar-services-title {
		margin-bottom: 3.125rem;
	}
}

.sugar-services-list {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 3.75rem 5.625rem;
}

.sugar-services-list__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: center;
}

.sugar-services-list__title {
	font-size: 1.875rem;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
	line-height: 1.3em;
}

.sugar-services-list__content {
	margin: 0;
	padding-bottom: 10px;
}

.sugar-services-list__icon {
	margin: 0 auto;
}

.sugar-services-list__btn {
	justify-content: center;
	margin-top: auto;
}

.metamorphose-header__title {
	margin: 0;
}

.metamorphose-header__content {
	color: #666;
	margin-top: 10px;
}

.metamorphose-list__item {
	display: flex;
	flex-direction: column;
}

.metamorphose-list__image {
	width: 100%;
	object-fit: cover;
	display: block;
}

.metamorphose .splide:not(.is-active) .metamorphose-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
	grid-gap: 40px;
	margin-top: 50px;
}

.metamorphose .splide__arrow {
	position: initial;
	width: auto;
	height: auto;
	background: none;
	border: 0;
	transform: none;
	font-size: 1.4rem;
}

.metamorphose .splide__arrow:hover, .metamorphose .splide__arrow:focus {
	color: #E09900;
}

.metamorphose .splide__arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 40px auto 0;
	max-width: 500px;
	width: 100%;
}

.team {
	background-color: #000000;
	color: #ffffff;
	padding: 85px 0;
}

@media (max-width: 768px) {
	.team {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.team__title {
	text-align: center;
	margin-bottom: 50px;
	margin-top: 0;
}

.team .splide {
	max-width: 1920px;
	margin: 0 auto;
}

.team-member__name {
	margin-top: 0;
	margin-bottom: 10px;
}

.team-member__content {
	font-size: 14px;
	padding: 1rem 1.5rem;
	border: 2px solid #303030;
}

.team-member__description {
	text-transform: uppercase;
	line-height: 1.6em;
}

.team img {
	width: 100%;
}

.team .splide__arrow {
	position: initial;
	width: auto;
	height: auto;
	background: none;
	border: 0;
	transform: none;
	color: #fff;
	font-size: 30px;
}

.team .splide__arrow:hover, .team .splide__arrow:focus {
	color: #E09900;
}

.team .splide__arrow--prev {
	margin-right: 10px;
}

.team .splide__arrows {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	margin-bottom: 20px;
}

.splide-inline-arrows .splide__arrow {
	position: initial;
	width: auto;
	height: auto;
	background: none;
	border: 0;
	transform: none;
	font-size: 1.4rem;
}

.splide-inline-arrows .splide__arrow:hover, .splide-inline-arrows .splide__arrow:focus {
	color: #e09900;
}

.splide-inline-arrows .splide__arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 40px auto 0;
	max-width: 400px;
	width: 100%;
}

.text-images {
	font-size: 16px;
}

.text-images--left .text-images-row {
	flex-direction: row-reverse;
}

@media (max-width: 768px) {
	.text-images--left .text-images-row {
		flex-direction: column;
	}
}

.text-images-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.text-images-row {
		flex-direction: column;
	}
}

.text-images-column {
	flex: 0 0 48%;
}

@media (max-width: 768px) {
	.text-images-column {
		flex-basis: 100%;
	}
}

@media (max-width: 768px) {
	.text-images-column--image {
		margin-top: 30px;
	}
}

.text-images-btn {
	margin-top: 10px;
}

.text-images-image {
	margin-bottom: 20px;
}

.text-images-image:last-child {
	margin-bottom: 0;
}

.text-images-image img {
	width: 100%;
	box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
}

.gallery__image {
	width: 100%;
	object-fit: cover;
}

.gallery-grid-list {
	padding-left: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	grid-template-rows: repeat(auto-fill, minmax(350px, 1fr));
	grid-gap: 2rem;
}

.gallery-grid-single__thumbnail {
	height: 200px;
	width: 100%;
	object-fit: cover;
	border: 0;
}

.background-content {
	position: relative;
	z-index: 2;
	padding: 60px 0 30px;
}

.background-content a {
	color: #ffffff;
}

.background-content p {
	font-size: 1rem;
}

.background-content__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.background-content--dark {
	box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
	padding: 80px 0 60px;
}

.background-content--dark::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: -1;
}

.faq__title {
	margin-bottom: 50px;
}

.faq__description {
	font-size: 16px;
	line-height: 1.6em;
	margin-top: 30px;
	text-align: center;
}

@media (max-width: 768px) {
	.faq__description {
		text-align: left;
	}
}

.faq-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
	padding: 0;
	list-style-type: none;
}

@media (max-width: 768px) {
	.faq-list {
		grid-template-columns: 1fr;
		grid-gap: 10px;
	}
}

.faq-list__button {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	background: transparent;
	border: 0;
	outline: 0;
	cursor: pointer;
	padding: 10px 0 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #dedede;
}

@media (max-width: 1024px) {
	.faq-list__button {
		font-size: 16px;
		margin-bottom: 10px;
		padding-bottom: 10px;
	}
}

.faq-list__button-icon {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: #dcdcdc;
	font-weight: bold;
	font-size: 20px;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
	.faq-list__button-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

.faq-list__content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	font-size: 16px;
	line-height: 1.5;
	color: #000;
}

.faq-list__item.active {
	display: block;
}

.faq-list__item.active .faq-list__content {
	max-height: 1000px;
	transition: all 0.3s ease-in-out;
}

.faq-list__item:hover .faq-list__button-icon, .faq-list__item.active .faq-list__button-icon {
	background-color: #000;
	color: #fff;
	transform: rotate(-45deg);
}

.table {
	border-spacing: 0;
	border-collapse: collapse;
}

.table__cell {
	text-wrap: nowrap;
}

.table td, .table th {
	border: 1px solid #eee;
	padding: 6px 24px;
	font-weight: 300;
}

.content {
	font-size: 16px;
}

.map-contact {
	position: relative;
	z-index: 2;
	padding-top: 55px;
	padding-bottom: 55px;
	color: #fff;
}

.map-contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	z-index: -1;
	background-color: #254420;
}

.map-contact-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.map-contact-row {
		flex-direction: column;
	}
	
	.members.container {
		margin: 72px 0;
	}
}

.map-contact-col {
	flex: 0 0 49%;
}

@media (max-width: 768px) {
	.map-contact-col {
		flex-basis: 100%;
	}
}

.map-contact iframe {
	min-height: 100%;
}

.map-contact a {
	color: #fff;
	text-decoration: underline;
}

.map-contact a:hover, .map-contact a:focus {
	text-decoration: none;
}

.banner {
	height: 468px;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.banner-container {
	position: relative;
	z-index: 2;
	color: #fff;
}

.banner-content {
	text-align: center;
}

.banner-content__title {
	margin-bottom: 30px;
}

.banner-background {
	z-index: 1;
}

.banner-background, .banner-background__image, .banner-background::after {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.banner-background__image {
	object-fit: cover;
	object-position: center;
}

.banner-background::after {
	content: '';
	background: rgba(0, 0, 0, 0.5);
	background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.5) 75%, rgba(255, 255, 255, 0) 100%);
}

.sugar-banner {
	background-color: #f5efef;
	padding-top: 1.5rem;
}

.sugar-banner-triggers {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-end;
}

@media (max-width: 568px) {
	.sugar-banner-triggers {
		flex-direction: column;
		align-items: center;
	}
}

.sugar-banner-single {
	position: relative;
}

.sugar-banner-single__image {
	display: block;
}

.sugar-banner-single__text {
	position: absolute;
	bottom: 10%;
	left: 10%;
	background-color: #9eb18c;
	padding: 1.25rem;
	font-size: 1.125rem;
	text-align: center;
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
	border-radius: 1rem;
	color: #fff;
	font-weight: 500;
	width: 16.875rem;
	display: none;
}

@media (max-width: 568px) {
	.sugar-banner-single__text {
		left: 50%;
		transform: translateX(-50%);
	}
}

.sugar-banner-single__text--center {
	left: 50%;
	transform: translateX(-50%);
	display: none;
}

.side-background-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 110px;
	max-width: 1920px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.side-background-content {
		grid-template-columns: 1fr;
		grid-gap: 50px;
	}
}

.side-background-content--right .side-background-content__background {
	order: 1;
}

@media (max-width: 768px) {
	.side-background-content--right .side-background-content__background {
		order: initial;
	}
}

.side-background-content--right .side-background-content__background::after {
	content: '';
	z-index: -1;
	background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 29%);
}

@media (max-width: 768px) {
	.side-background-content--right .side-background-content__background::after {
		background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 29%);
	}
}

.side-background-content--right .side-background-content__wrapper {
	margin-left: auto;
	margin-right: 0;
}

.side-background-content__container {
	padding: 50px 30px 75px;
}

.side-background-content__wrapper {
	text-align: center;
	max-width: 600px;
	margin-right: auto;
}

.side-background-content__background {
	position: relative;
}

@media (max-width: 768px) {
	.side-background-content__background {
		padding-bottom: 100%;
	}
}

.side-background-content__background::after, .side-background-content__background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.side-background-content__background::after {
	content: '';
	z-index: -1;
	background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 29%);
}

@media (max-width: 768px) {
	.side-background-content__background::after {
		background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 29%);
	}
}

.side-background-content__background-image {
	object-fit: cover;
	z-index: -2;
	object-position: top;
}

.side-background-content-icons {
	text-align: center;
}

.side-background-content-icons h3 {
	font-weight: 500;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	:not(.container) .side-background-content__container {
		/*to dziaĹa tylko na bezpoĹredni elemnt, napisaĹem wiÄc js */
		padding: 20px 0px 25px;
	}
}

.members__title {
	text-align: center;
	margin-bottom: 50px;
}

.members__item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	padding-bottom: 50px;
	margin-bottom: 50px;
	gap: 40px;
}

@media (max-width: 568px) {
	.members__item {
		margin-bottom: 30px;
		padding-bottom: 30px;
		flex-direction: column;
		gap: 0;
	}
}

.members__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.mkz-usluga-content .members__image, .mkz-usluga-content .members__right {
	flex: 1;
}

.mkz-usluga-content .members__image img {
	margin-top: 0;
}

.members__image img {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	width: 100%;
}

.members__content {
	flex: 0 0 100%;
	padding-left: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	line-height: 1.6;
	font-size: 16px;
}

@media (max-width: 568px) {
	.members__content {
		padding-left: 0;
		margin-top: 8px;
	}
}

.members__content-text {
	color: #666;
}

.pricelist {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	margin: 60px auto;
}

@media (max-width: 1024px) {
	.pricelist {
		flex-direction: column;
		align-items: stretch;
	}
}

.pricelist-list {
	flex: 0 0 66%;
}

@media (max-width: 1024px) {
	.pricelist-list {
		margin-top: 30px;
	}
}

.pricelist-list__item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
	.pricelist-list__item {
		flex-direction: column;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
}

.pricelist-list__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

.pricelist-list__item-title {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 0;
}

.pricelist-list__content {
	flex: 0 0 53%;
}

.pricelist-list__content p:last-child {
	margin-bottom: 0;
}

.pricelist-list__table {
	flex: 0 0 42%;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.pricelist-list__table {
		margin-top: 20px;
	}
}

.pricelist-nav {
	border: 1px solid #e5e5e5;
	padding-left: 0;
	list-style-type: none;
	position: sticky;
	top: 0;
	flex: 0 0 30%;
	margin: 0;
}

.pricelist-nav__item {
	margin-bottom: 0;
}

.pricelist-nav__item:last-child .pricelist-nav__link {
	border-bottom: 0;
}

.pricelist-nav__item--active .pricelist-nav__link {
	font-weight: bold;
}

.pricelist-nav__item--active .pricelist-nav__link::before {
	transform: scaleX(1);
}

.pricelist-nav__link {
	display: block;
	padding: 1rem 2rem;
	border-bottom: 1px solid #e5e5e5;
	color: #fff;
	position: relative;
}

.pricelist-nav__link::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: var(--secondary-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
	transform-origin: left;
}

.pricelist-nav__link-title {
	position: relative;
	z-index: 2;
}

.pricelist-nav__link:hover::before {
	transform: scaleX(1);
}

.grid-members__title {
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 50px;
}

.grid-members__list {
	padding: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-gap: 20px;
}

.grid-members__link {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.grid-members__link:hover .grid-members__name {
	text-decoration: none;
}

.grid-members__link:hover .grid-members__image {
	transform: scale(1.02);
}

.grid-members__link:hover .grid-members__image::before {
	opacity: 1;
}

.grid-members__name {
	margin-top: 20px;
	font-weight: 500;
	text-decoration: underline;
}

.grid-members__image {
	position: relative;
	transition: transform 0.3s ease-in-out;
}

.grid-members__image-img {
	display: block;
}

.grid-members__image::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.5s ease;
}

.icons-horizontal__list {
	padding: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap: 50px;
}

@media (max-width: 568px) {
	.icons-horizontal__list {
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}
}

.icons-horizontal__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0;
}

.icons-horizontal__content p:last-child {
	margin-bottom: 0;
}

.icons-horizontal__title {
	margin: 15px 0;
	font-size: 16px;
}

.icons-horizontal__image {
	height: 100px;
}

.icons-horizontal__image-icon {
	width: auto;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.section-members {
	margin: 90px auto;
}

@media (max-width: 568px) {
	.section-members {
		margin: 50px auto;
	}
}

.section-members__title {
	text-align: center;
	font-size: 40px;
	margin-bottom: 80px;
}

@media (max-width: 568px) {
	.section-members__title {
		font-size: 28px;
		margin-bottom: 50px;
	}
}

.section-members-columns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 568px) {
	.section-members-columns {
		flex-direction: column;
	}
}

.section-members-columns__thumbnail {
	flex: 0 0 33%;
}

.section-members-columns__thumbnail img {
	width: 100%;
	height: auto;
}

@media (max-width: 568px) {
	.section-members-columns__thumbnail {
		margin-bottom: 30px;
	}
}

.section-members-columns__content {
	flex: 0 0 55%;
	font-size: 18px;
	line-height: 1.6;
}

.section-members-columns__content p:first-child {
	margin-top: 0;
}

.section-members-columns__content p:last-child {
	margin-bottom: 0;
}

.section-members-related {
	margin-top: 40px;
}

.section-members-related__title {
	text-align: center;
	margin-bottom: 70px;
}

.posts-list__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(267px, 1fr));
	grid-gap: 30px;
}

.posts__title {
	margin-bottom: 30px;
}

.post-item {
	background-color: #fff;
	border: 1px solid #d6d6d6;
}

.post-item__image {
	position: relative;
	padding-bottom: 75%;
	overflow: hidden;
}

.post-item__image-placeholder {
	background-color: #d6d6d6;
}

.post-item__image-thumbnail, .post-item__image-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-item__image-placeholder {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}

.post-item__content {
	padding: 36px;
}

.post-item__authorinfo {
	font-size: 0.8rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.post-item__authorinfo-image {
	margin-right: 12px;
}

.post-item__authorinfo-image img {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.post-item__link {
	margin-top: 5px;
}

.counters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	grid-gap: 30px;
}

.counters__item {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.counters__icon {
	width: 110px;
}

.counters__content {
	margin-left: 20px;
	text-transform: uppercase;
	line-height: 1.5em;
	font-size: 13px;
}

.counters__title {
	margin-bottom: 0;
	font-size: 25px;
	color: #98b288;
}

/*# sourceMappingURL=pricing.css.map */
.pricing-list .pricing-single {
	margin-bottom: 2rem;
}

.pricing-list .pricing-single:last-child {
	margin-bottom: 0;
}

.pricing-single {
	display: flex;
	flex-direction: row;
	border: 1px solid #D6D6D6;
}

.pricing-image {
	width: 40%;
	flex-grow: 0;
	flex-shrink: 0;
	overflow: hidden;
	margin: 0 1.75rem 0 0;
}

.pricing-image img {
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.pricing-image .compare-block {
	display: flex;
	flex-direction: row;
}

.pricing-content {
	flex: 0 0 60%;
	border-left: 0;
	padding: 1.75rem 2.4rem;
}

.pricing-image__after img {
	border: 5px solid #98b288;
}

.pricing-header {
	border-bottom: 1px solid #D6D6D6;
	padding-bottom: 1.9rem;
	margin-bottom: 1.9rem;
}

.pricing-header__row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 1.5rem;
}

.pricing-header__info {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	flex-grow: 1;
}

.pricing-header__info p {
	margin-bottom: 0;
	margin-right: 3rem;
}

.pricing-header__info p:last-child {
	margin-right: 0;
}

.pricing-header__title {
	flex-shrink: 0;
	font-weight: bold;
	font-size: 1.2rem;
}

.pricing-leader {
	display: flex;
	flex-direction: column;
}

.pricing-leader__title {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 2rem;
}

.pricing-leader__single {
	display: flex;
	align-items: center;
	flex-direction: row;
}

.pricing-leader__avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	flex: 0 0 90px;
	margin-right: 1.6rem;
}

.pricing-leader__content {
	flex-direction: column;
	font-weight: 500;
}

.pricing-leader__content-title {
	text-transform: uppercase;
	color: #98b288;
	font-weight: 800;
	font-size: 1.2rem;
	margin-bottom: 0.4rem;
}

.pricing-leader__content-role {
	font-weight: bold;
}

.pricing-leader__content-role,
.pricing-leader__content-postition {
	margin: 0;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
	content: " ";
	display: block;
	background: #98b288;
	position: absolute;
	z-index: 30;
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	width: 3px;
	height: 9999px;
	left: 50%;
	margin-left: -1.5px;
	bottom: 50%;
	margin-bottom: 22px;
	-webkit-box-shadow: 0 3px 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0 3px 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0 3px 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
	content: " ";
	display: block;
	background: #98b288;
	position: absolute;
	z-index: 30;
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	width: 3px;
	height: 9999px;
	left: 50%;
	margin-left: -1.5px;
	top: 50%;
	margin-top: 22px;
	-webkit-box-shadow: 0 -3px 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0 -3px 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0 -3px 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
	top: 50%;
	margin-top: -19px;
	left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
	top: 50%;
	margin-top: -19px;
	right: 10px;
}

.twentytwenty-vertical .twentytwenty-handle:before {
	content: " ";
	display: block;
	background: #98b288;
	position: absolute;
	z-index: 30;
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	width: 9999px;
	height: 3px;
	top: 50%;
	margin-top: -1.5px;
	left: 50%;
	margin-left: 22px;
	-webkit-box-shadow: 3px 0 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 3px 0 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 3px 0 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
	content: " ";
	display: block;
	background: #98b288;
	position: absolute;
	z-index: 30;
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	width: 9999px;
	height: 3px;
	top: 50%;
	margin-top: -1.5px;
	right: 50%;
	margin-right: 22px;
	-webkit-box-shadow: -3px 0 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: -3px 0 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: -3px 0 0 #98b288, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-before-label:before {
	left: 50%;
	margin-left: -45px;
	text-align: center;
	width: 90px;
	top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
	left: 50%;
	margin-left: -45px;
	text-align: center;
	width: 90px;
	bottom: 10px;
}

.twentytwenty-before-label {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	transition-property: opacity;
	opacity: 0;
}

.twentytwenty-before-label:before {
	color: #98b288;
	font-size: 13px;
	letter-spacing: 0.1em;
	position: absolute;
	background: rgba(255, 255, 255, 0.2);
	line-height: 38px;
	padding: 0 20px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	content: attr(data-content);
}

.twentytwenty-after-label {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	transition-property: opacity;
	opacity: 0;
}

.twentytwenty-after-label:before {
	color: #98b288;
	font-size: 13px;
	letter-spacing: 0.1em;
	position: absolute;
	background: rgba(255, 255, 255, 0.2);
	line-height: 38px;
	padding: 0 20px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	content: attr(data-content);
}

.twentytwenty-overlay {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-property: background;
	-moz-transition-property: background;
	transition-property: background;
	background: rgba(0, 0, 0, 0);
	z-index: 25;
}

.twentytwenty-overlay:hover {
	background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
	opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
	opacity: 1;
}

.twentytwenty-left-arrow {
	width: 0;
	height: 0;
	border: 6px inset transparent;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	border-right: 6px solid #98b288;
	left: 50%;
	margin-left: -17px;
}

.twentytwenty-right-arrow {
	width: 0;
	height: 0;
	border: 6px inset transparent;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	border-left: 6px solid #98b288;
	right: 50%;
	margin-right: -17px;
}

.twentytwenty-up-arrow {
	width: 0;
	height: 0;
	border: 6px inset transparent;
	position: absolute;
	left: 50%;
	margin-left: -6px;
	border-bottom: 6px solid #98b288;
	top: 50%;
	margin-top: -17px;
}

.twentytwenty-down-arrow {
	width: 0;
	height: 0;
	border: 6px inset transparent;
	position: absolute;
	left: 50%;
	margin-left: -6px;
	border-top: 6px solid #98b288;
	bottom: 50%;
	margin-bottom: -17px;
}

.twentytwenty-container {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	z-index: 0;
	overflow: hidden;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.twentytwenty-container img {
	max-width: 100%;
	position: absolute;
	top: 0;
	display: block;
}

.twentytwenty-container * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.twentytwenty-container.active .twentytwenty-overlay {
	background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label {
	opacity: 0;
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label {
	opacity: 0;
}

.twentytwenty-container.active:hover.twentytwenty-overlay {
	background: rgba(0, 0, 0, 0);
}

.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-before-label {
	opacity: 0;
}

.twentytwenty-container.active:hover.twentytwenty-overlay .twentytwenty-after-label {
	opacity: 0;
}

.twentytwenty-before {
	z-index: 20;
}

.twentytwenty-after {
	z-index: 10;
}

.twentytwenty-handle {
	height: 38px;
	width: 38px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -22px;
	margin-top: -22px;
	border: 3px solid #98b288;
	-webkit-border-radius: 1000px;
	-moz-border-radius: 1000px;
	border-radius: 1000px;
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	z-index: 40;
	cursor: pointer;
}

.pricing-image__box {
	position: relative;
	padding-bottom: 56.25%;
	min-height: 50%;
}

.pricing-image__thumbnail {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	position: absolute;
}

.pricing-image__label {
	position: absolute;
	left: 0.5rem;
	bottom: 0.5rem;
	z-index: 2;
	text-transform: uppercase;
	color: #fff;
}

@media all and (max-width: 1100px) {
	.pricing-single {
		flex-direction: column;
		padding: 1rem;
	}
	.pricing-image {
		width: 100%;
		margin: -1.5rem -1rem 0;
		width: calc(100% + 2rem);
	}
}

@media all and (max-width: 600px) {
	.pricing-content {
		padding: 1rem 0;
	}
	.pricing-header__row {
		align-items: center;
	}
	.pricing-header__info {
		flex-direction: column;
		margin-left: 1.5rem;
		padding-left: 1.5rem;
		border-left: 1px solid #e2e2e2;
	}
	.pricing-header__info p {
		margin-right: 0;
		margin-bottom: 0.5rem;
	}
	.pricing-header__info p:last-child {
		margin-bottom: 0;
	}
	.pricing-leader__content {
		font-size: 0.875rem;
	}
	.pricing-leader__content-title {
		font-size: 1rem;
	}
}

@media all and (max-width: 800px) {
	.pricing-header__title {
		flex-grow: 0;
		flex-shrink: 0;
		width: 50%;
	}
	.pricing-header__info {
		flex-grow: 0;
		flex-shrink: 0;
		width: 50%;
		margin-left: 0;
	}
}

.input-field {
	width: 100%;
	padding: 20px 15px;
	border: 0;
	outline: 0;
	border: 1px solid #676767;
	font-weight: 500;
	background-color: transparent;
	font-size: 16px;
	font-family: "Montserrat";
	background-color: #fff;
	border-radius: 10px;
}

.input-field.wpcf7-not-valid {
	border-color: red;
}

.input-field--textarea {
	height: auto;
	min-height: 143px;
	resize: vertical;
}

.cf7--footer .input-field {
	background-color: transparent;
	border: 0;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	padding: 20px 0;
}

.cf7--footer .cf7-row {
	margin-bottom: 20px;
}

.cf7-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.cf7-row__single {
	flex-basis: 50%;
}

.cf7-row__single--full {
	flex-basis: 100%;
}

.cf7-row .wpcf7-list-item {
	margin: 0;
	font-size: 1rem;
}

.cf7-row label {
	cursor: pointer;
}

.cf7-row .wpcf7-list-item span {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

.cf7-row .wpcf7-list-item span::before {
	content: '';
	width: 0.8rem;
	height: 0.8rem;
	display: inline-flex;
	border: 1px solid #3c3c3c;
	margin-right: 0.5rem;
	vertical-align: middle;
	transition: all 0.3s ease;
}

.cf7-row .wpcf7-list-item input[type='checkbox'] {
	position: absolute;
	left: 0;
	opacity: 0.01;
}

.cf7-row .wpcf7-list-item input[type='checkbox']:checked ~ span::before {
	background-color: #3c3c3c;
}

.cf7--contact {
	text-align: left;
}

.cf7--sugar {
	margin-bottom: 4.375rem;
}

.cf7--sugar .cf7-row {
	margin-bottom: 1.25rem;
}

.cf7--sugar .cf7-row__phone {
	color: #fff;
	font-weight: bold;
	font-size: 1.3125rem;
	text-align: right;
	display: block;
}

.cf7--sugar .cf7-row__phone:hover {
	text-decoration: underline;
}

.cf7--sugar .cf7-row__label {
	margin-bottom: 1.125rem;
	font-weight: bold;
	font-size: 1.125rem;
	display: block;
}

.cf7--sugar .cf7-row input,
.cf7--sugar .cf7-row textarea {
	background-color: transparent;
	border-color: #fff;
}

.cf7--sugar .cf7-row .input-field {
	padding: 0.9375rem;
	color: #fff;
}

.cf7--sugar .cf7-row .wpcf7-list-item span::before {
	border-color: #fff;
}

.cf7--sugar .cf7-row .wpcf7-list-item input[type='checkbox']:checked ~ span::before {
	background-color: #fff;
}

.cf7--sugar .cf7-row .wpcf7-spinner {
	display: none;
}

.cf7--sugar .cf7-row .btn {
	border: 2px solid #fff;
	padding: 0.875rem 1.125rem;
	font-size: 0.875rem;
}

.cf7--sugar .cf7-row .btn:hover, .cf7--sugar .cf7-row .btn:focus {
	background-color: #fff;
	color: #3c3c3c;
}

.wpcf7-not-valid-tip {
	margin-top: 10px;
}

.sugar-form {
	background-color: #9eb18c;
	padding-top: 3.125rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
	color: #fff;
}

.sugar-form .container {
	max-width: 75rem;
}

.sugar-form__title {
	text-align: center;
}

.sugar-form__decor {
	position: absolute;
	top: -4.0625rem;
	left: -4.0625rem;
	z-index: -1;
	pointer-events: none;
}

.sugar-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 5.625rem;
	place-items: flex-end;
}

@media (max-width: 1024px) {
	.sugar-form-row {
		grid-template-columns: 1fr;
	}
}

.sugar-form-shortcode {
	width: 100%;
}

@media (max-width: 1024px) {
	.sugar-form-image {
		display: none;
	}
}

.sugar-form-image__thumbnail {
	display: block;
	object-fit: contain;
}

body .ti-reviews-container-wrapper > .ti-review-item:nth-child(n + 4) {
	display: none !important;
}

body .ti-widget-container {
	background-color: #fff;
	border-radius: 5px;
	padding: 10px;
	box-shadow: 0 0 4px 6px rgba(0, 0, 0, 0.01);
}

body .ti-widget-container .ti-header {
	display: none !important;
}

body .ti-widget.ti-face .ti-review-item,
body .ti-widget.ti-goog .ti-review-item {
	border-bottom: 1px solid #eeeeee !important;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border: 0;
	background-color: transparent;
}

body .ti-widget.ti-face .ti-review-item:nth-child(3),
body .ti-widget.ti-goog .ti-review-item:nth-child(3) {
	border-bottom: none !important;
}

body .ti-widget.ti-face .ti-review-item > .ti-inner,
body .ti-widget.ti-goog .ti-review-item > .ti-inner {
	border: 0 !important;
}

.reviews__title {
	margin-bottom: 20px;
}

.reviews__content {
	margin-bottom: 50px;
	line-height: 1.6em;
}

.reviews-grid {
	display: grid;
	grid-template-columns: 3fr 4fr 4fr;
	grid-gap: 50px;
}

@media (max-width: 768px) {
	.reviews-grid {
		grid-template-columns: 1fr;
		grid-gap: 50px;
	}
}

.reviews-button {
	margin-top: 50px;
}

.sugar-reviews-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
}

@media (max-width: 768px) {
	.sugar-reviews-row {
		flex-direction: column;
		align-items: center;
	}
}

.sugar-reviews-person {
	flex: 0 0 18.75rem;
	margin-left: 2rem;
}

@media (max-width: 768px) {
	.sugar-reviews-person {
		margin-left: 0;
		margin-top: 2rem;
	}
}

.sugar-reviews-person__image {
	display: block;
}

@media (max-width: 768px) {
	.sugar-reviews-person__image {
		max-height: 18.75rem;
		width: auto;
	}
}

.sugar-reviews-content__title {
	text-align: center;
	margin-bottom: 2.5rem;
}

.breadcrumbs {
	margin-bottom: 16px;
}

.breadcrumbs span {
	font-size: 14px;
	color: #888;
}

.article {
	margin: 50px auto 40px;
}

.article__title {
	font-size: 30px;
	margin-bottom: 10px;
}

.article__content {
	padding-top: 40px;
	border-top: 1px solid #d6d6d6;
}

.article__authorinfo {
	font-size: 0.8rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.article__authorinfo-image {
	margin-right: 12px;
}

.article__authorinfo-image img {
	border-radius: 50%;
	width: 50px;
	height: 50px;
}

.image-section img {
	width: auto;
	height: auto;
}

.image-section--full img {
	max-width: 1920px;
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
}

.map iframe {
	border: 0;
	width: 100%;
	width: 100vw;
	margin-left: 50%;
	transform: translateX(-50%);
	max-width: 100vw;
	height: 500px;
}

.icons-text {
	padding-bottom: 10%;
}

.icons-text .container {
	position: relative;
}

.icons-text__clouds {
	pointer-events: none;
	position: absolute;
	top: 5%;
	right: -3rem;
	z-index: -1;
}

.icons-text__clouds--center {
	right: initial;
	left: -15%;
	top: 35%;
	height: 7.5rem;
}

.icons-text__clouds--bottom {
	right: initial;
	top: initial;
	bottom: -7.5%;
	left: -25%;
}

.icons-text-title {
	margin-bottom: 5.625rem;
}

.icons-text-grid {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 3.125rem;
}

.icons-text-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 568px) {
	.icons-text-row {
		flex-direction: column;
	}
}

.icons-text-icon {
	flex: 0 0 30%;
}

@media (max-width: 568px) {
	.icons-text-icon {
		flex-basis: auto;
		margin-bottom: 1.25rem;
	}
	.icons-text-icon img {
		max-height: 15rem;
		width: auto;
		object-fit: contain;
	}
}

.icons-text-content {
	flex: 0 0 64%;
}

.icons-text-content__title {
	font-size: 1.875rem;
	margin-bottom: 1.875rem;
}

.icons-text-content__text {
	margin-bottom: 0;
}

.video-description__oembed {
	padding-bottom: 56.5%;
	position: relative;
}

.video-description__oembed iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.video-description__content {
	margin-top: 2.5rem;
}

.video-description__title {
	font-size: 1.875rem;
	font-weight: bold;
	margin-bottom: 1.5625rem;
}

.video-description__text {
	margin-bottom: 0;
}

.service-details-title {
	margin-bottom: 5.25rem;
	text-align: center;
}

.service-details-row {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}

@media (max-width: 1024px) {
	.service-details-row {
		flex-direction: column;
	}
}

.service-details-image {
	flex: 0 0 25.625rem;
	position: relative;
}

@media (max-width: 1024px) {
	.service-details-image {
		flex: 0 0 15rem;
		margin-bottom: 2.5rem;
	}
}

.service-details-image::before {
	content: '';
	position: absolute;
	width: 110%;
	height: 110%;
	left: -14%;
	top: -8%;
	pointer-events: none;
	background-image: url("images/bg-lines-med.png");
	background-size: contain;
	background-repeat: no-repeat;
	z-index: -1;
}

.service-details-image__decorator {
	position: absolute;
	max-width: 30%;
	max-height: 30%;
	object-fit: contain;
	object-position: top left;
	top: 2%;
	left: -3%;
	pointer-events: none;
}

.service-details-image__thumbnail {
	width: 25.625rem;
	height: 25.625rem;
	object-fit: cover;
	border-radius: 50%;
	object-position: top;
}

@media (max-width: 1024px) {
	.service-details-image__thumbnail {
		width: 15rem;
		height: 15rem;
	}
}

.service-details-content {
	flex: 0 0 52%;
}

.service-details-content__title {
	font-size: 1.875rem;
	margin-bottom: 0.9375rem;
}

.service-details-content__text {
	margin-bottom: 0;
}

.contact-details h3 {
	font-size: 1.875rem;
}

.contact-details a {
	font-weight: bold;
}

.contact-details-title {
	margin-bottom: 2.5rem;
	text-align: center;
}

@media (max-width: 768px) {
	.contact-details-title {
		text-align: left;
	}
}

.contact-details-map iframe {
	height: 18.75rem;
	width: 100%;
}

.contact-details-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3.125rem;
}

@media (max-width: 768px) {
	.contact-details-grid {
		grid-template-columns: 1fr;
	}
}

.contact-details-icons {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
	grid-gap: 2.5rem;
	margin-top: 4.375rem;
}

.contact-details-icons__single {
	position: relative;
	padding-bottom: 100%;
	border-radius: 50%;
	overflow: hidden;
}

.contact-details-icons__thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
}

.cta-content {
	overflow: hidden;
}

.cta-content-title {
	text-align: center;
	margin-bottom: 3.75rem;
}

.cta-content-top {
	position: relative;
}

.cta-content-top__decor {
	position: absolute;
	object-fit: contain;
	object-position: bottom center;
	width: 100vw;
	height: 100%;
	max-width: 87.5rem;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.cta-content-top-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding-top: 12.5rem;
}

@media (max-width: 1024px) {
	.cta-content-top-row {
		padding-top: 0rem;
	}
}

@media (max-width: 768px) {
	.cta-content-top-row {
		flex-direction: column;
	}
}

.cta-content-top-image {
	flex: 0 0 34%;
}

@media (max-width: 1024px) {
	.cta-content-top-image {
		max-width: 15rem;
		margin-bottom: 2.5rem;
	}
}

.cta-content-top-image-wrapper {
	position: relative;
	padding-bottom: 100%;
}

.cta-content-top-image-wrapper__decor {
	max-width: 50%;
	max-height: 50%;
	object-fit: contain;
	object-position: top left;
	position: absolute;
	top: 5%;
	left: -3%;
	z-index: 1;
}

.cta-content-top-image-wrapper__thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	overflow: hidden;
	border-radius: 50%;
}

.cta-content-top-content {
	flex: 0 0 60%;
}

.cta-content-main {
	position: relative;
	color: #fff;
	padding-top: 5rem;
}

@media (max-width: 1024px) {
	.cta-content-main {
		padding-top: 2.5rem;
	}
}

.cta-content-main::before {
	content: '';
	position: absolute;
	width: 100vw;
	height: calc(100% + 2px);
	top: -2px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	background-color: #9eb18c;
}

.cta-content-video__title {
	text-align: center;
	margin-bottom: 2.5rem;
}

.cta-content-service {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: 5.625rem;
}

@media (max-width: 1024px) {
	.cta-content-service {
		margin-top: 2.5rem;
	}
}

@media (max-width: 768px) {
	.cta-content-service {
		flex-direction: column-reverse;
	}
}

.cta-content-service-image {
	flex-basis: 35%;
}

@media (max-width: 768px) {
	.cta-content-service-image {
		width: 100%;
	}
}

.cta-content-service-image__thumbnail {
	display: block;
	width: auto;
}

@media (max-width: 768px) {
	.cta-content-service-image__thumbnail {
		margin: 0 auto;
		max-height: 23.75rem;
	}
}

.cta-content-service-content {
	flex-basis: 62%;
}

.cta-content-service-content__title {
	font-size: 1.875rem;
}

.cta-content-service-content__text {
	margin-bottom: 3.125rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

@media all and (min-width: 769px) {
.page-id-606 main {
	margin-bottom: 80px;
}
}

/*# sourceMappingURL=style.css.map */