:root{
  --color-body: #0f131d;
  --color-body-2: #232c43;
  --color-primary: #1d404c;
  --color-light: #E2F2F3;
  --color-dark: #AACFD0;
  --color-accent: #365E5E;
  --color-success: #28A745;
  --color-danger: #DC3545;
  --color-warning: #FFC107;
  --color-info: #17A2B8;
  --color-gray: #F1F1F1;
  --color-overlay: #0E0F1999;
  --shadow-regular: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
  --shadow-text: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

body {
  position: relative;
  color: var(--color-body);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  position: relative;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  padding-top: 0px;
  top: 0;
}

h1 {
  font-family: "Tenor Sans", serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  padding: 0;
  margin: 0;
}

h2 {
  font-family: "Tenor Sans", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-body-2);
  padding: 0;
  margin: 0;
}

h3 {
  font-family: "Tenor Sans", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-primary);
  padding: 0 0 24px;
  margin: 0;
  text-align: center;
}

footer {
  margin-top: 128px;
  background-color: var(--color-light) !important;
}

.copyright {
  background-color: #ffffff;
}

.copyright p {
  margin: 0;
}

footer h5 {
  color: var(--color-primary);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.75;
  margin: 0 0 4px 0;
  padding-bottom: 4px;
  border-bottom: var(--color-dark) solid 2px;
}

footer li {
  margin-bottom: 8px;
}

footer a {
  display: block;
  color: var(--color-primary);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.75;
  width: 100%;
}

.custom-shadow {
  box-shadow: var(--shadow-regular);
}

/* Styling the whole navbar */
.navbar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: fixed;
  background-color: transparent !important;
  margin-top: 16px;
}

/* Styling the containers */
.navbar-brand,
.navbar-collapse,
.navbar-text {
  background-color: #ffffff;
  height: 66px;
  padding: 16px 32px;
  border-radius: 24px;
  margin: 0 16px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
  justify-content: center;
  align-items: center;
}

.navbar-collapse {
  width: auto;
  flex-grow: 0;
  flex-basis: auto;
}

.navbar-nav {
  display: inline-flex;
  padding: 0;
  align-items: center;
  gap: 32px;
}

.navbar a {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1.75;
}

.navbar a:hover {
  color: var(--color-accent);
}

.navbar ul {
  list-style: none;
  padding-left: 0;
}

.nav-item, .nav-item a {
  color: var(--color-primary);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

.nav-item:hover .nav-link,
.nav-link:focus {
  color: var(--color-accent);
}

.menu-item a  {
  font-size: 18px;
  line-height: 1.75;
  display: block;
  width: 100%;
  padding: 8px;
}

/* Styl dla elementów menu, które mają podmenu */
.menu-item-has-children {
  position: relative;
  display: flex;
}

.menu-item-has-children li {
  display: flex;
}

.menu-item-has-children a {
  position: relative;
}

.menu-item-has-children > a::after {
  display: inline-block;
  position: absolute;
  margin-left: 8px;
  top: 50%;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

.menu-item-has-children:hover > a::after {
  transform: translateY(-100%);
}

.sub-menu .menu-item-has-children > a::after {
  display: inline-block;
  position: absolute;
  margin-left: 8px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.3s ease-in-out;
}

.sub-menu .menu-item-has-children:hover > a::after {
  transform: translateY(-50%) rotate(-90deg);
}

/* Styl dla rozwijanego menu */
.sub-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: -10px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-regular);
  z-index: 1000;
  min-width: 256px;

}

/* Styl dla linków w rozwijanym menu */
.sub-menu a {
  padding: 6px 12px;
  display: block;
  white-space: nowrap;
  color: var(--color-primary);
  text-decoration: none;
  width: 100%;
  border-radius: 12px;
}

/* Styl dla linków w rozwijanym menu po najechaniu */
.sub-menu a:hover {
  background-color: var(--color-gray);
  color: var(--color-accent);
}

.sub-menu a:last-child {
  border-radius: 12px;
}

/* Styl dla podmenu drugiego poziomu */
.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
  display: none;
  left: 100%;
  top: 0;
}

.navbar-text .lang-on {
  position: relative;
}

.navbar-text .lang-on::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  z-index: 2;
  background: var(--color-accent);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.navbar-text .lang-on span {
  position: relative;
  z-index: 4;
  color: #ffffff;
}

