/* Name: New styles
Author: Bartosz Chomont
Date: 05.2025
Version: 1.0.0 */

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

        00 - ZMIENNE
        01 - RESET & NORMALIZE
		02 - OGÓLNE & GLOBALNE KLASY
        03 - LAYOUT
        04 - TYPOGRAFIA
        05 - OBRAZKI & VIDEO
        06 - KOMPONENTY (formularze, slidery, modale, swiper)
		07 - MISC
        08 - HEADER & FOOTER
        09 - STRONA GŁÓWNA
		10 - PODSTRONY
    
******************************/

/*----------------------------------------*/
/*  00 - ZMIENNE
/*----------------------------------------*/

:root {
  --color-primary: #5D89BA;
  --color-secondary: #294361;
  --color-accent: #A2CFED;
  --color-accent-light: #C4D4E0;
  --color-text: #000;
  --bg-light: #fff;
  --bg-gray: #F8FAFA;

  --font-primary: 'Inter'; /* 'open sans', 'Inter', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif; */
   --font-secondary: 'open sans', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;

  --spacing-small: 8px;
  --spacing-s-m: 12px;
  --spacing-medium: 16px;
  --spacing-m-l: 24px;
  --spacing-large: 32px;

  --border-radius: 5px;
}

/*----------------------------------------*/
/*  01 - RESET & NORMALIZE
/*----------------------------------------*/

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

html {
	scroll-behavior: smooth;
}

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

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

figure {
	margin: 1em 0;
}

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

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

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

body {
	font-family: var(--font-secondary);
	font-size: 16px;
	font-weight: 400;
	margin: 0;
	overflow-x: hidden;
	color: #000;
}

/*----------------------------------------*/
/*  02 - OGÓLNE & GLOBALNE KLASY
/*----------------------------------------*/

body {
	color: var(--color-text);
	font-family: var(--font-secondary);
}

a {
	color: var(--color-primary);
	text-decoration: underline;
	line-height: 1;
	transition: all 0.3s ease;
}

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

.primary-button {
	display: inline-block;
	padding: 16px 32px;
	border: 1px solid var(--color-primary);
	border-radius: 50px;
	background: var(--color-primary);
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.primary-button:hover {
	background: #fff;
	border: 1px solid #000;
	color: #000;
}

.header-button {
	display: inline-block;
	padding: 16px 32px;
	border: 1px solid #fff;
	border-radius: 50px;
	background: #fff;
	font-weight: 500;
	color: #000;
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

.header-button:hover {
	background: var(--color-primary);
	border: 1px solid var(--color-primary);
	color: #fff;
}



.secondary-button {
	display: inline-block;
	padding: 16px 32px;
	border: 1px solid var(--color-secondary);
	border-radius: 50px;
	background: transparent;
	color: var(--color-secondary);
	text-decoration: none;
	text-align: center;
	transition: all 0.4s ease-in-out;
}

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

.black-button {
	display: inline-block;
	padding: 12px 24px;
	width: 100%;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 0;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
}

.section-subtitle {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 16px;
	color: var(--color-secondary);
	font-weight: 600;
	text-transform: uppercase;
}

.c-white {
	color: white;
}

.c-black {
	color: black !important;
}

.section-title {
	display: inline-block;
	margin-bottom: 16px;
    
}

h2.featured-title {
	text-align: center;
	margin-bottom: 32px;
}

h3.section-title {
	font-size: 36px;
}

.section-intro {
	font-size: 16px;
	font-weight: 1.5;
}

.page-header .section-intro {
	font-size: 18px;
	color: #fff;
}

.section-introx {
	font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
}


.layout-1-col .section-intro {
	display: inline-block;
	margin-bottom: 0;
	width: 100%; max-width: 700px; margin: 0 auto; text-align: center;
	font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}

.layout-2-cols .section-intro {
	display: inline-block;
	margin-bottom: 32px;
}

.layout-3-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 108px;
}

.section-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.section-list li {
	margin-bottom: 0;
	font-size: 14px;
}

section:nth-of-type(odd):not(.page-header) {
	background: var(--bg-light);
}

section:nth-of-type(even) {
	background: var(--bg-gray);
}

.bg-white {
	background-color: #fff;
}

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

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

.bg-primary, section.bg-primary {
	background-color: var(--color-primary);
}

/* .bg-pattern {
	background-image: url('');
	background-size: cover;
} */

@media (max-width: 1100px) {
	.onlydesktop {
		display: none;
	}
	
	.layout-3-cols {
		flex-direction: column;
		gap: 48px;
	}
	
	.layout-1-col .section-intro {
		text-align: left;
	}
}

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



/*----------------------------------------*/
/*  03 - LAYOUT
/*----------------------------------------*/

section {
	position: relative;
	padding: 60px 20px;
}

.flex {
	display: flex;
	flex-direction: row;
}

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

.grid.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

.grid.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.layout-1-col {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.layout-2-cols {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 80px;
}

.layout-2-cols.reverse {
	flex-direction: row-reverse;
}

@media (max-width: 768px) {
	.flex:not(.mobile-header):not(.mobile-row) {
		flex-direction: column;
	}

	
	.flex-column.ai-center {
		align-items: flex-start;
	}
	
	.flex-column.txt-center {
		text-align: left;
	}
	
	.layout-1-col {
		gap: 48px;
	}
	
	.layout-2-cols {
		gap: 32px;
	}
	
	.layout-2-cols, .layout-2-cols.reverse {
		flex-direction: column;
	}
	
	.efekty-leczenia .layout-2-cols, .efekty-leczenia .layout-2-cols.reverse {
		flex-direction: column-reverse;
	}
	
	.layout-2-cols.mobile-reverse, .layout-2-cols.reverse.mobile-reverse {
		flex-direction: column-reverse;
	}
	
	.mobile-reverse {
		flex-direction: column-reverse;
	}
	
	.grid.grid-2, .grid.grid-3 {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.footer-col-1 .footer-column-title {
		margin-top: 36px;
	}
}

.f-nowrap {
	flex-wrap: nowrap;
}

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

.ai-stretch {
	align-items: stretch;
}

.ai-start {
	align-items: flex-start;
}

.jc-center {
	justify-content: center;
}

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

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 12px;
	position: relative;
}

@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

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

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

.col {
	flex: 1;
}

@media (min-width: 1101px) {
	.col-d-50 {
		width: 50%;
	}
	
	.col-d-33 {
		width: 33.33%;
	}
	
	.col-d-66 {
		width: 66.66%;
	}
}

@media (max-width: 1100px) {
	.col-m-100 {
		width: 100%;
	}
}

@media (min-width: 1101px) {
	
}

@media (max-width: 1100px) {
	.mobile-pt-0 {
		padding-top: 0;
	}
}

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

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

.text-right {
	text-align: right;
}

/*----------------------------------------*/
/*  04 - TYPOGRAFIA
/*----------------------------------------*/

@font-face {
    font-family: "Font Name";
    src: url("../fonts/Font-Name-SemiBold.ttf") format("truetype");
    font-weight: 600; /* Dopasuj do stylu fonta */
    font-style: normal;
    font-display: swap;
}

p {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
}

p strong, span strong {
	font-weight: 600;
}

span {
	font-weight: 300;
}

.one-col-section .content span, .section-two-cols .section-content span, .cennik .pricelist-item-content span {
	font-weight: 300!important;
}

.one-col-section .content span strong, .section-two-cols .section-content span strong, .cennik .pricelist-item-content span strong {
	font-weight: 600!important;
}

/* .single-services section span {
	font-weight: 300 !important;
} */

ul, ol {
	margin-bottom: 24px;
}

ul li,
ol li {
	font-size: 16px;
	margin-bottom: 16px;
	line-height: 1.5;
	list-style-position: inside;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary), Helvetica, Arial, Lucida, sans-serif;
	font-style: normal;
	font-weight: 500;
	line-height: 1.2;
	color: #000;
	margin-top: 0;
	margin-bottom: 0;
}

h3, h4 {
	font-family: var(--font-secondary), Helvetica, Arial, Lucida, sans-serif;
	font-weight: 500;
}

h1 {
	font-size: 58px;
	font-weight: 500;
	text-transform: normal;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 28px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 18px;
}

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

.semi-bold {
	font-weight: 600;
}

.text-small {
	font-size: 14px;
}

/*----------------------------------------*/
/*  05 - OBRAZKI & VIDEO
/*----------------------------------------*/

img {
	width: 100%;
	height: auto;
	display: block;
}

.img-square {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	object-position: center center;
}

.img-3x2 {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
	object-position: center center;
}

.img-2x3 {
	width: 100%;
	height: auto;
	aspect-ratio: 2/3;
	object-fit: cover;
	object-position: center center;
}

.img-1x2 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/2;
	object-fit: cover;
	object-position: center center;
}