.navbar-text {
  display: flex;
  gap: 16px;
}

/* Styling for smaller devices */
@media (max-width: 992px) {
  .navbar-brand,
  .navbar-toggler {
    margin: 0;
  }
  .navbar-brand {
    padding: 12px;
  }

  .navbar-brand,
  .navbar-collapse,
  .navbar-text {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .container-fluid > .navbar-text { display: none }

  .navbar-text {
    justify-content: flex-start;
    padding: 12px 8px;
    height: auto;
    border-top: var(--color-light) solid 4px;
    border-bottom: var(--color-light) solid 4px;
    border-radius: 0;
    margin: 0 !important;
  }

  .navbar {
    background-color: #FFF !important;
    margin-top: 0;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
  }
  
  .navbar-toggler {
    position: absolute;
    right: 24px;
    top: 22px;
  }
  
  .navbar-collapse {
    height: auto;
    margin: 0;
    width: 100vw;
    padding: 0;
  }
  
  .navbar-nav {
    display: flex !important;
    width: 100%;
    gap: 0;
    align-items: flex-start;
  }

  .menu-item {
    width: 100%;
  }

  .menu-item a {
    padding: 12px;
  }

  /* Adjustments for the dropdown menu */
  .sub-menu {
    position: static;
    width: 100%; /* Full width dropdown */
    left: 0; /* Align to the left edge */
    border-radius: 0; /* Remove rounded corners */
    box-shadow: none; /* Remove shadows */
  }

  .sub-menu a {
    padding: 12px 16px; /* Increased padding for better touch accessibility */
    border: none; /* Remove borders */
    border-radius: 0; /* Remove rounded corners */
  }

  .sub-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Subtle hover effect */
    color: var(--color-accent);
  }

  .menu-item-has-children {
    display: flex;
    flex-direction: column;
  }

  /* Adjust the arrow for menu items with children */
  .menu-item-has-children > a::after {
    right: 16px; /* Adjust the position to the right edge */
  }

  /* Adjust the sub-menu for nested dropdowns */
  .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
    left: 0; /* Align to the left edge */
  }

  .menu-item {
    width: 100%;
  }

  .sub-menu .menu-item-has-children > a::after {
    display: none;
  }

  .menu-item-object-category > a {
    padding-left: 24px;
  }

  .menu-item-object-zabieg > a {
    padding-left: 36px;
  }
}

.show {
  display: block !important;
}

.language-toggler {
  color: var(--color-primary);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  text-decoration: none;
}

.custom-logo{
  height: 100%;
}


.page-banner {
  top: 0;
  display: flex;
  height: 100vh;
  background-size: cover;
  background-position: top;
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.banner-quote {
  position: absolute;
  bottom: 16px;
  right: 64px;
}

.banner-quote h4 {
  font-weight: 700;
  font-style: italic;
}

.banner-quote h5 {
  font-weight: 400;
}

.banner-quote h4,
.banner-quote h5 {
  color: #ffffff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  line-height: 1.75;
  width: 32vw;
  margin: 0;
  text-shadow: var(--shadow-text)
}

.banner-content {
  display: flex;
  width: 100%;
}

.banner-content img.logo {
  position: absolute;
  top: 10vw;
  right: 10vw;
  width: 20vw;
  height: auto;
}

.banner-content img.logo-white {
  display: none;
  position: absolute;
  top: 10vw;
  right: 10vw;
  width: 20vw;
  height: auto;
}

@media screen and (min-width: 1920px) {
  .banner-content img.logo {
    position: absolute;
    top: 12vh;
    right: 10vw;
    width: 15vw;
  }
}

@media screen and (max-width: 991px) {
  .banner-quote {
    bottom: 32px;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 12px;
    z-index: 2;
  }
  .banner-quote h4,
  .banner-quote h5 {
    font-size: 16px;
    line-height: 1.75;
    width: 100%;
    margin: 0;
    z-index: 2;
  }
  .banner-content img.logo {
    display: none;
  }
  .banner-content img.logo-white { 
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: auto;
    z-index: 2;
  }
  .page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--color-overlay);
}
}

.description h1 {
  padding-bottom: 8px;
}

.description h2 {
  padding-bottom: 24px;
}

.main-photo {
  position: relative;
  background-size: cover;
  background-position: top;
}


@media (max-width: 991.98px) {
  .main-photo {
    width: 100%;
    height: 177vw;
  }
  .description {
    padding: 32px;
  }
  
}