.img-2x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
	object-position: center center;
}

.img-1x3 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/3;
	object-fit: cover;
	object-position: center center;
}

.img-3x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 3/1;
	object-fit: cover;
	object-position: center center;
}

.img-1x4 {
	width: 100%;
	height: auto;
	aspect-ratio: 1/4;
	object-fit: cover;
	object-position: center center;
}

.img-4x1 {
	width: 100%;
	height: auto;
	aspect-ratio: 4/1;
	object-fit: cover;
	object-position: center center;
}

.img-16x9 {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
	object-fit: cover;
	object-position: center center;
}

.img-9x16 {
	width: 100%;
	height: auto;
	aspect-ratio: 9/16;
	object-fit: cover;
	object-position: center center;
}

.col img {
	border-radius: 16px;
}

.video-container {
flex: 1;
width: 100%;
max-width: 100%;
aspect-ratio: 16 / 9;
}

.video-container iframe {
	width: 100%;
	height: 100%;
}


/*----------------------------------------*/
/*  06 - KOMPONENTY
/*----------------------------------------*/

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

/* 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;
}

.wpcf7 input:not([type="checkbox"]), .wpcf7 textarea {
	width: 100%;
    line-height: 1;
    margin: 0;
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 0;
}

.wpcf7-submit {
	background: #000;
	color: #fff;
	border-radius: 0;
}

.formularz-mapka .wpcf7 input:not([type="checkbox"]):not([type="submit"]), .formularz-mapka .wpcf7 textarea {
	background: #EEEEEE;
	border: 1px solid #ddd;
}

.formularz-mapka .wpcf7-submit {
	background: var(--color-primary);
	color: #000;
	border-radius: 0;
}

span[data-name="acceptance-137"] {
	display: block;
	margin-bottom: 24px;
}

/*----------------------------------------*/
/*  07 - MISC
/*----------------------------------------*/

path.white {
	fill: #fff;
}

path.black {
	fill: #000;
}

path.gray {
	fill: #F0F1F1;
}


/*----------------------------------------*/
/*  08 - HEADER & FOOTER
/*----------------------------------------*/

header {
	background: #fff;
	border-bottom: 1px solid #eee;
}

.header-top {
	padding: 12px 0;
	border-bottom: 1px solid #eee;
}

header .logo-img {
	width: 180px;
	height: auto;
}

header li {
	margin-bottom: 0;
}

.header-telefon, .header-lokalizacja, .header-godziny, header #primary-menu li a {
	color: var(--color-text);
	text-decoration: none;
	font-size: 14px;
}

header #primary-menu li ul li a {
	color: var(--color-secondary);
}

.header-telefon:hover, .header-lokalizacja:hover, header #primary-menu li a:hover {
	color: var(--color-primary);
}

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

header #primary-menu, header #primary-menu li {
	margin: 0;
	padding: 0;
	position: relative;
	list-style-type: none;
}

header #primary-menu li a {
	text-decoration: none;
}

header #primary-menu li ul {
	display: none;
	background: #fff;
	position: absolute;
	top: 20px;
    left: -20px;
    width: 250px;
    padding: 16px 32px;
	z-index: 20;
}

header #primary-menu li:hover ul {
	display: block;
}

.header-main-right {
	display: flex;
	align-items: center;
	gap: 32px;
}

.navbar-toggler,
.mobile-menu-bg,
.menu-wrap .close {
    display: none;
}

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

.mobile-google-widget {
	display: none;
}

/* DLA ROZWIJANEGO MENU: #menu-item-20 .sub-menu {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	
	#menu-item-20 .sub-menu .menu-item {
		padding: 0 20px;
	}
*/

@media (min-width: 1101px) {
	.mobile-menu, .hamburger {
		display: none;
	}
}

/* Mobilna wersja */
@media (max-width: 1100px) {
    .header-top {
        display: none;
    }
	
	.desktop-menu {
		display: none;
	}

	.mobile-menu {
		display: block;
	}

   /*  .site-navigations {
        position: relative;
    }

    .navbar-toggler {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        z-index: 1001;
    }

    .mobile-menu-bg {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .header-main-right {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: #fff;
        padding: 20px;
        z-index: 1001;
        flex-direction: column;
        gap: 20px;
        overflow-y: auto;
        transition: transform 0.3s ease;
    }

    .header-main-right.active,
    .mobile-menu-bg.active {
        display: flex;
		background: #000;
		width: 100%;
    }

    .menu-wrap .close {
        display: block;
        align-self: flex-end;
        font-size: 24px;
        cursor: pointer;
        margin-bottom: 20px;
    }

    .navigation {
        flex-direction: column;
        gap: 16px;
    }

    .header-button {
        margin-top: auto;
    } */
}

@media (max-width: 768px) {
	header .logo-img {
		height: 32px;
		width: auto;
	}
}

footer {
	background: var(--color-secondary);
	color: #fff;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer span a {
	color: #A2CFED;
	font-weight: 500;
}

.footer-top {
	padding: 36px 0;
	border-bottom: 1px solid #ccc;
	font-size: 14px;
}

.footer-top .flex-column {
	gap: 8px;
}

.footer-widget-area {
	padding: 36px 0;
	border-bottom: 1px solid #ccc;
}

.footer-bottom {
	padding-top: 36px;
	color: #eee;
}

.footer-widget-area ul li. .footer-widget-area a {
	margin-bottom: 12px;
	font-size: 14px;
}

.footer img {
	filter: invert(1);
}

@media (max-width: 1100px) {
	.footer-top .flex {
		gap: 12px;
	}
	
	.footer-top .flex img {
		margin-bottom: 12px;
	}
	
	.footer-middle {
		margin-top: 24px;
	}
	
	.footer-copyright-text-area {
		flex-direction: column;
		gap: 16px;
	}
}

/* HOME: Hero section */

.hero {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	background: var(--bg-light);
	width: 100%;
	height: 90vh;
	position: relative;
	padding: 0;
}

.hero {
	color: #000;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 32px;
}

.hero-content span {
	font-size: 18px;
	line-height: 1.5;
	text-wrap: balance;
}

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

	.hero h1 {
		font-size: 48px;
	}
	
	.hero-content {
		gap: 16px;
	}

.stars-rating .fas {
	color: var(--color-accent);
}

.hero-buttons {
	display: flex;
	gap: 16px;
}

@media all and (max-width: 1100px) {
	.hero {
		height: auto;
		padding: 60px 20px;
	}
	
	footer {
		padding: 0 20px; 
	}
	
	.hero-stars {
		order: 1;
	}
	
	.hero-buttons {
		order: 2;
		width: 100%;
		max-width: 420px;
	}
	
	.hero-buttons, .hero-stars {
		flex-direction: column;
	}
}


/** HOME POZOSTAŁĘ **/

@media (max-width: 1100px) {
	.wyrozniki-kolumny {
		gap: 32px;
		align-items: center;
	}
	
	.wyroznik {
		width: 100%;
	}
}


/************** 10: PODSTRONY *************************/

/* All */

.page-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: auto;
	aspect-ratio: 3.8/1;
	position: relative;
	padding: 112px 64px;
}