.main-photo iframe {
  border-radius: 24px 0px 0px 0px !important;
  position: absolute !important;
  bottom: 0;
  right: 0;
  margin: 0;
  position: relative;
  width: 245px;
  height: 242px !important;
}

.card {
  border-radius: 0 !important;
}

.description {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.title-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}

@media (max-width: 991.98px) {
  .description {
    padding: 32px;
  }
}

.logos-full-width {
    padding: 64px 0;
    background-color: var(--color-light); /* Replace with your color */
}

.logo-item {
    max-height: 120px;
    width: auto;
}

.owl-carousel .owl-item img {
  width: auto;
}

.owl-carousel .owl-item:hover {
  scale: 0.9;
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-accent); /* Replace with your color */
}

.owl-carousel.owl-theme .owl-dots .owl-dot span {
    background: var(--color-secondary); /* Replace with your color */
    width: 10px;
    height: 10px;
    margin: 5px;
}

.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
    display: none !important;
}

/* CATEGORY-TILES */

.category-tile {
  position: relative;
  height: 600px; /* Adjust as per your design */
  border-radius: 24px;
  padding: 12px; /* Adjust as per your design */
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px; /* Adjust as per your design */
  overflow: hidden;
}

.img-category {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px; /* Adjust as per your design */
}

.image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 46.87%, #000 100%);
  z-index: 1;
  border-radius: 24px;
  transition: opacity 0.3s ease;
  opacity: 1; /* Always visible */
}

.image-container:hover::after {
  opacity: 0.5; /* Slightly less visible on hover */
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1; /* Ensure it's above the image but below the text */
  border-radius: 24px; /* Adjust as per your design */
}

.category-tile h4 {
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  bottom: 32px;
  left: 32px;
  margin: 0;
  color: #ffffff;
  z-index: 2;
}

.category-tile a {
  color: #ffffff; /* Adjust as per your design */
}

.zabiegi-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3; /* Ensure it's above the pseudo-element */
}

.category-tile:hover .zabiegi-list, .category-tile:hover .image-container::before { opacity: 1 }
.category-tile:hover { cursor: pointer }

.zabiegi-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.zabiegi-list li a {
  text-decoration: none;
  color: #ffffff;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  display: block; /* Make the link block-level */
  padding: 8px 16px; /* Add some padding */
}

.zabiegi-list li {
  position: relative;
}

.zabiegi-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* Adjust according to your design */
  width: 100%; /* Adjust according to your design */
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Your background color */
  z-index: -1; /* Place it behind the text/link */
  opacity: 0; /* Initially hidden */
  transition: opacity 0.3s ease; /* Smooth transition */
}

.zabiegi-list li:hover::before {
  opacity: 1; /* Show the background on hover */
}

.zabiegi-list li:hover a {
  padding-left: 24px;
}

.zabiegi-list div {
  width: 100%;
}
.opinie {
  display: flex;
  justify-self: center;
  align-self: center;
  justify-content: center;
  align-items: center;
}

.opinie-pacjentow {
  position: relative;
  justify-content: center;
}

.opinie-pacjentow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 456px;
  padding: 128px 0;
  background-color: var(--color-light);
  z-index: -1;
}

.quotation-mark {
  display: flex;
  flex-direction: column-reverse;
  opacity: 0.2;
  color: #1C2546;
  height: 456px;
  padding: 0 0 32px 64px;
}

.opinie-inside {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.opinie-inside img {
  border-radius: 24px;
  object-fit: cover;
  padding: 0;
  height: 734px;
}

.arrows {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 64px;
}

.opinia {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  gap: 6px;
  min-height: 150px;
  padding-right: 32px;
}

.opinia-text {
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.75;ź
    margin: 0;
    flex-grow: 1;
    flex-basis: auto;
}

.opinia-text p {
  margin: 0;
}

.opinia-author {
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}

.height-100 {
  height: 250px;
}

.carousel-indicators {
  list-style-type: none !important;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  background-color: var(--color-light);
}

.carousel-indicators .active {
  background-color: var(--color-dark);
}

.carousel-item {
  height: 250px;
}

/* Desktop Styling */
@media (min-width: 992px) {
  .opinie-pacjentow {
    height: 734px;
  }
  .opinia-text {
    height: 128px;
}
}

/* Mobile Styling */
@media (max-width: 991.98px) {
  .opinie-pacjentow {
    padding: 0;
    margin: 0;
  }
  .quotation-mark {
    display: none;
  }
  .opinie-inside {
    flex-direction: column;
  }
  .opinie-inside img {
    height: auto;
    width: 100%;
    border-radius: 24px;
  }
  .opinia {
    padding: 0;
  }

  .carousel-indicators {
    display: none;
  }

  .opinie-pacjentow::after {
    display: none;
  }
  .height-100 {
    height: auto;
  }
}


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

input::placeholder {
  color: #B4BAC2;
}

select::placeholder {
  color: #B4BAC2;
}

textarea::placeholder {
  color: #B4BAC2;
}

#responsive-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
	max-width:816px /*-- change this to get your desired form width --*/;
	margin:0;
  width:100%;
}
.form-row{
  display: flex;
  gap: 16px;
  justify-content: space-between; 
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between; 
}