.page-header:not(.efekty)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.page-header-content {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.page-header .intro {
	color: #fff;
	line-height: 1.5;
}

.layout-2-cols .section-content {
	margin-bottom: 16px;
}

.layout-2-cols .section-content p {
	margin-bottom: 24px;
}

/* Usługi */

section.three-icons {
	gap: 80px;
}

.three-icons .three-icons-header {
    display: flex;
    flex-direction: column;
    align-items: center;
	text-align: center;
	margin-bottom: 80px;
}

.three-icons .layout-2-cols {
	gap: 48px;
}

.three-icons img {
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
}

.three-icons i {
	font-size: 48px;
	margin-bottom: 24px;
	color: var(--color-primary);
}

.three-icons h4 {
	margin-bottom: 12px;
}

.flex.metamorfozy {
	gap: 48px;
}

.faq-container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.faq .section-title {
	max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
	margin: 0 auto;
}

.faq-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-question {
	font-weight: 600 !important;
	font-size: 18px;
}

.faq-answer {
	font-size: 16px;
	line-height: 1.5;
}

.faq-bottom {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin: 0 auto;
}

.faq-bottom a {
    margin: 0 auto;
}

.faq-bottom a:hover {
	background-color: #fff;
	border: 1px solid black;
	color: #000;
    margin: 0 auto;
}

.one-col-section .content:last-of-type {
		padding-bottom: 60px;
	}

.one-col-section h2, .one-col-section h3, .one-col-section p {
	margin-bottom: 16px;
}

.section-two-cols h2 {
	margin-bottom: 32px;
}

.section-two-cols h3, .section-two-cols h4 {
	margin-bottom: 16px;
}

.content {
	text-align: center;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
	padding: 60px 0;
}

.content:last-of-type {
	padding-bottom: 120px;
}

.content h2 {
	margin-bottom: 24px;
}

.featured {
    margin: 0 auto;
	padding: 120px 64px;
}

.featured-content {
	max-width: 850px;
}

.featured .col-d-66:has(:only-child) .section-intro {
	margin-bottom: 0;
}

@media (max-width: 1100px) {
	.single-services section:not(.page-header) {
		padding: 40px 20px;
	}
	
	.content {
		padding: 40px 12px;
		text-align: left;
	}
}

.breadcrumbs {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
}

.breadcrumbs a {
	color:#fff;
	text-decoration: none;
}

/* Kontakt */

.kontakt-ikonki .layout-2-cols {
	gap: 48px;
}

.kontakt-ikonki img {
	width: 48px;
	height: 48px;
	margin-bottom: 24px;
}

.kontakt-ikonki h4 {
	margin-bottom: 12px;
}

.kontakt-ikonki p {
	margin-bottom: 24px;
}

@media (max-width: 1100px) {
	.formularz-mapka .layout-2-cols {
		gap: 24px;
	}
	
	.formularz-mapka .col {
		width: 100%;
	}
}

/* Opinie */

.opinie-cols {
	display: flex;
	gap: 32px;
}

/* Zespół */

.lekarz .pozycja {
	width: 100%;
	display: inline-block; 
	margin-bottom: 16px;
	font-size: 16px;
	color: var(--color-primary);
	text-transform: uppercase;
	font-weight: 600;
}

.lekarz-description {
	margin-bottom: 24px;
}

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

.lekarz img {
	border: 2px solid var(--color-primary);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: 50% 20%;
}

.block-lekarze-buttons .btn {
	font-size: 14px;
}

@media (max-width: 1100px) {
	.lekarz-content.flex-column.ai-center {
		text-align: center;
	}
	
	.lekarz-title {
		align-self: center;
	}
	
	.lekarz-przyciski {
		flex-direction: column;
		width: 100%;
	}
	
	..lekarz-przyciski a {
		width: 100%:
	}
}

/* Profil lekarza */

.profil-lekarza .container.flex {
	gap: 80px;
}

.profil-lekarza h1 {
	font-size: 48px;
	margin-bottom: 16px;
}

.profil-lekarza .spec {
	margin-bottom: 32px;
}

.profil-lekarza .spec-title {
	font-weight: 600;
	text-transform: uppercase;
}

.profil-lekarza .spec-content, .profil-lekarza .lekarz-subtitle {
	font-weight: 600;
	text-transform: uppercase;
	color: var(--color-primary);
}

.certyfikaty .gallery-grid-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	list-style-type: none;
}

.certyfikaty .gallery-grid-list img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
}

.certyfikaty .flex-column {
	gap: 64px;
}

@media (max-width: 1100px) {
	.certyfikaty .gallery-grid-list {
    grid-template-columns: repeat(1, 1fr);
	gap: 0;
	}
	
	.profil-lekarza h1 {
		font-size: 36px;
	}
}

/* Cennik */