@media (min-width: 992px) { /* Apply padding-left only for lg screens and above */
  .form-row {
    flex-direction: row;
  }
}

.column-half, .column-full{
	float: left;
	position: relative;
	width:100%;
	-webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
  color: var(--color-primary);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
}

.column-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) { 
	.column-half{
		width: 50%;
	}
}

/* W KILKU MIEJSCACH, ALE TU NAJBARDZIEJ TO WIDAĆ NIERÓWNE WCIĘCIA */
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="date"], .wpcf7-select, .wpcf7 textarea {
	width: 100%;
	padding: 5px 12px;
  border: 1px solid var(--color-light);
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  height: 34px;
}

.wpcf7 textarea {
  height: auto !important;
}



.wpcf7 input[type="text"]:focus{
	background: #fff;
}
.wpcf7-submit{
	display: flex;
  height: 44px;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 12px;
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 8px 18px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
}

span.wpcf7-not-valid-tip{
	text-shadow: none;
	font-size: 12px;
	color: #fff;
	background-color: var(--color-danger) ;
	padding: 5px 12px;
}
div.wpcf7-validation-errors { 
	text-shadow: none;
	border: transparent;
	background: var(--color-warning);
	padding: 5px 12px;
	color: #9C6533;
	text-align: center;
	margin: 0;
	font-size: 12px;
}
div.wpcf7-mail-sent-ok{
	text-align: center;
	text-shadow: none;
	padding: 5px 12px;
	font-size: 12px;
	background: var(--color-success);
	border-color: var(--color-success);
	color: #fff;
	margin: 0;
}

.button-cta {
  display: flex;
  height: 44px;
  align-items: center;
  border-radius: 12px;
  background-color: var(--color-accent);
  color: #ffffff;
  padding: 10px 18px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
  text-decoration: none;
}

.form-inside {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.form-input {
  padding-left: 0;
}

@media (min-width: 992px) { /* Apply padding-left only for lg screens and above */
  .form-input {
    padding-left: 128px;
  }
}

.form-inside img {
  border-radius: 24px;
  object-fit: cover;
  padding: 0;
  max-height: 734px;
}

.formularz label {
  margin-bottom: 8px;
}

.formularz p {
  margin-bottom: 40px;
}

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

.site-map {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: top;
  gap: 12px;
  padding: 0 64px;
}

.site-map ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-map li {
  margin: 0;
}

.site-map a {
  color: var(--color-primary);
  font-size: 12px;
  padding: 0;
}

.site-map a:hover {
  color: var(--color-accent);
  scale: 1.02;
}

.social-icons {
  margin: 0;
}

.social-icons-widget {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 16px;
}

.social-icons a {
  display: flex;
  color: var(--color-accent)
  margin-right: 0;
  font-size: 42px;
  width: 42px;
  justify-content: center;
  align-items: flex-end;
  line-height: 1;
}

.social-icons p {
  margin: 0;
}

.social-icons a i {
  display: flex;
  color: var(--color-accent)
}

.white-divider { 
  border-top: var(--color-dark) 2px solid;
  margin: 8px 0;
  opacity: 1;
}

.info h4 {
  padding-bottom: 4px;
  font-size: 14px;
  margin: 0;
}

.info, .info a {
  color: var(--color-body)
  text-decoration: none;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
  margin: 0;
}

.info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info ul li:nth-child(1), .info ul li:nth-child(2) {
  position: relative;
  padding: 0 0 0 18px;
  margin: 0;
}

.info ul li:nth-child(1)::before, .info ul li:nth-child(2)::before {
  position: absolute;
  top: -1px;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
}

.info ul li:nth-child(1)::before {
  content: "\f3c5";
}

.info ul li:nth-child(2)::before {
  content: "\f095";
}

.info ul li:nth-child(2):hover, .info ul li:nth-child(2):hover::before {
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .site-map {
    display: flex !important;
  }
  .site-map .col-md-2:not(.open-footer) > div {
    display: none;
  }
  footer h5, .site-map a {
    font-size: 18px;
    padding: 8px 0;
  }
  .info h4 {
  font-size: 18px;
  }
  .info, .info a {
  font-size: 16px;
  }
  .info ul li:nth-child(1)::before, .info ul li:nth-child(2)::before {
    font-size: 16px;
    top: 8px;
  }
  .info ul li:nth-child(1), .info ul li:nth-child(2) {
    padding: 8px 0 8px 22px;
  }
  .column-half, .column-full, .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 input[type="date"], .wpcf7-select, .wpcf7 textarea {
  font-size: 16px;
  }
  .logo-footer {
    display: flex;
  }
  .logo-footer img {
    width: 69%;
    margin: auto;
    align-self: center;
  }
  .white-divider {
    margin: 16px 0;
  }
}


/* index.php */

.page-title {
  font-size: 32px;
  margin: 128px auto 32px;
}

.page-content p {
  font-size: 18px;
  margin-bottom: 16px;
}

/* ZABIEGI */

.subpage-banner {
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  height: 30vw;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  overflow: hidden;
  margin-bottom: 64px;
}

.subpage-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--color-overlay);
}