.cennik .container.flex {
	gap: 80px;
}

.pricelist-item-title {
	margin-bottom: 16px;
}

.pricelist-item-content {
	margin-bottom: 24px;
}

.pricelist-item {
	margin-bottom: 48px;
}

.pricelist-item table {
	margin-bottom: 0;
	border: 0;
	border-spacing: 0;
}

.pricelist-item table th {
	text-align: left;
	padding: 10px;
}

.pricelist-item table td {
	text-align: right;
	padding: 10px;
}

.pricelist-table tr:nth-child(odd) {
  background-color: #f0f1f2;
}

.pricelist-table tr:nth-child(even) {
  background-color: #fff;
}

.cennik ul, .cennik li {
	list-style-type: none;
}

.cennik ul li:not(:last-of-type) {
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
	margin-bottom: 16px;
}

.pricelist-nav__item a {
	text-decoration: none;
	color: #000;
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricelist-nav__item a:hover {
	color: var(--color-primary);
}

@media (max-width: 1100px) {
	.pricelist-nav {
		display: none;
	}
}

/* Efekty leczenia */

.metamorfozy .flex-column {
	gap: 32px;
}

.metamorfoza-single {
	background: #F0F1F1;
	color: #5A5C5F;
}

.metamorfoza-title {
	margin-bottom: 24px;
	font-weight: 600;
	font-size: 24px;
	color: #000;
}

.metamorfoza-description p {
	margin-bottom: 8px;
}

.metamorfoza-description ul li, .metamorfoza-description ol li {
	margin-bottom: 0;
}

/* Historie leczenia */

.hl-second-title {
	color: #fff; text-align: center; margin-top: 48px; margin-bottom: 32px;
}

@media (max-width: 1100px) {
	.hl-second-title {
		margin-top: 32px;
		margin-bottom: 24px;
		text-align: left;
	}
}

/* Sekcja formularz CTA */

#formularz {
	background-color: var(--color-primary);
}

#formularz .wpcf7-acceptance a, .wpcf7-list-item-label {
	color: #fff;
}

#formularz h2 {
	margin-bottom: 16px;
}

span[data-name="acceptance-137"] .wpcf7-list-item {
	margin: 0;
	margin-left: 4px;
	font-size: 12px;
}

#formularz .wpcf7-submit {
	border-radius: 40px;
}

@media (max-width: 1100px) {
#formularz .layout-2-cols {
	flex-direction: column;
	gap: 32px;
}
	
#formularz img {
	aspect-ratio: 2 / 1;
    object-fit: cover;
}
	
	#formularz .col {
		gap: 32px;
	}
	
	span[data-name="acceptance-137"] {
		margin-bottom: 16px;
	}
	
}

/* Blog */

.single-post .article {
	padding-top: 80px;
	padding-bottom: 80px;
}

.blog-container {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	padding: 0 16px;
	position: relative;
}

.blog-container.thumbnail-area {
	max-width: 980px;
}

@media (min-width: 980px) {
.blog-container.content-area img {
	width: calc(100vw - 32px); /* 32px = suma paddingów rodzica */
  max-width: 948px;
  display: block;
  margin-left: -100px;
}
}

.single-post h1 {
	text-align: center;
	display: block;
	margin-bottom: 8px;
}

.single-post h2 {
	margin-bottom: 24px;
}