.zabieg-photo {
  background-size: cover;
  background-position: top;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.banner-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 192px;
  color: #ffffff;
  font-family: Tenor Sans;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  text-shadow: 0px 8px 35px rgba(255, 255, 255, 0.69);
  z-index: 3;
}

.banner-text h1 {
  font-size: 52px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.subtitle-container h2 {
  position: relative;
  display: inline-block;
  padding: 0 12px; /* Dodaje przestrzeń po obu stronach tekstu */
  color: #ffffff;
}

.subtitle-container h2:before,
.subtitle-container h2:after {
  content: "";
  position: absolute;
  height: 2px; /* Wysokość kreski */
  background-color: #ffffff; /* Kolor kreski */
  top: 50%;
  width: 24px; /* Szerokość kreski */
}

.subtitle-container h2:before {
    left: -24px; /* Pozycjonowanie lewej kreski */
}

.subtitle-container h2:after {
    right: -24px; /* Pozycjonowanie prawej kreski */
}

.zabieg-description {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 32px;
}

.zabieg-description h3 {
  font-family: Tenor Sans;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  padding-bottom: 24px;
}

.zabieg-description p {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  text-align: left;
  padding-bottom: 12px;
  margin: 0;
}

@media (max-width: 992px) {
  .banner-text {
    gap: 6px;
    margin-top: 42px;
  }
  .banner-text h1 {
    font-size: 32px;
  }
  .banner-text h2 {
    font-size: 16px;
  }
  .subpage-banner {
    height: 50vw;
    margin-top: 82px;
  }
}

/* DIVIDER */

.divider {
  position: relative;
  height: 2px;
  width: 320px;
  background-color: var(--color-light);
  margin: 64px auto;
}
.divider::before, .divider::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--color-light);
  rotate: 45deg;
  transform: translateY(-50%);
}
.divider::before {
  left: -6px;
}
.divider::after {
  right: 0;
}

/* PRZED OPERACJĄ EXCERPT */

.przed-operacja-excerpt {
  display: flex;
  flex-direction: column;
  padding: 32px 64px;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  background-color: var(--color-light);
  border-radius: 24px;
}

.przed-operacja-excerpt p {
  margin: 0;
}

.po-operacji h2 {
  text-align: center;
  padding-bottom: 24px;
}

.po-operacji-tile {
  width: 100%;
  height: 100%;
  padding: 32px;
  display: flex;
  gap: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-primary);
  background-color: var(--color-light);
  border-radius: 24px;
  min-height: 245px;
  overflow: hidden;
}

.po-operacji-tile h4 {
  font-family: Tenor Sans;
  font-size: 52px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.po-operacji-tile h5 {
  font-family: Tenor Sans;
  font-size: 28px;
  margin-bottom: 24px;
}

.po-operacji-tile p {
  font-size: 16px;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
}

.badania-row {
  position: relative;
  width: 100%;
  border-radius: 24px;
  background-color: var(--color-dark);
  padding: 0 64px;
  min-height: 350px;
}

.badania-row img {
  width: 100%;
  height: calc(100% + 128px);
  object-fit: cover;
  object-position: top;
  border-radius: 24px;
  position: absolute;
  top: -64px;
  left: 0;
}

.badania-row .col-lg-4 {
  position: relative;
}

.badania-row .col-lg-8 {
  padding: 32px 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.badania-row .padding-left {
  padding-left: 64px !important;
}

/* Dla małych ekranów */
@media (max-width: 992px) {
  .badania-row img {
    position: static;
    width: 100%; /* Przywracamy standardową szerokość */
    margin-top: 32px; /* Dodajemy odstęp */
    height: auto;
  }
    .badania-row {
    width: auto;
    padding: 0;
  }
  .badania-row .col-lg-8 {
    padding: 32px;
  }
  .badania-row .padding-left {
    padding-left: 32px !important;
  }
  .po-operacji div:nth-child(2) {
    --bs-gutter-y: 1.5rem !important;
  }
}

.badania-row p {
  position: relative;
  color: #ffffff;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.75;
  padding: 0 0 4px 28px;
  margin: 0;
}

.badania-row p::before {
  position: absolute;
  top: 2;
  left: 0;
  content: "\f492";
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--color-light);
}

.badania h3 {
  padding-bottom: 88px;
}

.badania-padding {
  padding-bottom: 112px !important;
}

/* PRZECIWWSKAZANIA */
.przeciwwskazania ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.przeciwwskazania li {
    position: relative;
    color: var(--color-body-2);
}

.przeciwwskazania li:not(:last-child)::after {
    content: "|";
    font-size: 18px;
    font weight: 700;
    padding: 0 12px;
}


.przed-operacja ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.przed-operacja li {
  position: relative;
  color: var(--color-body-2);
  margin: 0;
  padding-left: 1em;

}

.przed-operacja li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4em;
    height: 0.4em;
    background-color: var(--color-primary);
    rotate: 45deg;
    display: inline-block;
}

.przed-operacja a {
  text-decoration: none;
  color: var(--color-accent);
}

.logo-kontakt img {
  width: 300px;
  height: auto  ;
  padding-bottom: 24px;
}

.info-logo {
  display: flex;
  flex-direction: column;
  justify-content: right;
  align-items: flex-end;
  padding: 32px 64px;
  
}

.info-logo h4 {
  display: none;
}

.info-logo a {
  text-decoration: none;
  color: var(--color-primary);
}

.kontakt-doktor {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.kontakt-doktor a {
  position: relative;
  padding-left: 24px;
}

.kontakt-doktor a:nth-child(1)::before, .kontakt-doktor a:nth-child(2)::before {
  position: absolute;
  top: -1px;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
}

.kontakt-doktor a:nth-child(1)::before {
  content: "\f0e0";
}

.kontakt-doktor a:nth-child(2)::before {
  content: "\f095";
}


.kontakt-doktor a:hover, .kontakt-doktor a:hover::before {
  color: var(--color-accent);
}

.mapa-google {
  height: 400px;
  border-radius: 24px;
}



.info-map h3 {
  text-align: left;
}

.info-map {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-content: center;
  padding: 32px;
  height: 100%;
}

.info-map a {
  position: relative;
  text-decoration: none;
  color: var(--color-primary);
  padding-left: 24px;
}

.info-map a:nth-child(2)::before, .info-map a:nth-child(3)::before {
  position: absolute;
  top: -1px;
  left: 0;
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  color: var(--color-primary);
}

.info-map a:nth-child(2)::before {
  content: "\f3c5";
}

.info-map a:nth-child(3)::before {
  content: "\f095";
}

.info-map a:hover, .info-map a:hover::before {
  color: var(--color-accent);
}

.left-widget-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  border: 2px #fff solid;
  border-radius: 0 24px 24px 0;
  background-color: var(--color-light);
  display: flex;
  flex-direction: column;
  z-index: 999;
  padding: 12px 12px 12px 4px;
}

.left-widget-bar .social-icons-widget {
  flex-direction: column;
}

.left-widget-bar .social-icons-widget p {
  margin: 0;
}