.single-post .title-area {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.single-post ul.post-categories {
	list-style-type: none;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.single-post ul.post-categories li {
	background: #EEEEEE;
	line-height: 1.5;
	padding: 8px 16px;
	display: inline-block;
	margin-bottom: 0;
}

.single-post .post-date {
	font-size: 14px;
	color: var(--color-primary);
}

.single-post .post-subtitle {
	color: #888888;
	display: block;
	margin-bottom: 24px;
}

.single-post .thumbnail-area img {
	margin: 64px 0;
	width: 100%;
	height: auto;
	aspect-ratio: 2/1;
	object-fit: cover;
	object-position: center center;
}

.single-post .content-area p {
	margin-bottom: 24px;
}

.single-post .content-area p.intro {
	font-size: 18px;
	font-weight: 600;
	margin: 48px 0;
}

.single-post .author {
	display: flex;
	gap: 24px;
	align-items: center;
}

.single-post .author-name {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.author-img {
	width: 64px;
	height: 64px;
}

@media (max-width: 768px) {
	.single-post article {
	padding-bottom: 60px;
}
}


/************** ??????????????????? ******************/

.w-100 {
	width: 100%;
}

.v2-kontener {
	width: 100%;
	padding: 112px 64px;
	display: flex;
	align-items: center;
	gap: 80px;
}

.v2-row {
	width: 100%;
	display: flex;
}

.v2-kontener.layout-one-col {
	flex-direction: column;
}

.v2-kontener.layout-two-cols {
	flex-direction: row;
}

.v2-kontener.layout-two-cols .v2-column {
	flex: 1 0 0;
}

	.layout-two-cols {
		display: flex; gap: 80px;
		align-items: center;
	}
	
	.layout-two-cols .v2-column {
		flex: 1;
	}

.v2-column-img {
	border-radius: 10px;
}

.v2-column-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;	
	gap: 48px;
}

.v2-column-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;	
	gap: 48px;
}

.v2-section-title-wrapper {
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.v2-content-wrapper {
	width: 100%;
}

.v2-kontener.layout-one-col .v2-section-title-wrapper {
	text-align: center;
}

.flex-3x {
	flex-wrap: wrap;
	gap: 48px;
}

.flex-3x .v2-column {
	width: calc((100% - 96px) / 3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.flex-2x {
	flex-wrap: wrap;
	gap: 80px;
}

.flex-2x .v2-column, .flex-2x .column {
	width: calc((100% - 80px) / 2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.v2-section-subtitle {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.2;
	color: #888;
}

.v2-section-title {
	font-family: "Black Mango";
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	margin-top: 0;
	margin-bottom: 0;
}

h1.v2-section-title {
	font-size: 72px;
}

.v2-section-caption {
	font-family: var(--font-secondary);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #000;
}

.video-container {
        flex: 1;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
		border-radius: 12px;
    }

@media all and (max-width: 768px) {
	
	.container {
		padding: 0 0;
	}
	
	.v2-kontener {
		padding: 60px 20px;
		gap: 40px;
	}
	
	.v2-section-title {
		font-size: 24px;
		text-align: center;
	}
	
	h3 {
		font-size: 20px;
	}
	
	.v2-section-subtitle, .v2-section-caption {
		text-align: center;
	}
	
	h1.v2-section-title {
		font-size: 32px;
	}
	
	.flex-2x {
		flex-direction: column;
		gap: 20px;
	}
	
	.flex-2x-column, .flex-2x .v2-column {
		width: 100%;
	}
	
	.v2-kontener.layout-two-cols {
		flex-direction: column;
	}
	
	.img-square { 
		aspect-ratio: 3/2; 
	}
	
	.primary-button, .secondary-button { 
		width: 100%; 
	}
	
	.page-header-content { 
		text-align: left;
		align-items: flex-start;
	}
	
	.pricelist-item table td { 
		text-wrap: nowrap; 
	}
	
	.header-button {
		width: 100%;
	}
	
	.mobile-google-widget {
		display: block;
	}
	
	.three-icons .three-icons-header {
		align-items: start;
    	text-align: left;
		margin-bottom: 48px;
	}
	
	.three-icons {
		gap: 36px;
	}
	
	.pricelist-inside {
		padding: 0;
	}
	
	.cennik .container.flex {
		gap: 48px;
	}
	
	.section-introx {
		text-align: left;
	}
	
	.faq .section-title {
    	margin: 0;
	}
	
	.faq-bottom h3 {
		font-size: 28px;
	}
	
	
}

	/* Efekty leczenia */

.text .bal-after img, .text .bal-before img {
height: 100%!important;
}
	
	.metamorfoza-header__description p {
		font-size: 14px;
	}

@media all and (max-width: 479px) {
    .beforeAfter {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: stretch;
        align-content: stretch;
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
    }
    .bal-container {
        margin: 0px 0px;
    }
	
	.metamorfoza-header {
		padding: 0 20px 20px 20px;	
		
	}
	
}

@media all and (max-width: 599px) {
    .beforeAfter {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: stretch;
        align-content: stretch;
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
    }
    .bal-container {
        margin: 0px 0px;
    }
}

@media all and (min-width: 480px) and (max-width: 768px) {
    .beforeAfter {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: stretch;
        align-content: stretch;
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
    }
    .bal-container {
        margin: 0 0;
    }
}

@media all and (min-width: 768px) and (max-width: 959px) {
    .beforeAfter {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: stretch;
        align-content: stretch;
        width: 100%;
        height: 1100px;
        padding: 10px;
    }
    .bal-container {
        margin: 0px 0;
    }
}

@media all and (min-width: 960px) and (max-width: 1199px) {
    .beforeAfter {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: stretch;
        align-content: stretch;
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
    }
    .bal-container {
        margin: 0 0px;
    }
}

@media all and (min-width: 1199px) {
    .beforeAfter {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: stretch;
        align-content: stretch;
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
    }
    .bal-container {
        margin: 0;
    }
}


/* Before After Container */

.bal-container {
    position: relative;
    width: 100%;
    height: 100%;
	border-radius: 25px;
    cursor: grab;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bal-after {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bal-before {
    display: block;
    position: absolute;
    top: 0;
    /* right: 0; */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    overflow: hidden;
}

.bal-before-inset {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}
img {
    user-drag: none;
    user-select: none;
    pointer-events: none;
  }
.bal-after img,
.bal-before img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    
}


.bal-beforePosition {
    background: #121212;
    color: #fff;
    left: 0;
    pointer-events: none;
    border-radius: 0.2rem;
    padding: 2px 10px;
}

.bal-afterPosition {
    background: #121212;
    color: #fff;
    right: 0;
    pointer-events: none;
    border-radius: 0.2rem;
    padding: 2px 10px;
}

.beforeLabel {
    position: absolute;
    bottom: 0;
    margin: 1rem;
    font-size: 1em;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.afterLabel {
    position: absolute;
    bottom: 0;
    margin: 1rem;
    font-size: 1em;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}


/* handle and arrow */

.bal-handle {
    height: 41px;
    width: 41px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -21px;
    border: 2px solid #fff;
    border-radius: 1000px;
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 0 10px rgb(12, 12, 12);
}

.handle-left-arrow,
.handle-right-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

.handle-left-arrow {
    border-right: 6px solid #fff;
    left: 50%;
    margin-left: -17px;
}

.handle-right-arrow {
    border-left: 6px solid #fff;
    right: 50%;
    margin-right: -17px;
}

.bal-handle::before {
    bottom: 50%;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgb(12, 12, 12);
}

.bal-handle::after {
    top: 50%;
    margin-top: 20.5px;
    box-shadow: 0 0 5px rgb(12, 12, 12);
}

.bal-handle::before,
.bal-handle::after {
    content: " ";
    display: block;
    width: 2px;
    background: #fff;
    height: 9999px;
    position: absolute;
    left: 50%;
    margin-left: -1.5px;
}
	
	 .metamorfoza-single {
        gap: 80px;
        background: var(--secondary-color);
		color: #fff;
        padding: 0;
        margin: 0;
    }

    .metamorfoza-single h3 {
        margin-top: 0;
        margin-bottom: 20px;
    }

    @media all and (max-width: 768px) {
        .metamorfoza-single {
            gap: 20px;
        }
    }
	
	.metamorfoza-single {
		display: flex;
		gap: 40px;
		margin: 0;
		align-items: center;
	}
	
	.metamorfoza-image, .metamorfoza-content {
		flex: 1;
	}
	
	.metamorfoza-content {
		padding: 0 40px;
	}
	
	.metamorfoza-header {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	
	.metamorfoza-header__title {
		font-size: 24px;
		font-weight: 600;
	}

@media all and (max-width: 768px) {
	.v2-efekty-videos, .metamorfoza-single {
		flex-direction: column;
		gap: 20px;
		width: 100%;
	}
	
	.pricing {
		padding: 0 20px 30px 20px;
	}
	
	.metamorfoza-image {
		width: 100%;
	}
	
	.metamorfoza-content {
		padding: 0;
	}
	
	.metamorfoza {
		flex-direction: column-reverse;
	}
}