@charset "UTF-8";
:root {
  --plava-logo: #253B4A;
  --braon: #D5B286;
  --crna: #1C1C1C;
  --bela: #FFFFFF;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --secondary-color: #3a57a0;
  --primary-font: "Lora", serif;
  --secondary-font: "Lora", serif;
  --barlow-font: "Lora", serif;
  --transition: 0.3s ease;
}

@media (min-width: 1140px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1140px; /* ti stavi koliko hoćeš */
  }
}
@media (min-width: 1340px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1280px; /* ti stavi koliko hoćeš */
  }
}
@media (min-width: 1500px) {
  .container,
  .container-xxl {
    max-width: 1440px; /* ili više ako ti treba */
  }
}
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

body {
  font-family: var(--primary-font);
  background: #f8f4ed;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

.relative {
  position: relative;
}

h1, h2, h3, h4, h5 {
  font-family: var(--secondary-font);
}

h1 {
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-bottom: 25px;
}
@media (max-width: 1440px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 38px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-bottom: 15px;
}
@media (max-width: 1440px) {
  h5 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h5 {
    font-size: 22px;
  }
}

h6 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  h6 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  h6 {
    font-size: 20px;
  }
}

header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
}
header .topbar {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 0;
  padding: 14px 0 12px;
  backdrop-filter: blur(12px);
}
header .topbar .logo img {
  height: 54px;
  width: auto;
  margin-right: 34px;
}
header .topbar .logo span {
  font-weight: 600;
  color: var(--dark-color);
}
header .topbar .right-group {
  display: flex;
  flex: 1;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}
header .topbar .topmenu .nav-link {
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  padding: 0 13px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
header .topbar .topmenu .nav-link:hover {
  color: #384A58;
}
header .topbar .topmenu .nav-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #384A58;
  transition: width var(--transition), left var(--transition);
}
header .topbar .topmenu .nav-link:hover::after {
  width: 80%;
  left: 10%;
}
@media (max-width: 1440px) {
  header .topbar .topmenu .nav-link {
    font-size: 18px;
  }
}
header .topbar .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #384A58;
  margin-left: 14px;
  font-size: 20px;
  transition: var(--transition);
}
header .topbar .social a:hover {
  opacity: 0.72;
}
header .topbar .social a:first-child {
  margin-left: 0;
}
header .topbar .social img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}
header .topbar .header-utility {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}
header .topbar .header-utility .headinfo {
  border-left: 0;
  padding-left: 0;
}
header .topbar .header-utility a {
  color: inherit;
  text-decoration: none;
}
header .header-separator {
  display: block;
  width: 1px;
  height: 28px;
  flex: 0 0 1px;
  background: rgba(56, 74, 88, 0.5);
}
header .header-languages {
  display: inline-flex;
  align-items: center;
  gap: 0;
}
header .header-languages a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
header .header-languages a.active {
  font-weight: 600;
}
header .header-languages a span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.7px solid #384A58;
  border-bottom: 1.7px solid #384A58;
  transform: rotate(45deg) translateY(-3px);
}
@media (max-width: 991px) {
  header {
    /* Dropdown item da izgleda kao parent */
  }
  header .dropdown-submenu .submenu-toggle {
    top: 18px;
  }
  header .dropdown-submenu > a.dropdown-item {
    font-weight: 600;
  }
  header .dropdown-submenu.open > .dropdown-menu {
    display: block !important;
    top: 45px !important;
    left: -15px !important;
    margin-left: 0 !important;
  }
}

header .main-nav {
  background-color: transparent;
  padding: 0px;
}
header .main-nav .mainnav-content {
  position: relative;
  z-index: 10001;
  overflow: visible;
  background: #5D6990;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 16px 35px rgba(31, 44, 71, 0.22);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 62px;
  padding: 0 30px;
}
header .main-nav .mainnav-content .topmenu, header .main-nav .mainnav-content .social {
  display: none;
}
header .main-nav .searrchbox {
  width: 0;
  display: none;
}
header .main-nav .searrchbox form {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 25px;
  height: 40px;
  display: flex;
}
header .main-nav .searrchbox form input {
  width: calc(92% - 30px);
  background: transparent;
  border: 0px;
  padding: 0px 15px;
  margin: 0px;
  height: 40px;
}
header .main-nav .searrchbox form button {
  width: 8%;
  background: transparent;
  border: 0px;
  padding: 0px;
  margin: 0px;
  height: 40px;
  border-left: 1px solid #3B444F;
  padding: 0px 15px;
}
header .main-nav .searrchbox form button svg {
  display: block;
  width: 24px;
}
@media (max-width: 1440px) {
  header .main-nav .searrchbox {
    width: 320px;
  }
}
header .main-nav .navbar-nav {
  gap: 34px;
}
header .main-nav .navbar-nav .nav-item {
  height: 61px;
}
@media (max-width: 768px) {
  header .main-nav .navbar-nav .nav-item {
    height: 48px;
  }
}
header .main-nav .navbar-nav .nav-link {
  color: #F9F5EC;
  transition: var(--transition);
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 0px;
  position: relative;
}
header .main-nav .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #F9F5EC;
  transition: width var(--transition), left var(--transition);
}
header .main-nav .navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0px;
}
@media (max-width: 1440px) {
  header .main-nav .navbar-nav .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  header .main-nav .navbar-nav .nav-link {
    font-size: 16px;
  }
}
header .main-nav .navbar-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0px;
  background: rgba(255, 255, 255, 0.98);
  border: 0px solid #ddd;
  border-radius: 0;
  min-width: 200px;
  z-index: 10002;
}
header .main-nav .navbar-nav .dropdown-menu .dropdown-item {
  color: var(--dark-color);
  padding: 0.5rem 1rem;
}
header .main-nav .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: var(--light-color);
  color: var(--plava-logo);
}
header .main-nav .navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
header .main-nav .navbar-nav .nav-item li {
  font-family: var(--barlow-font);
}
header .main-nav .navbar-nav .nav-item:hover > .dropdown-menu {
  display: block;
}
header .main-nav .navbar-nav .dropdown-submenu {
  position: relative;
}
header .main-nav .navbar-nav .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
}
header .main-nav .navbar-nav .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

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

.btn.btn-primary, .btn.btn-rounded {
  color: #FFF;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border-radius: 50px;
  background: #D5B286;
  border: 0px;
  padding: 10px 20px;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-primary img, .btn.btn-rounded img {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .btn.btn-primary img, .btn.btn-rounded img {
    margin-right: 6px;
  }
}
.btn.btn-primary:hover, .btn.btn-rounded:hover {
  background: #394893;
  color: white;
}

.btn.btn-rounded {
  border-radius: 50%;
}

.heroCarousel .carousel-inner .carousel-item {
  height: auto !important;
  min-height: 300px;
  position: relative;
}
.heroCarousel .carousel-bg {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 41%;
  background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0.7);
  z-index: 1;
}
@media (max-width: 768px) {
  .heroCarousel .carousel-bg {
    padding-top: 135%;
  }
}
.heroCarousel .carousel-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.heroCarousel .carousel-caption .pretitle {
  color: #FFF;
  font-family: var(--primary-font);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 32px */
}
.heroCarousel .carousel-caption .headline {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 48px */
  text-transform: uppercase;
}
.heroCarousel .carousel-caption .description {
  color: #FFF;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 28.8px */
  margin-left: 25px;
  margin-top: 40px;
  max-width: 560px;
}
.heroCarousel .carousel-caption .btn {
  color: #2A404E;
  font-family: var(--primary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 83.333% */
  letter-spacing: 0.48px;
  background: url("/template/stomatologbg/assets/images/btnbackground.png") lightgray 0px 0px/100% 100% no-repeat;
  padding: 10px 25px;
  border: 0px;
  border-radius: 35px;
  margin-top: 40px;
  margin-left: 25px;
  transition: background-size var(--transition);
}
.heroCarousel .carousel-caption .btn:hover {
  background-size: 130% 110%;
}
@media (max-width: 768px) {
  .heroCarousel .carousel-caption .btn {
    padding: 15px 60px;
  }
}
@media (max-width: 768px) {
  .heroCarousel .carousel-caption .pretitle {
    font-size: 20px;
  }
  .heroCarousel .carousel-caption .headline {
    font-size: 24px;
  }
  .heroCarousel .carousel-caption .description {
    font-size: 16px;
    max-width: 185px;
  }
}
.heroCarousel .carousel-control-next, .heroCarousel .carousel-control-prev {
  z-index: 9;
}

.mainslider {
  position: relative;
}
.mainslider .bottombtns {
  position: absolute;
  bottom: 40px;
  z-index: 9;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .mainslider .bottombtns {
    bottom: -23px;
    gap: 10px;
  }
  .mainslider .bottombtns a {
    font-size: 8px;
    line-height: 12px;
  }
  .mainslider .bottombtns a img {
    height: 18px;
  }
}
@media (max-width: 768px) {
  .mainslider .headline {
    margin-bottom: 210px;
  }
}

.swiper-sekcija {
  position: relative;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-sekcija .content-col {
  color: #fff;
}
.swiper-sekcija .content-col .section-title {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
}
@media (max-width: 768px) {
  .swiper-sekcija .content-col .section-title {
    font-size: 36px;
  }
}
.swiper-sekcija .content-col .section-desc {
  color: #1C1C1C;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 23.04px */
  margin-top: 40px;
  margin-bottom: 40px;
}
.swiper-sekcija .content-col .section-desc.white {
  color: #FFFFFF !important;
}
.swiper-sekcija .slider-col {
  position: relative;
}
.swiper-sekcija .slider-col .slider-wrapper {
  position: relative;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .swiper-sekcija .slider-col .slider-wrapper {
    margin-left: 0px;
  }
}
.swiper-sekcija .slider-col .swiper {
  overflow: hidden;
}
.swiper-sekcija .slider-col .swiper-slide {
  background: #fff;
  border-radius: 30px;
  text-align: center;
}
.swiper-sekcija .slider-col .slider-nav {
  position: absolute;
  bottom: -80px;
  width: 100%;
}
.swiper-sekcija .slider-col .slider-nav .swiper-button-prev,
.swiper-sekcija .slider-col .slider-nav .swiper-button-next {
  color: #fff;
  width: 60px;
  height: 40px;
  border: 1px solid #CCAE79;
  border-radius: 30px;
  padding: 0px 5px;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}
.swiper-sekcija .slider-col .slider-nav .swiper-button-prev:after,
.swiper-sekcija .slider-col .slider-nav .swiper-button-next:after {
  display: none;
}
.swiper-sekcija .slider-col .slider-nav .swiper-button-prev:hover,
.swiper-sekcija .slider-col .slider-nav .swiper-button-next:hover {
  background: #CCAE79;
}
.swiper-sekcija .slider-col .slider-nav .swiper-button-prev {
  left: auto;
  right: 80px;
}
@media (max-width: 768px) {
  .swiper-sekcija .slider-col .slider-nav {
    bottom: -50px;
  }
}
.swiper-sekcija .service-slider .swiper-slide {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .swiper-sekcija .service-slider .swiper-slide .imgholder {
    width: 100%;
    position: relative;
    height: 200px;
  }
}
.swiper-sekcija .service-slider .swiper-slide img {
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .swiper-sekcija .service-slider .swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: inherit;
  }
}
.swiper-sekcija .service-slider .swiper-slide .title {
  margin-top: 20px;
  color: #2A404E;
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 reda */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em; /* uvek rezerviši 2 reda prostora */
  line-height: 1.2em; /* visina jednog reda */
}
@media (max-width: 1440px) {
  .swiper-sekcija .service-slider .swiper-slide .title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .swiper-sekcija .service-slider .swiper-slide .title {
    min-height: inherit;
  }
}
.swiper-sekcija .service-slider .swiper-slide .btn.btn-rounded {
  width: 37px;
  height: 37px;
  text-align: center;
  padding: 0px;
  margin-top: 20px;
}
.swiper-sekcija .service-slider .swiper-slide .contentholder {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .swiper-sekcija .service-slider .swiper-slide .contentholder {
    flex-direction: row;
    justify-content: space-between !important;
    padding: 0px 20px 10px;
    align-items: baseline;
  }
}
@media (max-width: 1440px) {
  .swiper-sekcija.right .content-col {
    padding-left: 180px;
  }
}
.swiper-sekcija.left {
  background-position: right;
}
.swiper-sekcija.left .content-col {
  text-align: right;
}
.swiper-sekcija.left .slider-col .slider-nav .swiper-button-prev {
  left: 0px;
  right: auto;
}
.swiper-sekcija.left .slider-col .slider-nav .swiper-button-next {
  left: 80px;
  right: auto;
}
@media (max-width: 768px) {
  .swiper-sekcija.left .row.align-items-center {
    flex-direction: column-reverse;
  }
  .swiper-sekcija.left .row.align-items-center .swiper-button-next {
    left: auto;
    right: 0px;
  }
  .swiper-sekcija.left .row.align-items-center .swiper-button-prev {
    left: auto;
    right: 80px;
  }
}
@media (max-width: 768px) {
  .swiper-sekcija {
    min-height: 800px;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  .swiper-sekcija .btn.btn-primary {
    display: none;
  }
  .swiper-sekcija.right {
    text-align: right;
  }
  .swiper-sekcija.right .content-col {
    padding-left: 110px;
  }
  .swiper-sekcija .section-title {
    font-size: 42px;
  }
}

.rounded-text {
  background-size: cover !important;
  background-position: right !important;
}
@media (max-width: 768px) {
  .rounded-text {
    background-position: center !important;
  }
}
.rounded-text .content {
  margin-top: 240px;
  margin-bottom: 120px;
  color: white;
  position: relative;
  padding: 20px 20px 40px;
}
@media (max-width: 768px) {
  .rounded-text .content {
    padding: 60px 20px 70px;
  }
}
.rounded-text .content .title {
  font-family: var(--secondary-font);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .rounded-text .content .title {
    font-size: 48px;
  }
}
.rounded-text .content .subtitle {
  font-family: var(--secondary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 97%; /* 46.56px */
  margin-top: 20px;
  max-width: 80%;
  z-index: 1;
  position: relative;
}
.rounded-text .content .description {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 28.8px */
  margin-top: 40px;
  z-index: 1;
  position: relative;
}
@media (max-width: 768px) {
  .rounded-text .content .description {
    padding-bottom: 80px;
    font-size: 16px;
    padding-right: 30px;
  }
}
.rounded-text .content .videolink {
  height: 200px;
  width: 200px;
  padding: 0px;
  z-index: 1;
  position: absolute;
  right: 0px;
  top: 60px;
}
@media (max-width: 768px) {
  .rounded-text .content .videolink {
    height: 148px;
    width: 150px;
    padding: 0px;
    z-index: 1;
    position: absolute;
    left: 0px;
    top: initial;
    right: initial;
    bottom: 45px;
  }
}
.rounded-text .content:after {
  content: "";
  width: 400%;
  height: 100%;
  background: var(--braon);
  position: absolute;
  top: 0px;
  right: -200px;
  z-index: 0;
  border-radius: 0 300px 300px 0;
}
@media (max-width: 768px) {
  .rounded-text .content:after {
    content: "";
    width: 155%;
    height: 100%;
    background: var(--braon);
    position: absolute;
    top: 0px;
    right: 10px;
    z-index: 0;
    border-radius: 0 400px 400px 0;
  }
}
@media (max-width: 1440px) {
  .rounded-text .subtitle {
    font-size: 36px !important;
  }
}
@media (max-width: 768px) {
  .rounded-text .subtitle {
    font-size: 16px !important;
  }
}

.numbers .boxholder {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0px;
}
@media (max-width: 768px) {
  .numbers .boxholder {
    gap: 10px;
    padding: 30px 0px;
    width: 100%;
    overflow: auto;
  }
}
.numbers .boxholder .no-box {
  border-radius: 60px 0;
  background: #e6ded3;
  padding: 20px 40px;
  text-align: center;
  min-width: 240px;
}
@media (max-width: 768px) {
  .numbers .boxholder .no-box {
    border-radius: 17px 0;
    background: #e6ded3;
    padding: 10px 10px;
    text-align: center;
    min-width: initial !important;
  }
}
.numbers .boxholder .no-box .number {
  color: #2a404d;
  text-align: center;
  font-family: var(--primary-font);
  font-size: 104px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 197.12px */
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .numbers .boxholder .no-box .number {
    font-size: 64px !important;
  }
}
@media (max-width: 768px) {
  .numbers .boxholder .no-box .number {
    font-size: 18px !important;
  }
}
.numbers .boxholder .no-box .info {
  color: #2a404d;
  font-family: var(--primary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 154%;
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .numbers .boxholder .no-box .info {
    font-size: 18px !important;
  }
}
@media (max-width: 768px) {
  .numbers .boxholder .no-box .info {
    font-size: 8px !important;
  }
}

.our-services {
  background: #F9F5EF;
  padding: 95px 0px 0px;
}
@media (max-width: 768px) {
  .our-services {
    overflow-x: auto;
  }
}
.our-services .service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.our-services .title {
  color: #D5B286;
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-bottom: 130px;
}
.our-services .service-holder {
  position: relative;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0 2px 50px 10px rgba(0, 0, 0, 0.06);
  padding-top: 105px;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  .our-services .service-holder {
    margin-bottom: 50px;
  }
}
.our-services .service-holder .imgholder {
  position: absolute;
  height: 154px;
  width: 154px;
  top: -77px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  left: calc(50% - 77px);
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}
@media (max-width: 768px) {
  .our-services .service-holder .imgholder {
    height: 124px;
    width: 124px;
    top: -42px;
    left: calc(50% - 61px);
  }
}
.our-services .service-holder .imgholder img {
  width: 180%;
  object-fit: cover;
  object-position: center;
  height: fit-content;
}
@media (max-width: 768px) {
  .our-services .service-holder .imgholder img {
    width: 174%;
  }
}
.our-services .service-holder .title {
  color: #2A404E;
  text-align: center;
  font-family: var(--barlow-font);
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
  text-transform: uppercase;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 reda */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em; /* uvek rezerviši 2 reda prostora */
  line-height: 1.2em; /* visina jednog reda */
}
@media (max-width: 1440px) {
  .our-services .service-holder .title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .our-services .service-holder .title {
    font-size: 18px;
  }
}
.our-services .service-holder .btn.btn-rounded {
  width: 37px;
  height: 37px;
  padding: 0px;
  margin-bottom: 20px;
}
.our-services.in_row .servicebox {
  display: flex;
  justify-content: center;
  gap: 10px;
  justify-content: space-between;
}
.our-services.in_row .servicebox .title {
  color: #2A404E;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  text-transform: uppercase;
  margin-bottom: 10px;
}
.our-services.in_row .servicebox .service-holder {
  width: 125px;
  padding: 55px 11px 5px 11px;
}
.our-services.in_row .servicebox .service-holder .btn.btn-rounded {
  width: 20px;
  height: 20px;
}
.our-services.in_row .servicebox .service-holder .btn.btn-rounded svg {
  height: 11px;
}
.our-services.in_row .servicebox .service-holder .imgholder {
  height: 80px;
  width: 80px;
  top: -40px;
  left: 25px;
}

.team {
  margin-top: 40px;
  margin-bottom: 40px;
}
.team .team-member {
  border-radius: 35px;
  overflow: hidden;
  background: #D5B286;
  color: white;
  cursor: pointer;
  margin-bottom: 20px;
}
.team .team-member:hover {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.06);
}
.team .team-member:hover img {
  opacity: 0.8;
}
.team .team-member .imageholder {
  height: 420px;
  position: relative;
}
.team .team-member img {
  width: 100%;
  opacity: 1;
  transition: all var(--transition);
  object-fit: cover;
  height: inherit;
}
.team .team-member .team-name {
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  text-transform: uppercase;
  margin: 20px 0px 5px;
  text-decoration: none;
  padding: 0px 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 reda */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em; /* uvek rezerviši 2 reda prostora */
  line-height: 1.2em; /* visina jednog reda */
}
@media (max-width: 1440px) {
  .team .team-member .team-name {
    font-size: 22px;
  }
}
.team .team-member .team-info {
  text-align: center;
  font-family: var(--primary-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 31.2px */
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 reda */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.4em; /* uvek rezerviši 2 reda prostora */
  line-height: 1.2em; /* visina jednog reda */
}
@media (max-width: 1440px) {
  .team .team-member .team-info {
    font-size: 16px;
  }
}

.ourteam {
  padding: 40px 0px;
}
.ourteam .title {
  color: #D5B286;
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
}
@media (max-width: 768px) {
  .ourteam .title {
    font-size: 46px !important;
  }
}
.ourteam .description {
  color: #253B4A;
  text-align: center;
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 28.8px */
  margin-top: 30px;
}
.ourteam .cta {
  color: #D5B286;
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
  transition: all var(--transition);
  margin: 25px 0px;
}
.ourteam .cta svg {
  margin-left: 20px;
}
.ourteam .cta:hover {
  color: var(--plava-logo);
}
@media (max-width: 768px) {
  .ourteam .cta {
    font-size: 24px;
  }
}

.tabs-section {
  background: #E9E9E9;
  padding: 90px 0px 75px;
}
.tabs-section .nav-pills .nav-link {
  border-radius: 0;
  text-align: left;
  padding: 12px 20px;
  font-weight: 500;
  color: #253B4A;
}
.tabs-section .nav-pills .nav-link.active {
  background-color: #D5B286;
  color: #fff;
}
.tabs-section .tab-content {
  padding-left: 20px;
}
.tabs-section .tab-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.tabs-section .title {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 75px;
}
@media (max-width: 768px) {
  .tabs-section .title {
    font-size: 46px;
  }
}
.tabs-section .nav-item .nav-link {
  color: #253B4A;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 31.2px */
  border-radius: 20px;
  background: #F1F2F3;
  margin-bottom: 15px;
  width: 100%;
}
.tabs-section .nav-item .nav-link img {
  height: 20px;
  margin-right: 20px;
}
@media (max-width: 1440px) {
  .tabs-section .nav-item .nav-link {
    font-size: 16px;
  }
}
.tabs-section .content {
  color: #253B4A;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
}
.tabs-section .content img {
  max-width: 100%;
}
.tabs-section .content ul {
  display: inline-grid;
  margin-right: 40px;
}

.reviews {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 65px 0 40px;
  color: #fff;
}
.reviews .overlay {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  background: linear-gradient(287deg, #BD976C -7.61%, #002139 100%);
  z-index: 1;
}
.reviews .container {
  position: relative;
  z-index: 2;
}
.reviews .review-box {
  max-width: 800px;
  margin: 0 auto;
}
.reviews .review-box .review-text {
  text-align: center;
  font-family: var(--primary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 30.8px */
}
.reviews .review-box .review-text img {
  display: block;
  margin: 0px auto 40px;
}
.reviews .review-box .line {
  margin: 40px auto 20px;
  max-width: 250px;
}
.reviews .review-box .review-author {
  text-align: center;
  font-family: var(--primary-font);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 30.8px */
}
.reviews .swiper-wrapper {
  padding-bottom: 50px;
}
.reviews .swiper-pagination-bullet {
  background: #fff;
  transition: var(--transition);
  opacity: 1;
  width: 18px;
  height: 18px;
}
.reviews .swiper-pagination-bullet-active {
  opacity: 1;
  background: #D5B286;
}

.text-section {
  padding: 80px 0px 40px;
}
.text-section.gray {
  background: #E9E9E9;
}
.text-section.beige {
  background: #D5B286;
}
.text-section.white {
  background: #FFF;
}
.text-section.whitesmoke {
  background: #F9F5EF;
}
.text-section .headline {
  font-family: var(--secondary-font);
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
}
@media (max-width: 768px) {
  .text-section .headline {
    font-size: 42px !important;
  }
}
.text-section .headline.beige {
  color: #D5B286;
}
.text-section .headline.white {
  color: #FFF;
}
.text-section .headline.dark {
  color: #253B4A;
}
.text-section .headline.text-left {
  text-align: left;
}
.text-section .headline.text-center {
  text-align: center;
}
.text-section .headline.text-right {
  text-align: right;
}
@media (max-width: 1440px) {
  .text-section .headline {
    font-size: 46px;
  }
}
.text-section .description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 28.8px */
  margin-top: 40px;
}
@media (max-width: 768px) {
  .text-section .description {
    margin-top: 10px;
  }
}
.text-section .description.dark {
  color: #253B4A;
}
.text-section .description.white {
  color: #fff;
}
.text-section .description.beige {
  color: #D5B286;
}
.text-section .description.text-center {
  text-align: center;
  justify-content: center;
}
.text-section .description.text-left {
  text-align: left;
}
.text-section .description.text-right {
  text-align: right;
}
.text-section .btn-holder {
  margin-top: 40px;
  justify-content: center;
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-section .btn-holder {
    flex-direction: column;
  }
}
.text-section .btn-holder.white a {
  background: white;
  color: #D5B286;
  padding: 15px 40px;
  display: flex;
  gap: 25px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.48px;
  border: 2px solid white;
}
@media (max-width: 768px) {
  .text-section .btn-holder.white a {
    gap: 15px;
    padding: 5px 20px;
    font-size: 18px;
    height: 64px;
  }
}
.text-section .btn-holder.white a .icon {
  width: 40px;
  height: 40px;
  background-color: #D5B286;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: 0.3s;
}
.text-section .btn-holder.white a:hover {
  background: #D5B286;
  color: white;
  transition: var(--transition);
  border: 2px solid white;
}
.text-section .btn-holder.white a:hover .icon {
  background-color: white;
}
.text-section.white .btn-holder.white a {
  background: #D5B286;
  color: white;
  padding: 15px 40px;
  display: flex;
  gap: 25px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.48px;
  border: 2px solid #D5B286;
}
@media (max-width: 768px) {
  .text-section.white .btn-holder.white a {
    gap: 15px;
    padding: 5px 20px;
    font-size: 18px;
    height: 64px;
  }
}
.text-section.white .btn-holder.white a .icon {
  width: 40px;
  height: 40px;
  background-color: white;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: 0.3s;
}
.text-section.white .btn-holder.white a:hover {
  background: white;
  color: #D5B286;
  transition: var(--transition);
  border: 2px solid #D5B286;
}
.text-section.white .btn-holder.white a:hover .icon {
  background-color: #D5B286;
}

.latest-blog {
  padding: 80px 0px 40px;
  position: relative;
}
.latest-blog .slider-wrapper {
  position: relative;
  margin-right: calc((100vw - 100%) / -2);
  padding-right: 200px;
  width: 100vw;
  overflow: visible;
}
@media (max-width: 768px) {
  .latest-blog .slider-wrapper {
    margin-right: 0px;
    padding-right: 0px;
    width: 100%;
    overflow: visible;
  }
}
.latest-blog .swiper {
  overflow: visible;
}
.latest-blog .swiper-slide {
  transition: transform 0.3s ease;
}
.latest-blog .swiper-slide-active {
  transform: scale(1);
}
.latest-blog .slider-nav {
  margin: 20px 0px 40px;
}
.latest-blog .slider-nav .swiper-button-prev,
.latest-blog .slider-nav .swiper-button-next {
  color: #fff;
  width: 60px;
  height: 40px;
  border: 1px solid #CCAE79;
  border-radius: 30px;
  padding: 0px 5px;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
}
.latest-blog .slider-nav .swiper-button-prev:after,
.latest-blog .slider-nav .swiper-button-next:after {
  display: none;
}
.latest-blog .slider-nav .swiper-button-prev:hover,
.latest-blog .slider-nav .swiper-button-next:hover {
  background: #CCAE79;
}
.latest-blog .slider-nav .swiper-button-prev {
  left: auto;
  right: 80px;
}
.latest-blog .headline {
  color: #D5B286;
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 54px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 34px;
}
@media (max-width: 1440px) {
  .latest-blog .headline {
    font-size: 46px;
  }
}
.latest-blog .blog-card {
  overflow: hidden;
  text-align: center;
  display: flex;
  border-radius: 35px;
  background: #e6ded3;
  align-items: center;
}
@media (max-width: 768px) {
  .latest-blog .blog-card {
    flex-direction: column-reverse;
  }
}
.latest-blog .blog-card .blog-content {
  width: 50%;
  padding: 10px 14px;
  text-align: left;
}
@media (max-width: 768px) {
  .latest-blog .blog-card .blog-content {
    width: 100% !important;
  }
}
.latest-blog .blog-card .blog-content h3 {
  color: #253b49;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  text-transform: uppercase;
}
@media (max-width: 1440px) {
  .latest-blog .blog-card .blog-content h3 {
    font-size: 18px;
  }
}
.latest-blog .blog-card .blog-content .opis {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* broj redova */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-blog .blog-card .blog-content p {
  color: #253b49;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 13px */
}
@media (max-width: 768px) {
  .latest-blog .blog-card .blog-content p {
    font-size: 14px;
  }
}
.latest-blog .blog-card .blog-content .btn-rounded {
  width: 37px;
  height: 37px;
  padding: 0px;
}
.latest-blog .blog-card .blog-image {
  width: 50%;
}
@media (max-width: 768px) {
  .latest-blog .blog-card .blog-image {
    width: 100% !important;
  }
}
.latest-blog .blog-card img {
  width: 100%;
  border-radius: 35px;
  padding: 4px;
}
.latest-blog .blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.latest-blog .blog-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.latest-blog .swiper-button-prev,
.latest-blog .swiper-button-next {
  color: #253B4A;
  width: 40px;
  height: 40px;
}

footer {
  background: #1f2c47;
  color: #fff;
  padding: 46px 0px 0px;
}
footer .footer-holder {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 48px;
  min-height: 188px;
}
@media (max-width: 768px) {
  footer .footer-holder {
    gap: 10px;
  }
}
footer .footer-holder .footer-widget-col-1 {
  width: 22%;
}
@media (max-width: 768px) {
  footer .footer-holder .footer-widget-col-1 {
    width: 100%;
  }
}
footer .footer-holder .footer-widget-col-2, footer .footer-holder .footer-widget-col-3 {
  width: 18%;
}
@media (max-width: 768px) {
  footer .footer-holder .footer-widget-col-2, footer .footer-holder .footer-widget-col-3 {
    width: 100%;
  }
}
footer .footer-holder .footer-widget-col-4 {
  width: 26%;
}
@media (max-width: 768px) {
  footer .footer-holder .footer-widget-col-4 {
    width: 100%;
  }
}
footer img {
  max-width: 100%;
}
footer .footer-widget-col-1 img {
  width: 150px;
}
footer a {
  color: #fff;
  text-decoration: none;
  font-family: var(--primary-font);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 166%;
}
footer a:hover {
  text-decoration: underline;
}
footer ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0;
}
footer .padd-left {
  padding-left: 30px;
}
@media (max-width: 768px) {
  footer .padd-left {
    padding-left: 0px;
  }
}
footer .widget-title {
  color: #fff;
  font-family: var(--primary-font);
  font-size: 1em;
  font-style: normal;
  font-weight: 600;
  line-height: 166%; /* 29.88px */
  text-transform: uppercase;
  margin-bottom: 15px;
}
footer .footer-practice-title {
  text-decoration: underline;
  text-transform: none;
  font-size: 18px;
  line-height: 120%;
  margin-bottom: 18px;
}
footer .footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
footer .footer-social a {
  line-height: 1;
}
footer .footer-social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
footer .footer-contact p {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 150%;
}
footer .pbmit-footer-bottom {
  background: #dfcfca;
  color: #1f2c47;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: -0.36px;
}
footer .pbmit-footer-bottom a {
  color: #1f2c47 !important;
  font-weight: 500;
}
footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area {
  padding: 18px 0px 16px;
}
footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p {
  margin-bottom: 0px;
}
footer .pbmit-footer-bottom .container {
  position: relative;
}
footer .pbmit-footer-bottom .ask-doctor-tab {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 205px;
  border-radius: 18px 18px 0 0;
  background: #c8d2e8;
  color: #1f2c47 !important;
  font-family: var(--secondary-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 21px 24px 18px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.headimage {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  /* BACKGROUND SLIKA KAO IMG */
  /* OVERLAY SA SADRŽAJEM */
  /* KONTEJNER */
  /* NASLOV */
  /* OPIS */
  /* DUGMAD */
  /* MOBILE */
}
.headimage .bg-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.headimage .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  padding-bottom: 30px;
  pointer-events: none;
}
.headimage.big .overlay {
  align-items: flex-end;
}
.headimage.small .overlay {
  align-items: center;
}
.headimage.small .headline {
  margin-top: 140px;
}
@media (max-width: 768px) {
  .headimage.small .headline {
    margin-top: 0px;
  }
}
.headimage .container {
  pointer-events: auto;
}
.headimage .row {
  flex-direction: row;
}
.headimage .headline {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.headimage .description {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  line-height: 144%;
  margin: 20px 0px 20px 25px;
}
.headimage .description p {
  max-width: 620px;
}
.headimage .btn-holder {
  width: initial;
}
.headimage .btn-holder a {
  background: #D5B286;
  color: white;
  padding: 15px 40px;
  display: flex;
  gap: 25px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.48px;
  transition: var(--transition);
}
.headimage .btn-holder a .icon {
  width: 40px;
  height: 40px;
  background-color: white;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: 0.3s;
}
.headimage .btn-holder a:hover {
  color: #D5B286;
  background: white;
}
.headimage .btn-holder a:hover .icon {
  background: #D5B286;
}
@media (max-width: 768px) {
  .headimage .bg-image {
    width: 100%;
    height: auto;
  }
  .headimage .overlay {
    position: relative;
    padding: 15px 0;
    background: white;
  }
  .headimage .headline {
    font-size: 26px;
    line-height: 110%;
  }
  .headimage .description {
    color: #253c4a;
    margin-left: 0;
    font-size: 16px;
  }
  .headimage .btn-holder a {
    padding: 12px 25px;
    font-size: 16px;
  }
  .headimage .btn-holder a .icon {
    width: 30px;
    height: 30px;
  }
}

.nase-usluge {
  padding: 70px 0px;
}
.nase-usluge .headline {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .nase-usluge .headline {
    font-size: 54px;
  }
}
.nase-usluge .usluga-kategorija {
  margin-bottom: 20px;
}
.nase-usluge .usluga-kategorija .title {
  color: #1C1C1C;
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 57.6px */
}
.nase-usluge .usluga-kategorija .usluga {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1C1C1C;
  margin-left: 25px;
}
@media (max-width: 768px) {
  .nase-usluge .usluga-kategorija .usluga {
    flex-direction: column;
    align-items: baseline;
    margin-left: 0px;
    padding-bottom: 15px;
  }
}
.nase-usluge .usluga-kategorija .usluga .name {
  color: #1C1C1C;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 278%; /* 55.6px */
}
@media (max-width: 768px) {
  .nase-usluge .usluga-kategorija .usluga .name {
    line-height: 120%;
    margin-bottom: 10px;
    padding-top: 10px;
  }
}
.nase-usluge .usluga-kategorija .usluga .btns a {
  border-radius: 50px;
  background: #D5B286;
  padding: 7px 25px;
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  letter-spacing: 0.4px;
  transition: var(--transition);
  border: 1px solid #D5B286;
}
@media (max-width: 768px) {
  .nase-usluge .usluga-kategorija .usluga .btns a {
    font-size: 14px;
    padding: 5px 15px;
  }
}
.nase-usluge .usluga-kategorija .usluga .btns a:hover {
  background: white;
  color: #D5B286;
}
.nase-usluge .usluga-kategorija .usluga .btns a.howto {
  background: #e6ded3;
  border: 1px solid #e6ded3;
  margin-right: 15px;
  color: #2a404d;
}
@media (max-width: 768px) {
  .nase-usluge .usluga-kategorija .usluga .btns a.howto {
    margin-right: 5px;
  }
}
.nase-usluge .usluga-kategorija .usluga .btns a.howto:hover {
  background: #2a404d;
  color: #e6ded3;
}

.cenovnik {
  padding-bottom: 40px;
}
.cenovnik .container {
  position: relative;
}
.cenovnik .aright {
  position: absolute;
  right: 0px;
  top: 150px;
  text-transform: initial;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  letter-spacing: 0.4px;
  z-index: 9;
}
@media (max-width: 768px) {
  .cenovnik .aright {
    font-size: 14px;
  }
}
.cenovnik .headline {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
  margin-top: 80px;
}
@media (max-width: 1440px) {
  .cenovnik .headline {
    font-size: 54px;
  }
}
.cenovnik .faq-item {
  padding: 15px 0;
}
.cenovnik .faq-item .faq-question {
  color: #1C1C1C;
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 57.6px */
  cursor: pointer;
  position: relative;
  padding-left: 35px;
}
@media (max-width: 768px) {
  .cenovnik .faq-item .faq-question {
    font-size: 24px;
  }
}
.cenovnik .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  left: 10px;
  top: 0;
  font-size: 24px;
  transition: transform 0.3s ease;
}
.cenovnik .faq-item .faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
  padding-left: 70px;
}
@media (max-width: 768px) {
  .cenovnik .faq-item .faq-answer {
    padding-left: 0px;
  }
}
.cenovnik .faq-item .faq-answer .pricelist {
  list-style: none;
  padding-left: 0px;
}
.cenovnik .faq-item .faq-answer .pricelist li {
  border-bottom: 1px solid #1C1C1C;
  padding: 0px 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  color: #1C1C1C;
  display: flex;
  justify-content: space-between;
  background: white;
  transition: var(--transition);
}
.cenovnik .faq-item .faq-answer .pricelist li:hover {
  background: whitesmoke;
}
@media (max-width: 768px) {
  .cenovnik .faq-item .faq-answer .pricelist li {
    font-size: 16px;
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 18px;
  }
}
.cenovnik .faq-item.active .faq-answer {
  display: block;
}
.cenovnik .faq-item.active .faq-question::after {
  content: "−";
}

.kontakt {
  padding: 100px 0px;
}
@media (max-width: 768px) {
  .kontakt {
    padding: 50px 0px;
  }
}
.kontakt .headline {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
}
@media (max-width: 1440px) {
  .kontakt .headline {
    font-size: 54px;
  }
}
.kontakt .desc {
  padding-left: 45px;
}
.kontakt .desc .title {
  color: #1C1C1C;
  font-family: var(--secondary-font);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%;
  position: relative;
  margin: 30px 0px 20px;
}
.kontakt .desc .title:before {
  content: "";
  width: 25px;
  height: 2px;
  background: #1C1C1C;
  position: absolute;
  left: -35px;
  top: 30px;
}
@media (max-width: 768px) {
  .kontakt .desc .title:before {
    display: none;
  }
}
.kontakt .desc .description {
  margin-bottom: 50px;
  max-width: 420px;
}
.kontakt .desc ul {
  list-style: none;
  max-width: 460px;
  padding-left: 0px;
  margin-left: 0px;
}
.kontakt .desc ul li {
  border-bottom: 1px solid #1C1C1C;
  padding: 7px 15px 7px 2px;
  display: flex;
  justify-content: space-between;
}
.kontakt .desc ul li .name img {
  margin-right: 15px;
}
.kontakt .desc ul li a, .kontakt .desc ul li .link {
  color: #2E45B7;
  text-decoration: none;
}
.kontakt .desc ul li a:hover {
  text-decoration: underline;
}
.kontakt .desc ul li p {
  margin-bottom: 0px;
}
.kontakt .desc .btn-round {
  text-align: center;
  text-transform: initial;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 83.333% */
  letter-spacing: 0.48px;
  margin-top: 35px;
}
@media (max-width: 768px) {
  .kontakt .desc {
    margin-bottom: 20px;
    padding-left: 15px;
  }
}

body {
  padding: 0px !important;
}

.blog-overview {
  position: relative;
  padding: 48px 0 110px;
  background: transparent;
  overflow: hidden;
}
.blog-overview .container {
  position: relative;
  z-index: 1;
  max-width: 1450px;
}
.blog-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.blog-overview__card {
  position: relative;
  min-height: 384px;
  padding: 18px 18px 70px;
  border-radius: 24px;
  background: #efe5e1;
  box-shadow: 0 14px 30px rgba(39, 55, 82, 0.12);
  overflow: hidden;
}
.blog-overview__image {
  display: block;
  height: 205px;
  border-radius: 16px;
  overflow: hidden;
  background: #f9f5ec;
}
.blog-overview__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-overview__card:hover .blog-overview__image img {
  transform: scale(1.035);
}
.blog-overview__content {
  padding: 16px 0 0;
}
.blog-overview__content h2 {
  margin: 0 0 34px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-overview__content p {
  margin: 0;
  max-width: calc(100% - 48px);
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}
.blog-overview__arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #193963;
  color: #f9f5ec;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.blog-overview__arrow:hover {
  background: #5d6990;
  color: #f9f5ec;
  transform: translateX(2px);
}
.blogpage .blog-card {
  margin-bottom: 34px;
}
.blogpage .blog-card h3 {
  font-family: var(--primary-font);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  text-transform: uppercase;
}
.blogpage .pagination {
  margin: 62px 0 0;
  gap: 14px;
  align-items: center;
}
.blogpage .page-link {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50% !important;
  border: 1px solid #e9ecef;
  background: #ffffff;
  color: #193963;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(39, 55, 82, 0.05);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.blogpage .page-link:hover,
.blogpage .page-item.active .page-link {
  border-color: #193963;
  background: #193963;
  color: #ffffff;
  transform: translateY(-1px);
}
.blogpage .page-link:focus {
  box-shadow: 0 0 0 3px rgba(93, 105, 144, 0.18);
}
.blogpage .page-link span {
  display: inline-block;
  transform: translateY(-2px);
}
.blogpage .blog-overview__pagination-item--dots .page-link {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: none;
  pointer-events: none;
}

.singleblog {
  position: relative;
  padding: 84px 0 0;
  background: transparent;
  overflow: visible;
}
.singleblog .col-md-8 {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1450px;
  flex: 0 0 100%;
}
@media (max-width: 768px) {
  .singleblog {
    padding: 20px 0px 30px;
  }
}
.singleblog-page-header {
  margin: 0 0 44px;
}
.singleblog-page-header__pill {
  width: min(768px, 100%);
  min-height: 124px;
  padding: 21px 96px 20px;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(4.45px);
  -webkit-backdrop-filter: blur(4.45px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.singleblog .headline {
  margin: 0;
  color: #1e2640;
  font-family: "Lora", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 21px #fff;
}
@media (max-width: 1440px) {
  .singleblog .headline {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .singleblog .headline {
    font-size: 42px;
    margin-bottom: 5px;
  }
}
.singleblog .breadcrumb {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .singleblog .breadcrumb {
    padding: 0;
  }
}
.singleblog .breadcrumb .breadcrumb-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  color: #253B4A;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  text-shadow: 0 0 18px #fff;
}
.singleblog .breadcrumb .breadcrumb-inner a {
  color: #253B4A;
  text-decoration: none;
}
.singleblog .breadcrumb .breadcrumb-inner a:hover {
  text-decoration: underline;
}
.singleblog iframe {
  width: 100% !important;
}
.singleblog a {
  text-decoration: none;
  color: #2e45b7;
}
.singleblog a:hover {
  text-decoration: underline;
}
.singleblog-hero-image {
  margin: 0 0 60px;
  overflow: hidden;
  border-radius: 30px;
}
.singleblog-hero-image img {
  display: block;
  width: 100%;
  height: 505px;
  min-height: 0;
  object-fit: cover;
}
.singleblog-main-text,
.singleblog-extra-text {
  max-width: 1450px;
  color: #1e2640;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.34;
}
.singleblog-main-text h2,
.singleblog-main-text h3,
.singleblog-extra-text h2,
.singleblog-extra-text h3 {
  margin: 34px 0 12px;
  color: #1e2640;
  font-family: "Lora", serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.singleblog-main-text p,
.singleblog-extra-text p {
  margin: 0 0 14px;
}
.singleblog-main-text p:last-child,
.singleblog-extra-text p:last-child {
  margin-bottom: 0;
}
.singleblog-author {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  align-items: end;
  gap: 26px;
  margin: 72px 0 0;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(93, 105, 144, 0.65);
  border-bottom: 1px solid rgba(93, 105, 144, 0.65);
}
.singleblog-author img {
  display: block;
  width: 236px;
  height: 290px;
  object-fit: cover;
  border-radius: 14px;
}
.singleblog-author__text {
  padding-bottom: 34px;
}
.singleblog-author__text h2,
.singleblog-sources h2,
.singleblog-faq h2 {
  margin: 0 0 18px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.single-blog-page .singleblog-faq h2 {
  display: inline-block;
  margin-bottom: 26px;
  padding-bottom: 20px;
  min-width: 680px;
  border-bottom: 1px solid rgba(93, 105, 144, 0.32);
  font-size: 34px;
}
.singleblog-author__text p {
  margin: 0;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}
.singleblog-info-box {
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  overflow: hidden;
  margin: 70px 0 58px;
  border-radius: 16px;
  background: rgba(249, 245, 236, 0.82);
}
.singleblog-info-box img {
  display: block;
  width: 100%;
  height: 332px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}
.singleblog-info-box__text {
  padding: 26px 36px 24px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
}
.singleblog-info-box__text h2,
.singleblog-info-box__text h3,
.singleblog-info-box__text h4 {
  margin: 0 0 22px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.singleblog-info-box__text p,
.singleblog-sources__content p {
  margin: 0 0 18px;
}
.singleblog-info-box__text p:last-child,
.singleblog-sources__content p:last-child {
  margin-bottom: 0;
}
.singleblog-extra-text {
  margin-top: 10px;
}
.singleblog-sources {
  margin: 58px 0 54px;
  padding-top: 36px;
  border-top: 1px solid rgba(93, 105, 144, 0.65);
}
body.single-blog-page .singleblog-sources {
  margin: 0;
  padding: 42px 6px 70px;
  border-top: 0;
  border-bottom: 0;
}
.singleblog-sources__content {
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}
.singleblog-sources__content ol,
.singleblog-sources__content ul {
  margin: 0;
  padding-left: 24px;
}
.singleblog-faq {
  position: relative;
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  padding: 80px max(24px, calc((100vw - 1450px) / 2)) 118px;
  border-top: 0;
  overflow: visible;
  background-color: rgba(235, 244, 250, 0.76);
  background-image:
    linear-gradient(90deg, rgba(235, 244, 250, 0.88), rgba(235, 244, 250, 0.72)),
    url("/template/stomatologbg/assets/images/blog-page-top-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.singleblog-faq::before,
.singleblog-faq::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.singleblog-faq::before {
  left: 0;
  bottom: 0;
  width: 420px;
  height: 650px;
  background-image: url("/template/stomatologbg/assets/images/blog-page-left-leaf.png");
  opacity: 0.1;
}
.singleblog-faq::after {
  right: 0;
  top: 70px;
  width: 430px;
  height: 620px;
  background-image: url("/template/stomatologbg/assets/images/blog-page-mid-leaf.png");
  opacity: 0.08;
}
.singleblog-faq h2,
.singleblog-faq__item {
  position: relative;
  z-index: 1;
}
.singleblog-faq__item {
  border-top: 1px solid rgba(93, 105, 144, 0.58);
  border-bottom: 0;
}
.singleblog-faq__item:last-child {
  border-bottom: 1px solid rgba(93, 105, 144, 0.58);
}
.singleblog-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 0 28px 0 58px;
  border: 0;
  background: transparent;
  color: #1e2640;
  font-family: "Lora", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.03em;
  text-align: left;
  cursor: pointer;
}
.singleblog-faq__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-left: 20px;
}
.singleblog-faq__icon::before,
.singleblog-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #1e2640;
  transform: translate(-50%, -50%);
}
.singleblog-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.singleblog-faq__item.is-open .singleblog-faq__icon::after {
  display: none;
}
.singleblog-faq__answer {
  display: none;
  padding: 0 110px 26px 78px;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}
.singleblog-faq__item.is-open .singleblog-faq__answer {
  display: block;
}
.related-blog-posts {
  position: relative;
  padding: 70px 0 120px;
  background: transparent;
  overflow: hidden;
}
.related-blog-posts .container {
  position: relative;
  z-index: 1;
  max-width: 1700px;
}
.related-blog-posts h2 {
  margin: 0 0 52px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}
.related-blog-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.related-blog-posts__card {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  min-height: 300px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(249, 245, 236, 0.96) 0%, rgba(239, 229, 225, 0.96) 100%);
  box-shadow: 0 18px 34px rgba(38, 50, 83, 0.16);
}
.related-blog-posts__content {
  position: relative;
  min-width: 0;
  min-height: 300px;
  padding: 48px 34px 76px 34px;
  overflow: hidden;
}
.related-blog-posts__content h3 {
  margin: 0 0 18px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: normal;
}
.related-blog-posts__content p {
  margin: 0;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.22;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-blog-posts__image {
  display: block;
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  border-radius: 30px;
  background: #dbe3ec;
}
.related-blog-posts__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform var(--transition);
}
.related-blog-posts__card:hover .related-blog-posts__image img {
  transform: scale(1.035);
}
.related-blog-posts__arrow {
  position: absolute;
  left: 34px;
  bottom: 38px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #193963;
  color: #f9f5ec;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.related-blog-posts__arrow:hover {
  background: #5d6990;
  color: #f9f5ec;
  transform: translateX(2px);
  text-decoration: none;
}

/* Blog page decorative motifs */
body.blog-page-list,
body.single-blog-page {
  position: relative;
  overflow-x: hidden;
  background-color: #f3f7fa;
  background-image: url("/template/stomatologbg/assets/images/blog-page-bg.png");
  background-position: center top;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
body.blog-page-list::before,
body.blog-page-list::after,
body.single-blog-page::before,
body.single-blog-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
body.blog-page-list::before,
body.single-blog-page::before {
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  height: 760px;
  background: url("/template/stomatologbg/assets/images/blog-page-top-bg.png") center top / cover no-repeat;
  opacity: 0.42;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.14) 74%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.14) 74%, transparent 100%);
}
body.blog-page-list::after,
body.single-blog-page::after {
  right: -64px;
  top: 50%;
  width: 360px;
  height: 520px;
  background-image: url("/template/stomatologbg/assets/images/blog-page-mid-leaf.png");
  opacity: 0.58;
  transform: translateY(-50%);
}
body.blog-page-list header,
body.blog-page-list .simple-page-header,
body.blog-page-list .blog-overview,
body.blog-page-list footer,
body.single-blog-page header,
body.single-blog-page .blognoimage,
body.single-blog-page .singleblog,
body.single-blog-page .related-blog-posts,
body.single-blog-page footer {
  position: relative;
  z-index: 1;
}
body.blog-page-list .simple-page-header {
  box-sizing: border-box;
  height: 269.8px !important;
  min-height: 269.8px !important;
  padding: 92px 0 56px !important;
  overflow: visible;
}
body.blog-page-list .simple-page-header .container,
body.single-blog-page .blognoimage img {
  position: relative;
  z-index: 1;
}
body.blog-page-list .blog-overview::before,
body.single-blog-page .singleblog::before {
  content: "";
  position: absolute;
  left: -94px;
  top: 90px;
  width: 315px;
  height: 558px;
  background: url("/template/stomatologbg/assets/images/blog-page-left-leaf.png") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
body.single-blog-page .related-blog-posts::before {
  display: none;
}

.text-boxes {
  padding: 80px 0px 40px;
}
.text-boxes h1, .text-boxes h2, .text-boxes h3, .text-boxes h4, .text-boxes h5, .text-boxes h6 {
  color: #D5B286;
}
.text-boxes.beige {
  background: #FBF7F2;
}

.nabrajanje {
  padding-bottom: 80px;
}
.nabrajanje .masterinfo {
  color: #D5B286;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 43.2px */
  max-width: 1050px;
}
.nabrajanje .list {
  margin-left: 25px;
  list-style: none;
}
.nabrajanje .list li {
  border-bottom: 1px solid #1C1C1C;
  padding: 15px 0px 10px;
  color: #1C1C1C;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
.nabrajanje .list li:last-child {
  border-bottom: 0px;
}

.gallery-section #galleryTabs {
  gap: 15px;
}
.gallery-section #galleryTabs .nav-link {
  border-radius: 50px;
  background: #D5B286;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 100% */
  letter-spacing: 0.4px;
  border: 1px solid #D5B286;
  transition: var(--transition);
}
.gallery-section #galleryTabs .nav-link.active {
  background: #FFF;
  color: #D5B286;
}
.gallery-section #galleryTabs .nav-link.active:hover {
  background: #D5B286;
  color: #FFF;
}
@media (max-width: 768px) {
  .gallery-section #galleryTabs .nav-link.active:hover {
    background: initial;
    color: #D5B286;
  }
}
.gallery-section #galleryTabs .nav-link:hover {
  background: #FFF;
  color: #D5B286;
}
@media (max-width: 768px) {
  .gallery-section #galleryTabs .nav-link:hover {
    background: initial;
    color: #D5B286;
  }
}
@media (max-width: 768px) {
  .gallery-section #galleryTabs {
    flex-wrap: wrap;
  }
  .gallery-section #galleryTabs .nav-item {
    flex-grow: 1;
    flex-basis: fit-content;
  }
  .gallery-section #galleryTabs .nav-item button {
    width: 100%;
    font-size: 16px;
  }
}

/* Centriraj sliku unutar lightbox-a */
.lb-outerContainer,
.lb-container {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 100vh !important;
  background-color: transparent !important;
}

.lb-image {
  margin: 0 auto !important;
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
}

.headinfo {
  background: #af9980;
  padding: 5px 20px;
  border-radius: 20px;
  color: white;
  font-size: 13px;
  font-weight: 500;
}
.headinfo a {
  color: white;
  text-decoration: none;
}
header .topbar .headinfo {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
header .topbar .headinfo a {
  color: #384A58;
  text-decoration: none;
}
@media (max-width: 768px) {
  .headinfo {
    border-radius: 0px;
    font-size: 14px;
    text-align: center;
  }
}

.saleboxes {
  padding-top: 30px;
  padding-bottom: 30px;
}
.saleboxes .boxholder .title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.saleboxes .boxholder .box {
  border-radius: 25px;
  background: white;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.11);
  overflow: hidden;
}
.saleboxes .boxholder .box .textholder {
  padding: 30px 10px;
}
.saleboxes .boxholder .box .textholder .price, .saleboxes .boxholder .box .textholder .link {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #2A404E;
  margin-top: 10px;
  margin-bottom: 10px;
}
.saleboxes .boxholder .box .title {
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 20px;
  line-height: 144%;
  letter-spacing: 0%;
  color: #D5B286;
  text-align: left;
}
.saleboxes .boxholder .box .subtext {
  font-family: var(--primary-font);
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 144%;
  letter-spacing: 0%;
  color: #2A404E;
}
.saleboxes .boxholder .box img {
  max-width: 100%;
}

.search .link {
  text-decoration: none;
  font-size: 22px;
  color: #253B4A;
  border-bottom: 1px solid #253B4A;
  padding: 15px 10px;
  display: block;
}

.nastim .headline {
  padding: 40px 0px 30px;
  color: #D5B286;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 64px */
}
@media (max-width: 1440px) {
  .nastim .headline {
    font-size: 54px;
  }
}
@media (max-width: 768px) {
  .nastim .headline {
    font-size: 36px;
    margin-top: 40px;
  }
}
.nastim .description {
  color: #253B4A;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 28.8px */
  margin-bottom: 30px;
}
.nastim .faq-item {
  padding: 15px 0;
  border-bottom: 1px solid #d5b286;
}
.nastim .faq-item .faq-question {
  color: #D5B286;
  font-family: var(--secondary-font);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 144%; /* 57.6px */
  cursor: pointer;
  position: relative;
  padding-left: 35px;
}
.nastim .faq-item .faq-question::after {
  content: "+";
  position: absolute;
  left: 10px;
  top: 0;
  font-size: 30px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .nastim .faq-item .faq-question {
    font-size: 30px;
  }
}
.nastim .faq-item .faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
  padding-left: 70px;
}
@media (max-width: 768px) {
  .nastim .faq-item .faq-answer {
    padding-left: 0px;
  }
}
.nastim .faq-item .faq-answer .pricelist {
  list-style: none;
  padding-left: 0px;
}
.nastim .faq-item .faq-answer .pricelist li {
  border-bottom: 1px solid #1C1C1C;
  padding: 0px 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  color: #D5B286;
  display: flex;
  justify-content: space-between;
  background: white;
  transition: var(--transition);
}
.nastim .faq-item .faq-answer .pricelist li:hover {
  background: whitesmoke;
}
.nastim .faq-item.active .faq-answer {
  display: block;
}
.nastim .faq-item.active .faq-question::after {
  content: "−";
}
.nastim .mb-8 {
  margin-bottom: 80px;
}

.team-member {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 20px;
}
.team-member h2, .team-member h3, .team-member h4, .team-member h5 {
  color: #D5B286;
}
.team-member .imageholder {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.team-member .imageholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-member .whitesmoke {
  background: #FBF7F2;
  padding: 20px 50px;
  font-size: 20px;
  justify-content: center;
  /* align-items: center; */
  display: flex;
  flex-direction: column;
}
.team-member .whitesmoke h1 {
  color: #D5B286;
}
.team-member .parts .col-md-6 {
  margin-top: 40px;
}

.mobile-toggle {
  display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  header .topbar {
    background: rgba(255, 255, 255, 0.92);
    padding: 8px 10px;
    height: initial;
  }
  header .topbar .logo img {
    height: 48px;
    margin-right: 0;
  }
  .topbar {
    padding: 10px 0;
  }
  .topbar .right-group {
    display: none; /* skrivamo sve iz topbara */
  }
  .main-nav {
    position: relative;
    padding: 0;
  }
  header .main-nav .mainnav-content {
    border-radius: 0;
    min-height: 0;
    padding: 0;
    box-shadow: none;
  }
  header .main-nav .navbar-nav .nav-link {
    color: #3B444F;
  }
  .submenu-toggle {
    position: absolute;
    right: 15px;
    top: 15%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .submenu-toggle::after {
    content: "+";
    font-size: 20px;
    line-height: 20px;
  }
  .dropdown.open > .submenu-toggle::after,
  .dropdown-submenu.open > .submenu-toggle::after {
    content: "-";
  }
  /* Hamburger dugme */
  .mobile-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: none;
    background: none;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
    z-index: 10002;
  }
  .mobile-toggle span {
    width: 18px;
    height: 2px;
    background: #384A58;
    display: block;
    border-radius: 4px;
  }
  /* Skrivamo desktop meni */
  .mainnav-content .navbar-nav,
  .mainnav-content .searrchbox {
    display: none;
  }
  .topbar .right-group {
    display: none !important;
  }
  /* KADA JE AKTIVAN */
  .main-nav.active .mainnav-content {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
    z-index: 10001;
  }
  /* UL stil mobilnog menija */
  .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link, .topmenu .nav-link {
    padding: 12px 0;
    display: block;
    font-size: 17px;
    color: #3B444F !important;
    font-family: var(--secondary-font) !important;
    font-weight: 700;
  }
  .main-nav.active .topmenu, .main-nav.active .navbar-nav {
    display: block !important;
  }
  /* PLUS / MINUS samo za stavke koje imaju dropdown */
  .navbar-nav .dropdown > a {
    position: relative;
    padding-right: 30px; /* prostor za plus */
  }
  /* default: + */
  .navbar-nav .dropdown > a::after {
    content: "+" !important;
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: #3B444F;
    font-weight: 400;
  }
  /* kada je otvoreno: - */
  .navbar-nav .dropdown.open > a::after {
    content: "-" !important;
  }
  /* DROPDOWN za mobilni */
  .navbar-nav .dropdown-menu {
    display: none !important;
    padding-left: 15px;
    border-left: 2px solid #eee;
  }
  header .main-nav .navbar-nav .nav-link:hover::after {
    background-color: transparent;
  }
  header .main-nav .navbar-nav .nav-item {
    display: block;
  }
  header .main-nav .navbar-nav .nav-link::after {
    display: none;
  }
  .navbar-nav .dropdown.open > .dropdown-menu {
    display: block !important;
  }
  /* GORNJI MENI (O nama, Novosti…) */
  .mobile-topmenu {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #eee;
  }
  .mobile-topmenu li a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #3B444F;
  }
  .headimage {
    position: relative;
    min-height: 0px !important;
    padding-bottom: 30px;
  }
  .headimage .headline {
    font-size: 30px;
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .headimage .description {
    max-width: 100%;
    margin: 0px;
  }
  .headimage .description p {
    max-width: 100%;
    font-size: 18px;
    line-height: 115%;
  }
  .headimage .btn-holder {
    position: absolute;
    bottom: -28px;
    width: 100%;
  }
  .headimage .btn-holder img {
    height: 40px;
  }
  .headimage .btn-holder a {
    font-size: 15px;
    padding: 5px 25px;
    gap: 15px;
  }
  .teamSwiper {
    padding-bottom: 60px !important;
  }
  .teamSwiper .slider-nav {
    bottom: 20px !important;
  }
  .col-lg-6 img {
    margin-bottom: 10px;
  }
  .lb-outerContainer {
    height: calc(100vh - 160px) !important;
  }
}
/* desktop redosled ostaje kakav jeste */
.footer-widget-col-1 {
  order: 1;
}

.footer-widget-col-4 {
  order: 2;
}

.footer-widget-col-2 {
  order: 3;
}

.footer-widget-col-3 {
  order: 4;
}

@media (max-width: 768px) {
  /* željeni mobile redosled */
  .footer-widget-col-1 {
    order: 1;
  }
  .footer-widget-col-4 {
    order: 2;
  } /* ovaj ide drugi */
  .footer-widget-col-2 {
    order: 3;
  }
  .footer-widget-col-3 {
    order: 4;
  }
  /* da druga i treća budu jedna pored druge */
  .footer-widget-col-2,
  .footer-widget-col-3 {
    width: 47% !important;
  }
  /* ostali da idu full širina */
  .footer-widget-col-1,
  .footer-widget-col-4 {
    width: 100%;
  }
  .footer-widget-col-4 p {
    padding-left: 30px;
  }
  footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area {
    padding-left: 0;
    padding-top: 72px;
  }
  footer .pbmit-footer-bottom .ask-doctor-tab {
    left: 50%;
    transform: translateX(-50%);
  }
}
.floating-call {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: #D6B37C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  text-decoration: none;
}

.floating-call svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.floating-call:active {
  transform: scale(0.95);
}

/* ⛔ sakrij na desktopu (opciono) */
@media (min-width: 992px) {
  .floating-call {
    display: none;
  }
}

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

.home-section {
  padding: 88px 0;
  background: #eef2f7;
  color: #26364f;
}
.home-eyebrow {
  margin: 0 0 10px;
  color: #415674;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home-section__heading {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}
.home-section__heading h2,
.blog-preview__heading h2,
.contact-section h2 {
  color: #273752;
  text-transform: uppercase;
}
.home-section__heading p {
  margin: 0 auto;
  color: #536176;
  font-size: 16px;
  line-height: 1.65;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 34px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.home-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.home-btn--primary {
  background: #1f2c47;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(31, 44, 71, 0.18);
}
.home-btn--primary:hover {
  color: #ffffff;
  background: #2e436b;
}
.home-btn--light {
  background: rgba(255, 255, 255, 0.82);
  color: #273752;
  box-shadow: 0 12px 26px rgba(31, 44, 71, 0.12);
}
.home-intro {
  background: #f3f6fa;
  color: #273752;
}
.home-intro__hero {
  min-height: 720px;
  padding: 145px 0 86px;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: flex-start;
}
.home-intro__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.34);
}
.home-intro__panel {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 44px 66px 48px;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(39, 55, 82, 0.12);
  backdrop-filter: blur(8px);
  text-align: center;
}
.home-intro h1 {
  max-width: 840px;
  margin: 0 auto 22px;
  color: #17223f;
  font-size: 52px;
  line-height: 1.12;
  text-transform: uppercase;
}
.home-intro__lead {
  max-width: 560px;
  margin: 0 auto 36px;
  color: #17223f;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}
.home-intro__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: left;
}
.home-intro__services ul {
  margin: 0;
  min-height: 132px;
  padding: 22px 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(45, 58, 82, 0.08);
}
.home-intro__services li {
  margin: 3px 0;
  color: #17223f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.28;
}
.home-intro__actions {
  display: flex;
  justify-content: center;
  gap: 22px;
}
.home-intro__button {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  width: min(100%, 330px);
  min-height: 58px;
  padding: 7px 8px 7px 34px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 15px 34px rgba(39, 55, 82, 0.14);
  transition: transform var(--transition), box-shadow var(--transition);
}
.home-intro__button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(39, 55, 82, 0.18);
}
.home-intro__button strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
}
.home-intro__button--primary {
  background: #17223f;
  color: #ffffff;
}
.home-intro__button--primary:hover {
  color: #ffffff;
}
.home-intro__button--primary strong {
  background: rgba(255, 255, 255, 0.16);
}
.home-intro__button--secondary {
  background: #ecd9dd;
  color: #4a5170;
}
.home-intro__button--secondary:hover {
  color: #4a5170;
}
.home-intro__button--secondary strong {
  background: rgba(255, 255, 255, 0.56);
}
.doctors-section {
  background: #c7d1e4;
}
.doctors-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.doctor-card {
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(52, 70, 101, 0.14);
}
.doctor-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  background: #d9e1ee;
}
.doctor-card__body {
  padding: 22px 20px 24px;
  text-align: center;
}
.doctor-card h3,
.service-card h3,
.technology-card h3,
.blog-card h3 {
  margin: 0 0 10px;
  color: #273752;
  font-size: 20px;
  line-height: 1.25;
}
.doctor-card__role {
  min-height: 46px;
  color: #415674;
  font-weight: 700;
}
.doctor-card p,
.service-card p,
.technology-card p,
.blog-card p {
  margin: 0;
  color: #657185;
  font-size: 14px;
  line-height: 1.55;
}
.why-choose-us {
  background: #eef2f7;
}
.why-choose-us__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}
.why-choose-us h2 {
  color: #273752;
}
.why-choose-us p {
  color: #536176;
  line-height: 1.7;
}
.why-choose-us__list {
  margin-top: 32px;
  border-top: 1px solid rgba(39, 55, 82, 0.12);
}
.why-choose-us__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(39, 55, 82, 0.12);
  color: #273752;
  font-weight: 700;
}
.why-choose-us__item strong {
  color: #94a5be;
  font-size: 24px;
  line-height: 1;
}
.why-choose-us__image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(52, 70, 101, 0.14);
}
.services-overview {
  background: #d7dce5;
}
.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  min-height: 100%;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(52, 70, 101, 0.12);
  text-align: center;
}
.service-card img {
  width: 100%;
  aspect-ratio: 1.2 / 0.85;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
}
.technology-section {
  background: #f5f8fb;
}
.technology-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.technology-card {
  min-height: 250px;
  padding: 36px 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(52, 70, 101, 0.1);
  text-align: center;
}
.technology-card__icon {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid rgba(39, 55, 82, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 28%, #d6e0ec 30%, #d6e0ec 33%, #ffffff 35%);
}
.testimonials-section {
  padding: 86px 0;
  background-color: #e4b6aa;
  background-position: center;
  background-size: cover;
}
.testimonial-card {
  width: min(460px, 100%);
  min-height: 330px;
  margin: 0 auto;
  padding: 58px 46px 46px;
  border-radius: 50%;
  background: #273752;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 44px rgba(39, 55, 82, 0.22);
}
.testimonial-card img {
  width: 54px;
  margin-bottom: 16px;
}
.testimonial-card p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.55;
}
.testimonial-card strong {
  color: #d9c6b0;
  font-weight: 600;
}
.blog-preview {
  background: #f6f8fb;
}
.blog-preview__heading {
  margin-bottom: 32px;
}
.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blog-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(52, 70, 101, 0.12);
}
.blog-card__content {
  padding: 26px 20px;
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 18px;
  border-radius: 50%;
  background: #273752;
  color: #ffffff;
  text-decoration: none;
}
.contact-section {
  background: #eef2f7;
  padding-bottom: 70px;
}
.contact-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
.contact-section__image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 8px 0 0 8px;
  object-fit: cover;
}
.contact-section__panel {
  padding: 52px 54px;
  border-radius: 0 8px 8px 0;
  background: #e7c8c9;
}
.contact-section__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.contact-section__header h2 {
  margin: 0;
}
.contact-section__header strong {
  display: block;
  margin-bottom: 8px;
  color: #273752;
  font-size: 18px;
}
.contact-section__header p {
  margin: 0;
  color: #536176;
  font-size: 14px;
  line-height: 1.55;
}
.contact-section__form {
  display: grid;
  gap: 18px;
}
.contact-section__form label {
  display: block;
  margin: 0;
}
.contact-section__form span {
  display: block;
  margin-bottom: 6px;
  color: #536176;
  font-size: 13px;
}
.contact-section__form input,
.contact-section__form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(39, 55, 82, 0.24);
  border-radius: 0;
  background: transparent;
  color: #273752;
  font: inherit;
}
.contact-section__form button {
  justify-self: center;
  min-width: 230px;
  margin-top: 8px;
}
.contact-section__map {
  margin: 60px auto 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(52, 70, 101, 0.12);
}
.contact-section__map iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}
.contact-card-section {
  padding: 58px 0 84px;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
}
.contact-card-section .container {
  max-width: 1780px;
}
.contact-card {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  min-height: 720px;
  border-radius: 45px 74px 74px 45px;
  overflow: hidden;
  background: #b9c2d2;
}
.contact-card__info {
  padding: 78px 64px 56px;
  border-radius: 45px;
  background: #5d6990;
  color: #ffffff;
}
.contact-card__info h2,
.contact-card__form-panel h2 {
  margin: 0;
  font-family: "Lora", serif;
  font-size: 47px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.contact-card__info h2 {
  max-width: 650px;
}
.contact-card__info-list {
  display: grid;
  gap: 38px;
  margin-top: 42px;
  padding-left: 66px;
}
.contact-card__info-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 22px;
  align-items: start;
}
.contact-card__icon {
  width: 25px;
  height: 25px;
  color: #ffffff;
  margin-top: 3px;
}
.contact-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.contact-card__info-item h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.contact-card__info-item p {
  margin: 0;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.24;
}
.contact-card__form-panel {
  position: relative;
  padding: 88px 80px 54px;
  color: #384a58;
  background: #b9c2d2;
  overflow: hidden;
}
.contact-card__form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/template/stomatologbg/assets/images/img_2.png");
  background-repeat: no-repeat;
  background-position: center right 64px;
  background-size: 680px auto;
  opacity: 0.18;
  pointer-events: none;
}
.contact-card__form-panel h2,
.contact-card__form {
  position: relative;
  z-index: 1;
}
.contact-card__form-panel h2 {
  color: #ffffff;
  margin-bottom: 56px;
}
.contact-card__form {
  display: grid;
  gap: 22px;
}
.contact-card__form label {
  display: block;
  margin: 0;
}
.contact-card__form span {
  display: block;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.contact-card__form input,
.contact-card__form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 0;
  background: transparent;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  outline: 0;
}
.contact-card__form input {
  height: 25px;
}
.contact-card__form textarea {
  min-height: 145px;
  resize: vertical;
}
.contact-card__form button {
  justify-self: center;
  width: min(520px, 100%);
  height: 75px;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  background: #17223f;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 112px;
  font-family: "Urbanist", sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  transition: background var(--transition), transform var(--transition);
}
.contact-card__form button svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card__form button:hover {
  background: #5d6990;
  transform: translateY(-1px);
}
.map-section {
  padding: 0;
  margin: 0;
  background: transparent;
}
.map-section__frame {
  width: 100%;
  height: 504px;
  overflow: hidden;
}
.map-section__frame iframe {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  border: 0 !important;
}

/* Pavlovic Figma header/footer */
header {
  color: #384A58;
  font-family: "Urbanist", sans-serif;
}
header .topbar {
  background: rgba(255, 255, 255, 0.86);
  padding: 10px 0 8px;
  backdrop-filter: blur(14px);
}
header .topbar .container {
  max-width: 1640px;
}
header .topbar .logo img {
  height: 58px;
  width: auto;
  margin-right: 28px;
}
header .topbar .right-group {
  gap: 24px;
}
header .topbar .topmenu {
  align-items: center;
  gap: 0;
}
header .topbar .topmenu .nav-link,
header .topbar .header-utility,
header .topbar .headinfo,
header .header-languages a {
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
header .topbar .topmenu .nav-link {
  padding: 0 12px;
}
header .topbar .social {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
header .topbar .social a {
  margin: 0;
}
header .topbar .social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
header .topbar .social img[src$="instagram.png"] {
  width: 22px;
  height: 22px;
}
header .header-separator {
  width: 1px;
  height: 28px;
  background: rgba(56, 74, 88, 0.42);
}
header .main-nav .container {
  max-width: 1480px;
}
header .main-nav .mainnav-content {
  min-height: 62px;
  padding: 0 42px;
  border-radius: 0 0 24px 24px;
  background: #5D6990;
  box-shadow: none;
}
header .main-nav .navbar-nav {
  width: 100%;
  justify-content: center;
  gap: 34px;
}
header .main-nav .navbar-nav .nav-link {
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
header .main-nav .navbar-nav .dropdown-menu .dropdown-item {
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
}
footer.site-footer {
  background: #162039;
  color: #F9F5EC;
  padding: 46px 0 0;
  font-family: "Urbanist", sans-serif;
}
footer.site-footer .pbmit-footer-widget-area {
  background: #162039;
}
footer.site-footer .container {
  max-width: 1440px;
}
footer.site-footer .footer-holder {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 0.9fr 0.9fr;
  gap: 70px;
  min-height: 0;
  padding: 0 0 38px;
  align-items: start;
}
footer.site-footer .footer-widget-col-1,
footer.site-footer .footer-widget-col-2,
footer.site-footer .footer-widget-col-3,
footer.site-footer .footer-widget-col-4 {
  width: auto;
}
footer.site-footer .footer-logo {
  margin: 0 0 14px;
}
footer.site-footer .footer-widget-col-1 img {
  width: 156px;
  height: auto;
}
footer.site-footer .footer-brand-name {
  margin: 0 0 14px;
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.22;
}
footer.site-footer .footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
footer.site-footer .footer-social img,
footer.site-footer .footer-social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: none;
}
footer.site-footer .footer-social img[src$="instagram.png"] {
  width: 22px;
  height: 22px;
}
footer.site-footer .widget-title {
  margin: 0 0 16px;
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}
footer.site-footer .footer-practice-title {
  text-decoration: none;
}
footer.site-footer a,
footer.site-footer p,
footer.site-footer li {
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}
footer.site-footer a {
  text-decoration: none;
}
footer.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}
footer.site-footer ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer.site-footer .footer-contact p {
  margin: 0 0 10px;
}
footer.site-footer .pbmit-footer-bottom {
  background: #dfcfca;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
}
footer.site-footer .pbmit-footer-bottom a,
footer.site-footer .pbmit-footer-bottom p {
  color: #384A58 !important;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
}
footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  min-width: 190px;
  background: #C8D2E8;
  color: #384A58 !important;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Exact header/footer pass from bodybefore/bodyafter references */
header {
  font-family: "Urbanist", sans-serif;
}
header .topbar {
  min-height: 84px;
  padding: 0;
  background: rgba(249, 245, 236, 0.76);
  backdrop-filter: blur(12px);
}
header .topbar > .container {
  min-height: 84px;
  max-width: 1450px;
  padding-left: 15px;
  padding-right: 15px;
}
header .topbar .logo img {
  width: 201px;
  height: auto;
  margin-right: 0;
}
header .topbar .right-group {
  gap: 28px;
  align-items: center;
}
header .topbar .topmenu {
  gap: 35px;
}
header .topbar .topmenu .nav-link {
  padding: 0;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
header .topbar .topmenu .nav-link::after {
  display: none;
}
header .topbar .header-utility {
  gap: 25px;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
header .topbar .headinfo,
header .topbar .headinfo a,
header .header-languages a {
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
header .header-languages a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
header .header-languages a span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.7px solid #384A58;
  border-bottom: 1.7px solid #384A58;
  transform: rotate(45deg) translateY(-3px);
}
header .topbar .social {
  gap: 16px;
}
header .topbar .social img {
  display: block;
  object-fit: contain;
}
header .topbar .social img[src$="fb.png"] {
  width: 11px;
  height: 24px;
}
header .topbar .social img[src$="instagram.png"] {
  width: 24px;
  height: 24px;
}
header .header-separator {
  width: 1px;
  height: 31px;
  background: #384A58;
  opacity: 0.75;
}
header .main-nav {
  padding: 0;
  transform: translateY(0);
}
header .main-nav .container {
  max-width: 1600px;
  padding-left: 0;
  padding-right: 0;
}
header .main-nav .mainnav-content {
  min-height: 82px;
  padding: 0 78px;
  border-radius: 41px;
  background: #5D6990;
  box-shadow: 0 14px 26px rgba(38, 50, 83, 0.18);
}
header .main-nav .navbar-nav {
  width: 100%;
  justify-content: space-between;
  gap: 28px;
}
header .main-nav .navbar-nav .nav-item {
  height: 82px;
}
header .main-nav .navbar-nav .nav-link {
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
}
header .main-nav .navbar-nav .nav-link.has-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
header .main-nav .navbar-nav .nav-link.has-toggle::before {
  content: "";
  order: 2;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid #F9F5EC;
  border-bottom: 1.8px solid #F9F5EC;
  transform: rotate(45deg) translateY(-3px);
}
header .main-nav .navbar-nav .nav-link::after {
  display: none;
}
header .main-nav .submenu-toggle {
  display: none;
}
body.team-member-page header,
body.has-image-header header,
body:has(.home-hero) header,
body:has(.page-header-image) header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10000;
  background: transparent;
}
body.team-member-page header .topbar,
body.has-image-header header .topbar,
body:has(.home-hero) header .topbar,
body:has(.page-header-image) header .topbar {
  background: rgba(249, 245, 236, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
body.team-member-page header .main-nav,
body.has-image-header header .main-nav,
body:has(.home-hero) header .main-nav,
body:has(.page-header-image) header .main-nav {
  margin-top: 0;
}
body.team-member-page header .main-nav .mainnav-content,
body.has-image-header header .main-nav .mainnav-content,
body:has(.home-hero) header .main-nav .mainnav-content,
body:has(.page-header-image) header .main-nav .mainnav-content {
  background: rgba(93, 105, 144, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(38, 50, 83, 0.20);
}
body.has-image-header .page-header-image,
body:has(.page-header-image) .page-header-image {
  padding-top: 0;
}
header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10000;
  width: 100%;
  background: transparent;
}
header .topbar {
  background: rgba(249, 245, 236, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: none;
}
header .topbar > .container {
  min-height: 74px;
}
header .topbar .logo img {
  width: 185px;
}
header .topbar .topmenu .nav-link,
header .topbar .header-utility,
header .topbar .headinfo,
header .topbar .headinfo a,
header .header-languages a {
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
header .topbar .header-utility,
header .topbar .headinfo,
header .topbar .headinfo a,
header .header-languages a {
  font-weight: 600;
}
header .header-separator {
  background: #384A58;
  opacity: 0.72;
}
header .main-nav .mainnav-content {
  background: #5D6990;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 2px 4px 8px rgba(37, 59, 81, 0.11);
}
header .main-nav .navbar-nav .nav-link {
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}
header .main-nav .navbar-nav .nav-link.has-toggle::before {
  border-right-color: #F9F5EC;
  border-bottom-color: #F9F5EC;
}
@media (min-width: 992px) {
  header .main-nav {
    padding: 0;
  }
  header .main-nav .container {
    width: min(1601px, calc(100vw - 156px));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  header .main-nav .mainnav-content {
    min-height: 82px;
    padding: 0 28px;
    border-radius: 40px;
    overflow: visible;
  }
  header .main-nav .navbar-nav {
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    gap: 18px;
  }
  header .main-nav .navbar-nav .nav-item {
    height: 82px;
    position: relative;
    display: flex;
    align-items: center;
  }
  header .main-nav .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 82px;
    max-width: 145px;
    padding: 0;
    white-space: normal;
    text-align: center;
  }
  header .main-nav .navbar-nav .nav-link::after {
    bottom: 25px;
    background-color: rgba(249, 245, 236, 0.88);
  }
  header .main-nav .navbar-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 448px;
    max-width: calc(100vw - 32px);
    margin: 0;
    padding: 18px 44px 21px;
    transform: translateX(-50%);
    background: #B9C1D3;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    border-radius: 0 0 40px 40px;
    box-shadow: 2px 4px 8px rgba(37, 59, 81, 0.11);
    z-index: 10002;
  }
  header .main-nav .navbar-nav .dropdown-menu .dropdown-item {
    display: block;
    padding: 0;
    color: #4A4E69;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.62;
    white-space: normal;
    background: transparent;
    border-bottom: 1px solid rgba(74, 78, 105, 0.28);
  }
  header .main-nav .navbar-nav .dropdown-menu li:last-child > .dropdown-item {
    border-bottom: 0;
  }
  header .main-nav .navbar-nav .dropdown-menu .dropdown-item:hover,
  header .main-nav .navbar-nav .dropdown-menu .dropdown-item:focus {
    color: #1E2640;
    background: transparent;
  }
  header .main-nav .navbar-nav .nav-item:hover > .dropdown-menu,
  header .main-nav .navbar-nav .nav-item:focus-within > .dropdown-menu,
  header .main-nav .navbar-nav .dropdown-submenu:hover > .dropdown-menu,
  header .main-nav .navbar-nav .dropdown-submenu:focus-within > .dropdown-menu {
    display: block;
  }
  header .main-nav .navbar-nav .dropdown-submenu {
    position: relative;
  }
  header .main-nav .navbar-nav .dropdown-submenu > .dropdown-menu {
    top: -18px;
    left: 100%;
    margin-left: 14px;
    transform: none;
    border-radius: 40px;
  }
  header .main-nav .navbar-nav .dropdown-submenu > .dropdown-item {
    padding-right: 42px;
  }
  header .main-nav .navbar-nav .dropdown-submenu > .submenu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 1.6px solid #4A4E69;
    border-right: 1.6px solid #4A4E69;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
  }
}
@media (max-width: 1500px) and (min-width: 992px) {
  header .main-nav .container {
    width: calc(100vw - 64px);
  }
  header .main-nav .mainnav-content {
    min-height: 70px;
    padding: 0 22px;
    border-radius: 35px;
  }
  header .main-nav .navbar-nav {
    gap: 10px;
  }
  header .main-nav .navbar-nav .nav-item,
  header .main-nav .navbar-nav .nav-link {
    height: 70px;
  }
  header .main-nav .navbar-nav .nav-link {
    max-width: 120px;
    font-size: 16px;
  }
  .home-cta-buttons__btn {
    width: 360px;
    max-width: calc(50vw - 18px);
    padding-left: 48px;
  }
  header .main-nav .navbar-nav .nav-link::after {
    bottom: 20px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  header .main-nav .container {
    width: calc(100vw - 28px);
  }
  header .main-nav .mainnav-content {
    min-height: 58px;
    padding: 0 14px;
    border-radius: 29px;
  }
  header .main-nav .navbar-nav {
    gap: 6px;
  }
  header .main-nav .navbar-nav .nav-item,
  header .main-nav .navbar-nav .nav-link {
    height: 58px;
  }
  header .main-nav .navbar-nav .nav-link {
    max-width: 96px;
    font-size: 13px;
  }
  header .main-nav .navbar-nav .nav-link.has-toggle::before {
    width: 6px;
    height: 6px;
  }
  header .main-nav .navbar-nav .dropdown-menu {
    min-width: 360px;
  }
}
@media (min-width: 992px) {
  body {
    overflow-x: clip;
  }
  header .main-nav .navbar-nav .dropdown-menu {
    width: min(448px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }
  header .main-nav .navbar-nav .dropdown-menu.dropdown-menu--viewport-adjusted {
    left: var(--dropdown-left, 50%) !important;
    right: auto !important;
    transform: var(--dropdown-transform, translateX(-50%)) !important;
  }
  header .main-nav .navbar-nav .dropdown-submenu > .dropdown-menu.dropdown-menu--open-left {
    left: auto !important;
    right: 100% !important;
    margin-left: 0 !important;
    margin-right: 14px !important;
    transform: none !important;
  }
}
footer.site-footer {
  padding-top: 0;
  background: #1F2744;
  color: #F9F5EC;
}
footer.site-footer .pbmit-footer-widget-area {
  background: #1F2744;
  padding: 62px 0 76px;
}
footer.site-footer .container {
  max-width: 1450px;
}
footer.site-footer .footer-holder {
  display: grid;
  grid-template-columns: 190px 280px 300px 210px 275px;
  gap: 52px;
  align-items: start;
  justify-content: center;
  padding: 0;
}
footer.site-footer .footer-widget-col-1,
footer.site-footer .footer-widget-col-brand,
footer.site-footer .footer-widget-col-2,
footer.site-footer .footer-widget-col-3,
footer.site-footer .footer-widget-col-4 {
  width: auto !important;
}
footer.site-footer .footer-widget-col-1 {
  order: 1;
  text-align: center;
}
footer.site-footer .footer-widget-col-brand {
  order: 2;
}
footer.site-footer .footer-widget-col-4 {
  order: 3;
}
footer.site-footer .footer-widget-col-2 {
  order: 4;
}
footer.site-footer .footer-widget-col-3 {
  order: 5;
}
footer.site-footer .footer-logo {
  margin: 0;
}
footer.site-footer .footer-widget-col-1 img {
  width: 148px;
  height: auto;
}
footer.site-footer .footer-brand-name {
  margin: 1px 0 24px;
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
}
footer.site-footer .footer-social {
  gap: 22px;
  margin-top: 0;
}
footer.site-footer .footer-social img[src$="fb.png"] {
  width: 11px;
  height: 24px;
}
footer.site-footer .footer-social img[src$="instagram.png"] {
  width: 24px;
  height: 24px;
}
footer.site-footer .widget-title {
  margin: 0 0 8px;
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}
footer.site-footer a,
footer.site-footer p,
footer.site-footer li {
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
}
footer.site-footer .footer-contact p {
  margin-bottom: 2px;
}
footer.site-footer ul {
  gap: 3px;
}
footer.site-footer .pbmit-footer-bottom {
  min-height: 67px;
  background: #E3D8D8;
}
footer.site-footer .pbmit-footer-bottom .container {
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer.site-footer .pbmit-footer-bottom .pbmit-footer-text-inner {
  width: 100%;
}
footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area {
  padding: 0;
}
footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  color: #293A59 !important;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  left: 0;
  bottom: 0;
  min-width: 268px;
  height: 90px;
  padding: 28px 18px 0;
  border-radius: 28px 28px 0 0;
  background: #C8D2E8;
  color: #293A59 !important;
  font-family: "Lora", serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.simple-page-header {
  min-height: 480px;
  padding: 252px 0 58px;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
  color: #1E2640;
}
.simple-page-header .container {
  max-width: 1450px;
}
.simple-page-header__pill {
  width: min(768px, 100%);
  min-height: 124px;
  padding: 21px 96px 20px;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(4.45px);
  -webkit-backdrop-filter: blur(4.45px);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.simple-page-header__pill h1 {
  margin: 0 0 10px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 0;
  text-shadow: 0 0 21px #fff;
}
.simple-page-header__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  text-shadow: 0 0 18px #fff;
}
.simple-page-header__breadcrumb a,
.simple-page-header__breadcrumb span {
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.simple-page-header__breadcrumb a,
.simple-page-header__separator {
  font-weight: 600;
}
.simple-page-header__breadcrumb a:hover {
  text-decoration: none;
}
.simple-page-header__separator {
  opacity: 0.72;
}
.page-header-image {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 835px;
  overflow: hidden;
  color: #17223f;
}
.page-header-image__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-header-image__shade {
  position: absolute;
  inset: auto 0 0;
  height: 390px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
}
.page-header-image .container {
  position: relative;
  z-index: 1;
  max-width: 1460px;
  min-height: 835px;
  display: block;
  padding-top: 486px;
  padding-left: 0;
  padding-right: 0;
}
.page-header-image__pill {
  width: min(780px, calc(100% - 40px));
  min-height: 162px;
  margin-top: 0;
  margin-left: 0;
  padding: 26px 92px 22px;
  border-radius: 32px;
  background: rgba(237, 242, 246, 0.70);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 36px rgba(39, 55, 82, 0.05);
}
.page-header-image__pill h1 {
  margin: 0 0 10px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-header-image__pill p {
  margin: 0 0 20px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.page-header-image__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.page-header-image__breadcrumb a,
.page-header-image__breadcrumb span {
  color: #17223f;
  text-decoration: none;
}
.team-members-section {
  position: relative;
  margin-top: -72px;
  padding: 112px 0 120px;
  overflow: hidden;
  background-color: #edf2f6;
  background-image: none;
}
.team-members-section::before,
.team-members-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.team-members-section::before {
  right: -32px;
  top: 6px;
  width: 520px;
  height: 596px;
  background-image: url("/template/stomatologbg/assets/images/our-team-motif-right.png");
  opacity: 0.2;
}
.team-members-section::after {
  left: -96px;
  top: 54%;
  width: 620px;
  height: 870px;
  background-image: url("/template/stomatologbg/assets/images/our-team-leaf.png");
  opacity: 0.18;
  transform: translateY(-50%);
}
.team-members-section .container {
  position: relative;
  z-index: 1;
  max-width: 1470px;
}
.team-members-section__title {
  margin: 0 0 42px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}
.team-members-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 402px));
  justify-content: space-between;
  gap: 78px 64px;
}
.team-members-section__card {
  position: relative;
  min-height: 636px;
  padding: 28px 34px 42px;
  border-radius: 35px;
  background: linear-gradient(180deg, #b7c2d3 0%, #d7dde7 47%, #fbf7ee 100%);
  box-shadow: 0 22px 46px rgba(38, 50, 83, 0.20);
  overflow: hidden;
  text-align: center;
}
.team-members-section__card::before,
.team-members-section__card::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.team-members-section__card::before {
  width: 325px;
  height: 361px;
  left: 34px;
  top: 44px;
  background-image: url("/template/stomatologbg/assets/images/our-team-image-bg-mask.png");
  opacity: 0.86;
}
.team-members-section__card::after {
  display: none;
}
.team-members-section__image {
  position: relative;
  display: block;
  width: min(303px, 90%);
  height: 347px;
  margin: 0 auto 42px;
  border-radius: 0;
  overflow: visible;
  z-index: 2;
  -webkit-mask-image: url("/template/stomatologbg/assets/images/our-team-image-mask.png");
  mask-image: url("/template/stomatologbg/assets/images/our-team-image-mask.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.team-members-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-members-section__content h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 17px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}
.team-members-section__content h3 a {
  color: inherit;
  text-decoration: none;
}
.team-members-section__role {
  position: relative;
  z-index: 1;
  margin: 0 auto 27px;
  max-width: 320px;
  color: #34405f;
  font-family: "Urbanist", sans-serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.18;
}
.team-members-section__excerpt {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 330px;
  color: #34405f;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.doctor-detail {
  overflow: hidden;
  background: #eef3f7;
  background-image: linear-gradient(180deg, #f8f5f2 0%, #eef3f7 48%, #eef3f7 100%);
  background-position: center top, center top;
  background-size: cover, auto;
  color: #17223f;
}
.doctor-detail .container {
  max-width: 1460px;
}
.doctor-detail__hero {
  position: relative;
  min-height: 740px;
  padding-top: 150px;
  background: radial-gradient(circle at 80% 50%, rgba(93, 105, 144, 0.82) 0 250px, transparent 251px), radial-gradient(circle at 96% 50%, rgba(249, 245, 236, 0.94) 0 190px, transparent 191px), linear-gradient(90deg, rgba(249, 245, 236, 0.92) 0%, rgba(237, 242, 246, 0.72) 52%, rgba(93, 105, 144, 0.75) 100%);
}
.doctor-detail__hero--has-image {
  background-image: var(--doctor-hero-image);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.doctor-detail__hero::before,
.doctor-detail__hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.doctor-detail__hero::before {
  inset: 0;
  background: radial-gradient(circle at 18% 30%, rgba(255, 255, 255, 0.78) 0 170px, transparent 171px), radial-gradient(circle at 34% 72%, rgba(255, 255, 255, 0.44) 0 140px, transparent 141px), linear-gradient(125deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  opacity: 1;
}
.doctor-detail__hero::after {
  right: -140px;
  top: -70px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(249, 245, 236, 0.42);
  border-radius: 50%;
}
.doctor-detail__hero--has-image::before,
.doctor-detail__hero--has-image::after {
  display: none;
}
.doctor-detail__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(360px, 1fr);
  align-items: center;
  gap: 78px;
  min-height: 570px;
}
.doctor-detail__intro {
  align-self: center;
  max-width: 650px;
  padding-left: 54px;
  padding-bottom: 16px;
}
.doctor-detail__eyebrow {
  margin-bottom: 18px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.doctor-detail__intro h1 {
  max-width: 620px;
  margin: 0;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.doctor-detail__line {
  width: 94px;
  height: 2px;
  margin: 22px 0 32px;
  background: #17223f;
}
.doctor-detail__summary {
  max-width: 640px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.32;
}
.doctor-detail__summary p {
  margin: 0 0 10px;
}
.doctor-detail__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}
.doctor-detail__socials span,
.doctor-detail__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(93, 105, 144, 0.72);
  border-radius: 50%;
  color: #5D6990;
  font-family: "Urbanist", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.doctor-detail__portrait {
  position: relative;
  align-self: end;
  min-height: 520px;
}
.doctor-detail__portrait img {
  position: absolute;
  right: 110px;
  bottom: 0;
  display: block;
  width: min(460px, 78%);
  max-height: 585px;
  object-fit: contain;
  object-position: bottom center;
}
.doctor-detail__content {
  position: relative;
  padding: 92px 0 114px;
  background:
    linear-gradient(180deg, rgba(238, 243, 247, 0.40) 0%, rgba(238, 243, 247, 0.76) 22%, rgba(238, 243, 247, 0.96) 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y;
}
.doctor-detail__content::before {
  content: "";
  position: absolute;
  left: max(-42px, calc(50% - 1000px));
  bottom: -20px;
  width: 430px;
  height: 604px;
  background: url("/template/stomatologbg/assets/images/general-page-left-motif.png") left bottom / contain no-repeat;
  opacity: 0.62;
  pointer-events: none;
}
.doctor-detail__content::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 364px;
  background: url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / cover no-repeat;
  opacity: 0.74;
  pointer-events: none;
}
.doctor-detail__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.88fr);
  gap: 48px;
  align-items: stretch;
  padding: 0 42px;
}
.doctor-detail__side {
  display: grid;
  gap: 28px;
}
.doctor-detail__card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: transparent;
  box-shadow: none;
}
.doctor-detail__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.doctor-detail__card--bio {
  min-height: 595px;
  padding: 72px 64px 58px;
}
.doctor-detail__card--blue,
.doctor-detail__card--pink {
  min-height: 278px;
  padding: 50px 58px;
}
.doctor-detail__card--bio::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-card-bio-bg.png");
}
.doctor-detail__card--blue::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-card-blue-bg.png");
}
.doctor-detail__card--pink::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-card-pink-bg.png");
}
.doctor-detail__heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.doctor-detail__card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 34px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.doctor-detail__heading h2 {
  margin: 0;
}
.doctor-detail__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: #5D6990;
}
.doctor-detail__icon::before {
  content: "";
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 0;
  background: center / contain no-repeat;
}
.doctor-detail__icon--pink {
  margin-bottom: 28px;
  background: #dfc4c6;
}
.doctor-detail__icon--pink::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-icon-bio.png");
}
.doctor-detail__icon--cap::before {
  width: 32px;
  height: 22px;
  background-image: url("/template/stomatologbg/assets/images/doctor-icon-education.png");
}
.doctor-detail__icon--medal {
  background: rgba(255, 255, 255, 0.74);
}
.doctor-detail__icon--medal::before {
  width: 24px;
  height: 32px;
  background-image: url("/template/stomatologbg/assets/images/doctor-icon-specialty.png");
}
.doctor-detail__text {
  position: relative;
  z-index: 1;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.doctor-detail__text p {
  margin: 0 0 13px;
}
.doctor-detail__text p:last-child,
.doctor-detail__text ul:last-child,
.doctor-detail__text ol:last-child {
  margin-bottom: 0;
}
.doctor-detail__text ul,
.doctor-detail__text ol {
  margin: 0;
  padding-left: 18px;
}
.doctor-detail__text li {
  margin-bottom: 4px;
}
.content-text-section,
.content-faq-section {
  position: relative;
  overflow: hidden;
  background: transparent;
  background-image: none;
  background-position: center top;
  background-size: cover;
  color: #17223f;
}
.content-faq-section {
  background: transparent;
  background-image: none;
}
.content-text-section::before,
.content-faq-section::before {
  content: "";
  position: absolute;
  left: -120px;
  top: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(93, 105, 144, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.content-text-section::before,
.content-text-section::after,
.content-faq-section::before,
.content-faq-section::after {
  display: none !important;
}
.content-text-section::after,
.content-faq-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -230px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  pointer-events: none;
}
.content-text-section .container,
.content-faq-section .container {
  position: relative;
  z-index: 1;
  max-width: 1460px;
}
.content-text-section {
  padding: 28px 0 24px;
}
.content-text-section .container {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(93, 105, 144, 0.28);
}
.content-text-section h2,
.content-faq-section h2 {
  margin: 0;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.content-text-section h2 {
  margin-bottom: 18px;
}
.content-text-section__body {
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
}
.content-text-section__body p {
  margin: 0 0 10px;
}
.content-text-section__body p:last-child {
  margin-bottom: 0;
}
.content-text-section__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 92px;
}
.content-faq-section {
  padding: 28px 0 44px;
}
.content-faq-section h2 {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 0 10px 17px 0;
  border-bottom: 1px solid rgba(214, 186, 181, 0.72);
}
.content-faq-section__items {
  padding-left: 8px;
}
.content-faq-section__item {
  border-bottom: 1px solid rgba(93, 105, 144, 0.58);
}
.content-faq-section__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 0 40px 0 54px;
  border: 0;
  background: transparent;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}
.content-faq-section__icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.content-faq-section__icon::before,
.content-faq-section__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #17223f;
  transform: translate(-50%, -50%);
}
.content-faq-section__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.content-faq-section__item.is-open .content-faq-section__icon::after {
  display: none;
}
.content-faq-section__answer {
  display: none;
  max-width: 1180px;
  padding: 0 120px 22px 70px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}
.content-faq-section__item.is-open .content-faq-section__answer {
  display: block;
}
.content-faq-section__answer p {
  margin: 10px 0 10px;
}
.content-faq-section__answer p:last-child {
  margin-bottom: 0;
}
.service-menu-section,
.service-text-box-section,
.text-box-section,
.service-media-section,
.service-contact-cta {
  position: relative;
  overflow: hidden;
  background: #edf2f6;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18)), url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
  color: #17223f;
}
.service-menu-section::before,
.service-text-box-section::before,
.text-box-section::before,
.service-media-section::before,
.service-contact-cta::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(93, 105, 144, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.service-menu-section::after,
.service-media-section::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(214, 186, 181, 0.25);
  border-radius: 50%;
  pointer-events: none;
}
.service-menu-section .container,
.service-text-box-section .container,
.text-box-section .container,
.service-media-section .container,
.service-contact-cta .container {
  position: relative;
  z-index: 1;
  max-width: 1460px;
}
.service-menu-section {
  padding: 52px 0 58px;
  text-align: center;
}
.service-menu-section h2 {
  margin: 0 0 14px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 33px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-menu-section__intro {
  max-width: 1100px;
  margin: 0 auto 28px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}
.service-menu-section__intro p {
  margin: 0 0 5px;
}
.service-menu-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px 28px;
  max-width: 1140px;
  margin: 0 auto;
}
.service-menu-section__card {
  display: block;
  width: 250px;
  min-height: 176px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(249, 245, 236, 0.88);
  box-shadow: 0 16px 32px rgba(38, 50, 83, 0.13);
  color: #17223f;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-menu-section__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(38, 50, 83, 0.18);
  color: #17223f;
  text-decoration: none;
}
.service-menu-section__image {
  display: block;
  height: 103px;
  overflow: hidden;
  background: #dbe3ec;
}
.service-menu-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-menu-section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px 18px 14px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-text-box-section,
.text-box-section {
  padding: 58px 0;
  text-align: center;
}
.service-text-box-section__text,
.text-box-section__text {
  max-width: 1040px;
  margin: 0 auto;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.04em;
}
.service-text-box-section__text p,
.text-box-section__text p {
  margin: 0;
}
.service-media-section {
  padding: 48px 0;
}
.service-media-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 76px;
}
.service-media-section--text-right .service-media-section__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}
.service-media-section__content h2 {
  margin: 0 0 40px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-media-section__text {
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}
.service-media-section__text p {
  margin: 0 0 18px;
}
.service-media-section__text p:last-child {
  margin-bottom: 0;
}
.service-media-section__media {
  overflow: hidden;
  border-radius: 22px;
}
.service-media-section__slider,
.service-media-section__media .swiper,
.service-media-section__media .swiper-wrapper,
.service-media-section__media .swiper-slide {
  overflow: hidden;
  border-radius: 22px;
}
.service-media-section__media img {
  display: block;
  width: 100%;
  height: 325px;
  object-fit: cover;
}
.service-media-section__media .swiper-pagination {
  bottom: 10px !important;
}
.service-media-section__media .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(249, 245, 236, 0.9);
  opacity: 1;
}
.service-media-section__media .swiper-pagination-bullet-active {
  background: #17223f;
}
.service-contact-cta {
  padding: 38px 0 42px;
  text-align: center;
}
.service-contact-cta h2 {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
.service-contact-cta__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.service-contact-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 218px;
  min-height: 58px;
  padding: 8px 22px 8px 10px;
  border-radius: 999px;
  background: #17223f;
  box-shadow: 0 12px 24px rgba(38, 50, 83, 0.18);
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.service-contact-cta__phone:hover {
  color: #f9f5ec;
  text-decoration: none;
}
.service-contact-cta__phone--light {
  background: #e2cacc;
  color: #384a58;
}
.service-contact-cta__phone--light:hover {
  color: #384a58;
}
.service-contact-cta__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: rgba(249, 245, 236, 0.22);
}
.service-contact-cta__phone--light .service-contact-cta__icon {
  background: rgba(249, 245, 236, 0.78);
}
.service-contact-cta__icon::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 4px;
  transform: rotate(-35deg);
}
.price-list-box {
  padding: 0 0 48px;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center;
  background-size: cover;
}
.gallery-grid-section {
  padding: 0 0 96px;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
}
.gallery-grid-section .container {
  max-width: 1450px;
}
.gallery-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 10px;
  gap: 18px;
  align-items: stretch;
}
.gallery-grid-section__item {
  display: block;
  grid-row: span 15;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 8px 22px rgba(52, 70, 101, 0.08);
}
.gallery-grid-section__item--1,
.gallery-grid-section__item--2,
.gallery-grid-section__item--5,
.gallery-grid-section__item--7,
.gallery-grid-section__item--11,
.gallery-grid-section__item--13,
.gallery-grid-section__item--14,
.gallery-grid-section__item--16,
.gallery-grid-section__item--17 {
  grid-row: span 31;
}
.gallery-grid-section__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-grid-section__item:hover img {
  transform: scale(1.025);
}
.price-list-box + .price-list-box {
  padding-top: 0;
}
.price-list-box .container {
  max-width: 1450px;
}
.price-list-box__card {
  position: relative;
  overflow: hidden;
  padding: 25px 44px 35px;
  border-radius: 18px;
  background: rgba(180, 190, 215, 0.92);
  box-shadow: 0 14px 26px rgba(73, 87, 119, 0.18);
}
.price-list-box__flower {
  position: absolute;
  right: -6px;
  top: 34px;
  width: min(430px, 36vw);
  height: auto;
  opacity: 0.36;
  pointer-events: none;
  z-index: 6;
  filter: brightness(1.18) saturate(0.78);
  mix-blend-mode: screen;
}
.price-list-box__card h2 {
  position: relative;
  z-index: 5;
  margin: 0 0 17px;
  color: #384A58;
  font-family: "Lora", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-list-box__table-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(249, 245, 236, 0.86);
}
.price-list-box__table-wrap::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -84px;
  width: 430px;
  height: 604px;
  background: url("/template/stomatologbg/assets/images/price-list-corner-motif.png") center / contain no-repeat;
  opacity: 0.28;
  pointer-events: none;
  z-index: 5;
  filter: brightness(1.22) saturate(0.78);
  mix-blend-mode: multiply;
}
.price-list-box__table {
  position: relative;
  z-index: 6;
  width: 100%;
  border-collapse: collapse;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
}
.price-list-box__table th,
.price-list-box__table td {
  padding: 10px 18px;
  border-bottom: 1px solid rgba(56, 74, 88, 0.18);
  border-right: 1px solid rgba(56, 74, 88, 0.14);
  font-weight: 400;
  line-height: 1.25;
}
.price-list-box__table th:last-child,
.price-list-box__table td:last-child {
  border-right: 0;
}
.price-list-box__table tbody tr:last-child td {
  border-bottom: 0;
}
.price-list-box__table thead th {
  background: rgba(228, 199, 199, 0.92);
  color: #384A58;
  font-weight: 500;
}
.price-list-box__table th:first-child,
.price-list-box__table td:first-child {
  width: 70px;
  text-align: center;
}
.price-list-box__table th:nth-child(2),
.price-list-box__table td:nth-child(2) {
  text-align: left;
}
.price-list-box__table th:last-child,
.price-list-box__table td:last-child {
  width: 190px;
  text-align: right;
}

.home-section-title {
  max-width: 980px;
  margin: 0 auto 62px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  text-align: center;
}
.home-section-title p {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.3;
}
.home-section-title h2,
.home-services-desc h2,
.home-blogs h2 {
  margin: 0 0 28px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-section-title div {
  margin: 0 auto 16px;
  max-width: 940px;
  color: #384a58;
  font-size: 16px;
  line-height: 1.35;
}
.home-hero {
  position: relative;
  min-height: 760px;
  padding: 238px 0 112px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.home-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__slider,
.home-hero__slider .swiper-wrapper,
.home-hero__slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.home-hero__slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero__slider .swiper-pagination {
  bottom: 18px !important;
}
.home-hero__slider .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(249, 245, 236, 0.88);
  opacity: 1;
}
.home-hero__slider .swiper-pagination-bullet-active {
  background: #17223f;
}
.home-hero .container {
  position: relative;
  z-index: 2;
}
.home-hero__panel {
  max-width: 890px;
  margin: 0 auto;
  padding: 24px 34px 28px;
  border-radius: 20px;
  background: rgba(249, 245, 236, 0.70);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: none;
  text-align: center;
}
.home-hero__panel h1 {
  margin: 0 0 14px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.home-hero__panel p {
  max-width: 570px;
  margin: 0 auto 22px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}
.home-hero__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 590px;
  margin: 0 auto;
  text-align: left;
}
.home-hero__lists ul {
  margin: 0;
  padding: 16px 28px 16px 40px;
  border-radius: 20px;
  background: rgba(249, 245, 236, 0.72);
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.32;
}
.home-cta-buttons {
  margin-top: -86px;
  padding: 0 0 78px;
  position: relative;
  z-index: 3;
}
.home-cta-buttons__inner {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.home-cta-buttons__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 432px;
  max-width: calc(50vw - 18px);
  min-height: 63px;
  padding: 8px 9px 8px 83px;
  border-radius: 999px;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: none;
}
.home-cta-buttons__btn:hover {
  color: #f9f5ec;
  text-decoration: none;
}
.home-cta-buttons__btn--dark {
  background: #1E2640;
}
.home-cta-buttons__btn--light {
  background: #EAD6D8;
  color: #4A4E69;
}
.home-cta-buttons__btn--light:hover {
  color: #384a58;
}
.home-cta-buttons__btn i {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: rgba(249, 245, 236, 0.20);
}
.home-cta-buttons__btn--light i {
  background: rgba(249, 245, 236, 0.68);
}
.home-cta-buttons__btn i::before,
.home-cta-buttons__btn i::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.home-cta-buttons__btn i::before {
  width: 16px;
  height: 2px;
  right: 15px;
  top: 23px;
  transform: rotate(-45deg);
}
.home-cta-buttons__btn i::after {
  width: 9px;
  height: 9px;
  right: 14px;
  top: 15px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
}
@media (max-width: 1500px) and (min-width: 768px) {
  .home-cta-buttons__btn {
    width: 360px;
    max-width: calc(50vw - 18px);
    padding-left: 48px;
  }
}
.home-doctors,
.home-services-desc,
.home-technology,
.home-blogs {
  padding: 82px 0 96px;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
}
.home-doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.home-doctors__card {
  min-height: 420px;
  padding: 22px 16px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, #c9d3e6 0%, #f8f5ef 54%);
  box-shadow: 0 16px 25px rgba(47, 62, 91, 0.18);
  color: #17223f;
  text-align: center;
}
.home-doctors__image {
  display: block;
  width: 210px;
  height: 210px;
  margin: -6px auto 18px;
  overflow: hidden;
  border-radius: 50%;
}
.home-doctors__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-doctors__card h3 {
  margin: 0 0 10px;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}
.home-doctors__card p {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.25;
}
.home-doctors__role {
  min-height: 42px;
  margin-bottom: 16px !important;
  font-weight: 700;
}
.home-why {
  padding: 82px 0 52px;
  overflow: hidden;
  background: linear-gradient(90deg, #edf2f6 0%, #edf2f6 56%, #dfe7f0 100%);
}
.home-why__grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}
.home-why__content {
  position: relative;
  z-index: 2;
  padding-left: 48px;
}
.home-why__content h2 {
  margin: 0 0 26px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.04em;
}
.home-why__content h3 {
  margin: 0 0 12px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.home-why__text {
  max-width: 510px;
  margin: 0 0 20px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  line-height: 1.35;
}
.home-why__items {
  max-width: 560px;
}
.home-why__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  border-bottom: 1px solid rgba(93, 105, 144, 0.28);
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.home-why__item i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.home-why__item i::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 3px;
  width: 1px;
  height: 18px;
  background: #9ca9bd;
}
.home-why__item i::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 5px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #9ca9bd;
  border-bottom: 1px solid #9ca9bd;
  transform: rotate(45deg);
}
.home-why__image {
  margin-right: -80px;
}
.home-why__image img {
  display: block;
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}
.home-services-desc h2,
.home-blogs h2 {
  text-align: center;
}
.home-services-desc__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  max-width: 1160px;
  margin: 0 auto;
}
.home-services-desc__card {
  display: block;
  overflow: hidden;
  min-height: 335px;
  border-radius: 18px;
  background: #f9f5ec;
  color: #17223f;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 23px rgba(50, 66, 98, 0.12);
}
.home-services-desc__card:hover {
  color: #17223f;
  text-decoration: none;
}
.home-services-desc__card img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
}
.home-services-desc__card div {
  padding: 26px 18px 24px;
}
.home-services-desc__card h3 {
  margin: 0 0 12px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.home-services-desc__card p {
  margin: 0;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}
.home-technology__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 26px;
  max-width: 1160px;
  margin: 0 auto;
}
.home-technology__card {
  min-height: 255px;
  padding: 34px 25px 30px;
  border-radius: 46px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 18px rgba(53, 70, 102, 0.12);
  color: #17223f;
  text-align: center;
}
.home-technology__card:nth-child(even) {
  transform: translateY(42px);
}
.home-technology__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin-bottom: 24px;
}
.home-technology__icon img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}
.home-technology__icon span {
  width: 58px;
  height: 58px;
  border: 1px solid #8ca0bd;
  border-radius: 8px;
  box-shadow: inset 0 0 0 8px rgba(140, 160, 189, 0.08);
}
.home-technology__card h3 {
  margin: 0 0 18px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.18;
}
.home-technology__card p {
  margin: 0;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.25;
}
.home-reviews {
  min-height: 360px;
  padding: 44px 0 54px;
  background: #e0b9ad;
  background-image: radial-gradient(circle at 12% 92%, rgba(249, 245, 236, 0.18) 0 0, transparent 31%), radial-gradient(circle at 92% 6%, rgba(249, 245, 236, 0.14) 0 0, transparent 34%);
}
.home-reviews__circle {
  position: relative;
  width: 330px;
  min-height: 330px;
  margin: 0 auto;
  padding: 110px 42px 54px;
  border-radius: 50%;
  background: #344456;
  box-shadow: 14px 20px 28px rgba(45, 54, 72, 0.28);
  color: #f9f5ec;
  text-align: center;
}
.home-reviews__quote {
  position: absolute;
  left: 50%;
  top: -40px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: #eec99c;
  color: #344456;
  font-family: "Lora", serif;
  font-size: 116px;
  line-height: 1.05;
  transform: translateX(-50%);
}
.home-reviews__text p {
  margin: 0 0 24px;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  line-height: 1.28;
}
.home-reviews__text strong {
  color: #eec99c;
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.home-reviews__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.home-reviews__nav button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f9f5ec;
  font-size: 24px;
  line-height: 1;
}
.home-blogs {
  background: #f7f7f5;
}
.home-blogs h2 {
  text-align: left;
}
.home-blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-blogs__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  min-height: 205px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(90deg, #f9f5ec 0%, #ead8d8 100%);
  box-shadow: 0 12px 24px rgba(62, 70, 88, 0.1);
}
.home-blogs__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 20px 22px 24px;
}
.home-blogs__content h3 {
  margin: 0 0 14px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-blogs__content p {
  margin: 0 0 18px;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1.28;
}
.home-blogs__content a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  margin-top: auto;
  border-radius: 50%;
  background: transparent;
  color: #f9f5ec;
}
.home-blogs__content a img {
  display: block;
  width: 37px;
  height: 37px;
  object-fit: contain;
}
.home-blogs__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.home-contact {
  padding: 72px 0 92px;
  background: #f9f5ec;
}
.home-contact__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1450px;
  margin: 0 auto 70px;
}
.home-contact__image {
  overflow: hidden;
  border-radius: 44px 0 0 44px;
}
.home-contact__image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.home-contact__panel {
  min-height: 500px;
  padding: 58px 78px 52px;
  border-radius: 44px;
  background: #e0c7ca;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center;
  background-size: cover;
}
.home-contact__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.6fr);
  gap: 42px;
  margin-bottom: 40px;
}
.home-contact__head h2,
.home-contact__head h3 {
  margin: 0;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.home-contact__head h3 {
  text-transform: none;
}
.home-contact__head p {
  margin: 12px 0 0;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}
.home-contact__form {
  display: grid;
  gap: 20px;
}
.home-contact__form input,
.home-contact__form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(93, 105, 144, 0.32);
  background: transparent;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  outline: none;
}
.home-contact__form input {
  height: 34px;
}
.home-contact__form textarea {
  min-height: 78px;
  resize: vertical;
}
.home-contact__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 82px;
  justify-self: center;
  min-width: 310px;
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  background: #17223f;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.home-contact__form button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.home-contact__map {
  max-width: 1160px;
  height: 355px;
  margin: 0 auto;
  overflow: hidden;
}
.home-contact__map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.category-page-header {
  position: relative;
  min-height: 820px;
  margin-top: -154px;
  padding-top: 154px;
  overflow: hidden;
  background: #edf2f6;
}
.category-page-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.category-page-header__shade {
  position: absolute;
  inset: auto 0 0;
  height: 360px;
  background: linear-gradient(180deg, rgba(237, 242, 246, 0) 0%, rgba(237, 242, 246, 0.36) 36%, rgba(237, 242, 246, 0.82) 68%, #edf2f6 100%);
}
.category-page-header .container {
  position: relative;
  z-index: 2;
  min-height: 666px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 1450px;
}
.category-page-header__content {
  width: min(768px, 100%);
  min-height: 174px;
  margin: 0 0 164px 18px;
  padding: 26px 96px 24px;
  border-radius: 35px;
  background: rgba(215, 228, 238, 0.26);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category-page-header__content h1 {
  margin: 0 0 5px;
  color: #1e2640;
  font-family: "Lora", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 0 21px rgba(255, 255, 255, 0.9);
}
.category-page-header__content h1::after {
  display: none;
}
.category-page-header__content p {
  max-width: 560px;
  margin: 0 0 18px;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.22;
  text-align: left;
}
.category-page-header__breadcrumb {
  color: #1e2640;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
}
.category-page-header__breadcrumb a {
  color: #1e2640;
  text-decoration: none;
}
.category-page-header__breadcrumb span {
  margin-left: 4px;
}
.category-color-text-box,
.category-specialist-form,
.category-faq,
.category-reviews {
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
}
.category-color-text-box {
  padding: 70px 0;
}
.category-color-text-box__inner {
  max-width: 1390px;
  margin: 0 auto;
  padding: 72px 132px;
  border: 1px solid rgba(93, 105, 144, 0.18);
  border-radius: 28px;
  background: linear-gradient(100deg, rgba(224, 199, 202, 0.88) 0%, rgba(249, 245, 236, 0.82) 100%);
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  line-height: 1.34;
  text-align: center;
  box-shadow: 0 10px 24px rgba(73, 87, 119, 0.08);
}
.category-color-text-box__inner--columns {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 74px;
  padding: 72px 56px;
  text-align: left;
}
.category-color-text-box__left {
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-color-text-box__left p,
.category-color-text-box__left h2,
.category-color-text-box__left h3 {
  margin: 0;
}
.category-color-text-box__right {
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  line-height: 1.35;
}
.category-color-text-box__inner p {
  margin: 0 0 24px;
}
.category-color-text-box__inner p:last-child {
  margin-bottom: 0;
}
.category-specialist-form {
  padding: 72px 0 92px;
}
.category-specialist-form h2,
.category-faq h2,
.category-reviews h2 {
  margin: 0 0 48px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-specialist-form h2 {
  text-align: center;
}
.category-specialist-form h2::after,
.category-faq h2::after,
.category-reviews h2::after {
  content: "";
  display: block;
  width: 460px;
  max-width: 100%;
  height: 1px;
  margin: 14px auto 0;
  background: #5d6990;
}
.category-faq h2::after,
.category-reviews h2::after {
  margin-left: 0;
}
.category-specialist-form__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 660px);
  justify-content: center;
  align-items: center;
  gap: 220px;
}
.category-specialist-form__doctor {
  min-height: 500px;
  padding: 30px 18px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #c9d3e6 0%, #f8f5ef 58%);
  box-shadow: 0 16px 25px rgba(47, 62, 91, 0.16);
  color: #17223f;
  text-align: center;
}
.category-specialist-form__image {
  width: 210px;
  height: 245px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 50% 50% 46% 46%;
}
.category-specialist-form__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-specialist-form__doctor h3 {
  margin: 0 0 12px;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.category-specialist-form__doctor p {
  margin: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.25;
}
.category-specialist-form__role {
  max-width: 210px;
  margin: 0 auto 22px !important;
  font-weight: 700;
}
.category-specialist-form__panel {
  min-height: 490px;
  padding: 55px 66px 42px;
  border-radius: 46px;
  background: rgba(188, 199, 220, 0.9);
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center;
  background-size: cover;
}
.category-specialist-form__panel h3 {
  margin: 0 0 42px;
  color: #f9f5ec;
  font-family: "Lora", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.category-specialist-form__panel form {
  display: grid;
  gap: 20px;
}
.category-specialist-form__panel input,
.category-specialist-form__panel textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(249, 245, 236, 0.68);
  background: transparent;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  outline: none;
}
.category-specialist-form__panel input::placeholder,
.category-specialist-form__panel textarea::placeholder {
  color: rgba(249, 245, 236, 0.92);
}
.category-specialist-form__panel input {
  height: 34px;
}
.category-specialist-form__panel textarea {
  min-height: 78px;
  resize: vertical;
}
.category-specialist-form__panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 92px;
  justify-self: center;
  min-width: 350px;
  min-height: 56px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: #17223f;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.category-specialist-form__panel button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.category-faq {
  padding: 66px 0 90px;
}
.category-faq .container {
  max-width: 1180px;
}
.category-faq h2 {
  margin-bottom: 28px;
}
.category-faq__items {
  display: grid;
  gap: 8px;
}
.category-faq__item {
  overflow: hidden;
  border: 1px solid rgba(93, 105, 144, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 5px 12px rgba(65, 76, 96, 0.04);
}
.category-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 54px;
  padding: 0 38px;
  border: 0;
  background: transparent;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.03em;
  text-align: left;
  cursor: pointer;
}
.category-faq__icon {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-left: 18px;
}
.category-faq__icon::before,
.category-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1px;
  background: #17223f;
  transform: translate(-50%, -50%);
}
.category-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.category-faq__item.is-open .category-faq__icon::after {
  display: none;
}
.category-faq__answer {
  display: none;
  padding: 0 80px 24px 38px;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1.35;
}
.category-faq__item.is-open .category-faq__answer {
  display: block;
}
.category-reviews {
  padding: 60px 0 90px;
}
.category-reviews .container {
  max-width: 1180px;
}
.category-reviews__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.category-reviews h2 {
  margin: 0;
}
.category-reviews__nav {
  display: flex;
  gap: 14px;
  padding-top: 4px;
}
.category-reviews__nav button {
  width: 24px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #5d6990;
  font-size: 42px;
  font-weight: 400;
  line-height: 0.55;
}
.category-reviews__card {
  min-height: 150px;
  padding: 20px 26px 20px;
  border-radius: 14px;
  background: linear-gradient(90deg, #f9f5ec 0%, #e3c6c8 100%);
  color: #17223f;
  font-family: "Urbanist", sans-serif;
}
.category-reviews__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.category-reviews__author span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
.category-reviews__author strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}
.category-reviews__author small {
  display: block;
  margin-top: 2px;
  color: #5d6990;
  font-size: 9px;
  line-height: 1.1;
}
.category-reviews__stars {
  margin: 0 0 10px;
  color: #5d6990;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.category-reviews__card p {
  margin: 0;
  color: #384a58;
  font-size: 12px;
  line-height: 1.22;
}
.category-media-v2,
.category-media-stack {
  padding: 58px 0;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
  color: #17223f;
}
.category-media-v2 .container,
.category-media-stack .container {
  max-width: 1500px;
}
.category-media-v2__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 68px;
  padding: 24px 0;
  border-top: 1px solid rgba(93, 105, 144, 0.28);
  border-bottom: 1px solid rgba(93, 105, 144, 0.28);
}
.category-media-v2--media-left .category-media-v2__grid {
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 0.98fr);
}
.category-media-v2__text h2,
.category-media-v2__text h3,
.category-media-stack h2 {
  margin: 0 0 18px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-media-v2__text h3 {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(93, 105, 144, 0.26);
}
.category-media-v2__text p,
.category-media-stack__text {
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.34;
}
.category-media-v2__text p {
  margin: 0 0 14px;
}
.category-media-v2__text p:last-child {
  margin-bottom: 0;
}
.category-media-v2__media,
.category-media-v2__slider,
.category-media-v2__media .swiper,
.category-media-v2__media .swiper-wrapper,
.category-media-v2__media .swiper-slide {
  overflow: hidden;
  border-radius: 22px;
}
.category-media-v2__media img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.category-media-stack {
  padding-top: 46px;
}
.category-media-stack .container {
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(93, 105, 144, 0.28);
  border-bottom: 1px solid rgba(93, 105, 144, 0.28);
}
.category-media-stack h2 {
  margin-bottom: 34px;
}
.category-media-stack__media,
.category-media-stack__slider,
.category-media-stack__media .swiper,
.category-media-stack__media .swiper-wrapper,
.category-media-stack__media .swiper-slide {
  overflow: hidden;
}
.category-media-stack__media img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.category-media-stack__text {
  max-width: 1180px;
  margin-top: 34px;
}
.category-media-stack__text p {
  margin: 0 0 12px;
}
.category-media-stack__text ol,
.category-media-stack__text ul {
  margin: 10px 0 0;
  padding-left: 26px;
}
.category-media-stack__text li {
  margin-bottom: 8px;
}
.category-media-v2 .swiper-pagination,
.category-media-stack .swiper-pagination {
  bottom: 12px !important;
}
.category-media-v2 .swiper-pagination-bullet,
.category-media-stack .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(249, 245, 236, 0.88);
  opacity: 1;
}
.category-media-v2 .swiper-pagination-bullet-active,
.category-media-stack .swiper-pagination-bullet-active {
  background: #17223f;
}
.reviews-slider-2,
.related-services,
.specialist-form-2 {
  padding: 70px 0 86px;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
  color: #17223f;
}
.reviews-slider-2 h2,
.related-services h2,
.specialist-form-2 h2 {
  margin: 0 0 42px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.reviews-slider-2 h2::after,
.related-services h2::after,
.specialist-form-2 h2::after {
  content: "";
  display: block;
  width: 230px;
  height: 1px;
  margin: 12px auto 0;
  background: #5d6990;
}
.reviews-slider-2__wrap {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.reviews-slider-2__card {
  position: relative;
  min-height: 310px;
  padding: 90px 110px 42px;
  border-radius: 14px;
  background: #f9f5ec;
  box-shadow: 0 16px 28px rgba(57, 67, 88, 0.13);
  text-align: center;
}
.reviews-slider-2__initial {
  position: absolute;
  left: 50%;
  top: -44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #ad45c9;
  color: #ffffff;
  font-family: "Urbanist", sans-serif;
  font-size: 30px;
  font-weight: 700;
  transform: translateX(-50%);
}
.reviews-slider-2__card p {
  max-width: 660px;
  margin: 0 auto 28px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  line-height: 1.28;
}
.reviews-slider-2__stars {
  margin-bottom: 18px;
  color: #e0c7ca;
  font-size: 25px;
  letter-spacing: 0.08em;
}
.reviews-slider-2__card strong {
  color: #5d6990;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 700;
}
.reviews-slider-2__prev,
.reviews-slider-2__next {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #5d6990;
  font-size: 56px;
  line-height: 0.6;
  transform: translateY(-50%);
}
.reviews-slider-2__prev {
  left: 18px;
}
.reviews-slider-2__next {
  right: 18px;
}
.related-services__head {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 34px;
}
.related-services__nav {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 14px;
}
.related-services__nav button {
  width: 26px;
  height: 30px;
  border: 0;
  background: transparent;
  color: #d7c4c9;
  font-size: 42px;
  line-height: 0.55;
}
.related-services .swiper {
  max-width: 1180px;
  margin: 0 auto;
}
.related-services__card {
  display: block;
  overflow: hidden;
  min-height: 360px;
  border-radius: 18px;
  background: #f9f5ec;
  color: #17223f;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 14px 25px rgba(53, 70, 102, 0.12);
}
.related-services__card:hover {
  color: #17223f;
  text-decoration: none;
}
.related-services__card img {
  display: block;
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.related-services__card div {
  padding: 28px 20px 24px;
}
.related-services__card h3 {
  margin: 0 0 14px;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.related-services__card p {
  margin: 0;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1.25;
}
.specialist-form-2__panel {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(330px, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 38px;
  background: rgba(188, 199, 220, 0.88);
  box-shadow: 0 18px 30px rgba(55, 66, 91, 0.13);
}
.specialist-form-2__doctors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.specialist-form-2__doctor {
  min-height: 520px;
  padding: 28px 18px 30px;
  background: linear-gradient(180deg, #c9d3e6 0%, #f9f5ec 58%);
  color: #17223f;
  text-align: center;
}
.specialist-form-2__image {
  width: 230px;
  height: 245px;
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 50% 50% 46% 46%;
}
.specialist-form-2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialist-form-2__doctor h3 {
  margin: 0 0 14px;
  color: #17223f;
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.16;
}
.specialist-form-2__doctor p {
  margin: 0;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 1.28;
}
.specialist-form-2__role {
  min-height: 58px;
  margin-bottom: 24px !important;
  color: #17223f !important;
  font-weight: 700;
}
.specialist-form-2__form {
  padding: 62px 36px 38px;
  background: rgba(188, 199, 220, 0.95);
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center;
  background-size: cover;
}
.specialist-form-2__form h3 {
  margin: 0 0 42px;
  color: #f9f5ec;
  font-family: "Lora", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.specialist-form-2__form form {
  display: grid;
  gap: 18px;
}
.specialist-form-2__form input,
.specialist-form-2__form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(249, 245, 236, 0.68);
  background: transparent;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  outline: none;
}
.specialist-form-2__form input::placeholder,
.specialist-form-2__form textarea::placeholder {
  color: rgba(249, 245, 236, 0.92);
}
.specialist-form-2__form input {
  height: 34px;
}
.specialist-form-2__form textarea {
  min-height: 88px;
  resize: vertical;
}
.specialist-form-2__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  min-height: 56px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: #17223f;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.specialist-form-2__form button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

@media (max-width: 1199px) {
  .gallery-grid-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .team-members-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .doctor-detail__hero {
    min-height: 650px;
    padding-top: 150px;
  }
  .doctor-detail__hero--has-image {
    background-size: cover;
  }
  .doctor-detail__hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 32px;
    min-height: 500px;
  }
  .doctor-detail__intro {
    padding-left: 20px;
  }
  .doctor-detail__intro h1 {
    font-size: 48px;
  }
  .doctor-detail__portrait img {
    right: 26px;
    width: min(370px, 88%);
  }
  .doctor-detail__grid {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
  .page-header-image__pill {
    margin-top: 120px;
  }
  .contact-card {
    grid-template-columns: 1fr;
    border-radius: 38px;
  }
  .contact-card__info {
    border-radius: 38px 38px 0 0;
  }
  .contact-card__info h2,
  .contact-card__form-panel h2 {
    font-size: 38px;
  }
  .contact-card__info-list {
    padding-left: 0;
  }
  .blog-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-doctors__grid,
  .home-technology__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-services-desc__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-why__content {
    padding-left: 0;
  }
  .home-blogs__grid {
    grid-template-columns: 1fr;
  }
  .home-contact__panel {
    padding: 48px 42px;
  }
  .category-specialist-form__grid {
    gap: 90px;
  }
  .category-specialist-form__panel {
    padding: 48px 46px 40px;
  }
  .category-media-v2__grid,
  .category-media-v2--media-left .category-media-v2__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .category-media-v2--media-left .category-media-v2__media {
    order: 2;
  }
  .category-media-v2--media-left .category-media-v2__text {
    order: 1;
  }
  .specialist-form-2__panel {
    grid-template-columns: 1fr;
  }
  .specialist-form-2__form {
    padding: 42px 34px;
  }
  .singleblog-author {
    grid-template-columns: 250px minmax(0, 1fr);
  }
  .singleblog-author img {
    width: 250px;
    height: 320px;
  }
  .singleblog-info-box {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
  .singleblog-info-box img {
    height: 360px;
  }
  .related-blog-posts__grid {
    grid-template-columns: 1fr;
  }
  header .topbar .topmenu .nav-link,
  header .topbar .header-utility,
  header .topbar .headinfo,
  header .header-languages a,
  header .main-nav .navbar-nav .nav-link {
    font-size: 17px;
  }
  header .main-nav .navbar-nav {
    gap: 20px;
  }
  footer.site-footer .footer-holder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 48px;
  }
  .doctors-section__grid,
  .services-overview__grid,
  .technology-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-preview__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .gallery-grid-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-header-image,
  .page-header-image .container {
    min-height: 620px;
  }
  .page-header-image .container {
    padding-top: 330px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .page-header-image__pill {
    padding: 24px 42px;
  }
  .page-header-image__pill h1 {
    font-size: 42px;
  }
  .page-header-image__pill p {
    font-size: 21px;
  }
  .simple-page-header {
    min-height: 340px;
    padding-top: 170px;
  }
  .price-list-box__card {
    padding: 22px 22px 28px;
  }
  header .topbar .right-group {
    display: none;
  }
  header .main-nav .mainnav-content {
    padding: 0;
  }
  .home-intro__hero {
    min-height: 620px;
    padding: 150px 0 86px;
  }
  .home-intro__panel {
    padding: 38px 32px 42px;
  }
  .home-intro h1 {
    font-size: 42px;
  }
  .home-hero {
    padding-top: 160px;
  }
  .home-hero__panel {
    padding: 30px 32px 24px;
  }
  .home-hero__panel h1 {
    font-size: 36px;
  }
  .home-cta-buttons__inner {
    flex-wrap: wrap;
  }
  .home-why__grid,
  .home-contact__top {
    grid-template-columns: 1fr;
  }
  .home-why__image {
    margin: 0;
  }
  .home-why__image img {
    min-height: 320px;
    mask-image: none;
    border-radius: 26px;
  }
  .home-services-desc__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-contact__image {
    border-radius: 34px 34px 0 0;
  }
  .home-contact__image img {
    height: 360px;
  }
  .home-contact__panel {
    border-radius: 0 0 34px 34px;
  }
  .why-choose-us__layout,
  .contact-section__layout {
    grid-template-columns: 1fr;
  }
  .contact-section__image {
    border-radius: 8px 8px 0 0;
  }
  .contact-section__panel {
    border-radius: 0 0 8px 8px;
  }
  .contact-card-section {
    padding: 38px 0 64px;
  }
  .contact-card__info,
  .contact-card__form-panel {
    padding: 46px 34px;
  }
  .contact-card__form button {
    gap: 48px;
  }
  .doctor-detail__hero {
    min-height: 680px;
    padding-top: 150px;
  }
  .doctor-detail__hero--has-image {
    background-position: 62% top;
  }
  .doctor-detail__hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 520px;
  }
  .doctor-detail__intro {
    padding: 0 18px;
  }
  .doctor-detail__portrait {
    min-height: 320px;
  }
  .doctor-detail__portrait img {
    right: 50%;
    width: min(340px, 78%);
    transform: translateX(50%);
  }
  .doctor-detail__grid {
    grid-template-columns: 1fr;
  }
  .service-media-section__grid,
  .service-media-section--text-right .service-media-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-media-section--text-right .service-media-section__media {
    order: 2;
  }
  .service-media-section--text-right .service-media-section__content {
    order: 1;
  }
  .service-media-section__media img {
    height: 300px;
  }
  .singleblog-author {
    gap: 26px;
  }
  .singleblog-info-box {
    grid-template-columns: 1fr;
  }
  .singleblog-info-box img {
    height: 360px;
    border-radius: 18px 18px 0 0;
  }
}
@media (max-width: 767px) {
  .gallery-grid-section {
    padding-bottom: 60px;
  }
  .page-header-image,
  .page-header-image .container {
    min-height: 500px;
  }
  .page-header-image .container {
    padding-top: 270px;
  }
  .page-header-image__pill {
    margin-top: 0;
    padding: 22px 24px;
    border-radius: 22px;
  }
  .page-header-image__pill h1 {
    font-size: 31px;
    letter-spacing: 0.05em;
  }
  .page-header-image__pill p {
    margin-bottom: 14px;
    font-size: 18px;
  }
  .team-members-section {
    margin-top: -42px;
    padding: 80px 0 72px;
  }
  .team-members-section::before {
    right: -70px;
    top: 10px;
    width: 250px;
    height: 286px;
    opacity: 0.22;
  }
  .team-members-section::after {
    left: -160px;
    width: 380px;
    height: 533px;
    opacity: 0.16;
  }
  .team-members-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .team-members-section__card {
    min-height: 0;
    padding: 34px 22px 36px;
  }
  .team-members-section__content h3 {
    font-size: 26px;
  }
  .team-members-section__role {
    font-size: 20px;
  }
  .team-members-section__excerpt {
    font-size: 17px;
  }
  .doctor-detail__hero {
    min-height: 620px;
    padding-top: 118px;
    background: linear-gradient(180deg, rgba(249, 245, 236, 0.92) 0%, rgba(237, 242, 246, 0.86) 56%, rgba(93, 105, 144, 0.72) 100%);
  }
  .doctor-detail__hero--has-image {
    background-image: linear-gradient(90deg, rgba(249, 245, 236, 0.82) 0%, rgba(249, 245, 236, 0.44) 58%, rgba(249, 245, 236, 0.05) 100%), var(--doctor-hero-image);
    background-position: center top;
    background-size: cover;
  }
  .doctor-detail__hero-inner {
    min-height: 502px;
  }
  .doctor-detail__intro {
    padding: 0 6px;
  }
  .doctor-detail__eyebrow {
    font-size: 13px;
  }
  .doctor-detail__intro h1 {
    font-size: 33px;
    letter-spacing: 0.06em;
  }
  .doctor-detail__summary {
    font-size: 17px;
  }
  .doctor-detail__portrait {
    min-height: 295px;
  }
  .doctor-detail__portrait img {
    width: min(290px, 82%);
  }
  .doctor-detail__content {
    padding: 34px 0 62px;
  }
  .doctor-detail__grid {
    gap: 22px;
  }
  .doctor-detail__side {
    gap: 22px;
  }
  .doctor-detail__card--bio,
  .doctor-detail__card--blue,
  .doctor-detail__card--pink {
    min-height: 0;
    padding: 28px 22px 30px;
    border-radius: 22px;
  }
  .doctor-detail__card h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
  }
  .doctor-detail__text {
    font-size: 14px;
  }
  .content-text-section,
  .content-faq-section {
    padding: 26px 0 34px;
  }
  .content-text-section h2,
  .content-faq-section h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
  }
  .content-text-section__columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .content-faq-section__items {
    padding-left: 0;
  }
  .content-faq-section__question {
    min-height: 56px;
    padding: 0 12px 0 0;
    font-size: 17px;
  }
  .content-faq-section__answer {
    padding: 0 30px 20px 0;
  }
  .service-menu-section {
    padding: 38px 0 44px;
  }
  .service-menu-section h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
  }
  .service-menu-section__grid {
    gap: 20px;
  }
  .service-menu-section__card {
    width: min(100%, 280px);
  }
  .service-text-box-section {
    padding: 42px 0;
  }
  .service-text-box-section__text,
  .text-box-section__text {
    font-size: 20px;
  }
  .service-media-section {
    padding: 36px 0;
  }
  .service-media-section__content h2 {
    margin-bottom: 24px;
    font-size: 23px;
    letter-spacing: 0.04em;
  }
  .service-media-section__media {
    border-radius: 16px;
  }
  .service-media-section__media img {
    height: 230px;
  }
  .service-contact-cta h2 {
    font-size: 22px;
  }
  .service-contact-cta__phones {
    gap: 16px;
  }
  .service-contact-cta__phone {
    width: min(100%, 260px);
    justify-content: flex-start;
  }
  .contact-card {
    border-radius: 26px;
  }
  .contact-card__info {
    border-radius: 26px 26px 0 0;
  }
  .contact-card__info,
  .contact-card__form-panel {
    padding: 34px 22px;
  }
  .contact-card__info h2,
  .contact-card__form-panel h2 {
    font-size: 29px;
    letter-spacing: 0.04em;
  }
  .contact-card__info-list {
    gap: 24px;
    margin-top: 30px;
  }
  .contact-card__info-item {
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }
  .contact-card__info-item h3,
  .contact-card__info-item p,
  .contact-card__form span,
  .contact-card__form input,
  .contact-card__form textarea {
    font-size: 17px;
  }
  .contact-card__form-panel::before {
    background-position: center;
    background-size: 520px auto;
  }
  .contact-card__form button {
    height: 60px;
    gap: 30px;
    font-size: 22px;
  }
  .map-section {
    padding: 0;
  }
  .map-section__frame {
    height: 360px;
  }
  .blog-overview {
    padding: 34px 0 70px;
  }
  body.blog-page-list,
  body.single-blog-page {
    background-size: 100% auto;
  }
  body.blog-page-list .simple-page-header {
    height: 238px !important;
    min-height: 238px !important;
    padding: 86px 0 50px !important;
  }
  body.blog-page-list::before,
  body.single-blog-page::before {
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    height: 520px;
    opacity: 0.34;
  }
  body.blog-page-list::after,
  body.single-blog-page::after {
    right: -145px;
    top: 55%;
    width: 260px;
    height: 375px;
    opacity: 0.3;
  }
  body.blog-page-list .blog-overview::before,
  body.single-blog-page .singleblog::before {
    left: -145px;
    top: 54px;
    width: 250px;
    height: 442px;
    opacity: 0.42;
  }
  .blog-overview__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .related-blog-posts {
    padding: 42px 0 72px;
  }
  .related-blog-posts h2 {
    margin-bottom: 26px;
    font-size: 25px;
    letter-spacing: 0.05em;
  }
  .related-blog-posts__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .related-blog-posts__card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }
  .related-blog-posts__content {
    min-height: 0;
    padding: 26px 22px 72px;
  }
  .related-blog-posts__content h3 {
    font-size: 19px;
  }
  .related-blog-posts__content p {
    font-size: 16px;
  }
  .related-blog-posts__image {
    min-height: 210px;
    border-radius: 20px;
    order: -1;
  }
  .related-blog-posts__image img {
    min-height: 210px;
  }
  .related-blog-posts__arrow {
    left: 22px;
    bottom: 24px;
  }
  .blog-overview__card {
    min-height: 0;
    padding: 14px 14px 64px;
    border-radius: 20px;
  }
  .blog-overview__image {
    height: 190px;
  }
  .blog-overview__content h2 {
    margin-bottom: 22px;
    font-size: 18px;
  }
  .blogpage .pagination {
    gap: 7px;
  }
  .blogpage .page-link {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .gallery-grid-section__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-grid-section__item {
    grid-row: auto;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
  .gallery-grid-section__item--1,
  .gallery-grid-section__item--2,
  .gallery-grid-section__item--5,
  .gallery-grid-section__item--7,
  .gallery-grid-section__item--11,
  .gallery-grid-section__item--13,
  .gallery-grid-section__item--14,
  .gallery-grid-section__item--16,
  .gallery-grid-section__item--17 {
    aspect-ratio: 3 / 4;
  }
  .simple-page-header {
    min-height: 260px;
    padding: 132px 0 36px;
  }
  .simple-page-header__pill {
    min-height: 104px;
    padding: 24px 28px 22px;
    border-radius: 20px;
  }
  .simple-page-header__pill h1 {
    font-size: 30px;
    letter-spacing: 0.05em;
  }
  .price-list-box {
    padding-bottom: 30px;
  }
  .price-list-box__card {
    padding: 18px 14px 20px;
    border-radius: 16px;
  }
  .price-list-box__flower {
    right: -118px;
    top: -20px;
    width: 300px;
    opacity: 0.15;
  }
  .price-list-box__card h2 {
    font-size: 22px;
  }
  .price-list-box__table {
    font-size: 13px;
  }
  .price-list-box__table-wrap::after {
    right: -135px;
    top: -90px;
    width: 320px;
    height: 460px;
    opacity: 0.16;
  }
  .price-list-box__table th,
  .price-list-box__table td {
    padding: 9px 10px;
  }
  .price-list-box__table th:first-child,
  .price-list-box__table td:first-child {
    width: 42px;
  }
  .price-list-box__table th:last-child,
  .price-list-box__table td:last-child {
    width: 95px;
  }
  footer.site-footer .footer-holder {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  footer.site-footer .footer-widget-col-1,
  footer.site-footer .footer-widget-col-2,
  footer.site-footer .footer-widget-col-3,
  footer.site-footer .footer-widget-col-4 {
    width: 100% !important;
  }
  .home-section {
    padding: 64px 0;
  }
  .home-intro__hero {
    padding: 130px 0 70px;
  }
  .home-intro__panel {
    padding: 32px 18px 28px;
  }
  .home-intro h1 {
    font-size: 34px;
  }
  .home-intro__lead {
    font-size: 17px;
  }
  .home-section-title h2,
  .home-services-desc h2,
  .home-blogs h2 {
    font-size: 34px;
    letter-spacing: 0.05em;
  }
  .home-hero {
    min-height: 560px;
    padding: 130px 0 70px;
  }
  .home-hero__panel {
    padding: 28px 18px 24px;
  }
  .home-hero__panel h1 {
    font-size: 30px;
  }
  .home-hero__panel p {
    font-size: 17px;
  }
  .home-hero__lists {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .home-cta-buttons {
    margin-top: -30px;
    padding-bottom: 48px;
  }
  .home-cta-buttons__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .home-cta-buttons__btn {
    min-width: 0;
    width: 100%;
    padding-left: 28px;
  }
  .home-doctors,
  .home-services-desc,
  .home-technology,
  .home-blogs {
    padding: 58px 0 68px;
  }
  .home-doctors__grid,
  .home-services-desc__grid,
  .home-technology__grid {
    grid-template-columns: 1fr;
  }
  .home-doctors__card {
    min-height: 0;
  }
  .home-why {
    padding: 58px 0;
  }
  .home-why__content h2 {
    font-size: 34px;
  }
  .home-why__item {
    font-size: 16px;
  }
  .home-technology__card:nth-child(even) {
    transform: none;
  }
  .home-reviews__circle {
    width: 290px;
    min-height: 290px;
    padding: 98px 30px 42px;
  }
  .home-reviews__quote {
    width: 96px;
    height: 96px;
    font-size: 94px;
  }
  .home-blogs__card {
    grid-template-columns: 1fr;
  }
  .home-blogs__image {
    order: -1;
  }
  .home-blogs__image img {
    height: 220px;
  }
  .home-contact {
    padding: 52px 0 68px;
  }
  .home-contact__image img {
    height: 280px;
  }
  .home-contact__panel {
    padding: 34px 22px;
  }
  .home-contact__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .home-contact__head h2,
  .home-contact__head h3 {
    font-size: 28px;
  }
  .home-contact__form button {
    width: 100%;
    min-width: 0;
    gap: 42px;
  }
  .home-contact__map {
    height: 300px;
  }
  .category-page-header {
    min-height: 580px;
    margin-top: -118px;
    padding-top: 118px;
  }
  .category-page-header__bg {
    height: 100%;
  }
  .category-page-header__shade {
    bottom: 0;
    height: 310px;
  }
  .category-page-header .container {
    min-height: 462px;
    justify-content: flex-start;
  }
  .category-page-header__content {
    width: min(92vw, 620px);
    min-height: 138px;
    margin: 0 0 82px;
    padding: 22px 28px 20px;
    border-radius: 24px;
  }
  .category-page-header__content h1 {
    font-size: 34px;
  }
  .category-page-header__content p {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .category-page-header__breadcrumb {
    font-size: 14px;
  }
  .category-color-text-box {
    padding: 48px 0;
  }
  .category-color-text-box__inner {
    padding: 40px 22px;
  }
  .category-color-text-box__inner--columns {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: left;
  }
  .category-color-text-box__left {
    font-size: 27px;
    letter-spacing: 0.05em;
  }
  .category-color-text-box__right {
    font-size: 16px;
  }
  .category-specialist-form,
  .category-faq,
  .category-reviews {
    padding: 52px 0 64px;
  }
  .category-specialist-form h2,
  .category-faq h2,
  .category-reviews h2 {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
  .category-specialist-form__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .category-specialist-form__doctor {
    max-width: 300px;
    min-height: 0;
    margin: 0 auto;
  }
  .category-specialist-form__panel {
    padding: 34px 22px;
    border-radius: 28px;
  }
  .category-specialist-form__panel h3 {
    font-size: 30px;
  }
  .category-specialist-form__panel button {
    width: 100%;
    min-width: 0;
    gap: 46px;
  }
  .category-faq__question {
    min-height: 56px;
    padding: 0 18px;
    font-size: 15px;
  }
  .category-faq__answer {
    padding: 0 44px 22px 18px;
  }
  .category-reviews__head {
    align-items: center;
  }
  .category-media-v2,
  .category-media-stack {
    padding: 42px 0;
  }
  .category-media-v2__grid {
    padding: 20px 0;
  }
  .category-media-v2__text h2,
  .category-media-v2__text h3,
  .category-media-stack h2 {
    font-size: 24px;
    letter-spacing: 0.05em;
  }
  .category-media-v2__media img {
    height: 285px;
  }
  .category-media-stack__media img {
    height: 250px;
  }
  .reviews-slider-2,
  .related-services,
  .specialist-form-2 {
    padding: 52px 0 66px;
  }
  .reviews-slider-2 h2,
  .related-services h2,
  .specialist-form-2 h2 {
    font-size: 28px;
    letter-spacing: 0.05em;
  }
  .reviews-slider-2__card {
    min-height: 280px;
    padding: 76px 42px 34px;
  }
  .reviews-slider-2__card p {
    font-size: 16px;
  }
  .reviews-slider-2__prev {
    left: 0;
  }
  .reviews-slider-2__next {
    right: 0;
  }
  .related-services__head {
    padding-right: 70px;
  }
  .related-services__card {
    min-height: 330px;
  }
  .specialist-form-2__doctors {
    grid-template-columns: 1fr;
  }
  .specialist-form-2__doctor {
    min-height: 0;
  }
  .specialist-form-2__form {
    padding: 34px 22px;
  }
  .specialist-form-2__form h3 {
    font-size: 30px;
  }
  .specialist-form-2__form button {
    width: 100%;
  }
  .home-intro__services,
  .doctors-section__grid,
  .services-overview__grid,
  .technology-section__grid {
    grid-template-columns: 1fr;
  }
  .home-intro__actions,
  .contact-section__header {
    flex-direction: column;
  }
  .home-btn,
  .home-intro__button {
    width: 100%;
  }
  .testimonial-card {
    min-height: auto;
    border-radius: 8px;
  }
  .blog-card {
    grid-template-columns: 1fr;
  }
  .blog-card img {
    height: 220px;
  }
  .singleblog {
    padding: 42px 0 64px;
  }
  .singleblog .headline {
    font-size: 34px;
  }
  .singleblog-hero-image {
    margin-bottom: 34px;
    border-radius: 16px;
  }
  .singleblog-hero-image img {
    height: auto;
    min-height: 250px;
    max-height: 390px;
  }
  .singleblog-main-text,
  .singleblog-extra-text {
    font-size: 16px;
  }
  .singleblog-main-text h2,
  .singleblog-main-text h3,
  .singleblog-extra-text h2,
  .singleblog-extra-text h3 {
    font-size: 23px;
    letter-spacing: 0.05em;
  }
  .singleblog-author {
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 46px 0 0;
    padding: 18px 0 26px;
  }
  .singleblog-author img {
    width: 100%;
    height: auto;
    max-height: 390px;
  }
  .singleblog-author__text {
    padding-bottom: 0;
  }
  .singleblog-author__text h2,
  .singleblog-sources h2,
  .singleblog-faq h2 {
    font-size: 26px;
    letter-spacing: 0.06em;
  }
  .singleblog-info-box {
    grid-template-columns: 1fr;
    margin: 42px 0;
    border-radius: 16px;
  }
  .singleblog-info-box img {
    height: 285px;
    border-radius: 16px 16px 0 0;
  }
  .singleblog-info-box__text {
    padding: 28px 22px 30px;
    font-size: 16px;
  }
  .singleblog-info-box__text h2,
  .singleblog-info-box__text h3,
  .singleblog-info-box__text h4 {
    font-size: 21px;
    letter-spacing: 0.05em;
  }
  .singleblog-sources,
  .singleblog-faq {
    padding-top: 28px;
  }
  body.single-blog-page .singleblog-sources {
    padding: 32px 0 42px;
  }
  .singleblog-faq {
    margin-left: calc(50% - 50vw);
    padding: 48px 24px 72px;
    background-size: cover;
  }
  .singleblog-sources__content,
  .singleblog-faq__answer {
    font-size: 16px;
  }
  .singleblog-faq__question {
    min-height: 58px;
    padding-left: 0;
    font-size: 17px;
  }
  .singleblog-faq__answer {
    padding: 0 0 20px;
  }
  .singleblog-faq::before {
    left: -180px;
    width: 220px;
    height: 390px;
    opacity: 0.18;
  }
  .singleblog-faq::after {
    right: -170px;
    width: 230px;
    height: 330px;
    opacity: 0.16;
  }
  body.single-blog-page .singleblog-faq h2 {
    font-size: 24px;
    min-width: 0;
    width: 100%;
  }
  .contact-section__panel {
    padding: 36px 24px;
  }
}

/* Homepage Figma overrides */
html,
body {
  overflow-x: hidden;
}
body header .main-nav .container {
  max-width: none;
}
@media (min-width: 992px) {
  body header .main-nav .container {
    width: min(1601px, calc(100vw - 156px));
    padding-left: 0;
    padding-right: 0;
  }
  body header .main-nav .mainnav-content {
    width: 100%;
    min-height: 82px;
    padding: 0 28px;
    border-radius: 40px;
    background: #5D6990;
    box-shadow: 2px 4px 8.1px 3px rgba(37, 59, 81, 0.11);
  }
  body header .main-nav .navbar-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  body header .main-nav .navbar-nav .nav-item,
  body header .main-nav .navbar-nav .nav-link {
    height: 82px;
  }
  body header .main-nav .navbar-nav .nav-link {
    max-width: 148px;
    color: #F9F5EC;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 1500px) and (min-width: 992px) {
  body header .main-nav .container {
    width: calc(100vw - 42px);
  }
  body header .main-nav .mainnav-content {
    min-height: 64px;
    padding: 0 18px;
  }
  body header .main-nav .navbar-nav {
    gap: 6px;
  }
  body header .main-nav .navbar-nav .nav-item,
  body header .main-nav .navbar-nav .nav-link {
    height: 64px;
  }
  body header .main-nav .navbar-nav .nav-link {
    max-width: 112px;
    font-size: 15px;
  }
}
body .home-hero {
  min-height: 764px;
  padding: 240px 0 120px;
  background-position: center top;
}
body .home-hero .container {
  max-width: 1450px;
}
body .home-hero__panel {
  position: relative;
  max-width: 890px;
  min-height: 286px;
  margin: 0 auto;
  padding: 42px 34px 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
body .home-hero__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 170px;
  border-radius: 22px;
  background: rgba(249, 245, 236, 0.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
}
body .home-hero__panel h1 {
  max-width: 780px;
  margin: 0 auto 18px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body .home-hero__panel p {
  max-width: 540px;
  margin: 0 auto;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}
body .home-hero__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 570px;
  margin: 44px auto 0;
}
body .home-hero__lists ul {
  min-height: 112px;
  margin: 0;
  padding: 17px 28px 17px 42px;
  border-radius: 22px;
  background: rgba(249, 245, 236, 0.72);
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.34;
}
body .home-cta-buttons {
  margin-top: -96px;
  padding: 0 0 86px;
}
body .home-cta-buttons__inner {
  gap: 14px;
}
body .home-cta-buttons__btn {
  width: 432px;
  max-width: calc(50vw - 18px);
  min-height: 63px;
  padding: 8px 9px 8px 83px;
  border-radius: 51px;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
body .home-cta-buttons__btn--dark {
  background: #1E2640;
  color: #F9F5EC;
}
body .home-cta-buttons__btn--light {
  background: #EAD6D8;
  color: #4A4E69;
}
body .home-why {
  padding: 95px 0 70px;
  background: #edf2f6;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
}
body .home-why__grid {
  grid-template-columns: minmax(440px, 0.86fr) minmax(0, 1fr);
  gap: 24px;
}
body .home-why__content {
  padding-left: 0;
}
body .home-why__content h2 {
  margin: 0 0 22px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.02em;
}
body .home-why__content h3 {
  margin: 0 0 12px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
body .home-why__text {
  display: block;
  max-width: 560px;
  margin: 0 0 24px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}
body .home-why__items {
  max-width: 700px;
}
body .home-why__item {
  min-height: 38px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(93, 105, 144, 0.28);
}
body .home-why__image {
  margin-right: -120px;
}
body .home-why__image img {
  min-height: 520px;
  object-fit: cover;
  mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 100%);
}
body .home-services-desc {
  padding: 74px 0 106px;
  background: #e6ebf1;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
}
body .home-services-desc h2 {
  margin: 0 auto 70px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
body .home-services-desc__grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 36px 30px;
  max-width: 1450px;
  margin: 0 auto;
}
body .home-services-desc__card {
  grid-column: span 2;
  min-height: 505px;
  border-radius: 22px;
  background: #F9F5EC;
  box-shadow: none;
  color: #1E2640;
}
body .home-services-desc__card:nth-child(1) {
  grid-column: 2 / span 2;
}
body .home-services-desc__card:nth-child(2) {
  grid-column: 4 / span 2;
}
body .home-services-desc__card:nth-child(3) {
  grid-column: 6 / span 2;
}
body .home-services-desc__card img {
  height: 250px;
  border-radius: 22px 22px 0 0;
}
body .home-services-desc__card div {
  padding: 34px 28px 30px;
}
body .home-services-desc__card h3 {
  margin: 0 0 18px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.03em;
}
body .home-services-desc__card p {
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 1.22;
}
@media (max-width: 991px) {
  body .home-hero {
    min-height: 660px;
    padding: 150px 0 92px;
  }
  body .home-hero__panel {
    padding: 32px 18px 0;
  }
  body .home-hero__panel h1 {
    font-size: 34px;
  }
  body .home-hero__panel p {
    font-size: 18px;
  }
  body .home-hero__lists {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }
  body .home-cta-buttons__inner {
    flex-direction: column;
    align-items: stretch;
  }
  body .home-cta-buttons__btn {
    width: 100%;
    max-width: none;
    padding-left: 32px;
  }
  body .home-why__grid {
    grid-template-columns: 1fr;
  }
  body .home-why__image {
    margin-right: 0;
  }
  body .home-services-desc__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body .home-services-desc__card,
  body .home-services-desc__card:nth-child(1),
  body .home-services-desc__card:nth-child(2),
  body .home-services-desc__card:nth-child(3) {
    grid-column: auto;
  }
}
@media (max-width: 575px) {
  body .home-services-desc__grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage final visual cleanup */
body .home-hero__panel {
  max-width: 890px;
  min-height: 0;
  padding: 0;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: 0 !important;
}
body .home-hero__panel::before {
  content: none !important;
}
body .home-hero__intro {
  max-width: 890px;
  min-height: 170px;
  margin: 0 auto;
  padding: 36px 34px 30px;
  border: 0 !important;
  border-radius: 22px;
  background: rgba(249, 245, 236, 0.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: none !important;
  text-align: center;
}
body .home-hero__intro h1 {
  max-width: 780px;
  margin: 0 auto 18px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body .home-hero__intro p {
  max-width: 540px;
  margin: 0 auto;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
}
body .home-hero__lists {
  max-width: 570px;
  margin-top: 44px;
}
body .home-hero__lists ul {
  min-height: 112px;
  border: 0 !important;
  border-radius: 22px;
  background: rgba(249, 245, 236, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: none !important;
}
body .home-why__item {
  display: block;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(93, 105, 144, 0.28);
}
body .home-why__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}
body .home-why__toggle i {
  display: block !important;
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 18px;
  flex: 0 0 24px;
  transition: transform 0.25s ease;
}
body .home-why__toggle i::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 3px;
  width: 1px;
  height: 18px;
  background: #9CA9BD;
}
body .home-why__toggle i::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: 5px;
  width: 9px;
  height: 9px;
  border-right: 1px solid #9CA9BD;
  border-bottom: 1px solid #9CA9BD;
  transform: rotate(45deg);
}
body .home-why__toggle::after {
  content: none !important;
}
body .home-why__item.is-open .home-why__toggle i {
  transform: rotate(180deg);
}
body .home-why__answer {
  display: none;
  max-width: 610px;
  padding: 2px 42px 14px 0;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}
body .home-why__item.is-open .home-why__answer {
  display: block;
}
body .home-services-desc__card,
body .home-technology__card,
body .home-doctors__card,
body .home-blogs__card,
body .reviews-home__card {
  border: 0 !important;
  box-shadow: none !important;
}
body .home-doctors,
body .home-technology {
  background-color: #EEF2F6 !important;
  background-image: url("/template/stomatologbg/assets/images/back1.png") !important;
  background-position: center top !important;
  background-size: cover !important;
}
body .home-reviews {
  background-color: #E8C6BE !important;
  background-image: none !important;
}
body .home-blogs {
  background-color: #F8F8F8 !important;
  background-image: none !important;
}
body .home-contact {
  padding: 82px 0 70px;
  background: #F9F5EC !important;
  background-image: none !important;
}
body .home-contact .container {
  max-width: 1800px;
  padding-left: 60px;
  padding-right: 60px;
}
body .home-contact__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
body .home-contact__image {
  min-height: 655px;
  overflow: hidden;
  border: 0 !important;
  border-radius: 40px 0 0 40px;
  background: transparent;
  box-shadow: none !important;
}
body .home-contact__image img {
  width: 100%;
  height: 100%;
  min-height: 655px;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: normal;
}
body .home-contact__panel {
  min-height: 655px;
  padding: 72px 108px 58px;
  border: 0 !important;
  border-radius: 0 40px 40px 0;
  background-color: #EAD6D8;
  background-image: url("/template/stomatologbg/assets/images/back1.png");
  background-size: cover;
  background-position: center;
  box-shadow: none !important;
}
body .home-contact__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin: 0 0 54px;
  align-items: start;
}
body .home-contact__head h2 {
  margin: 0;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
body .home-contact__head h3 {
  display: block;
  margin: 0 0 8px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.15;
}
body .home-contact__head p {
  display: block;
  margin: 0;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}
body .home-contact__form {
  display: grid;
  gap: 0;
}
body .home-contact__form input,
body .home-contact__form textarea {
  width: 100%;
  height: 51px;
  padding: 0;
  border: 0 !important;
  border-bottom: 1px solid rgba(93, 105, 144, 0.45) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #4A4E69;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
body .home-contact__form textarea {
  height: 176px;
  padding-top: 13px;
  resize: none;
}
body .home-contact__form input::placeholder,
body .home-contact__form textarea::placeholder {
  color: #4A4E69;
  opacity: 1;
}
body .home-contact__form button {
  justify-self: center;
  width: 432px;
  max-width: 100%;
  min-height: 63px;
  margin-top: 28px;
  padding: 0 28px;
  border: 0 !important;
  border-radius: 51px;
  background: #1E2640;
  color: #fff;
  box-shadow: none !important;
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
body .home-contact__form button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
body .home-contact__map {
  width: min(1450px, calc(100vw - 240px));
  margin: 82px auto 0;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body .home-contact__map iframe {
  display: block;
  width: 100%;
  height: 470px;
  border: 0 !important;
}
@media (max-width: 991px) {
  body .home-hero__intro {
    min-height: 0;
    padding: 28px 20px 24px;
  }
  body .home-hero__intro h1 {
    font-size: 34px;
  }
  body .home-hero__intro p {
    font-size: 18px;
  }
  body .home-contact__top {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
  }
  body .home-contact__image,
  body .home-contact__panel {
    min-height: 0;
    border-radius: 32px;
  }
  body .home-contact__panel {
    padding: 44px 28px;
  }
  body .home-contact .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  body .home-contact__head {
    grid-template-columns: 1fr;
  }
  body .home-contact__map {
    width: calc(100vw - 36px);
  }
}

/* Homepage section backgrounds - strongest overrides */
body section.home-doctors,
body section.home-technology {
  background: #EEF2F6 url("/template/stomatologbg/assets/images/back1.png") center top / cover no-repeat !important;
}
body section.home-why,
body section.home-services-desc {
  background: #E6EBF1 url("/template/stomatologbg/assets/images/back1.png") center top / cover no-repeat !important;
}
body section.home-reviews {
  background: #E8C6BE !important;
}
body section.home-blogs {
  background: #F2F2F2 !important;
}
body section.home-contact {
  background: #F9F5EC !important;
}

/* Generic text box and doctors overrides */
body .text-box-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  background: #edf2f6;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18)), url("/template/stomatologbg/assets/images/back1.png");
  background-position: center top;
  background-size: cover;
  color: #17223f;
  text-align: center;
}
body .text-box-section::before {
  content: "";
  position: absolute;
  left: -140px;
  top: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(93, 105, 144, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
body .text-box-section .container {
  position: relative;
  z-index: 1;
  max-width: 1460px;
}
body .text-box-section__text {
  max-width: 1040px;
  margin: 0 auto;
  color: #17223f;
  font-family: "Lora", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.04em;
}
body .text-box-section__text p {
  margin: 0;
}
body section.home-doctors,
body section.doctors-section {
  background: #EEF2F6 url("/template/stomatologbg/pozadina/1.png") center top / cover no-repeat !important;
}
body .home-doctors__top-text,
body .doctors-section__top-text {
  max-width: 960px;
  margin: 0 auto 28px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}
body .home-doctors__top-text p,
body .doctors-section__top-text p {
  margin: 0 0 10px;
}
body .home-doctors__top-text p:last-child,
body .doctors-section__top-text p:last-child {
  margin-bottom: 0;
}

/* Remove gap between home CTA and doctors section */
body .home-cta-buttons {
  padding-bottom: 0 !important;
}
body .home-cta-buttons + .home-doctors,
body .home-cta-buttons + .doctors-section {
  padding-top: 0 !important;
}

/* Home hero and doctors final Figma pass */
body .home-hero {
  min-height: 850px;
  padding-top: 178px;
  padding-bottom: 128px;
  background-position: center center;
}
body .home-hero__intro {
  min-height: 198px;
  padding: 40px 42px 34px;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.34) !important;
  backdrop-filter: blur(13px) saturate(116%);
  -webkit-backdrop-filter: blur(13px) saturate(116%);
}
body .home-hero__lists {
  max-width: 610px;
  gap: 32px;
  margin-top: 42px;
}
body .home-hero__lists ul {
  min-height: 134px;
  padding: 20px 34px 20px 44px;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  background: rgba(255, 255, 255, 0.30) !important;
  backdrop-filter: blur(13px) saturate(116%);
  -webkit-backdrop-filter: blur(13px) saturate(116%);
}
body .home-cta-buttons {
  margin-top: -78px;
  padding-bottom: 0 !important;
}
body .home-cta-buttons + .home-doctors,
body .home-cta-buttons + .doctors-section {
  margin-top: 0 !important;
  padding-top: 104px !important;
}
body section.home-doctors {
  position: relative;
  overflow: hidden;
  padding-top: 104px;
  padding-bottom: 96px;
  background: #EEF2F6 url("/template/stomatologbg/pozadina/1.png") center top / cover no-repeat !important;
}
body .home-doctors .container {
  max-width: 1450px;
}
body .home-doctors .home-section-title {
  max-width: 980px;
  margin: 0 auto 62px;
  text-align: center;
}
body .home-doctors .home-section-title > p {
  margin: 0 0 22px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}
body .home-doctors .home-section-title h2 {
  position: relative;
  margin: 0 0 28px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body .home-doctors .home-section-title h2::after {
  content: "";
  display: block;
  width: 178px;
  height: 1px;
  margin: 10px auto 0;
  background: rgba(93, 105, 144, 0.75);
}
body .home-doctors .home-section-title div {
  max-width: 930px;
  margin: 0 auto 16px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.32;
}
body .home-doctors__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  max-width: 1180px;
  margin: 0 auto;
}
body .home-doctors__card {
  min-height: 390px;
  padding: 14px 18px 24px;
  border: 0 !important;
  border-radius: 22px;
  background: linear-gradient(180deg, #C6D0E3 0%, #E4E7EA 47%, #F9F5EC 100%) !important;
  box-shadow: 0 19px 22px rgba(31, 38, 64, 0.24) !important;
  color: #1E2640;
  text-align: center;
}
body .home-doctors__image {
  display: block;
  width: 210px;
  height: 210px;
  margin: -4px auto 22px;
  overflow: hidden;
  border-radius: 50%;
}
body .home-doctors__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .home-doctors__card h3 {
  margin: 0 0 12px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.16;
}
body .home-doctors__role {
  min-height: 38px;
  margin: 0 auto 16px;
  max-width: 230px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}
body .home-doctors__card p:not(.home-doctors__role) {
  margin: 0 auto;
  max-width: 240px;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.28;
}
@media (max-width: 1199px) {
  body .home-doctors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  body .home-hero {
    min-height: 760px;
    padding-top: 145px;
    padding-bottom: 114px;
  }
  body .home-hero__intro {
    min-height: 0;
    padding: 30px 22px 26px;
  }
  body .home-hero__lists {
    grid-template-columns: 1fr;
  }
  body .home-doctors__grid {
    grid-template-columns: 1fr;
  }
}

/* Ask doctor footer modal */
body.ask-doctor-modal-open {
  overflow: hidden;
}
.ask-doctor-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.ask-doctor-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.ask-doctor-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(238, 238, 238, 0.92);
}
.ask-doctor-modal__dialog {
  position: relative;
  width: min(900px, calc(100vw - 40px));
  min-height: 519px;
  padding: 72px 59px 47px 65px;
  overflow: hidden;
  border-radius: 58px;
  background-color: #BBC5D8;
  background-image: url("/template/stomatologbg/assets/images/ask-doctor-panel.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: none;
  color: #1E2640;
  transform: translateY(14px);
  transition: transform 0.22s ease;
}
.ask-doctor-modal__dialog::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 555px;
  max-width: none;
  background-image: url("/template/stomatologbg/assets/images/ask-doctor-motif.png");
  background-position: right top;
  background-size: 555px 519px;
  background-repeat: no-repeat;
  filter: grayscale(1) brightness(0) invert(1);
  pointer-events: none;
  opacity: 0.56;
}
.ask-doctor-modal.is-open .ask-doctor-modal__dialog {
  transform: translateY(0);
}
.ask-doctor-modal__close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 3;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(30, 38, 64, 0.12);
  cursor: pointer;
}
.ask-doctor-modal__close span {
  position: absolute;
  left: 10px;
  top: 18px;
  width: 18px;
  height: 2px;
  background: #1E2640;
}
.ask-doctor-modal__close span:first-child {
  transform: rotate(45deg);
}
.ask-doctor-modal__close span:last-child {
  transform: rotate(-45deg);
}
.ask-doctor-modal__eyebrow {
  position: absolute;
  left: 0;
  top: -31px;
  z-index: 2;
  margin: 0;
  color: rgba(30, 38, 64, 0.42);
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.ask-doctor-modal__form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
}
.ask-doctor-modal__form input,
.ask-doctor-modal__form textarea {
  width: 100%;
  height: 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(249, 245, 236, 0.84);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  outline: none;
}
.ask-doctor-modal__form textarea {
  height: 173px;
  padding-top: 7px;
  resize: none;
}
.ask-doctor-modal__form input::placeholder,
.ask-doctor-modal__form textarea::placeholder {
  color: #384A58;
  opacity: 0.74;
}
.ask-doctor-modal__form input:focus,
.ask-doctor-modal__form textarea:focus {
  border-bottom-color: #1E2640;
}
.ask-doctor-modal__form button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  width: 432px;
  max-width: 100%;
  min-height: 63px;
  margin-top: 27px;
  padding: 0 31px 0 78px;
  border: 0;
  border-radius: 999px;
  background: #1E2640;
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
  cursor: pointer;
}
.ask-doctor-modal__form button i {
  position: relative;
  width: 34px;
  height: 18px;
  flex: 0 0 34px;
}
.ask-doctor-modal__form button i::before,
.ask-doctor-modal__form button i::after {
  content: "";
  position: absolute;
  right: 0;
  background: currentColor;
}
.ask-doctor-modal__form button i::before {
  top: 8px;
  width: 34px;
  height: 1px;
}
.ask-doctor-modal__form button i::after {
  top: 4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .ask-doctor-modal {
    padding: 18px;
  }
  .ask-doctor-modal__dialog {
    width: calc(100vw - 36px);
    min-height: 0;
    padding: 52px 28px 34px;
    border-radius: 38px;
    background-size: cover;
  }
  .ask-doctor-modal__dialog::before {
    width: 100%;
    max-width: none;
    opacity: 0.58;
  }
  .ask-doctor-modal__eyebrow {
    top: -28px;
    padding-right: 44px;
    font-size: 16px;
  }
  .ask-doctor-modal__form input,
  .ask-doctor-modal__form textarea {
    font-size: 17px;
  }
  .ask-doctor-modal__form textarea {
    height: 170px;
  }
  .ask-doctor-modal__form button {
    justify-self: stretch;
    width: 100%;
    min-height: 64px;
    gap: 32px;
    padding: 0 28px 0 42px;
    font-size: 21px;
  }
}

/* Home contact final Figma pass */
body section.home-contact {
  padding: 80px 0 84px !important;
  background: #F9F5EC !important;
  background-image: none !important;
}
body section.home-contact > .container {
  max-width: 1800px;
  padding-left: 58px;
  padding-right: 58px;
}
body .home-contact__top {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  width: 100%;
}
body .home-contact__image {
  min-height: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 901 / 575;
  border: 0 !important;
  border-radius: 42px !important;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
}
body .home-contact__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
body .home-contact__panel {
  position: relative;
  min-height: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 901 / 575;
  margin-left: -1px;
  padding: 58px 88px 38px 92px !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 42px !important;
  background: #DDC9CA !important;
  box-shadow: none !important;
}
body .home-contact__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  left: 18%;
  width: auto;
  background-image: url("/template/stomatologbg/assets/images/contact-home-mask.png");
  background-position: right top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.54;
  pointer-events: none;
}
body .home-contact__head,
body .home-contact__form {
  position: relative;
  z-index: 1;
}
body .home-contact__head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  margin: 0 0 39px !important;
  align-items: start;
}
body .home-contact__head > div {
  justify-self: end;
  min-width: 190px;
  text-align: left;
}
body .home-contact__head h2 {
  margin: 0 !important;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
body .home-contact__head h3 {
  margin: 0 0 8px !important;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.08;
}
body .home-contact__head p {
  margin: 0 !important;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.28;
}
body .home-contact__form {
  display: grid !important;
  gap: 0;
}
body .home-contact__form input,
body .home-contact__form textarea {
  width: 100%;
  height: 36px;
  padding: 0;
  border: 0 !important;
  border-bottom: 1px solid rgba(93, 105, 144, 0.34) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #384A58;
  font-family: "Urbanist", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  outline: none;
}
body .home-contact__form textarea {
  height: 112px;
  padding-top: 8px;
  resize: none;
}
body .home-contact__form input::placeholder,
body .home-contact__form textarea::placeholder {
  color: #384A58;
  opacity: 0.88;
}
body .home-contact__form button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 82px;
  width: 345px;
  max-width: 100%;
  min-height: 54px;
  margin-top: 22px !important;
  padding: 0 25px 0 66px !important;
  border: 0 !important;
  border-radius: 999px;
  background: #1E2640 !important;
  color: #F9F5EC !important;
  box-shadow: none !important;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.18em;
}
body .home-contact__form button svg {
  display: none;
}
body .home-contact__form button::after {
  content: "";
  position: relative;
  display: block;
  width: 28px;
  height: 14px;
  flex: 0 0 28px;
  background:
    linear-gradient(currentColor, currentColor) 0 7px / 28px 1px no-repeat,
    linear-gradient(45deg, transparent 46%, currentColor 47% 53%, transparent 54%) right 2px top 3px / 8px 8px no-repeat;
  clip-path: none;
}
body .home-contact__map {
  width: min(1380px, calc(100vw - 240px)) !important;
  margin: 82px auto 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body .home-contact__map iframe {
  display: block;
  width: 100% !important;
  height: 390px !important;
  border: 0 !important;
}
@media (max-width: 1199px) {
  body section.home-contact > .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  body .home-contact__panel {
    padding: 56px 44px 44px !important;
  }
  body .home-contact__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body .home-contact__map {
    width: calc(100vw - 64px) !important;
  }
}
@media (max-width: 767px) {
  body section.home-contact {
    padding: 48px 0 56px !important;
  }
  body section.home-contact > .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  body .home-contact__top {
    grid-template-columns: 1fr;
  }
  body .home-contact__image,
  body .home-contact__image img {
    min-height: 340px;
  }
  body .home-contact__image {
    border-radius: 34px 34px 0 0 !important;
  }
  body .home-contact__panel {
    min-height: 0;
    padding: 40px 26px 34px !important;
    border-radius: 0 0 34px 34px !important;
  }
  body .home-contact__head h2 {
    font-size: 38px;
  }
  body .home-contact__head h3 {
    font-size: 30px;
  }
  body .home-contact__form button {
    justify-self: stretch;
    width: 100%;
    gap: 34px;
    padding-left: 40px !important;
  }
  body .home-contact__map {
    width: calc(100vw - 36px) !important;
    margin-top: 48px !important;
  }
  body .home-contact__map iframe {
    height: 310px !important;
  }
}

/* Home reviews final Figma pass */
body section.home-reviews {
  position: relative;
  height: 650px;
  min-height: 650px;
  padding: 0 !important;
  overflow: hidden;
  background-color: #DDB1A7 !important;
  background-image: url("/template/stomatologbg/assets/images/reviews-home-bg.png") !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}
body section.home-reviews::before,
body section.home-reviews::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.72;
}
body section.home-reviews::before {
  left: 0;
  bottom: 0;
  width: 760px;
  height: 430px;
  background-image: url("/template/stomatologbg/assets/images/reviews-home-motif-left.png");
  background-position: left bottom;
  opacity: 0.36;
}
body section.home-reviews::after {
  right: 72px;
  top: 8px;
  width: 560px;
  height: 492px;
  background-image: url("/template/stomatologbg/assets/images/reviews-home-motif-right.png");
  background-position: right top;
  opacity: 0.28;
}
body section.home-reviews .container {
  position: relative;
  z-index: 1;
  max-width: 1450px;
  height: 100%;
}
body .home-reviews__circle {
  position: relative;
  z-index: 1;
  width: 468px;
  min-height: 504px;
  margin: 24px auto 0;
  padding: 254px 86px 72px;
  border-radius: 0;
  background-color: transparent !important;
  background-image: url("/template/stomatologbg/assets/images/reviews-home-card.png") !important;
  background-position: center center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  filter: none;
  box-shadow: none !important;
  color: #F9F5EC;
  text-align: center;
}
body .home-reviews__quote {
  position: absolute;
  left: 50%;
  top: 44px;
  width: 101px;
  height: 73px;
  border-radius: 0;
  background: url("/template/stomatologbg/assets/images/reviews-home-quotes.png") center / contain no-repeat !important;
  color: transparent;
  font-size: 0;
  line-height: 0;
  transform: translateX(-50%);
}
body .home-reviews__text {
  min-height: 130px;
}
body .home-reviews__text p {
  margin: 0 0 24px !important;
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
}
body .home-reviews__text strong {
  color: #E7CBAF;
  font-family: "Spectral", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
body .home-reviews__nav {
  position: absolute;
  left: 50%;
  bottom: 102px;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0;
  transform: translateX(-50%);
}
body .home-reviews__nav button {
  width: 20px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #F9F5EC;
  font-family: "Urbanist", sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 20px;
}
@media (max-width: 767px) {
  body section.home-reviews {
    height: 390px;
    min-height: 390px;
    padding: 28px 0 !important;
    background-size: cover !important;
  }
  body section.home-reviews::before {
    left: -74px;
    bottom: -58px;
    width: 460px;
    height: 260px;
  }
  body section.home-reviews::after {
    right: -72px;
    top: -28px;
    width: 300px;
    height: 264px;
  }
  body .home-reviews__circle {
    width: min(360px, calc(100vw - 28px));
    min-height: 388px;
    padding: 146px 58px 54px;
  }
  body .home-reviews__quote {
    top: 22px;
    width: 72px;
    height: 52px;
  }
  body .home-reviews__text p {
    font-size: 15px;
  }
  body .home-reviews__nav {
    bottom: 78px;
  }
}

/* Home technology final Figma pass */
body section.home-technology {
  position: relative;
  min-height: 574px;
  padding: 68px 0 78px !important;
  overflow: hidden;
  background-color: #EEF3F7 !important;
  background-image: url("/template/stomatologbg/assets/images/technology-home-bg.png") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
body section.home-technology::before,
body section.home-technology::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
body section.home-technology::before {
  content: none;
}
body section.home-technology::after {
  right: -12px;
  top: 24px;
  width: 560px;
  height: 470px;
  background-image: url("/template/stomatologbg/assets/images/technology-home-objects.png");
  background-position: right top;
  opacity: 0.88;
}
body section.home-technology .container {
  position: relative;
  z-index: 2;
  max-width: 1450px;
}
body .home-technology__decor-left {
  display: block !important;
  position: absolute;
  left: -78px;
  top: 38px;
  z-index: 1;
  width: 650px;
  max-width: none !important;
  height: auto;
  opacity: 0.82;
  pointer-events: none;
}
body .home-technology .home-section-title {
  max-width: 850px;
  margin: 0 auto 72px;
  text-align: center;
}
body .home-technology .home-section-title h2 {
  margin: 0 0 24px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
body .home-technology .home-section-title div {
  max-width: 740px;
  margin: 0 auto;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.32;
}
body .home-technology__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  max-width: 1050px;
  margin: 0 auto;
  align-items: end;
}
body .home-technology__card {
  min-height: 250px;
  padding: 34px 26px 30px;
  border: 0 !important;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 9px 17px rgba(31, 38, 64, 0.14) !important;
  color: #1E2640;
  text-align: center;
}
body .home-technology__card:nth-child(even) {
  transform: translateY(38px);
}
body .home-technology__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border: 0 !important;
  background: transparent !important;
  color: #5D6990;
  box-shadow: none !important;
}
body .home-technology__icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
body .home-technology__icon span {
  display: block;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(93, 105, 144, 0.45);
  border-radius: 12px;
}
body .home-technology__card h3 {
  margin: 0 0 15px;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.05;
}
body .home-technology__card p {
  margin: 0;
  color: #1E2640;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.24;
}
@media (max-width: 991px) {
  body section.home-technology {
    padding: 56px 0 64px !important;
  }
  body section.home-technology::after {
    right: -92px;
    width: 320px;
    height: 320px;
  }
  body .home-technology__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 620px;
  }
  body .home-technology__card:nth-child(even) {
    transform: none;
  }
}
@media (max-width: 575px) {
  body .home-technology .home-section-title h2 {
    font-size: 36px;
  }
  body .home-technology__grid {
    grid-template-columns: 1fr;
  }
}

/* Why us + services shared Figma background */
body section.home-why {
  position: relative;
  padding: 84px 0 86px !important;
  overflow: hidden;
  background-color: #EEF3F7 !important;
  background-image: url("/template/stomatologbg/assets/images/why-services-bg.png") !important;
  background-position: center top !important;
  background-size: 100% auto !important;
  background-repeat: no-repeat !important;
}
body section.home-why::before {
  content: "";
  position: absolute;
  left: 0;
  top: 104px;
  z-index: 0;
  width: 246px;
  height: 350px;
  background: url("/template/stomatologbg/assets/images/why-home-objects.png") left top / contain no-repeat;
  pointer-events: none;
}
body section.home-why .container {
  position: relative;
  z-index: 1;
  max-width: 1450px;
}
body section.home-why + section.home-services-desc {
  margin-top: 0 !important;
}
body .home-why__toggle i {
  width: 36px !important;
  height: 28px !important;
  margin-left: 18px;
  background: url("/template/stomatologbg/assets/images/why-arrow-closed.png") center / contain no-repeat !important;
  transform: none !important;
}
body .home-why__toggle i::before,
body .home-why__toggle i::after {
  content: none !important;
}
body .home-why__item.is-open .home-why__toggle i {
  background-image: url("/template/stomatologbg/assets/images/why-arrow-open.png") !important;
  transform: none !important;
}
body section.home-services-desc {
  position: relative;
  padding: 74px 0 104px !important;
  overflow: hidden;
  background-color: #EEF3F7 !important;
  background-image: url("/template/stomatologbg/assets/images/why-services-bg.png") !important;
  background-position: center bottom !important;
  background-size: 100% auto !important;
  background-repeat: no-repeat !important;
}
body section.home-services-desc::before,
body section.home-services-desc::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
body section.home-services-desc::before {
  left: 146px;
  top: 248px;
  width: 360px;
  height: 273px;
  background-image: url("/template/stomatologbg/assets/images/services-home-motif-blue.png");
  opacity: 0.34;
}
body section.home-services-desc::after {
  right: 226px;
  top: 560px;
  bottom: auto;
  width: 260px;
  height: 245px;
  background-image: url("/template/stomatologbg/assets/images/services-home-motif-brown.png");
  opacity: 0.78;
}
body section.home-services-desc .container {
  position: relative;
  z-index: 1;
  max-width: 1450px;
}
body section.home-services-desc .home-services-desc__grid,
body section.home-services-desc h2 {
  position: relative;
  z-index: 1;
}
body section.home-services-desc h2 {
  position: relative;
  display: table;
  margin: 0 0 62px !important;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: auto !important;
  margin-right: auto !important;
}
body section.home-services-desc h2::after {
  content: "";
  display: block;
  width: calc(100% - 46px);
  min-width: 120px;
  max-width: none;
  height: 1px;
  margin: 12px auto 0;
  background: url("/template/stomatologbg/assets/images/services-home-title-line.png") center / 100% 1px no-repeat;
}
body section.home-services-desc .home-services-desc__card {
  position: relative;
  overflow: hidden;
  border: 0 !important;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86) !important;
  box-shadow: 0 9px 18px rgba(31, 38, 64, 0.14) !important;
}
body section.home-services-desc .home-services-desc__card h3 {
  color: #1E2640;
  font-family: "Spectral", serif;
}
@media (max-width: 991px) {
  body section.home-why,
  body section.home-services-desc {
    background-size: auto 100% !important;
  }
  body section.home-why::before {
    opacity: 0.5;
  }
  body section.home-services-desc::before {
    left: -80px;
  }
  body section.home-services-desc::after {
    right: -50px;
  }
}

/* Why us compact accordion */
body section.home-why {
  padding: 88px 0 112px !important;
}
body section.home-why::before {
  left: 0;
  top: 178px;
  width: 252px;
  height: 358px;
  opacity: 0.62;
  filter: sepia(0.18) saturate(1.35) hue-rotate(166deg) brightness(0.94);
}
body section.home-why .container {
  max-width: none;
  width: 100%;
  padding-left: max(70px, calc((100vw - 1450px) / 2));
  padding-right: 0;
}
body .home-why__grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(620px, 1.18fr);
  align-items: end;
  gap: 24px;
}
body .home-why__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 650px;
  padding: 0 0 64px 44px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body .home-why__content h2 {
  margin: 0 0 38px !important;
  color: #1E2640;
  font-family: "Spectral", serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: none;
}
body .home-why__content h3,
body .home-why__text {
  display: none !important;
}
body .home-why__items {
  max-width: 625px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body .home-why__item {
  display: block !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(93, 105, 144, 0.32) !important;
  background: transparent !important;
  box-shadow: none !important;
}
body .home-why__toggle {
  min-height: 48px;
  padding: 0 !important;
  color: #222222;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}
body .home-why__toggle span {
  display: block;
  padding-right: 18px;
}
body .home-why__toggle i {
  width: 30px !important;
  height: 30px !important;
  flex-basis: 30px;
  margin-left: 18px;
  opacity: 0.92;
}
body .home-why__answer {
  display: none;
  max-width: 560px;
  padding: 0 54px 16px 0;
  color: #384A58;
  font-size: 18px;
  line-height: 1.45;
}
body .home-why__item.is-open .home-why__answer {
  display: block;
}
body .home-why__image {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  min-width: 0;
  overflow: hidden;
}
body .home-why__image img {
  display: block;
  width: 100%;
  max-width: none;
  height: clamp(480px, 38vw, 728px);
  min-height: 0 !important;
  object-fit: cover;
  object-position: right bottom;
  transform: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 24%, #000 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 10%, #000 24%, #000 100%) !important;
}

body section.home-why + section.home-services-desc {
  margin-top: -104px !important;
  padding-top: 154px !important;
}
body section.home-services-desc .home-services-desc__card {
  min-height: 430px;
  border: 1px solid rgba(162, 181, 205, 0.34) !important;
  border-radius: 54px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42) 0%, rgba(249, 245, 236, 0) 42%),
    #F9F5EC !important;
  box-shadow:
    0 0 0 8px rgba(216, 226, 239, 0.38),
    0 0 28px rgba(116, 143, 176, 0.28),
    0 18px 42px rgba(93, 105, 144, 0.16) !important;
}
body section.home-services-desc .home-services-desc__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 8px rgba(216, 226, 239, 0.46),
    0 0 34px rgba(116, 143, 176, 0.34),
    0 22px 46px rgba(93, 105, 144, 0.18) !important;
}
body section.home-services-desc .home-services-desc__card img {
  border-radius: 46px 46px 0 0;
}

@media (max-width: 1199px) {
  body section.home-why .container {
    padding-left: 36px;
  }
  body .home-why__grid {
    grid-template-columns: minmax(390px, 0.9fr) minmax(470px, 1.1fr);
  }
  body .home-why__content h2 {
    font-size: 52px;
  }
  body .home-why__toggle {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  body section.home-why {
    padding: 58px 0 74px !important;
  }
  body section.home-why + section.home-services-desc {
    margin-top: -62px !important;
    padding-top: 102px !important;
  }
  body section.home-why .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  body section.home-why::before {
    top: 96px;
    width: 178px;
    opacity: 0.38;
  }
  body .home-why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body .home-why__content {
    max-width: none;
    padding: 0;
  }
  body .home-why__content h2 {
    margin-bottom: 26px !important;
    font-size: 42px;
  }
  body .home-why__toggle {
    min-height: 44px;
    font-size: 20px;
  }
  body .home-why__image img {
    width: 100%;
    height: auto;
    transform: none;
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  body section.home-services-desc .home-services-desc__card {
    min-height: 0;
    border-radius: 34px !important;
  }
  body section.home-services-desc .home-services-desc__card img {
    border-radius: 28px 28px 0 0;
  }
}

/* Simple headers and price list neutral page background */
body.has-no-image-header header .topbar {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
body.has-first-image-header header .topbar,
body.team-member-page header .topbar {
  background: rgba(249, 245, 236, 0.06) !important;
  backdrop-filter: blur(4px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(4px) saturate(108%) !important;
}
body.has-no-image-header header .main-nav {
  margin-top: 0;
}
body .simple-page-header,
body .price-list-box {
  background: transparent !important;
  background-image: none !important;
}
body .simple-page-header {
  min-height: 360px;
  padding: 214px 0 42px;
}
body .simple-page-header__breadcrumb a,
body .simple-page-header__breadcrumb span {
  color: #1E2640;
}
body .price-list-box__flower {
  right: -6px !important;
  top: 34px !important;
  width: min(430px, 36vw) !important;
  opacity: 0.36 !important;
  z-index: 6 !important;
}
body .price-list-box__table-wrap::after {
  right: -10px !important;
  top: -84px !important;
  width: 430px !important;
  height: 604px !important;
  opacity: 0.28 !important;
  z-index: 5 !important;
}
body .price-list-box__table {
  position: relative;
  z-index: 6;
}

@media (max-width: 575px) {
  body .price-list-box__flower {
    right: -90px !important;
    top: 20px !important;
    width: 300px !important;
    opacity: 0.24 !important;
  }
  body .price-list-box__table-wrap::after {
    right: -110px !important;
    top: -60px !important;
    width: 320px !important;
    height: 460px !important;
    opacity: 0.2 !important;
  }
}

/* Gallery grid Figma layout */
body .gallery-grid-section {
  padding: 32px 0 96px;
  background: transparent !important;
  background-image: none !important;
}
body .gallery-grid-section .container {
  max-width: 1450px;
}
body .gallery-grid-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 350px));
  grid-auto-rows: 237px;
  justify-content: center;
  gap: 18px 15px;
  align-items: stretch;
}
body .gallery-grid-section__item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}
body .gallery-grid-section__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .gallery-grid-section__item--1 { grid-column: 1; grid-row: 1 / span 2; }
body .gallery-grid-section__item--2 { grid-column: 1; grid-row: 3 / span 2; }
body .gallery-grid-section__item--3 { grid-column: 1; grid-row: 5; }
body .gallery-grid-section__item--4 { grid-column: 1; grid-row: 6 / span 2; }
body .gallery-grid-section__item--5 { grid-column: 1; grid-row: 8; }
body .gallery-grid-section__item--6 { grid-column: 2; grid-row: 1 / span 2; }
body .gallery-grid-section__item--7 { grid-column: 2; grid-row: 3; }
body .gallery-grid-section__item--8 { grid-column: 2; grid-row: 4 / span 2; }
body .gallery-grid-section__item--9 { grid-column: 2; grid-row: 6; }
body .gallery-grid-section__item--10 { grid-column: 2; grid-row: 7; }
body .gallery-grid-section__item--11 { grid-column: 2; grid-row: 8; }
body .gallery-grid-section__item--12 { grid-column: 3; grid-row: 1; }
body .gallery-grid-section__item--13 { grid-column: 3; grid-row: 2 / span 2; }
body .gallery-grid-section__item--14 { grid-column: 3; grid-row: 4; }
body .gallery-grid-section__item--15 { grid-column: 3; grid-row: 5; }
body .gallery-grid-section__item--16 { grid-column: 3; grid-row: 6 / span 2; }
body .gallery-grid-section__item--17 { grid-column: 3; grid-row: 8; }
body .gallery-grid-section__item--18 { grid-column: 4; grid-row: 1; }
body .gallery-grid-section__item--19 { grid-column: 4; grid-row: 2; }
body .gallery-grid-section__item--20 { grid-column: 4; grid-row: 3 / span 2; }
body .gallery-grid-section__item--21 { grid-column: 4; grid-row: 5 / span 2; }
body .gallery-grid-section__item--22 { grid-column: 4; grid-row: 7 / span 2; }
body .gallery-grid-section__item--1,
body .gallery-grid-section__item--2,
body .gallery-grid-section__item--4,
body .gallery-grid-section__item--6,
body .gallery-grid-section__item--8,
body .gallery-grid-section__item--13,
body .gallery-grid-section__item--16,
body .gallery-grid-section__item--20,
body .gallery-grid-section__item--21,
body .gallery-grid-section__item--22 {
  max-width: 347px;
}

@media (max-width: 1199px) {
  body .gallery-grid-section__grid {
    grid-template-columns: repeat(2, minmax(0, 350px));
    grid-auto-rows: auto;
  }
  body .gallery-grid-section__item,
  body .gallery-grid-section__item[class*="gallery-grid-section__item--"] {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 350 / 237;
    max-width: none;
  }
  body .gallery-grid-section__item--1,
  body .gallery-grid-section__item--2,
  body .gallery-grid-section__item--4,
  body .gallery-grid-section__item--6,
  body .gallery-grid-section__item--8,
  body .gallery-grid-section__item--13,
  body .gallery-grid-section__item--16,
  body .gallery-grid-section__item--20,
  body .gallery-grid-section__item--21,
  body .gallery-grid-section__item--22 {
    aspect-ratio: 347 / 492;
  }
}

@media (max-width: 575px) {
  body .gallery-grid-section {
    padding: 24px 0 64px;
  }
  body .gallery-grid-section__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Gallery page decorative motifs */
body.gallery-page {
  position: relative;
  overflow-x: hidden;
  background: #f3f7fa;
}
body.gallery-page .simple-page-header {
  min-height: 205px;
  padding: 96px 0 24px;
}
body.gallery-page::before,
body.gallery-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
body.gallery-page::before {
  top: 0;
  left: 0;
  right: 0;
  height: 760px;
  background:
    linear-gradient(180deg, rgba(243, 247, 250, 0) 0%, rgba(243, 247, 250, 0) 56%, #f3f7fa 100%),
    url("/template/stomatologbg/assets/images/gallery-top-motif.png") center top / cover no-repeat;
  opacity: 0.72;
}
body.gallery-page::after {
  left: -118px;
  top: 850px;
  width: 360px;
  height: 650px;
  background-image: url("/template/stomatologbg/assets/images/gallery-left-leaf.png");
  opacity: 0.58;
}
body.gallery-page header,
body.gallery-page .simple-page-header,
body.gallery-page .gallery-grid-section,
body.gallery-page footer {
  position: relative;
  z-index: 1;
}
body.gallery-page .gallery-grid-section {
  position: relative;
}
body.gallery-page .gallery-grid-section::after {
  content: "";
  position: absolute;
  right: 50px;
  bottom: -8px;
  width: 232px;
  height: 233px;
  background: url("/template/stomatologbg/assets/images/gallery-bottom-frame.png") center / contain no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}
body.gallery-page .gallery-grid-section .container {
  position: relative;
  z-index: 1;
}

/* Final image-header transparency pass */
body.has-first-image-header header .topbar {
  background: rgba(249, 245, 236, 0.06) !important;
  backdrop-filter: blur(4px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(4px) saturate(108%) !important;
}
body.has-first-image-header .category-page-header__content {
  background: rgba(215, 228, 238, 0.26) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 991px) {
  body .simple-page-header {
    min-height: 238px;
    padding: 132px 0 28px;
  }
  body.gallery-page .simple-page-header {
    min-height: 190px;
    padding: 92px 0 22px;
  }
  body.gallery-page::before {
    height: 520px;
  }
  body.gallery-page::after {
    top: 680px;
    left: -150px;
    width: 280px;
    height: 505px;
    opacity: 0.42;
  }
  body.gallery-page .gallery-grid-section::after {
    right: -30px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    opacity: 0.55;
  }
}

/* Contact page Figma pass */
body.kontakt,
body.contact {
  position: relative;
  overflow-x: hidden;
  background-color: #f6f9fc;
  background-image: url("/template/stomatologbg/assets/images/price-list-top-bg.png");
  background-size: 100vw auto;
  background-repeat: repeat-y;
}
body.kontakt::before,
body.kontakt::after,
body.contact::before,
body.contact::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
body.kontakt::before,
body.contact::before {
  right: -20px;
  top: 0;
  width: 579px;
  height: 810px;
  background-image: url("/template/stomatologbg/assets/images/contact-page-motif-right.png");
  opacity: 0.22;
}
body.kontakt::after,
body.contact::after {
  left: -205px;
  top: 455px;
  width: 594px;
  height: 669px;
  background-image: url("/template/stomatologbg/assets/images/contact-page-motif-right.png");
  opacity: 0.16;
  transform: rotate(92.51deg) scaleY(-1);
}
body.kontakt header,
body.kontakt .simple-page-header,
body.kontakt .contact-card-section,
body.kontakt footer,
body.contact header,
body.contact .simple-page-header,
body.contact .contact-card-section,
body.contact footer {
  position: relative;
  z-index: 1;
}
body.kontakt .simple-page-header,
body.contact .simple-page-header {
  min-height: 286px;
  padding: 154px 0 8px;
  background: transparent !important;
  background-image: none !important;
}
body.kontakt .simple-page-header__pill,
body.contact .simple-page-header__pill {
  width: min(768px, 100%);
  min-height: 124px;
  padding: 21px 96px 20px;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(4.45px);
  -webkit-backdrop-filter: blur(4.45px);
}
body.kontakt .contact-card-section,
body.contact .contact-card-section {
  position: relative;
  margin-top: 2px;
  padding: 0 0 134px;
  background: transparent !important;
  background-image: none !important;
}
body.kontakt .contact-card-section::before,
body.contact .contact-card-section::before {
  content: "";
  position: absolute;
  left: max(26px, calc(50% - 934px));
  top: 116px;
  width: 420px;
  height: 487px;
  background: url("/template/stomatologbg/assets/images/contact-page-motif-right.png") center / contain no-repeat;
  opacity: 0.18;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 0;
}
body.kontakt .contact-card-section .container,
body.contact .contact-card-section .container {
  position: relative;
  z-index: 1;
  max-width: 1439px;
}
body.kontakt .contact-card,
body.contact .contact-card {
  grid-template-columns: 675px minmax(0, 1fr);
  min-height: 617px;
  border-radius: 40px 60px 60px 40px;
  background: #b9c1d3;
  box-shadow: none;
}
body.kontakt .contact-card__info,
body.contact .contact-card__info {
  padding: 55px 72px 44px 100px;
  border-radius: 40px;
  background: #5d6990;
}
body.kontakt .contact-card__info h2,
body.contact .contact-card__info h2 {
  max-width: 598px;
  color: #f9f5ec;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0;
}
body.kontakt .contact-card__info-list,
body.contact .contact-card__info-list {
  gap: 28px;
  margin-top: 27px;
  padding-left: 58px;
}
body.kontakt .contact-card__info-item,
body.contact .contact-card__info-item {
  grid-template-columns: 24px 1fr;
  gap: 27px;
}
body.kontakt .contact-card__icon,
body.contact .contact-card__icon {
  width: 24px;
  height: 24px;
}
body.kontakt .contact-card__info-item h3,
body.contact .contact-card__info-item h3 {
  margin-bottom: 5px;
  color: #f9f5ec;
  font-family: "Spectral", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
body.kontakt .contact-card__info-item p,
body.contact .contact-card__info-item p {
  color: #f9f5ec;
  font-size: 18px;
  line-height: 1.18;
}
body.kontakt .contact-card__form-panel,
body.contact .contact-card__form-panel {
  padding: 65px 36px 47px 74px;
  background: #b9c1d3;
}
body.kontakt .contact-card__form-panel::before,
body.contact .contact-card__form-panel::before {
  inset: 0 0 0 auto;
  width: 100%;
  background-image: url("/template/stomatologbg/assets/images/contact-form-dd-motif.png");
  background-position: right -1px top -342px;
  background-size: 722px 619px;
  opacity: 0.72;
  mix-blend-mode: soft-light;
}
body.kontakt .contact-card__form-panel h2,
body.contact .contact-card__form-panel h2 {
  color: #f9f5ec;
  margin-bottom: 51px;
  font-family: "Spectral", serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}
body.kontakt .contact-card__form,
body.contact .contact-card__form {
  max-width: 655px;
  gap: 17px;
}
body.kontakt .contact-card__form span,
body.contact .contact-card__form span {
  color: #4a4e69;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.01em;
}
body.kontakt .contact-card__form input,
body.kontakt .contact-card__form textarea,
body.contact .contact-card__form input,
body.contact .contact-card__form textarea {
  border-bottom-color: rgba(249, 245, 236, 0.86);
  color: #4a4e69;
  font-size: 18px;
}
body.kontakt .contact-card__form textarea,
body.contact .contact-card__form textarea {
  min-height: 141px;
}
body.kontakt .contact-card__form button,
body.contact .contact-card__form button {
  width: min(432px, 100%);
  height: 63px;
  margin-top: 9px;
  background: #17223f;
  gap: 116px;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: 0.15em;
}
body.kontakt .contact-card__form button span,
body.contact .contact-card__form button span {
  color: #ffffff;
}
body.kontakt .contact-card__form button img,
body.contact .contact-card__form button img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  color: #ffffff;
}

@media (max-width: 991px) {
  body.kontakt .simple-page-header,
  body.contact .simple-page-header {
    min-height: 204px;
    padding: 104px 0 18px;
  }
  body.kontakt .contact-card,
  body.contact .contact-card {
    grid-template-columns: 1fr;
    border-radius: 28px;
    min-height: 0;
  }
  body.kontakt .contact-card__info,
  body.kontakt .contact-card__form-panel,
  body.contact .contact-card__info,
  body.contact .contact-card__form-panel {
    padding: 42px 28px;
    border-radius: 28px;
  }
  body.kontakt .contact-card__info-list,
  body.contact .contact-card__info-list {
    padding-left: 0;
  }
  body.kontakt::before,
  body.contact::before {
    right: -120px;
    top: 80px;
    width: 280px;
    height: 324px;
    opacity: 0.12;
  }
  body.kontakt::after,
  body.contact::after {
    left: -190px;
    top: 350px;
    width: 260px;
    height: 301px;
    opacity: 0.1;
  }
  body.kontakt .contact-card-section::before,
  body.contact .contact-card-section::before {
    left: -130px;
    top: 80px;
    width: 260px;
    height: 301px;
    opacity: 0.08;
  }
}

/* New project component reset and About page pass */
body .content-text-section,
body .category-media-v2,
body .category-media-stack,
body .service-menu-section,
body .service-media-section,
body .service-contact-cta,
body .text-box-section,
body .rounded-text.about-rounded-new {
  background: transparent !important;
  background-image: none !important;
}
body .content-text-section::before,
body .content-text-section::after,
body .category-media-v2::before,
body .category-media-v2::after,
body .category-media-stack::before,
body .category-media-stack::after,
body .service-menu-section::before,
body .service-menu-section::after,
body .service-media-section::before,
body .service-media-section::after,
body .service-contact-cta::before,
body .service-contact-cta::after,
body .text-box-section::before,
body .text-box-section::after,
body .rounded-text.about-rounded-new::before,
body .rounded-text.about-rounded-new::after,
body .rounded-text.about-rounded-new .content::after {
  display: none !important;
}
body.o-nama {
  position: relative;
  overflow-x: hidden;
  background: #f6f9fc;
}
body.o-nama::before,
body.o-nama::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
body.o-nama::before {
  right: -40px;
  top: 0;
  width: 579px;
  height: 810px;
  background-image: url("/template/stomatologbg/assets/images/contact-page-motif-right.png");
  opacity: 0.16;
}
body.o-nama::after {
  left: -190px;
  top: 740px;
  width: 520px;
  height: 600px;
  background-image: url("/template/stomatologbg/assets/images/contact-page-motif-right.png");
  opacity: 0.1;
  transform: rotate(92deg) scaleY(-1);
}
body.o-nama .page-content,
body.o-nama footer {
  position: relative;
  z-index: 1;
}
body.o-nama header {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 20;
  background: transparent;
}
body.o-nama header .topbar {
  background: rgba(249, 245, 236, 0.06) !important;
  backdrop-filter: blur(4px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(4px) saturate(108%) !important;
}
body.o-nama header .main-nav {
  margin-top: 0 !important;
}
body.o-nama header .main-nav .mainnav-content {
  background: rgba(93, 105, 144, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
body.o-nama .category-page-header {
  height: 805px;
  min-height: 805px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  background: #eef2f6;
}
body.o-nama .category-page-header__bg {
  height: 100%;
  object-fit: cover;
}
body.o-nama .category-page-header__shade {
  background:
    linear-gradient(180deg, rgba(238, 242, 246, 0) 0%, rgba(238, 242, 246, 0.06) 50%, #eef2f6 100%);
}
body.o-nama .category-page-header .container {
  max-width: 1450px;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 170px;
}
body.o-nama .category-page-header__content {
  width: min(768px, 100%);
  min-height: 124px;
  margin-left: 18px;
  padding: 21px 96px 20px;
  border-radius: 35px;
  background: rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(4.45px);
  -webkit-backdrop-filter: blur(4.45px);
  box-shadow: none;
}
body.o-nama .category-page-header__content h1 {
  margin: 0 0 8px;
  color: #1e2640;
  font-family: "Spectral", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 0 21px #fff;
}
body.o-nama .category-page-header__content p,
body.o-nama .category-page-header__breadcrumb,
body.o-nama .category-page-header__breadcrumb a,
body.o-nama .category-page-header__breadcrumb span {
  color: #1e2640;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  text-shadow: 0 0 18px #fff;
}
body.o-nama .content-text-section,
body.o-nama .category-media-v2,
body.o-nama .category-media-stack,
body.o-nama .service-menu-section,
body.o-nama .service-media-section,
body.o-nama .service-contact-cta,
body.o-nama .text-box-section,
body.o-nama .rounded-text.about-rounded-new {
  position: relative;
  overflow: hidden;
  color: #17223f;
}
body.o-nama .service-menu-section,
body.o-nama .text-box-section,
body.o-nama .service-media-section {
  background-color: #eef2f6 !important;
  background-image: url("/template/stomatologbg/assets/images/about-bg-top.png") !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
  background-repeat: repeat-y !important;
}
body.o-nama .service-contact-cta {
  background-color: #eef2f6 !important;
  background-image: url("/template/stomatologbg/assets/images/about-bg-bottom.png") !important;
  background-position: center bottom !important;
  background-size: 1920px auto !important;
  background-repeat: repeat-y !important;
}
body.o-nama .service-menu-section::before,
body.o-nama .service-menu-section::after,
body.o-nama .service-media-section::before,
body.o-nama .service-media-section::after,
body.o-nama .text-box-section::before,
body.o-nama .service-contact-cta::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
body.o-nama .service-menu-section::before {
  left: max(82px, calc(50% - 820px));
  top: 136px;
  width: 383px;
  height: 290px;
  background-image: url("/template/stomatologbg/assets/images/about-services-group.png");
  opacity: 0.42;
}
body.o-nama .service-menu-section::after {
  right: max(120px, calc(50% - 830px));
  top: 176px;
  width: 247px;
  height: 233px;
  background-image: url("/template/stomatologbg/assets/images/about-services-frame.png");
  opacity: 0.62;
}
body.o-nama .service-media-section::before,
body.o-nama .text-box-section::before {
  left: max(-185px, calc(50% - 1045px));
  top: -140px;
  width: 520px;
  height: 730px;
  background-image: url("/template/stomatologbg/assets/images/about-text-layer.png");
  opacity: 0.11;
}
body.o-nama .service-contact-cta::before {
  right: max(-120px, calc(50% - 1040px));
  bottom: -140px;
  width: 380px;
  height: 533px;
  background-image: url("/template/stomatologbg/assets/images/about-text-layer.png");
  opacity: 0.16;
  transform: scaleX(-1);
}
body.o-nama .service-menu-section .container,
body.o-nama .service-media-section .container,
body.o-nama .text-box-section .container,
body.o-nama .service-contact-cta .container {
  position: relative;
  z-index: 1;
}
body.o-nama .service-menu-section {
  padding: 42px 0 70px;
  text-align: center;
}
body.o-nama .service-menu-section h2 {
  max-width: 1080px;
  margin: 0 auto 18px;
  color: #17223f;
  font-family: "Spectral", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
body.o-nama .service-menu-section__intro {
  max-width: 1130px;
  margin: 0 auto 34px;
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.25;
}
body.o-nama .service-menu-section__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px 34px;
  max-width: 1440px;
  margin: 0 auto;
  justify-items: center;
}
body.o-nama .service-menu-section__card {
  display: block;
  width: 100%;
  max-width: 334px;
  min-height: 172px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(249, 245, 236, 0.76);
  box-shadow: 0 14px 28px rgba(38, 50, 83, 0.08);
  color: #17223f;
  text-decoration: none;
}
body.o-nama .service-menu-section__card:nth-child(1) { grid-column: 3 / span 3; }
body.o-nama .service-menu-section__card:nth-child(2) { grid-column: 6 / span 3; }
body.o-nama .service-menu-section__card:nth-child(3) { grid-column: 9 / span 3; }
body.o-nama .service-menu-section__card:nth-child(4) { grid-column: 1 / span 3; }
body.o-nama .service-menu-section__card:nth-child(5) { grid-column: 4 / span 3; }
body.o-nama .service-menu-section__card:nth-child(6) { grid-column: 7 / span 3; }
body.o-nama .service-menu-section__card:nth-child(7) { grid-column: 10 / span 3; }
body.o-nama .service-menu-section__image {
  display: block;
  height: 120px;
  overflow: hidden;
  background: rgba(221, 201, 202, 0.28);
}
body.o-nama .service-menu-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.o-nama .service-menu-section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  color: #17223f;
  font-family: "Spectral", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
body .content-text-section {
  padding: 68px 0;
}
body .content-text-section .container,
body .category-media-v2 .container,
body .category-media-stack .container,
body .service-media-section .container,
body .text-box-section .container,
body .rounded-text.about-rounded-new .container {
  max-width: 1450px;
}
body .content-text-section h2,
body .category-media-v2__text h2,
body .category-media-v2__text h3,
body .category-media-stack h2,
body .service-media-section__content h2 {
  color: #17223f;
  font-family: "Spectral", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body .content-text-section h2 {
  margin: 0 0 30px;
}
body .content-text-section__body,
body .content-text-section__body p,
body .category-media-v2__text,
body .category-media-v2__text p,
body .category-media-stack__text,
body .service-media-section__text,
body .service-media-section__text p {
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
}
body .content-text-section__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}
body .category-media-v2,
body .service-media-section {
  padding: 70px 0;
}
body .category-media-v2__grid,
body .service-media-section__grid {
  gap: 70px;
  border: 0;
}
body.o-nama .service-media-section__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
}
body.o-nama .service-media-section--text-right .service-media-section__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
}
body.o-nama .service-media-section__content h2 {
  margin: 0 0 44px;
  color: #17223f;
  font-family: "Spectral", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.05em;
}
body.o-nama .service-media-section__text,
body.o-nama .service-media-section__text p {
  color: #384a58;
  font-family: "Urbanist", sans-serif;
  font-size: 14px;
  line-height: 1.36;
}
body.o-nama .service-media-section__text p {
  margin-bottom: 18px;
}
body .category-media-v2__media,
body .category-media-v2__slider,
body .category-media-v2__media .swiper,
body .category-media-v2__media .swiper-wrapper,
body .category-media-v2__media .swiper-slide,
body .service-media-section__media,
body .service-media-section__slider,
body .service-media-section__media .swiper,
body .service-media-section__media .swiper-wrapper,
body .service-media-section__media .swiper-slide {
  overflow: hidden;
  border-radius: 34px;
}
body .category-media-v2__media img,
body .service-media-section__media img {
  width: 100%;
  height: 378px;
  object-fit: cover;
}
body.o-nama .service-media-section__media,
body.o-nama .service-media-section__slider,
body.o-nama .service-media-section__media .swiper,
body.o-nama .service-media-section__media .swiper-wrapper,
body.o-nama .service-media-section__media .swiper-slide {
  border-radius: 22px;
}
body.o-nama .service-media-section__media img {
  height: 378px;
  border-radius: 22px;
}
body .text-box-section {
  padding: 78px 0;
  text-align: center;
}
body .text-box-section__text {
  max-width: 1120px;
  margin: 0 auto;
  color: #17223f;
  font-family: "Spectral", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.02em;
}
body .rounded-text.about-rounded-new {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 70px 0;
}
body .about-rounded-new__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
body .rounded-text.about-rounded-new .container {
  position: relative;
  z-index: 1;
}
body .about-rounded-new__panel {
  max-width: 790px;
  min-height: 430px;
  padding: 58px 70px 62px;
  border-radius: 0 220px 220px 0;
  background: rgba(93, 105, 144, 0.9);
  color: #f9f5ec;
}
body .about-rounded-new__panel .title,
body .about-rounded-new__panel .subtitle {
  color: #f9f5ec;
  font-family: "Spectral", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
body .about-rounded-new__panel .title {
  font-size: 54px;
  line-height: 1.04;
}
body .about-rounded-new__panel .subtitle {
  max-width: 620px;
  margin-top: 20px;
  font-size: 34px;
  line-height: 1.12;
}
body .about-rounded-new__panel .description {
  margin-top: 34px;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 18px;
  line-height: 1.45;
}
body.o-nama .service-contact-cta {
  padding: 42px 0 70px;
  text-align: center;
}
body.o-nama .service-contact-cta h2 {
  max-width: 850px;
  margin: 0 auto 42px;
  color: #17223f;
  font-family: "Spectral", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.02em;
}
body.o-nama .service-contact-cta__phones {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}
body.o-nama .service-contact-cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 280px;
  min-height: 54px;
  padding: 10px 24px 10px 13px;
  border: 0;
  border-radius: 999px;
  background: #17223f;
  color: #f9f5ec;
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 34, 63, 0.18);
}
body.o-nama .service-contact-cta__phone--light {
  background: #f4e8e4;
  color: #5d6990;
}
body.o-nama .service-contact-cta__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(249, 245, 236, 0.38);
  position: relative;
  mask: none;
  -webkit-mask: none;
}
body.o-nama .service-contact-cta__icon::before {
  content: "";
  position: absolute;
  inset: 9px;
  background: currentColor;
  mask: url("/template/stomatologbg/assets/images/phone.svg") center / contain no-repeat;
  -webkit-mask: url("/template/stomatologbg/assets/images/phone.svg") center / contain no-repeat;
}

@media (max-width: 991px) {
  body.o-nama .category-page-header {
    height: 430px;
    min-height: 430px;
    margin-top: 0;
    padding-top: 0;
  }
  body.o-nama .category-page-header .container {
    padding-bottom: 36px;
  }
  body.o-nama .category-page-header__content {
    padding: 20px 28px;
  }
  body.o-nama .category-page-header__content h1,
  body .content-text-section h2,
  body .category-media-v2__text h2,
  body .category-media-stack h2,
  body .service-media-section__content h2 {
    font-size: 34px;
  }
  body .content-text-section__columns,
  body .category-media-v2__grid,
  body .service-media-section__grid,
  body .service-media-section--text-right .service-media-section__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  body .category-media-v2__media img,
  body .service-media-section__media img {
    height: 340px;
  }
  body .text-box-section__text {
    font-size: 26px;
  }
  body.o-nama .service-menu-section__grid {
    grid-template-columns: 1fr;
  }
  body.o-nama .service-menu-section h2,
  body.o-nama .service-contact-cta h2 {
    font-size: 34px;
  }
  body.o-nama .service-menu-section::before,
  body.o-nama .service-menu-section::after {
    opacity: 0.2;
  }
  body .about-rounded-new__panel {
    padding: 42px 32px;
    border-radius: 32px;
  }
}

/* Home doctors uses the same visual card system as the team listing. */
body section.home-doctors .home-doctors-team-grid {
  grid-template-columns: repeat(3, minmax(0, 402px));
  justify-content: space-between;
  gap: 78px 64px;
  max-width: 1370px;
  margin: 0 auto;
}
body section.home-doctors .home-doctors-team-card {
  border: 0 !important;
}
@media (max-width: 1199px) {
  body section.home-doctors .home-doctors-team-grid {
    grid-template-columns: repeat(2, minmax(0, 402px));
    justify-content: center;
  }
}
@media (max-width: 767px) {
  body section.home-doctors .home-doctors-team-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* Services with description: 3 cards in the first row, 4 cards in the second row. */
body section.home-services-desc .home-services-desc__grid {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: 36px 30px;
  max-width: 1450px;
  margin-left: auto;
  margin-right: auto;
}
body section.home-services-desc .home-services-desc__card {
  grid-column: span 2 !important;
}
body section.home-services-desc .home-services-desc__card:nth-child(1) {
  grid-column: 2 / span 2 !important;
}
body section.home-services-desc .home-services-desc__card:nth-child(2) {
  grid-column: 4 / span 2 !important;
}
body section.home-services-desc .home-services-desc__card:nth-child(3) {
  grid-column: 6 / span 2 !important;
}
body section.home-services-desc .home-services-desc__card:nth-child(4) {
  grid-column: 1 / span 2 !important;
}
body section.home-services-desc .home-services-desc__card:nth-child(5) {
  grid-column: 3 / span 2 !important;
}
body section.home-services-desc .home-services-desc__card:nth-child(6) {
  grid-column: 5 / span 2 !important;
}
body section.home-services-desc .home-services-desc__card:nth-child(7) {
  grid-column: 7 / span 2 !important;
}
@media (max-width: 991px) {
  body section.home-services-desc .home-services-desc__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  body section.home-services-desc .home-services-desc__card,
  body section.home-services-desc .home-services-desc__card:nth-child(n) {
    grid-column: auto !important;
  }
}
@media (max-width: 575px) {
  body section.home-services-desc .home-services-desc__grid {
    grid-template-columns: 1fr !important;
  }
}

/* Home contact tighter Figma alignment */
body section.home-contact {
  padding-top: 22px !important;
  padding-bottom: 76px !important;
}
body section.home-contact > .container {
  max-width: 1808px;
  padding-left: 18px;
  padding-right: 18px;
}
body .home-contact__image,
body .home-contact__panel {
  aspect-ratio: 901 / 653;
  border-radius: clamp(28px, 2.2vw, 42px) !important;
}
body .home-contact__image img {
  object-position: center center;
}
body .home-contact__panel {
  padding: clamp(34px, 3.5vw, 58px) clamp(46px, 5vw, 88px) clamp(26px, 3vw, 42px) clamp(46px, 5.1vw, 92px) !important;
}
body .home-contact__panel::before {
  left: 17%;
  background-size: 100% 100%;
  opacity: 0.42;
}
body .home-contact__head {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.44fr);
  gap: 24px;
  margin-bottom: clamp(22px, 2.3vw, 36px) !important;
}
body .home-contact__head h2 {
  font-size: clamp(24px, 1.8vw, 34px);
  letter-spacing: 0.025em;
}
body .home-contact__head h3 {
  font-size: clamp(22px, 1.62vw, 31px);
  letter-spacing: 0.045em;
}
body .home-contact__head p {
  font-size: clamp(8px, 0.6vw, 11px);
}
body .home-contact__form input,
body .home-contact__form textarea {
  height: clamp(30px, 2vw, 36px);
  font-size: clamp(8px, 0.58vw, 11px);
}
body .home-contact__form textarea {
  height: clamp(72px, 5.8vw, 112px);
}
body .home-contact__form button {
  width: clamp(212px, 18vw, 345px);
  min-height: clamp(31px, 2.9vw, 54px);
  margin-top: clamp(14px, 1.3vw, 22px) !important;
  gap: clamp(50px, 4.3vw, 82px);
  padding-left: clamp(40px, 3.4vw, 66px) !important;
  font-size: clamp(11px, 0.84vw, 16px);
}
body .home-contact__form button::after {
  width: clamp(18px, 1.46vw, 28px);
  height: clamp(9px, 0.73vw, 14px);
  flex-basis: clamp(18px, 1.46vw, 28px);
  background:
    linear-gradient(currentColor, currentColor) 0 50% / 100% 1px no-repeat,
    linear-gradient(45deg, transparent 46%, currentColor 47% 53%, transparent 54%) right 2px top 2px / 8px 8px no-repeat;
}
@media (max-width: 767px) {
  body section.home-contact {
    padding-top: 42px !important;
  }
  body section.home-contact > .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  body .home-contact__image,
  body .home-contact__panel {
    aspect-ratio: auto;
  }
  body .home-contact__panel {
    padding: 40px 26px 34px !important;
  }
}

/* Home contact final size/arrow alignment */
body .home-contact__top {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 0 !important;
  align-items: stretch !important;
}
body .home-contact__image,
body .home-contact__panel {
  width: 100% !important;
  height: clamp(320px, 33.65vw, 646px) !important;
  aspect-ratio: auto !important;
}
body .home-contact__image {
  margin-right: -1px;
}
body .home-contact__panel {
  margin-left: 0 !important;
}
body .home-contact__head {
  grid-template-columns: minmax(0, 1fr) max-content !important;
}
body .home-contact__head > div {
  justify-self: end !important;
  align-self: start !important;
  min-width: 0 !important;
  margin-right: 0 !important;
}
body .home-contact__form button::after {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  background: url("/template/stomatologbg/assets/images/contact-home-arrow.png") center / contain no-repeat !important;
}
@media (max-width: 767px) {
  body .home-contact__image,
  body .home-contact__panel {
    height: auto !important;
  }
}

/* Contact section home: final Figma alignment */
body section.home-contact {
  padding: 80px 0 84px !important;
  background: #f9f5ec !important;
  background-image: none !important;
}
body section.home-contact > .container {
  width: min(1802px, calc(100vw - 120px)) !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
body section.home-contact .home-contact__top {
  display: flex !important;
  grid-template-columns: none !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  align-items: stretch !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 1802px !important;
  aspect-ratio: 1802 / 653 !important;
  height: auto !important;
}
body section.home-contact .home-contact__image,
body section.home-contact .home-contact__panel {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50% !important;
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 45px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
body section.home-contact .home-contact__image {
  margin-right: 0 !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 1 !important;
  background: transparent !important;
}
body section.home-contact .home-contact__image img {
  position: absolute !important;
  inset: -24px !important;
  display: block !important;
  width: calc(100% + 48px) !important;
  height: calc(100% + 48px) !important;
  max-width: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
}
body section.home-contact .home-contact__panel {
  display: block !important;
  position: relative !important;
  margin-left: 0 !important;
  z-index: 1 !important;
  background: #dec9cb !important;
  padding: clamp(34px, 2.8vw, 54px) clamp(54px, 4.6vw, 88px) clamp(28px, 2.2vw, 42px) clamp(56px, 4.8vw, 92px) !important;
}
body section.home-contact .home-contact__panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 0 18% !important;
  width: auto !important;
  background: url("/template/stomatologbg/assets/images/contact-home-mask.png") right top/100% 100% no-repeat !important;
  filter: grayscale(1) brightness(0) invert(1) !important;
  opacity: 0.44 !important;
  pointer-events: none !important;
}
body section.home-contact .home-contact__head,
body section.home-contact .home-contact__form {
  position: relative !important;
  z-index: 1 !important;
}
body section.home-contact .home-contact__head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content !important;
  gap: 34px !important;
  align-items: start !important;
  margin: 0 0 clamp(20px, 1.9vw, 36px) !important;
}
body section.home-contact .home-contact__head > div {
  justify-self: end !important;
  min-width: 198px !important;
}
body section.home-contact .home-contact__head h2 {
  margin: 0 !important;
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-size: clamp(28px, 1.78vw, 34px) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}
body section.home-contact .home-contact__head h3 {
  margin: 0 0 8px !important;
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-size: clamp(28px, 1.62vw, 31px) !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
}
body section.home-contact .home-contact__head p {
  margin: 0 !important;
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: clamp(10px, 0.67vw, 13px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
}
body section.home-contact .home-contact__form {
  display: grid !important;
  gap: 0 !important;
}
body section.home-contact .home-contact__form input,
body section.home-contact .home-contact__form textarea {
  height: clamp(30px, 1.9vw, 36px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(91, 101, 135, 0.35) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #384a58 !important;
  box-shadow: none !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: clamp(10px, 0.62vw, 12px) !important;
  line-height: 1.2 !important;
}
body section.home-contact .home-contact__form textarea {
  height: clamp(70px, 5.1vw, 98px) !important;
  padding-top: 10px !important;
  resize: none !important;
}
body section.home-contact .home-contact__form button {
  justify-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(54px, 4.2vw, 82px) !important;
  width: clamp(250px, 18vw, 345px) !important;
  min-height: clamp(42px, 2.8vw, 54px) !important;
  margin-top: clamp(14px, 1.1vw, 20px) !important;
  padding: 0 clamp(22px, 1.4vw, 28px) 0 clamp(54px, 3.4vw, 66px) !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #1e2640 !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: clamp(13px, 0.85vw, 16px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
}
body section.home-contact .home-contact__form button svg {
  display: none !important;
}
body section.home-contact .home-contact__form button::after {
  content: "" !important;
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  background: url("/template/stomatologbg/assets/images/contact-home-arrow.png") center/contain no-repeat !important;
}
body section.home-contact .home-contact__map {
  width: min(1585px, calc(100vw - 330px)) !important;
  margin: 88px auto 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body section.home-contact .home-contact__map iframe {
  display: block !important;
  width: 100% !important;
  height: clamp(300px, 18.55vw, 356px) !important;
  border: 0 !important;
}
@media (max-width: 1199px) {
  body section.home-contact > .container {
    width: calc(100vw - 64px) !important;
  }
  body section.home-contact .home-contact__panel {
    padding: 40px 34px !important;
  }
  body section.home-contact .home-contact__head {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  body section.home-contact .home-contact__head > div {
    justify-self: start !important;
  }
  body section.home-contact .home-contact__map {
    width: calc(100vw - 80px) !important;
  }
}
@media (max-width: 767px) {
  body section.home-contact {
    padding: 46px 0 56px !important;
  }
  body section.home-contact > .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  body section.home-contact .home-contact__top {
    flex-direction: column !important;
    gap: 18px !important;
    aspect-ratio: auto !important;
  }
  body section.home-contact .home-contact__image,
  body section.home-contact .home-contact__panel {
    flex-basis: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 901 / 653 !important;
  }
  body section.home-contact .home-contact__image {
    min-height: 330px !important;
    margin-right: 0 !important;
    border-radius: 34px !important;
  }
  body section.home-contact .home-contact__panel {
    border-radius: 34px !important;
    padding: 38px 26px 34px !important;
  }
  body section.home-contact .home-contact__map {
    width: calc(100vw - 36px) !important;
    margin-top: 46px !important;
  }
body section.home-contact .home-contact__map iframe {
  height: 310px !important;
  }
}

/* Category detail screenshots final override */
body .category-page-header,
body .category-color-text-box,
body .content-text-section,
body .category-specialist-form,
body .related-services,
body .category-faq,
body .home-cta-buttons,
body .category-reviews {
  background: #f5f8fb url("/template/stomatologbg/assets/images/back1.png") center top / cover no-repeat !important;
  color: #17223f !important;
}
body .category-page-header {
  height: 870px !important;
  min-height: 870px !important;
  margin-top: -154px !important;
  padding-top: 154px !important;
  overflow: hidden !important;
  background-color: #f5f8fb !important;
}
body .category-page-header__bg {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}
body .category-page-header__shade {
  inset: auto 0 0 !important;
  height: 360px !important;
  background: linear-gradient(180deg, rgba(245, 248, 251, 0) 0%, rgba(245, 248, 251, 0.58) 50%, #f5f8fb 100%) !important;
}
body .category-page-header .container {
  width: min(100%, 1760px) !important;
  max-width: 1760px !important;
  min-height: 716px !important;
  padding-left: 76px !important;
  padding-right: 76px !important;
  padding-bottom: 62px !important;
  align-items: flex-end !important;
  justify-content: center !important;
}
body .category-page-header__content {
  width: 100% !important;
  min-height: 150px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: end !important;
}
body .category-page-header__content h1 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid #5d6990 !important;
  color: #17223f !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 58px !important;
  font-weight: 400 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.07em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}
body .category-page-header__content p {
  display: none !important;
}
body .category-page-header__breadcrumb {
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: end !important;
  justify-self: start !important;
  margin: 0 0 8px 168px !important;
  color: #17223f !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
}
body .category-page-header__breadcrumb a,
body .category-page-header__breadcrumb span {
  color: #17223f !important;
  font-size: inherit !important;
  text-shadow: none !important;
}
body .category-color-text-box {
  padding: 58px 0 58px !important;
}
body .category-color-text-box .container,
body .content-text-section .container,
body .category-specialist-form .container,
body .related-services .container,
body .category-faq .container,
body .category-reviews .container {
  width: min(100%, 1540px) !important;
  max-width: 1540px !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}
body .category-color-text-box__inner {
  width: min(100%, 1440px) !important;
  min-height: 254px !important;
  margin: 0 auto !important;
  padding: 78px 150px !important;
  border: 1px solid rgba(180, 160, 162, 0.35) !important;
  border-radius: 42px !important;
  background: linear-gradient(100deg, rgba(224, 199, 202, 0.88) 0%, rgba(249, 245, 236, 0.76) 100%) !important;
  box-shadow: none !important;
  color: #17223f !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 13px !important;
  line-height: 1.32 !important;
  text-align: center !important;
}
body .category-color-text-box__inner--columns {
  display: grid !important;
  grid-template-columns: 0.78fr 1.42fr !important;
  gap: 78px !important;
  align-items: center !important;
  text-align: left !important;
}
body .category-color-text-box__left {
  color: #17223f !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 38px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
body .category-color-text-box__right {
  color: #17223f !important;
  font-size: 13px !important;
  line-height: 1.32 !important;
}
body .content-text-section {
  padding: 62px 0 56px !important;
  background-color: #f5f8fb !important;
}
body .content-text-section .container {
  border: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body .content-text-section h2 {
  max-width: 100% !important;
  margin: 0 0 24px !important;
  color: #17223f !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}
body .content-text-section__body,
body .content-text-section__body p,
body .content-text-section__body li {
  color: #17223f !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}
body .content-text-section__body {
  padding-bottom: 36px !important;
  border-bottom: 1px solid rgba(214, 186, 181, 0.65) !important;
}
body .content-text-section__body p {
  margin-bottom: 14px !important;
}
body .content-text-section__columns {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 36px !important;
}
body .category-specialist-form {
  padding: 46px 0 88px !important;
}
body .category-specialist-form h2,
body .related-services h2,
body .category-faq h2,
body .category-reviews h2 {
  margin: 0 0 64px !important;
  color: #17223f !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.07em !important;
  text-align: center !important;
  text-transform: uppercase !important;
}
body .category-specialist-form h2::after,
body .related-services h2::after,
body .category-faq h2::after,
body .category-reviews h2::after {
  content: "" !important;
  display: block !important;
  width: 520px !important;
  max-width: 100% !important;
  height: 1px !important;
  margin: 14px auto 0 !important;
  background: #5d6990 !important;
}
body .category-specialist-form__grid {
  display: grid !important;
  grid-template-columns: 354px 820px !important;
  gap: 278px !important;
  align-items: center !important;
  justify-content: center !important;
}
body .category-specialist-form__doctor {
  width: 354px !important;
  min-height: 618px !important;
  padding: 26px 22px 36px !important;
  border-radius: 32px !important;
  background: linear-gradient(180deg, #bcc7dc 0%, #f9f5ec 72%) !important;
  box-shadow: 0 20px 34px rgba(47, 62, 91, 0.12) !important;
  color: #17223f !important;
}
body .category-specialist-form__image {
  width: 286px !important;
  height: 350px !important;
  margin: 0 auto 36px !important;
  border-radius: 50% 50% 48% 48% !important;
}
body .category-specialist-form__doctor h3 {
  margin-bottom: 14px !important;
  color: #17223f !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.18 !important;
}
body .category-specialist-form__doctor p {
  color: #17223f !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.28 !important;
}
body .category-specialist-form__role {
  max-width: 236px !important;
  margin-bottom: 22px !important;
  font-weight: 400 !important;
}
body .category-specialist-form__panel {
  width: 820px !important;
  min-height: 598px !important;
  padding: 64px 82px 36px !important;
  border-radius: 54px !important;
  background-color: rgba(188, 199, 220, 0.92) !important;
  background-image: url("/template/stomatologbg/assets/images/back1.png") !important;
  background-position: center !important;
  background-size: cover !important;
  box-shadow: none !important;
}
body .category-specialist-form__panel h3 {
  margin: 0 0 50px !important;
  color: #f9f5ec !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 44px !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.06em !important;
}
body .category-specialist-form__panel form {
  gap: 20px !important;
}
body .category-specialist-form__panel input,
body .category-specialist-form__panel textarea {
  border-bottom-color: rgba(249, 245, 236, 0.82) !important;
  color: #f9f5ec !important;
  font-size: 13px !important;
}
body .category-specialist-form__panel textarea {
  min-height: 98px !important;
}
body .category-specialist-form__panel button {
  width: 432px !important;
  min-width: 432px !important;
  min-height: 62px !important;
  margin-top: 8px !important;
  gap: 112px !important;
  border-radius: 999px !important;
  background: #17223f !important;
  font-size: 18px !important;
  letter-spacing: 0.16em !important;
}
body .related-services {
  padding: 58px 0 92px !important;
}
body .related-services .container {
  max-width: 1480px !important;
}
body .related-services__head {
  max-width: 1180px !important;
  margin: 0 auto 58px !important;
}
body .related-services h2 {
  margin-bottom: 0 !important;
}
body .related-services h2::after {
  width: 350px !important;
}
body .related-services__nav {
  right: 0 !important;
  top: 0 !important;
  gap: 12px !important;
}
body .related-services__nav button,
body .category-reviews__nav button {
  width: 24px !important;
  height: 32px !important;
  color: #5d6990 !important;
  font-size: 44px !important;
}
body .related-services .swiper {
  max-width: 1180px !important;
}
body .related-services__card {
  min-height: 530px !important;
  border-radius: 24px !important;
  background: #f9f5ec !important;
  box-shadow: 0 16px 28px rgba(53, 70, 102, 0.12) !important;
}
body .related-services__card img {
  height: 254px !important;
  border-radius: 24px 24px 0 0 !important;
}
body .related-services__card div {
  padding: 28px 22px 30px !important;
}
body .related-services__card h3 {
  margin: 0 0 18px !important;
  color: #17223f !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1.16 !important;
  letter-spacing: 0.07em !important;
}
body .related-services__card p {
  color: #17223f !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
}
body .category-faq {
  padding: 70px 0 58px !important;
}
body .category-faq .container {
  width: min(100%, 1450px) !important;
  max-width: 1450px !important;
}
body .category-faq h2 {
  margin-bottom: 34px !important;
  text-align: left !important;
}
body .category-faq h2::after {
  width: 495px !important;
  margin-left: 0 !important;
}
body .category-faq__items {
  gap: 8px !important;
}
body .category-faq__item {
  border: 1px solid rgba(93, 105, 144, 0.08) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.68) !important;
  box-shadow: 0 3px 10px rgba(55, 66, 91, 0.04) !important;
}
body .category-faq__question {
  min-height: 64px !important;
  padding: 0 58px !important;
  color: #17223f !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
}
body .category-faq__answer {
  padding: 0 88px 24px 58px !important;
  color: #384a58 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}
body .home-cta-buttons {
  min-height: 160px !important;
  padding: 44px 0 48px !important;
  background-color: #f9f5ec !important;
}
body .home-cta-buttons__inner {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
}
body .home-cta-buttons__btn {
  width: 430px !important;
  min-width: 430px !important;
  min-height: 62px !important;
  padding: 0 10px 0 78px !important;
  border-radius: 999px !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  justify-content: space-between !important;
}
body .home-cta-buttons__btn i {
  width: 50px !important;
  height: 50px !important;
  flex: 0 0 50px !important;
}
body .home-cta-buttons__btn--light {
  border: 7px solid #00aeef !important;
  background: #e6d0d2 !important;
  color: #5d6990 !important;
}
body .category-reviews {
  padding: 48px 0 102px !important;
  background-color: #edf2f6 !important;
}
body .category-reviews .container {
  max-width: 1480px !important;
}
body .category-reviews__head {
  max-width: 1280px !important;
  margin: 0 auto 54px !important;
}
body .category-reviews h2 {
  margin: 0 !important;
  text-align: left !important;
}
body .category-reviews h2::after {
  width: 220px !important;
  margin-left: 0 !important;
}
body .category-reviews__nav {
  gap: 14px !important;
}
body .categoryReviewsSwiper {
  max-width: 1280px !important;
  margin: 0 auto !important;
}
body .category-reviews__card {
  min-height: 190px !important;
  padding: 22px 34px 24px !important;
  border-radius: 12px !important;
  background: linear-gradient(96deg, #f9f5ec 0%, #e3c6c8 100%) !important;
  box-shadow: none !important;
}
body .category-reviews__author {
  gap: 16px !important;
  margin-bottom: 16px !important;
}
body .category-reviews__author span {
  width: 38px !important;
  height: 38px !important;
  flex: 0 0 38px !important;
  font-size: 14px !important;
}
body .category-reviews__author strong {
  color: #17223f !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
}
body .category-reviews__author small {
  color: #5d6990 !important;
  font-size: 9px !important;
}
body .category-reviews__stars {
  margin-bottom: 14px !important;
  color: #5d6990 !important;
  font-size: 19px !important;
}
body .category-reviews__card p {
  color: #17223f !important;
  font-size: 12px !important;
  line-height: 1.24 !important;
}

@media (max-width: 1399px) {
  body .category-specialist-form__grid {
    grid-template-columns: 320px 720px !important;
    gap: 120px !important;
  }
  body .category-specialist-form__doctor {
    width: 320px !important;
  }
  body .category-specialist-form__panel {
    width: 720px !important;
  }
}
@media (max-width: 1199px) {
  body .category-page-header {
    height: 660px !important;
    min-height: 660px !important;
  }
  body .category-page-header .container {
    min-height: 506px !important;
    padding-bottom: 46px !important;
  }
  body .category-page-header__breadcrumb {
    margin-left: 0 !important;
  }
  body .category-specialist-form__grid {
    grid-template-columns: 300px minmax(0, 640px) !important;
    gap: 56px !important;
  }
  body .category-specialist-form__doctor,
  body .category-specialist-form__panel {
    width: auto !important;
  }
}
@media (max-width: 991px) {
  body .category-page-header {
    height: 520px !important;
    min-height: 520px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  body .category-page-header .container {
    min-height: 520px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  body .category-page-header__content {
    display: block !important;
    min-height: 0 !important;
    text-align: center !important;
  }
  body .category-page-header__content h1 {
    display: inline-block !important;
    font-size: 38px !important;
  }
  body .category-page-header__breadcrumb {
    margin: 18px 0 0 !important;
    text-align: center !important;
  }
  body .category-color-text-box__inner,
  body .category-color-text-box__inner--columns {
    grid-template-columns: 1fr !important;
    padding: 38px 30px !important;
  }
  body .category-specialist-form__grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  body .category-specialist-form__doctor,
  body .category-specialist-form__panel {
    width: min(100%, 620px) !important;
    margin: 0 auto !important;
  }
  body .home-cta-buttons__inner {
    flex-direction: column !important;
    align-items: center !important;
  }
}
@media (max-width: 767px) {
  body .category-page-header__content h1,
  body .category-specialist-form h2,
  body .related-services h2,
  body .category-faq h2,
  body .category-reviews h2,
  body .content-text-section h2,
  body .category-color-text-box__left {
    font-size: 28px !important;
  }
  body .category-color-text-box .container,
  body .content-text-section .container,
  body .category-specialist-form .container,
  body .related-services .container,
  body .category-faq .container,
  body .category-reviews .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  body .category-specialist-form__panel {
    min-height: 0 !important;
    padding: 40px 24px 34px !important;
    border-radius: 34px !important;
  }
  body .category-specialist-form__panel h3 {
    font-size: 32px !important;
  }
  body .category-specialist-form__panel button,
  body .home-cta-buttons__btn {
    width: 100% !important;
    min-width: 0 !important;
  }
  body .home-cta-buttons__btn {
    padding-left: 28px !important;
  }
}

/* Category page header exact screenshot override */
body .category-page-header {
  position: relative !important;
  height: 870px !important;
  min-height: 870px !important;
  margin-top: -154px !important;
  padding-top: 154px !important;
  overflow: hidden !important;
  background: #f5f8fb !important;
}
body .category-page-header__bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}
body .category-page-header__shade {
  position: absolute !important;
  inset: auto 0 0 !important;
  height: 330px !important;
  background: linear-gradient(180deg, rgba(245, 248, 251, 0) 0%, rgba(245, 248, 251, 0.54) 48%, #f5f8fb 100%) !important;
}
body .category-page-header .container {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 1920px !important;
  min-height: 716px !important;
  padding: 0 300px 58px !important;
  display: flex !important;
  align-items: flex-end !important;
}
body .category-page-header__content {
  width: 100% !important;
  min-height: 118px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
  align-items: end !important;
}
body .category-page-header__content h1 {
  grid-column: 2 !important;
  grid-row: 1 !important;
  margin: 0 !important;
  padding: 0 0 10px !important;
  border-bottom: 1px solid #5d6990 !important;
  color: #17223f !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 58px !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: 0.07em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}
body .category-page-header__content h1::after,
body .category-page-header__content p {
  display: none !important;
}
body .category-page-header__breadcrumb {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  align-self: end !important;
  margin: 0 0 12px 0 !important;
  color: #17223f !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  text-shadow: none !important;
}
body .category-page-header__breadcrumb a,
body .category-page-header__breadcrumb span {
  color: #17223f !important;
  font: inherit !important;
  text-decoration: none !important;
  text-shadow: none !important;
}

@media (max-width: 1199px) {
  body .category-page-header {
    height: 640px !important;
    min-height: 640px !important;
  }
  body .category-page-header .container {
    min-height: 486px !important;
    padding: 0 48px 46px !important;
  }
  body .category-page-header__content {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }
  body .category-page-header__content h1,
  body .category-page-header__breadcrumb {
    grid-column: 1 !important;
  }
  body .category-page-header__breadcrumb {
    grid-row: 2 !important;
    justify-self: center !important;
    margin: 18px 0 0 !important;
  }
}
@media (max-width: 767px) {
  body .category-page-header {
    height: 500px !important;
    min-height: 500px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  body .category-page-header .container {
    min-height: 500px !important;
    padding: 0 20px 38px !important;
  }
body .category-page-header__content h1 {
    font-size: 30px !important;
    letter-spacing: 0.04em !important;
  }
}

/* Category page header: larger hero, no title/breadcrumb box */
body .category-page-header {
  height: 980px !important;
  min-height: 980px !important;
}
body .category-page-header .container {
  position: static !important;
  max-width: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: block !important;
}
body .category-page-header__content {
  position: static !important;
  width: auto !important;
  min-height: 0 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
body .category-page-header__content h1 {
  position: absolute !important;
  z-index: 3 !important;
  left: 50% !important;
  bottom: 142px !important;
  transform: translateX(-50%) !important;
  display: block !important;
  width: max-content !important;
  max-width: calc(100vw - 80px) !important;
  margin: 0 !important;
  padding: 0 0 12px !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #5d6990 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}
body .category-page-header__breadcrumb {
  position: absolute !important;
  z-index: 3 !important;
  left: max(72px, calc((100vw - 1540px) / 2 + 150px)) !important;
  bottom: 150px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 500 !important;
}

@media (max-width: 1199px) {
  body .category-page-header {
    height: 720px !important;
    min-height: 720px !important;
  }
  body .category-page-header__content h1 {
    bottom: 118px !important;
  }
  body .category-page-header__breadcrumb {
    left: 48px !important;
    bottom: 126px !important;
  }
}
@media (max-width: 767px) {
  body .category-page-header {
    height: 560px !important;
    min-height: 560px !important;
  }
  body .category-page-header__content h1 {
    bottom: 96px !important;
    white-space: normal !important;
  }
  body .category-page-header__breadcrumb {
    left: 20px !important;
    right: 20px !important;
    bottom: 52px !important;
    text-align: center !important;
  }
}

/* Category header continuation and single text motifs */
body .category-page-header + .category-color-text-box,
body .category-color-text-box--continues-header {
  position: relative !important;
  margin-top: -1px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  overflow: hidden !important;
  background-color: #f5f8fb !important;
  background-image:
    linear-gradient(180deg, rgba(245, 248, 251, 0.04) 0%, rgba(245, 248, 251, 0.9) 46%, #f5f8fb 100%),
    var(--category-header-image) !important;
  background-size: cover, 100% auto !important;
  background-position: center top, center bottom !important;
  background-repeat: no-repeat !important;
}
body .category-color-text-box--continues-header::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: min(748px, 52vw) !important;
  height: 326px !important;
  background: url("/template/stomatologbg/assets/images/category-color-box-motif.png") right top / contain no-repeat !important;
  pointer-events: none !important;
  z-index: 0 !important;
}
body .category-color-text-box--continues-header .container {
  position: relative !important;
  z-index: 1 !important;
}
body .category-color-text-box--continues-header .category-color-text-box__inner {
  margin-top: 58px !important;
  background: linear-gradient(100deg, rgba(224, 199, 202, 0.86) 0%, rgba(249, 245, 236, 0.7) 100%) !important;
}
body .content-text-section--single {
  position: relative !important;
  overflow: hidden !important;
  background: #f5f8fb !important;
  background-image: none !important;
}
body .content-text-section--single::before,
body .content-text-section--single::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}
body .content-text-section--single::before {
  left: 0 !important;
  top: 130px !important;
  width: min(567px, 34vw) !important;
  height: 810px !important;
  background-image: url("/template/stomatologbg/assets/images/category-single-left-motif.png") !important;
  background-position: left top !important;
}
body .content-text-section--single::after {
  right: 0 !important;
  top: 0 !important;
  width: min(367px, 24vw) !important;
  height: 742px !important;
  background-image: url("/template/stomatologbg/assets/images/category-single-right-motif.png") !important;
  background-position: right top !important;
}
body .content-text-section--single .container {
  position: relative !important;
  z-index: 1 !important;
}
body .content-text-section--single .container::after {
  content: "" !important;
  display: block !important;
  width: 100% !important;
  height: 1px !important;
  margin-top: 34px !important;
  background: url("/template/stomatologbg/assets/images/category-single-line.png") center / 100% 1px no-repeat !important;
}
body .content-text-section--single .content-text-section__body {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 767px) {
  body .category-color-text-box--continues-header::after {
    width: 80vw !important;
    opacity: 0.75 !important;
  }
  body .content-text-section--single::before,
  body .content-text-section--single::after {
    opacity: 0.35 !important;
  }
}

/* Header and footer final Figma override */
body header {
  position: relative !important;
  z-index: 50 !important;
  font-family: "Urbanist", sans-serif !important;
}
body header .headinfo.d-block.d-sm-none {
  display: none !important;
}
body header .topbar {
  min-height: 85px !important;
  padding: 0 !important;
  background: rgba(249, 245, 236, 0.76) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: none !important;
}
body header .topbar > .container {
  width: min(100%, 1450px) !important;
  max-width: 1450px !important;
  min-height: 85px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}
body header .topbar .logo img {
  display: block !important;
  width: 201px !important;
  height: auto !important;
}
body header .topbar .right-group {
  gap: 31px !important;
  align-items: center !important;
}
body header .topbar .topmenu {
  gap: 35px !important;
}
body header .topbar .topmenu .nav-link,
body header .topbar .header-utility,
body header .topbar .headinfo,
body header .topbar .headinfo a,
body header .header-languages a {
  padding: 0 !important;
  color: #384a58 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}
body header .topbar .header-utility,
body header .topbar .headinfo,
body header .topbar .headinfo a,
body header .header-languages a {
  font-weight: 600 !important;
}
body header .topbar .header-utility {
  gap: 25px !important;
}
body header .topbar .social {
  gap: 16px !important;
}
body header .topbar .social img[src$="fb.png"] {
  width: 11px !important;
  height: 24px !important;
}
body header .topbar .social img[src$="instagram.png"] {
  width: 24px !important;
  height: 24px !important;
}
body header .header-separator {
  width: 1px !important;
  height: 31px !important;
  background: #384a58 !important;
  opacity: 0.72 !important;
}
body header .header-languages a span {
  width: 8px !important;
  height: 8px !important;
  margin-left: 10px !important;
  border-right: 1.7px solid #384a58 !important;
  border-bottom: 1.7px solid #384a58 !important;
}
body header .main-nav {
  padding: 0 !important;
  background: transparent !important;
  transform: translateY(0) !important;
}
body header .main-nav .container {
  width: min(1601px, calc(100vw - 156px)) !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body header .main-nav .mainnav-content {
  min-height: 82px !important;
  width: 100% !important;
  padding: 0 28px !important;
  border-radius: 41px !important;
  background: #5d6990 !important;
  box-shadow: 2px 4px 8px rgba(37, 59, 81, 0.11) !important;
  align-items: center !important;
  justify-content: space-between !important;
  overflow: visible !important;
}
body header .main-nav .navbar-nav {
  width: 100% !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 18px !important;
}
body header .main-nav .navbar-nav .nav-item {
  height: 82px !important;
  display: flex !important;
  align-items: center !important;
}
body header .main-nav .navbar-nav .nav-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 82px !important;
  max-width: 145px !important;
  padding: 0 !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  white-space: normal !important;
}

body footer.site-footer {
  padding-top: 0 !important;
  background: #1f2744 !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
}
body footer.site-footer .pbmit-footer-widget-area {
  padding: 63px 0 77px !important;
  background: #1f2744 !important;
}
body footer.site-footer .container {
  max-width: 1450px !important;
}
body footer.site-footer .footer-holder {
  display: grid !important;
  grid-template-columns: 190px 300px 300px 210px 275px !important;
  gap: 42px !important;
  justify-content: center !important;
  align-items: start !important;
  padding: 0 !important;
}
body footer.site-footer .footer-widget-col-1,
body footer.site-footer .footer-widget-col-brand,
body footer.site-footer .footer-widget-col-2,
body footer.site-footer .footer-widget-col-3,
body footer.site-footer .footer-widget-col-4,
body footer.site-footer .footer-dynamic-col {
  width: auto !important;
}
body footer.site-footer .footer-widget-col-1 {
  order: 1 !important;
  text-align: center !important;
}
body footer.site-footer .footer-widget-col-brand {
  order: 2 !important;
}
body footer.site-footer .footer-widget-col-4,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col {
  order: 3 !important;
}
body footer.site-footer .footer-widget-col-2:not(.footer-dynamic-col),
body footer.site-footer .footer-widget-col-3.footer-dynamic-col {
  order: 4 !important;
}
body footer.site-footer .footer-widget-col-3:not(.footer-dynamic-col),
body footer.site-footer .footer-widget-col-4.footer-dynamic-col {
  order: 5 !important;
}
body footer.site-footer .footer-logo {
  margin: 0 !important;
}
body footer.site-footer .footer-logo img {
  width: 148px !important;
  height: auto !important;
}
body footer.site-footer .footer-brand-name {
  margin: 1px 0 24px !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}
body footer.site-footer .footer-social {
  display: flex !important;
  gap: 22px !important;
  align-items: center !important;
}
body footer.site-footer .footer-social img[src$="fb.png"] {
  width: 11px !important;
  height: 24px !important;
}
body footer.site-footer .footer-social img[src$="instagram.png"] {
  width: 24px !important;
  height: 24px !important;
}
body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4 {
  margin: 0 0 8px !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}
body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content {
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}
body footer.site-footer a {
  text-decoration: none !important;
}
body footer.site-footer p {
  margin: 0 0 2px !important;
}
body footer.site-footer ul {
  display: grid !important;
  gap: 3px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body footer.site-footer .pbmit-footer-bottom {
  min-height: 67px !important;
  background: #e3d8d8 !important;
}
body footer.site-footer .pbmit-footer-bottom .container {
  position: relative !important;
  min-height: 67px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  margin: 0 !important;
  color: #293a59 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
}
body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  min-width: 268px !important;
  height: 90px !important;
  padding: 28px 18px 0 !important;
  border-radius: 28px 28px 0 0 !important;
  background: #c8d2e8 !important;
  color: #293a59 !important;
  font-family: "Lora", serif !important;
  font-size: 27px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

@media (max-width: 1500px) and (min-width: 992px) {
  body header .topbar .topmenu .nav-link,
  body header .topbar .header-utility,
  body header .topbar .headinfo,
  body header .topbar .headinfo a,
  body header .header-languages a {
    font-size: 14px !important;
  }
  body header .topbar .topmenu {
    gap: 22px !important;
  }
  body header .main-nav .container {
    width: calc(100vw - 64px) !important;
  }
  body header .main-nav .mainnav-content {
    min-height: 70px !important;
    border-radius: 35px !important;
  }
  body header .main-nav .navbar-nav .nav-item,
  body header .main-nav .navbar-nav .nav-link {
    height: 70px !important;
  }
  body header .main-nav .navbar-nav .nav-link {
    max-width: 120px !important;
    font-size: 16px !important;
  }
}

@media (max-width: 991px) {
  body header .topbar > .container {
    min-height: 72px !important;
  }
  body header .topbar .right-group,
  body header .main-nav {
    display: none !important;
  }
  body header .mobile-toggle {
    display: inline-flex !important;
  }
  body footer.site-footer .footer-holder {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    text-align: center !important;
  }
  body footer.site-footer .footer-social {
    justify-content: center !important;
  }
  body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 64px !important;
    margin-bottom: 12px !important;
    padding: 0 18px !important;
  }
  body footer.site-footer .pbmit-footer-bottom .container {
    flex-direction: column !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

/* Header nav spacing adjustment */
body header .main-nav .navbar-nav {
  justify-content: center !important;
  gap: 34px !important;
}

@media (max-width: 1500px) and (min-width: 992px) {
  body header .main-nav .navbar-nav {
    gap: 22px !important;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  body header .main-nav .navbar-nav {
    gap: 14px !important;
  }
}

/* Footer exact compact Figma override */
body footer.site-footer {
  background: #1f2744 !important;
}
body footer.site-footer .pbmit-footer-widget-area {
  height: 268px !important;
  min-height: 268px !important;
  padding: 62px 0 0 !important;
  background: #1f2744 !important;
}
body footer.site-footer .pbmit-footer-widget-area > .container {
  max-width: 1450px !important;
  height: 100% !important;
}
body footer.site-footer .footer-holder {
  display: grid !important;
  grid-template-columns: 148px 310px 300px 220px 285px !important;
  gap: 38px !important;
  align-items: start !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
body footer.site-footer .footer-widget-col-1 {
  text-align: center !important;
}
body footer.site-footer .footer-logo,
body footer.site-footer .footer-logo a {
  display: block !important;
  margin: 0 !important;
}
body footer.site-footer .footer-logo img {
  width: 148px !important;
  height: auto !important;
}
body footer.site-footer .footer-brand-name {
  margin: 3px 0 27px !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.04 !important;
}
body footer.site-footer .footer-social {
  gap: 22px !important;
}
body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4 {
  margin: 0 0 9px !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}
body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content {
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.42 !important;
}
body footer.site-footer p {
  margin: 0 !important;
}
body footer.site-footer ul {
  gap: 0 !important;
}
body footer.site-footer .footer-contact p {
  margin: 0 !important;
}
body footer.site-footer .pbmit-footer-bottom {
  height: 67px !important;
  min-height: 67px !important;
  background: #e3d8d8 !important;
}
body footer.site-footer .pbmit-footer-bottom .container {
  max-width: 1450px !important;
  height: 67px !important;
  min-height: 67px !important;
  padding: 0 !important;
}
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-text-inner,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area {
  width: 100% !important;
  padding: 0 !important;
}
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  color: #293a59 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}
body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  left: 0 !important;
  bottom: 0 !important;
  width: 268px !important;
  min-width: 268px !important;
  height: 90px !important;
  padding: 28px 18px 0 !important;
  border-radius: 28px 28px 0 0 !important;
  background: #c8d2e8 !important;
  color: #293a59 !important;
  font-family: "Lora", serif !important;
  font-size: 27px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
}

@media (max-width: 1500px) and (min-width: 992px) {
  body footer.site-footer .footer-holder {
    grid-template-columns: 130px 250px 260px 190px 245px !important;
    gap: 30px !important;
  }
  body footer.site-footer .footer-logo img {
    width: 130px !important;
  }
  body footer.site-footer .footer-brand-name {
    font-size: 23px !important;
  }
  body footer.site-footer a,
  body footer.site-footer p,
  body footer.site-footer li,
  body footer.site-footer .footer-dynamic-content {
    font-size: 13px !important;
  }
}

/* Header/footer exact typography and colors */
body header .topbar .topmenu .nav-link,
body header .topbar .header-utility,
body header .topbar .headinfo,
body header .topbar .headinfo a,
body header .header-languages a,
body header .header-languages a.active,
body header .topbar .social a {
  color: #384A58 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
}
body header .main-nav .navbar-nav .nav-link {
  color: #F9F5EC !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
}

body footer.site-footer,
body footer.site-footer .pbmit-footer-widget-area {
  background: #1E2640 !important;
}
body footer.site-footer .footer-logo img {
  width: 157px !important;
  height: 129px !important;
  object-fit: contain !important;
}
body footer.site-footer .footer-brand-name {
  color: #E3D7D7 !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
}
body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4,
body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content {
  color: #E3D7D7 !important;
  font-family: "Urbanist", sans-serif !important;
}
body footer.site-footer .footer-widget-col-4,
body footer.site-footer .footer-widget-col-4 a,
body footer.site-footer .footer-widget-col-4 p,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col p {
  color: #E3D7D7 !important;
  font-family: "Urbanist", sans-serif !important;
}
body footer.site-footer .footer-widget-col-2:not(.footer-dynamic-col),
body footer.site-footer .footer-widget-col-3:not(.footer-dynamic-col),
body footer.site-footer .footer-widget-col-3.footer-dynamic-col,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col,
body footer.site-footer .footer-widget-col-2:not(.footer-dynamic-col) a,
body footer.site-footer .footer-widget-col-3:not(.footer-dynamic-col) a,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-2:not(.footer-dynamic-col) li,
body footer.site-footer .footer-widget-col-3:not(.footer-dynamic-col) li,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col li,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col li {
  color: #E3D7D7 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
body footer.site-footer .pbmit-footer-bottom {
  background: #E3D7D7 !important;
}
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}
body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  background: #BBC0D3 !important;
  color: #1F3A5F !important;
  font-family: "Spectral", serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
}

@media (max-width: 1500px) and (min-width: 992px) {
  body header .topbar .topmenu .nav-link,
  body header .topbar .header-utility,
  body header .topbar .headinfo,
  body header .topbar .headinfo a,
  body header .header-languages a,
  body header .header-languages a.active,
  body header .main-nav .navbar-nav .nav-link {
    font-size: 20px !important;
  }
}

/* Header/footer final weight and logo polish */
body header .main-nav .navbar-nav .nav-link {
  font-weight: 500 !important;
}

body footer.site-footer .footer-logo img {
  width: 190px !important;
  height: auto !important;
  max-width: 190px !important;
}

body footer.site-footer .footer-brand-name {
  font-weight: 500 !important;
}

body footer.site-footer .footer-widget-col-4,
body footer.site-footer .footer-widget-col-4 a,
body footer.site-footer .footer-widget-col-4 p,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col p,
body footer.site-footer .footer-widget-col-2:not(.footer-dynamic-col),
body footer.site-footer .footer-widget-col-3:not(.footer-dynamic-col),
body footer.site-footer .footer-widget-col-3.footer-dynamic-col,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col,
body footer.site-footer .footer-widget-col-2:not(.footer-dynamic-col) a,
body footer.site-footer .footer-widget-col-3:not(.footer-dynamic-col) a,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-2:not(.footer-dynamic-col) li,
body footer.site-footer .footer-widget-col-3:not(.footer-dynamic-col) li,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col li,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col li {
  font-weight: 300 !important;
}

body footer.site-footer .footer-social a,
body footer.site-footer .footer-social i,
body footer.site-footer .footer-social svg {
  color: #E3D7D7 !important;
  fill: #E3D7D7 !important;
  stroke: #E3D7D7 !important;
  font-weight: 400 !important;
}
body footer.site-footer .footer-social img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(8%) saturate(264%) hue-rotate(314deg) brightness(95%) contrast(90%) !important;
  opacity: .96 !important;
}
body footer.site-footer .footer-social img[src$="fb.png"] {
  width: 8px !important;
  height: auto !important;
}
body footer.site-footer .footer-social img[src$="instagram.png"] {
  width: 18px !important;
  height: auto !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 0 28px !important;
  white-space: nowrap !important;
  line-height: 54px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  font-weight: 400 !important;
}

/* Footer Figma spacing correction */
body footer.site-footer .footer-holder {
  grid-template-columns: 190px 360px 300px 220px 285px !important;
  gap: 70px !important;
  align-items: start !important;
}

body footer.site-footer .footer-widget-col-brand {
  padding-left: 0 !important;
}

body footer.site-footer .pbmit-footer-widget-area {
  min-height: 335px !important;
  height: 335px !important;
  padding-top: 86px !important;
}

body footer.site-footer .footer-logo img {
  width: 205px !important;
  max-width: 205px !important;
}

body footer.site-footer .footer-brand-name {
  margin-top: 4px !important;
  margin-bottom: 30px !important;
}

body footer.site-footer .footer-social {
  gap: 28px !important;
}

body footer.site-footer .footer-social img[src$="fb.png"] {
  width: 9px !important;
}

body footer.site-footer .footer-social img[src$="instagram.png"] {
  width: 21px !important;
}

body footer.site-footer .pbmit-footer-bottom {
  height: 80px !important;
  min-height: 80px !important;
}

body footer.site-footer .pbmit-footer-bottom .container {
  height: 80px !important;
  min-height: 80px !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  height: 110px !important;
  padding: 0 32px !important;
  border-radius: 30px 30px 0 0 !important;
  line-height: 110px !important;
  font-size: 28px !important;
}

@media (max-width: 1500px) and (min-width: 992px) {
  body footer.site-footer .footer-holder {
    grid-template-columns: 190px 330px 260px 190px 245px !important;
    gap: 58px !important;
  }

  body footer.site-footer .footer-logo img {
    width: 190px !important;
    max-width: 190px !important;
  }
}

/* Footer ask doctor tab size/position */
body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  left: 22px !important;
  width: 290px !important;
  min-width: 290px !important;
  height: 68px !important;
  padding: 0 28px !important;
  border-radius: 24px 24px 0 0 !important;
  line-height: 68px !important;
  white-space: nowrap !important;
}

/* Footer screenshot layout match */
body footer.site-footer .pbmit-footer-widget-area {
  height: 190px !important;
  min-height: 190px !important;
  padding: 46px 0 0 !important;
}

body footer.site-footer .pbmit-footer-widget-area > .container,
body footer.site-footer .pbmit-footer-bottom .container {
  max-width: 1250px !important;
}

body footer.site-footer .footer-holder {
  grid-template-columns: 104px 220px 245px 138px 270px !important;
  gap: 42px !important;
  justify-content: center !important;
  align-items: start !important;
}

body footer.site-footer .footer-logo img {
  width: 104px !important;
  max-width: 104px !important;
  height: auto !important;
}

body footer.site-footer .footer-brand-name {
  margin: 2px 0 13px !important;
  font-size: 18px !important;
  line-height: 1.08 !important;
  font-weight: 500 !important;
}

body footer.site-footer .footer-social {
  gap: 15px !important;
}

body footer.site-footer .footer-social img[src$="fb.png"] {
  width: 7px !important;
}

body footer.site-footer .footer-social img[src$="instagram.png"] {
  width: 16px !important;
}

body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4 {
  margin: 0 0 6px !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  font-weight: 500 !important;
}

body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content {
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 300 !important;
}

body footer.site-footer .pbmit-footer-bottom {
  height: 47px !important;
  min-height: 47px !important;
}

body footer.site-footer .pbmit-footer-bottom .container {
  height: 47px !important;
  min-height: 47px !important;
}

body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  font-size: 13px !important;
  line-height: 1 !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  left: 0 !important;
  bottom: 0 !important;
  width: 188px !important;
  min-width: 188px !important;
  height: 63px !important;
  padding: 0 10px !important;
  border-radius: 19px 19px 0 0 !important;
  font-size: 19px !important;
  line-height: 63px !important;
}

@media (max-width: 1500px) and (min-width: 992px) {
  body footer.site-footer .footer-holder {
    grid-template-columns: 104px 220px 245px 138px 270px !important;
    gap: 42px !important;
  }

  body footer.site-footer .footer-logo img {
    width: 104px !important;
    max-width: 104px !important;
  }
}

/* Footer slight scale-up while keeping layout */
body footer.site-footer .pbmit-footer-widget-area {
  height: 205px !important;
  min-height: 205px !important;
  padding-top: 50px !important;
}

body footer.site-footer .footer-logo img {
  width: 112px !important;
  max-width: 112px !important;
}

body footer.site-footer .footer-brand-name {
  font-size: 20px !important;
}

body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4,
body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content {
  font-size: 13px !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  width: 238px !important;
  min-width: 238px !important;
  height: 68px !important;
  padding: 0 16px !important;
  font-size: 20px !important;
  line-height: 68px !important;
}

/* Footer final left alignment and column text reset */
body footer.site-footer .footer-holder {
  grid-template-columns: 112px 250px 255px 145px 265px !important;
  gap: 48px !important;
  justify-content: start !important;
  transform: translateX(-54px) !important;
}

body footer.site-footer .footer-logo img {
  width: 112px !important;
  max-width: 112px !important;
}

body footer.site-footer .footer-brand-name {
  width: 250px !important;
  margin: 0 0 13px !important;
  font-size: 18px !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4 {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content {
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .footer-widget-col-4,
body footer.site-footer .footer-widget-col-2,
body footer.site-footer .footer-widget-col-3,
body footer.site-footer .footer-dynamic-col {
  letter-spacing: 0 !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  left: -34px !important;
  width: 238px !important;
  min-width: 238px !important;
}

/* Footer typography reset to requested design values */
body footer.site-footer,
body footer.site-footer .pbmit-footer-widget-area {
  background: #1E2640 !important;
}

body footer.site-footer .footer-brand-name {
  color: #E3D7D7 !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4,
body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content,
body footer.site-footer .footer-contact {
  color: #E3D7D7 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4 {
  margin-bottom: 6px !important;
}

body footer.site-footer .footer-social img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(8%) saturate(264%) hue-rotate(314deg) brightness(95%) contrast(90%) !important;
}

body footer.site-footer .pbmit-footer-bottom {
  background: #E3D7D7 !important;
}

body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  background: #BBC0D3 !important;
  color: #1F3A5F !important;
  font-family: "Spectral", serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
}

/* Footer Figma node final override */
body footer.site-footer,
body footer.site-footer .pbmit-footer-widget-area {
  background: #1E2640 !important;
}

body footer.site-footer .pbmit-footer-widget-area {
  height: 197px !important;
  min-height: 197px !important;
  padding: 48px 0 0 !important;
}

body footer.site-footer .pbmit-footer-widget-area > .container,
body footer.site-footer .pbmit-footer-bottom .container {
  max-width: 1250px !important;
}

body footer.site-footer .footer-holder {
  display: grid !important;
  grid-template-columns: 104px 220px 245px 138px 270px !important;
  gap: 42px !important;
  justify-content: center !important;
  align-items: start !important;
  transform: none !important;
}

body footer.site-footer .footer-logo img {
  width: 104px !important;
  max-width: 104px !important;
  height: auto !important;
}

body footer.site-footer .footer-brand-name {
  width: 220px !important;
  margin: 1px 0 13px !important;
  color: #E3D7D7 !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .footer-social {
  gap: 15px !important;
}

body footer.site-footer .footer-social img[src$="fb.png"] {
  width: 7px !important;
}

body footer.site-footer .footer-social img[src$="instagram.png"] {
  width: 16px !important;
}

body footer.site-footer .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4 {
  margin: 0 0 6px !important;
  color: #E3D7D7 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer a,
body footer.site-footer p,
body footer.site-footer li,
body footer.site-footer .footer-dynamic-content,
body footer.site-footer .footer-contact {
  color: #E3D7D7 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .pbmit-footer-bottom {
  height: 47px !important;
  min-height: 47px !important;
  background: #E3D7D7 !important;
}

body footer.site-footer .pbmit-footer-bottom .container {
  height: 47px !important;
  min-height: 47px !important;
}

body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area p,
body footer.site-footer .pbmit-footer-bottom .pbmit-footer-copyright-text-area a {
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  left: -50px !important;
  bottom: 0 !important;
  width: 188px !important;
  min-width: 188px !important;
  height: 63px !important;
  padding: 0 10px !important;
  border-radius: 19px 19px 0 0 !important;
  background: #BBC0D3 !important;
  color: #1F3A5F !important;
  font-family: "Spectral", serif !important;
  font-size: 19px !important;
  font-weight: 700 !important;
  line-height: 63px !important;
  letter-spacing: 0.03em !important;
  white-space: nowrap !important;
}

/* Footer final column alignment and ask tab fit */
body footer.site-footer .footer-widget-col-2,
body footer.site-footer .footer-widget-col-3,
body footer.site-footer .footer-widget-col-4,
body footer.site-footer .footer-dynamic-col {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body footer.site-footer .footer-widget-col-2 a,
body footer.site-footer .footer-widget-col-3 a,
body footer.site-footer .footer-widget-col-4 a,
body footer.site-footer .footer-widget-col-2 li,
body footer.site-footer .footer-widget-col-3 li,
body footer.site-footer .footer-widget-col-4 li,
body footer.site-footer .footer-widget-col-2 p,
body footer.site-footer .footer-widget-col-3 p,
body footer.site-footer .footer-widget-col-4 p,
body footer.site-footer .footer-dynamic-col a,
body footer.site-footer .footer-dynamic-col li,
body footer.site-footer .footer-dynamic-col p,
body footer.site-footer .footer-dynamic-content {
  font-size: 12.5px !important;
  line-height: 1.32 !important;
}

body footer.site-footer .footer-widget-col-2 .widget-title,
body footer.site-footer .footer-widget-col-3 .widget-title,
body footer.site-footer .footer-widget-col-4 .widget-title,
body footer.site-footer .footer-dynamic-col .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4 {
  font-size: 12.5px !important;
  line-height: 1.25 !important;
}

body footer.site-footer .pbmit-footer-bottom .ask-doctor-tab {
  width: 236px !important;
  min-width: 236px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

/* Footer address column exact sizing */
body footer.site-footer .footer-widget-col-4 .widget-title,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h1,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h2,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h3,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h4 {
  font-size: 18px !important;
}

body footer.site-footer .footer-widget-col-4 p,
body footer.site-footer .footer-widget-col-4 a,
body footer.site-footer .footer-widget-col-4 li,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col p,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col li {
  font-size: 16px !important;
}

/* Footer columns unified size */
body footer.site-footer .footer-widget-col-2 .widget-title,
body footer.site-footer .footer-widget-col-3 .widget-title,
body footer.site-footer .footer-widget-col-4 .widget-title,
body footer.site-footer .footer-dynamic-col .widget-title,
body footer.site-footer .footer-dynamic-content h1,
body footer.site-footer .footer-dynamic-content h2,
body footer.site-footer .footer-dynamic-content h3,
body footer.site-footer .footer-dynamic-content h4,
body footer.site-footer .footer-widget-col-2 a,
body footer.site-footer .footer-widget-col-3 a,
body footer.site-footer .footer-widget-col-4 a,
body footer.site-footer .footer-widget-col-2 li,
body footer.site-footer .footer-widget-col-3 li,
body footer.site-footer .footer-widget-col-4 li,
body footer.site-footer .footer-widget-col-2 p,
body footer.site-footer .footer-widget-col-3 p,
body footer.site-footer .footer-widget-col-4 p,
body footer.site-footer .footer-dynamic-col a,
body footer.site-footer .footer-dynamic-col li,
body footer.site-footer .footer-dynamic-col p,
body footer.site-footer .footer-dynamic-content {
  font-size: 12.5px !important;
}

/* Footer force all dynamic/fallback columns back to same compact size */
body footer.site-footer .footer-widget-col-4 .widget-title,
body footer.site-footer .footer-widget-col-4 p,
body footer.site-footer .footer-widget-col-4 a,
body footer.site-footer .footer-widget-col-4 li,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h1,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h2,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h3,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col .footer-dynamic-content h4,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col p,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-2.footer-dynamic-col li,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col .footer-dynamic-content h1,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col .footer-dynamic-content h2,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col .footer-dynamic-content h3,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col .footer-dynamic-content h4,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col p,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-3.footer-dynamic-col li,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col .footer-dynamic-content h1,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col .footer-dynamic-content h2,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col .footer-dynamic-content h3,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col .footer-dynamic-content h4,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col p,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col a,
body footer.site-footer .footer-widget-col-4.footer-dynamic-col li {
  font-size: 12.5px !important;
}

/* Cenovnik page Figma layout */
body.cenovnik2 {
  position: relative;
  overflow-x: hidden;
  background-color: #f2f7fa !important;
  background-image: url("/template/stomatologbg/assets/images/price-layer-repeat.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.cenovnik2::before,
body.cenovnik2::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

body.cenovnik2::before {
  left: 0;
  right: 0;
  top: 0;
  height: 520px;
  background: url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1920px auto no-repeat;
  opacity: .16;
}

body.cenovnik2::after {
  content: none;
  display: none;
}

body.cenovnik2 header,
body.cenovnik2 .simple-page-header,
body.cenovnik2 .price-list-section,
body.cenovnik2 footer {
  position: relative;
  z-index: 1;
}

body.cenovnik2 .simple-page-header {
  min-height: 250px !important;
  padding: 66px 0 36px !important;
  background: transparent !important;
  background-image: none !important;
}

body.cenovnik2 .simple-page-header .container {
  max-width: 1450px !important;
}

body.cenovnik2 .simple-page-header__pill {
  width: 768px !important;
  min-height: 124px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, .52) !important;
  backdrop-filter: blur(4.45px) !important;
  -webkit-backdrop-filter: blur(4.45px) !important;
}

body.cenovnik2 .simple-page-header__pill h1 {
  margin: 0 0 10px !important;
  color: #1E2640 !important;
  font-family: "Spectral", serif !important;
  font-size: 60px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: .01em !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 21.1px #fff !important;
}

body.cenovnik2 .simple-page-header__breadcrumb,
body.cenovnik2 .simple-page-header__breadcrumb a,
body.cenovnik2 .simple-page-header__breadcrumb span {
  color: #1E2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  text-shadow: 0 0 18px #fff !important;
}

body.cenovnik2 .price-list-section {
  padding: 0 0 88px !important;
  background: transparent !important;
}

body.cenovnik2 .price-list-section__intro {
  max-width: 1348px !important;
  margin-bottom: 24px !important;
}

body.cenovnik2 .price-list-box {
  padding: 0 0 34px !important;
  background: transparent !important;
  background-image: none !important;
}

body.cenovnik2 .price-list-box .container {
  max-width: 1348px !important;
}

body.cenovnik2 .price-list-box__card {
  padding: 13px 28px 26px !important;
  border-radius: 12px !important;
  background: rgba(184, 195, 219, .9) !important;
  box-shadow: 0 13px 22px rgba(74, 78, 105, .22) !important;
}

body.cenovnik2 .price-list-box__card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 360px;
  height: 506px;
  background: url("/template/stomatologbg/assets/images/price-list-corner-motif.png") center / contain no-repeat;
  opacity: .16;
  pointer-events: none;
  z-index: 1;
}

body.cenovnik2 .price-list-box__card h2 {
  margin: 0 0 11px !important;
  color: #4A4E69 !important;
  font-family: "Lora", serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
}

body.cenovnik2 .price-list-box__table-wrap {
  border-radius: 0 !important;
  background: rgba(249, 245, 236, .88) !important;
}

body.cenovnik2 .price-list-box__table-wrap::after {
  content: none !important;
}

body.cenovnik2 .price-list-box__table {
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

body.cenovnik2 .price-list-box__table th,
body.cenovnik2 .price-list-box__table td {
  padding: 8px 18px !important;
  border-bottom: 1px solid rgba(74, 78, 105, .18) !important;
  border-right: 1px solid rgba(74, 78, 105, .18) !important;
  font-weight: 400 !important;
}

body.cenovnik2 .price-list-box__table thead th {
  background: rgba(227, 215, 215, .9) !important;
  color: #4A4E69 !important;
  font-weight: 400 !important;
}

body.cenovnik2 .price-list-box__table th:first-child,
body.cenovnik2 .price-list-box__table td:first-child {
  width: 76px !important;
  text-align: center !important;
}

body.cenovnik2 .price-list-box__table th:last-child,
body.cenovnik2 .price-list-box__table td:last-child {
  width: 210px !important;
  text-align: right !important;
}

body.cenovnik2 .price-list-box__table tbody tr:last-child td {
  border-bottom: 0 !important;
}

body.cenovnik2 .price-list-box__card::after {
  content: none !important;
}

body.cenovnik2 .price-list-box__flower {
  display: block !important;
  right: 20px !important;
  top: 20px !important;
  width: 360px !important;
  max-width: 30vw !important;
  opacity: .16 !important;
  z-index: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

@media (max-width: 991px) {
  body.cenovnik2 .simple-page-header {
    min-height: 210px !important;
    padding: 52px 0 30px !important;
  }

  body.cenovnik2 .simple-page-header__pill {
    width: 100% !important;
    padding: 22px 28px !important;
  }

  body.cenovnik2 .simple-page-header__pill h1 {
    font-size: 42px !important;
  }

  body.cenovnik2 .price-list-box__card {
    padding: 12px 12px 18px !important;
  }

  body.cenovnik2 .price-list-box__table {
    font-size: 12px !important;
  }

  body.cenovnik2 .price-list-box__table th,
body.cenovnik2 .price-list-box__table td {
    padding: 7px 8px !important;
  }
}

/* General single page uses gallery page shell */
body.general-page {
  position: relative;
  overflow-x: hidden;
  background: #f3f7fa !important;
}

body.general-page::before,
body.general-page::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

body.general-page::before {
  top: 0;
  left: 0;
  right: 0;
  height: 760px;
  background:
    linear-gradient(180deg, rgba(243, 247, 250, 0) 0%, rgba(243, 247, 250, 0) 56%, #f3f7fa 100%),
    url("/template/stomatologbg/assets/images/gallery-top-motif.png") center top / cover no-repeat;
  opacity: .72;
}

body.general-page::after {
  left: -118px;
  top: 850px;
  width: 360px;
  height: 650px;
  background-image: url("/template/stomatologbg/assets/images/gallery-left-leaf.png");
  opacity: .58;
}

body.general-page header,
body.general-page .simple-page-header,
body.general-page .page-content,
body.general-page footer {
  position: relative;
  z-index: 1;
}

body.general-page .simple-page-header {
  min-height: 205px !important;
  padding: 96px 0 24px !important;
  background: transparent !important;
  background-image: none !important;
}

body.general-page .page-content {
  background: transparent !important;
}

body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) {
  position: relative;
  overflow-x: hidden;
  background: #f3f7fa !important;
}

body.has-no-image-header.page-skin:not(.gallery-page):not(.general-page):not(.cenovnik2)::before,
body.has-no-image-header.page-skin:not(.gallery-page):not(.general-page):not(.cenovnik2)::after {
  content: none !important;
  display: none !important;
}

body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page)::before,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page)::before {
  top: 0;
  left: 0;
  right: 0;
  height: 760px;
  background:
    linear-gradient(180deg, rgba(243, 247, 250, 0) 0%, rgba(243, 247, 250, 0) 56%, #f3f7fa 100%),
    url("/template/stomatologbg/assets/images/gallery-top-motif.png") center top / cover no-repeat;
  opacity: .72;
}

body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page)::after {
  left: -118px;
  top: 850px;
  width: 360px;
  height: 650px;
  background-image: url("/template/stomatologbg/assets/images/gallery-left-leaf.png");
  opacity: .58;
}

body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) header,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) footer {
  position: relative;
  z-index: 1;
}

body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header {
  min-height: 205px !important;
  padding: 96px 0 24px !important;
  background: transparent !important;
  background-image: none !important;
}

@media (max-width: 991px) {
  body.general-page .simple-page-header {
    min-height: 190px !important;
    padding: 92px 0 22px !important;
  }

  body.general-page::before {
    height: 520px;
  }

  body.general-page::after {
    top: 680px;
    left: -150px;
    width: 280px;
    height: 505px;
    opacity: .42;
  }

  body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header {
    min-height: 190px !important;
    padding: 92px 0 22px !important;
  }
}

/* General page shell should control section backgrounds */
body.general-page .page-content > section,
body.general-page .page-content > div[class*="section"],
body.general-page .page-content > div[class*="component"],
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > section,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="section"],
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="component"] {
  background: transparent !important;
  background-image: none !important;
}

body.general-page .page-content > section::before,
body.general-page .page-content > section::after,
body.general-page .page-content > div[class*="section"]::before,
body.general-page .page-content > div[class*="section"]::after,
body.general-page .page-content > div[class*="component"]::before,
body.general-page .page-content > div[class*="component"]::after,
body.general-page .page-content > section > .container::before,
body.general-page .page-content > section > .container::after,
body.general-page .page-content > div[class*="section"] > .container::before,
body.general-page .page-content > div[class*="section"] > .container::after,
body.general-page .page-content > div[class*="component"] > .container::before,
body.general-page .page-content > div[class*="component"] > .container::after,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > section::before,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > section::after,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="section"]::before,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="section"]::after,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="component"]::before,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="component"]::after,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > section > .container::before,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > section > .container::after,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="section"] > .container::before,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="section"] > .container::after,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="component"] > .container::before,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="component"] > .container::after {
  content: none !important;
  display: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.general-page .page-content > section > .container,
body.general-page .page-content > div[class*="section"] > .container,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > section > .container,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .page-content > div[class*="section"] > .container {
  position: relative;
  z-index: 1;
}

/* Contact page final Figma alignment */
body.kontakt,
body.contact {
  position: relative !important;
  overflow-x: hidden !important;
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/contact-page-bg.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 100vw auto !important;
}

body.kontakt::before,
body.contact::before {
  content: "" !important;
  position: absolute !important;
  right: -12px !important;
  top: 0 !important;
  width: 590px !important;
  height: 820px !important;
  background: url("/template/stomatologbg/assets/images/contact-page-motif-right.png") center top / contain no-repeat !important;
  opacity: 0.16 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.kontakt::after,
body.contact::after {
  content: "" !important;
  position: absolute !important;
  left: -118px !important;
  top: 665px !important;
  width: 360px !important;
  height: 650px !important;
  background: url("/template/stomatologbg/assets/images/gallery-left-leaf.png") left top / contain no-repeat !important;
  opacity: 0.16 !important;
  pointer-events: none !important;
  transform: none !important;
  z-index: 0 !important;
}

body.kontakt header,
body.kontakt .simple-page-header,
body.kontakt .contact-card-section,
body.kontakt .map-section,
body.kontakt footer,
body.contact header,
body.contact .simple-page-header,
body.contact .contact-card-section,
body.contact .map-section,
body.contact footer {
  position: relative !important;
  z-index: 1 !important;
}

body.kontakt .simple-page-header,
body.contact .simple-page-header {
  min-height: 358px !important;
  padding: 174px 0 0 !important;
  background: transparent !important;
  background-image: none !important;
}

body.kontakt .simple-page-header .container,
body.contact .simple-page-header .container,
body.kontakt .contact-card-section .container,
body.contact .contact-card-section .container {
  width: min(1466px, calc(100vw - 96px)) !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.kontakt .simple-page-header__pill,
body.contact .simple-page-header__pill {
  width: 783px !important;
  max-width: 100% !important;
  min-height: 128px !important;
  padding: 24px 96px 22px !important;
  border-radius: 36px !important;
  background: rgba(255, 255, 255, 0.56) !important;
  box-shadow: none !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

body.kontakt .simple-page-header__pill h1,
body.contact .simple-page-header__pill h1 {
  margin: 0 0 7px !important;
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-size: 58px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.kontakt .simple-page-header__breadcrumb,
body.kontakt .simple-page-header__breadcrumb a,
body.kontakt .simple-page-header__breadcrumb span,
body.contact .simple-page-header__breadcrumb,
body.contact .simple-page-header__breadcrumb a,
body.contact .simple-page-header__breadcrumb span {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

body.kontakt .contact-card-section,
body.contact .contact-card-section {
  margin-top: 0 !important;
  padding: 158px 0 146px !important;
  background: transparent !important;
  background-image: none !important;
}

body.kontakt .contact-card-section::before,
body.contact .contact-card-section::before {
  content: "" !important;
  position: absolute !important;
  left: max(-38px, calc(50% - 970px)) !important;
  top: 292px !important;
  width: 360px !important;
  height: 650px !important;
  background: url("/template/stomatologbg/assets/images/gallery-left-leaf.png") left top / contain no-repeat !important;
  opacity: 0.12 !important;
  transform: none !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.kontakt .contact-card,
body.contact .contact-card {
  display: grid !important;
  grid-template-columns: 688px minmax(0, 1fr) !important;
  width: 100% !important;
  min-height: 626px !important;
  overflow: hidden !important;
  border-radius: 42px 60px 60px 42px !important;
  background: #b9c2d3 !important;
  box-shadow: none !important;
}

body.kontakt .contact-card__info,
body.contact .contact-card__info {
  min-height: 626px !important;
  padding: 58px 60px 48px 56px !important;
  border-radius: 42px !important;
  background: #5d6990 !important;
  color: #f9f5ec !important;
}

body.kontakt .contact-card__info h2,
body.contact .contact-card__info h2 {
  max-width: 610px !important;
  margin: 0 !important;
  color: #f9f5ec !important;
  font-family: "Spectral", serif !important;
  font-size: 48px !important;
  font-weight: 500 !important;
  line-height: 1.22 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.kontakt .contact-card__info-list,
body.contact .contact-card__info-list {
  display: grid !important;
  gap: 31px !important;
  margin-top: 35px !important;
  padding-left: 58px !important;
}

body.kontakt .contact-card__info-item,
body.contact .contact-card__info-item {
  display: grid !important;
  grid-template-columns: 24px 1fr !important;
  gap: 24px !important;
  align-items: start !important;
}

body.kontakt .contact-card__icon,
body.contact .contact-card__icon {
  width: 24px !important;
  height: 24px !important;
  margin-top: 2px !important;
  color: #f9f5ec !important;
}

body.kontakt .contact-card__info-item h3,
body.contact .contact-card__info-item h3 {
  margin: 0 0 7px !important;
  color: #f9f5ec !important;
  font-family: "Spectral", serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

body.kontakt .contact-card__info-item p,
body.contact .contact-card__info-item p {
  margin: 0 !important;
  color: #f9f5ec !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body.kontakt .contact-card__form-panel,
body.contact .contact-card__form-panel {
  min-height: 626px !important;
  padding: 68px 36px 45px 76px !important;
  overflow: hidden !important;
  background: #b9c2d3 !important;
  color: #4a4e69 !important;
}

body.kontakt .contact-card__form-panel::before,
body.contact .contact-card__form-panel::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-image: url("/template/stomatologbg/assets/images/contact-form-dd-motif.png") !important;
  background-repeat: no-repeat !important;
  background-position: right 6px top -320px !important;
  background-size: 725px auto !important;
  opacity: 0.56 !important;
  mix-blend-mode: soft-light !important;
  pointer-events: none !important;
}

body.kontakt .contact-card__form-panel h2,
body.contact .contact-card__form-panel h2 {
  position: relative !important;
  z-index: 1 !important;
  margin: 0 0 55px !important;
  color: #f9f5ec !important;
  font-family: "Spectral", serif !important;
  font-size: 48px !important;
  font-weight: 500 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body.kontakt .contact-card__form,
body.contact .contact-card__form {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  max-width: 655px !important;
  gap: 16px !important;
}

body.kontakt .contact-card__form label,
body.contact .contact-card__form label {
  margin: 0 !important;
}

body.kontakt .contact-card__form span,
body.contact .contact-card__form span {
  color: #4a4e69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  letter-spacing: 0 !important;
}

body.kontakt .contact-card__form input,
body.kontakt .contact-card__form textarea,
body.contact .contact-card__form input,
body.contact .contact-card__form textarea {
  width: 100% !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(249, 245, 236, 0.92) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  outline: 0 !important;
}

body.kontakt .contact-card__form input,
body.contact .contact-card__form input {
  height: 26px !important;
}

body.kontakt .contact-card__form textarea,
body.contact .contact-card__form textarea {
  min-height: 145px !important;
  resize: vertical !important;
}

body.kontakt .contact-card__form button,
body.contact .contact-card__form button {
  justify-self: center !important;
  width: min(432px, 100%) !important;
  height: 64px !important;
  margin-top: 11px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #1e2640 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 108px !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.15em !important;
  box-shadow: none !important;
}

body.kontakt .contact-card__form button span,
body.contact .contact-card__form button span {
  color: #ffffff !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1 !important;
  letter-spacing: inherit !important;
}

body.kontakt .contact-card__form button img,
body.contact .contact-card__form button img {
  width: 25px !important;
  height: 25px !important;
  object-fit: contain !important;
}

body.kontakt .map-section,
body.contact .map-section {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

body.kontakt .map-section__frame,
body.contact .map-section__frame {
  width: 100% !important;
  height: 504px !important;
  overflow: hidden !important;
}

body.kontakt .map-section__frame iframe,
body.contact .map-section__frame iframe {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  border: 0 !important;
}

@media (max-width: 991px) {
  body.kontakt .simple-page-header,
  body.contact .simple-page-header {
    min-height: 250px !important;
    padding: 116px 0 0 !important;
  }

  body.kontakt .simple-page-header .container,
  body.contact .simple-page-header .container,
  body.kontakt .contact-card-section .container,
  body.contact .contact-card-section .container {
    width: min(100% - 32px, 1466px) !important;
  }

  body.kontakt .simple-page-header__pill,
  body.contact .simple-page-header__pill {
    width: 100% !important;
    min-height: 104px !important;
    padding: 24px !important;
    border-radius: 26px !important;
  }

  body.kontakt .simple-page-header__pill h1,
  body.contact .simple-page-header__pill h1 {
    font-size: 42px !important;
  }

  body.kontakt .contact-card-section,
  body.contact .contact-card-section {
    padding: 72px 0 80px !important;
  }

  body.kontakt .contact-card,
  body.contact .contact-card {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    border-radius: 32px !important;
  }

  body.kontakt .contact-card__info,
  body.contact .contact-card__info,
  body.kontakt .contact-card__form-panel,
  body.contact .contact-card__form-panel {
    min-height: 0 !important;
    padding: 42px 28px !important;
    border-radius: 32px !important;
  }

  body.kontakt .contact-card__info h2,
  body.kontakt .contact-card__form-panel h2,
  body.contact .contact-card__info h2,
  body.contact .contact-card__form-panel h2 {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }

  body.kontakt .contact-card__info-list,
  body.contact .contact-card__info-list {
    padding-left: 0 !important;
    gap: 24px !important;
  }

  body.kontakt .contact-card__form button,
  body.contact .contact-card__form button {
    gap: 54px !important;
  }
}

/* Contact full-width background and edge motifs */
body.kontakt .page-content,
body.contact .page-content {
  position: relative !important;
  z-index: 1 !important;
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/contact-page-bg.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 100vw auto !important;
}

body.kontakt::before,
body.contact::before {
  right: 0 !important;
  top: 0 !important;
  width: 403px !important;
  height: 565px !important;
  background-image: url("/template/stomatologbg/assets/images/contact-page-right-edge-motif.png") !important;
  background-position: right top !important;
  background-size: contain !important;
  opacity: 0.16 !important;
}

body.kontakt::after,
body.contact::after {
  content: none !important;
  display: none !important;
}

body.kontakt .contact-card-section,
body.contact .contact-card-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/contact-page-bg.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 100vw auto !important;
}

body.kontakt .contact-card-section::before,
body.contact .contact-card-section::before {
  left: max(0px, calc(50% - 970px)) !important;
  top: 286px !important;
  width: 360px !important;
  height: 650px !important;
  background-image: url("/template/stomatologbg/assets/images/gallery-left-leaf.png") !important;
  background-position: left top !important;
  background-size: contain !important;
  opacity: 0.22 !important;
}

body.kontakt .contact-card,
body.contact .contact-card {
  position: relative !important;
  z-index: 1 !important;
}

body.kontakt .map-section,
body.contact .map-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Blog header should blend with the page background */
body.blog-page-list header,
body.single-blog-page header,
body.blog-page-list header .topbar,
body.single-blog-page header .topbar {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Slightly narrower blog boxes */
@media (min-width: 1200px) {
  body.blog-page-list .simple-page-header .container {
    max-width: 1240px !important;
  }

  body.blog-page-list .simple-page-header__pill {
    width: min(540px, 100%) !important;
  }

  body.blog-page-list .blog-overview .container {
    max-width: 1240px !important;
  }

  body.blog-page-list .blog-overview__grid {
    gap: 26px !important;
  }

  body.single-blog-page .singleblog .col-md-8 {
    flex: 0 0 66.666667% !important;
    max-width: 900px !important;
  }
}

/* Blog top motif and compact pagination */
body.blog-page-list::before,
body.single-blog-page::before {
  height: 720px !important;
  background:
    linear-gradient(180deg, rgba(249, 245, 236, 0.10) 0%, rgba(249, 245, 236, 0.26) 42%, rgba(249, 245, 236, 0.66) 74%, rgba(249, 245, 236, 0.98) 100%),
    url("/template/stomatologbg/assets/images/blog-top-motif-figma.png") center top / cover no-repeat !important;
  opacity: 1 !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.45) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.45) 84%, transparent 100%) !important;
}

body.blog-page-list .blogpage .pagination {
  margin: 46px 0 0 !important;
  gap: 8px !important;
}

body.blog-page-list .blogpage .page-link {
  width: 42px !important;
  height: 42px !important;
  font-size: 18px !important;
  box-shadow: 0 2px 5px rgba(39, 55, 82, 0.04) !important;
}

body.blog-page-list .blogpage .page-link:focus {
  box-shadow: 0 0 0 2px rgba(93, 105, 144, 0.16) !important;
}

body.blog-page-list .blogpage .page-link span {
  transform: translateY(-1px) !important;
}

/* About page: keep the image header and services section visually continuous. */
body.o-nama .page-header-image {
  min-height: 805px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
  background: #eef2f6 !important;
}

body.o-nama .page-header-image__bg {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

body.o-nama .page-header-image__shade {
  inset: auto 0 0 !important;
  height: 430px !important;
  background: linear-gradient(
    180deg,
    rgba(238, 242, 246, 0) 0%,
    rgba(238, 242, 246, 0.26) 38%,
    rgba(238, 242, 246, 0.86) 72%,
    #eef2f6 100%
  ) !important;
}

body.o-nama .page-header-image .container {
  max-width: 1450px !important;
  min-height: 805px !important;
  padding-top: 0 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 170px !important;
  display: flex !important;
  align-items: flex-end !important;
}

body.o-nama .page-header-image__pill {
  width: min(768px, 100%) !important;
  min-height: 124px !important;
  margin-left: 18px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.68) !important;
  backdrop-filter: blur(4.45px) !important;
  -webkit-backdrop-filter: blur(4.45px) !important;
  box-shadow: none !important;
}

body.o-nama .page-header-image__pill h1 {
  margin: 0 0 8px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 60px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 21px #fff !important;
}

body.o-nama .page-header-image__pill p,
body.o-nama .page-header-image__breadcrumb,
body.o-nama .page-header-image__breadcrumb a,
body.o-nama .page-header-image__breadcrumb span {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  text-shadow: 0 0 18px #fff !important;
}

body.o-nama .page-header-image + .service-menu-section {
  margin-top: -190px !important;
  padding-top: 170px !important;
  background-color: transparent !important;
  background-image:
    linear-gradient(180deg, rgba(238, 242, 246, 0) 0%, rgba(238, 242, 246, 0.9) 19%, #eef2f6 42%),
    url("/template/stomatologbg/assets/images/about-bg-top.png") !important;
  background-position: center top, center top !important;
  background-size: 100% 260px, 1920px auto !important;
  background-repeat: no-repeat, repeat-y !important;
}

body.o-nama .service-menu-section__grid {
  gap: 28px 30px !important;
  max-width: 1370px !important;
}

body.o-nama .service-menu-section__card {
  max-width: 308px !important;
  min-height: 158px !important;
  border-radius: 16px !important;
}

body.o-nama .service-menu-section__image {
  height: 108px !important;
}

body.o-nama .service-menu-section__title {
  min-height: 50px !important;
  padding: 10px 16px !important;
  font-size: 17px !important;
}

@media (max-width: 991px) {
  body.o-nama .page-header-image {
    min-height: 430px !important;
  }

  body.o-nama .page-header-image .container {
    min-height: 430px !important;
    padding-bottom: 36px !important;
  }

  body.o-nama .page-header-image__pill {
    margin-left: 0 !important;
    padding: 20px 28px !important;
  }

  body.o-nama .page-header-image__pill h1 {
    font-size: 34px !important;
  }

  body.o-nama .page-header-image + .service-menu-section {
    margin-top: -96px !important;
    padding-top: 118px !important;
  }

  body.o-nama .service-menu-section__card {
    max-width: 308px !important;
  }
}

/* Team page final pass: page-level background, motifs, and seamless header handoff. */
body.nas-tim {
  position: relative !important;
  overflow-x: hidden !important;
  background: #eef2f6 !important;
}

body.nas-tim::before,
body.nas-tim::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body.nas-tim .page-content::before,
body.nas-tim .page-content::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  z-index: 1 !important;
}

body.nas-tim .page-content::before {
  right: max(18px, calc(50% - 920px)) !important;
  top: 850px !important;
  width: 430px !important;
  height: 492px !important;
  background-image: url("/template/stomatologbg/assets/images/nas-tim-motif-right.png") !important;
  opacity: 0.58 !important;
  z-index: 1 !important;
}

body.nas-tim .page-content::after {
  left: max(-70px, calc(50% - 980px)) !important;
  top: 1550px !important;
  width: 700px !important;
  height: 982px !important;
  background-image: url("/template/stomatologbg/assets/images/nas-tim-motif-left.png") !important;
  opacity: 0.6 !important;
  z-index: 1 !important;
}

body.nas-tim .page-content,
body.nas-tim footer {
  position: relative !important;
}

body.nas-tim header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  z-index: 20 !important;
  background: transparent !important;
}

body.nas-tim .page-content,
body.nas-tim footer {
  z-index: 1 !important;
}

body.nas-tim .page-content {
  background-color: #eef2f6 !important;
  background-image: none !important;
}

body.nas-tim .page-content > section {
  position: relative !important;
}

body.nas-tim .page-header-image {
  height: min(1233px, 64.22vw) !important;
  min-height: 760px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
  background: #eef2f6 !important;
}

body.nas-tim .page-header-image__bg {
  height: 100% !important;
  object-fit: contain !important;
  object-position: center top !important;
}

body.nas-tim .page-header-image__shade {
  inset: auto 0 0 !important;
  height: 360px !important;
  background: linear-gradient(
    180deg,
    rgba(238, 242, 246, 0) 0%,
    rgba(238, 242, 246, 0.18) 22%,
    rgba(238, 242, 246, 0.72) 64%,
    #eef2f6 100%
  ) !important;
}

body.nas-tim .page-header-image .container {
  max-width: 1450px !important;
  min-height: 100% !important;
  height: 100% !important;
  padding-top: 0 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}

body.nas-tim .page-header-image__pill {
  width: min(768px, 100%) !important;
  min-height: 124px !important;
  margin-left: 18px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  backdrop-filter: blur(5px) saturate(100%) !important;
  /*background: rgba(255, 255, 255, 0.14) !important;*/
  /*backdrop-filter: blur(9px) saturate(108%) !important;*/
  -webkit-backdrop-filter: blur(9px) saturate(108%) !important;
  box-shadow: none !important;
  transform: translateY(-40px) !important;
}

body.nas-tim .page-header-image__pill h1 {
  margin: 0 0 8px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 60px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 21px #fff !important;
}

body.nas-tim .page-header-image__pill p,
body.nas-tim .page-header-image__breadcrumb,
body.nas-tim .page-header-image__breadcrumb a,
body.nas-tim .page-header-image__breadcrumb span {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  text-shadow: 0 0 18px #fff !important;
}

body.nas-tim .page-header-image + .team-members-section {
  margin-top: -370px !important;
  padding-top: 40px !important;
}

body.nas-tim .team-members-section {
  overflow: visible !important;
  background-color: transparent !important;
  background-image: none !important;
  background-position: center top !important;
  background-size: auto !important;
  background-repeat: no-repeat !important;
}

body.nas-tim .team-members-section::before,
body.nas-tim .team-members-section::after {
  display: none !important;
}

body.nas-tim .team-members-section .container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1470px !important;
}

body.nas-tim .team-members-section__grid {
  gap: 78px 64px !important;
}

@media (max-width: 991px) {
  body.nas-tim .page-content::before {
    right: -86px !important;
    top: 660px !important;
    width: 310px !important;
    height: 355px !important;
    opacity: 0.46 !important;
  }

  body.nas-tim .page-content::after {
    left: -95px !important;
    top: 1180px !important;
    width: 480px !important;
    height: 674px !important;
    opacity: 0.52 !important;
  }

  body.nas-tim .page-header-image {
    height: min(820px, 64.22vw) !important;
    min-height: 500px !important;
  }

  body.nas-tim .page-header-image .container {
    min-height: 100% !important;
    height: 100% !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }

  body.nas-tim .page-header-image__pill {
    margin-left: 0 !important;
    padding: 20px 28px !important;
    background: rgba(255, 255, 255, 0.16) !important;
    transform: translateY(-16px) !important;
  }

  body.nas-tim .page-header-image__pill h1 {
    font-size: 34px !important;
  }

  body.nas-tim .page-header-image + .team-members-section {
    margin-top: -244px !important;
    padding-top: 30px !important;
  }
}

/* Contact layer skin: page-level background and motifs. */
body.kontakt,
body.contact {
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/contact-layer-bg-820.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.kontakt .page-content,
body.contact .page-content,
body.kontakt .simple-page-header,
body.contact .simple-page-header,
body.kontakt .contact-card-section,
body.contact .contact-card-section {
  background-color: transparent !important;
  background-image: none !important;
}

body.kontakt::before,
body.contact::before {
  content: "" !important;
  position: absolute !important;
  right: max(-84px, calc(50% - 1038px)) !important;
  top: 0 !important;
  width: 562px !important;
  height: 649px !important;
  background: url("/template/stomatologbg/assets/images/contact-layer-motif-top-right.png") right top / contain no-repeat !important;
  opacity: 0.72 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.kontakt::after,
body.contact::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body.kontakt header,
body.kontakt .page-content,
body.kontakt footer,
body.contact header,
body.contact .page-content,
body.contact footer {
  position: relative !important;
  z-index: 1 !important;
}

body.kontakt .contact-card-section::before,
body.contact .contact-card-section::before {
  content: "" !important;
  position: absolute !important;
  left: max(-150px, calc(50% - 1030px)) !important;
  top: 250px !important;
  width: 568px !important;
  height: 623px !important;
  background: url("/template/stomatologbg/assets/images/contact-layer-motif-card-left.png") left top / contain no-repeat !important;
  opacity: 0.62 !important;
  transform: none !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.kontakt .contact-card-section .container,
body.contact .contact-card-section .container {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 991px) {
  body.kontakt::before,
  body.contact::before {
    right: -190px !important;
    width: 420px !important;
    height: 485px !important;
    opacity: 0.58 !important;
  }

  body.kontakt .contact-card-section::before,
  body.contact .contact-card-section::before {
    left: -250px !important;
    top: 120px !important;
    width: 420px !important;
    height: 461px !important;
    opacity: 0.48 !important;
  }
}

/* Admin-selected page skins. These are page-level layers, independent of components. */
body.page-skin {
  position: relative !important;
}

body.page-skin--contact {
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/contact-layer-bg-820.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.page-skin--contact .page-content,
body.page-skin--contact .simple-page-header,
body.page-skin--contact .page-content > section,
body.page-skin--contact .page-content > div[class*="section"],
body.page-skin--contact .page-content > div[class*="component"] {
  background-color: transparent !important;
  background-image: none !important;
}

body.page-skin--contact header,
body.page-skin--contact .page-content,
body.page-skin--contact footer {
  position: relative !important;
  z-index: 1 !important;
}

body.page-skin--contact::before,
body.page-skin--contact .page-content::before {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.page-skin--contact::before {
  right: max(-84px, calc(50% - 1038px)) !important;
  top: 0 !important;
  width: 562px !important;
  height: 649px !important;
  background-image: url("/template/stomatologbg/assets/images/contact-layer-motif-top-right.png") !important;
  background-position: right top !important;
  opacity: 0.72 !important;
}

body.page-skin--contact::after {
  content: none !important;
  display: none !important;
}

body.page-skin--contact .page-content {
  overflow: hidden !important;
}

body.page-skin--contact .page-content::before {
  left: max(-150px, calc(50% - 1030px)) !important;
  top: 470px !important;
  width: 568px !important;
  height: 623px !important;
  background-image: url("/template/stomatologbg/assets/images/contact-layer-motif-card-left.png") !important;
  background-position: left top !important;
  opacity: 0.62 !important;
}

body.page-skin--contact .page-content > section,
body.page-skin--contact .page-content > div[class*="section"],
body.page-skin--contact .page-content > div[class*="component"],
body.page-skin--contact .page-content > section > .container,
body.page-skin--contact .page-content > div[class*="section"] > .container,
body.page-skin--contact .page-content > div[class*="component"] > .container {
  position: relative !important;
  z-index: 1 !important;
}

body.page-skin--contact .contact-card-section::before {
  content: none !important;
  display: none !important;
}

body.page-skin--team {
  background-color: #eef2f6 !important;
}

body.page-skin--team::before,
body.page-skin--team::after {
  content: none !important;
  display: none !important;
}

body.page-skin--team .page-content {
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  background-color: #eef2f6 !important;
}

body.page-skin--team .page-content::before,
body.page-skin--team .page-content::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.page-skin--team .page-content::before {
  right: max(-120px, calc(50% - 1010px)) !important;
  top: 250px !important;
  width: 520px !important;
  height: 596px !important;
  background-image: url("/template/stomatologbg/assets/images/nas-tim-motif-right.png") !important;
  opacity: 0.14 !important;
}

body.page-skin--team .page-content::after {
  left: max(-185px, calc(50% - 1120px)) !important;
  top: 880px !important;
  width: 540px !important;
  height: 757px !important;
  background-image: url("/template/stomatologbg/assets/images/nas-tim-motif-left.png") !important;
  opacity: 0.12 !important;
}

body.nas-tim.page-skin--team .page-content {
  overflow: visible !important;
  background-color: transparent !important;
}

body.nas-tim.page-skin--team .team-members-section {
  overflow: visible !important;
  background-color: transparent !important;
}

body.page-skin--about {
  background-color: #eef4f7 !important;
  background-image: url("/template/stomatologbg/assets/images/about-bg-top.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.page-skin--about .page-content,
body.page-skin--about .simple-page-header,
body.page-skin--about .page-content > section,
body.page-skin--about .page-content > div[class*="section"],
body.page-skin--about .page-content > div[class*="component"] {
  background-color: transparent !important;
  background-image: none !important;
}

body.page-skin--about::before,
body.page-skin--about::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.page-skin--about::before {
  left: max(-115px, calc(50% - 1060px)) !important;
  top: 430px !important;
  width: 560px !important;
  height: 560px !important;
  background-image: url("/template/stomatologbg/assets/images/about-motif-group-left.png") !important;
  opacity: 0.16 !important;
}

body.page-skin--about::after {
  right: max(-110px, calc(50% - 1060px)) !important;
  top: 240px !important;
  width: 500px !important;
  height: 500px !important;
  background-image: url("/template/stomatologbg/assets/images/about-motif-frame-right.png") !important;
  opacity: 0.13 !important;
}

@media (max-width: 991px) {
  body.page-skin--contact::before {
    right: -190px !important;
    width: 420px !important;
    height: 485px !important;
    opacity: 0.58 !important;
  }

  body.page-skin--contact .page-content::before {
    left: -250px !important;
    top: 360px !important;
    width: 420px !important;
    height: 461px !important;
    opacity: 0.48 !important;
  }

  body.page-skin--team .page-content::before {
    right: -210px !important;
    width: 390px !important;
    height: 447px !important;
  }

  body.page-skin--team .page-content::after {
    left: -260px !important;
    top: 760px !important;
    width: 420px !important;
    height: 589px !important;
  }
}

/* General single page Figma layer */
body.general-page {
  background-color: #f2f7fa !important;
  background-image: url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") !important;
  background-repeat: repeat-y !important;
  background-position: center 1220px !important;
  background-size: 1920px auto !important;
  overflow-x: hidden !important;
}

body.general-page::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 1220px !important;
  background: url("/template/stomatologbg/assets/images/general-page-top-bg.png") center top / 1920px auto no-repeat !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.general-page::after {
  content: none !important;
  display: none !important;
}

body.general-page header,
body.general-page .simple-page-header,
body.general-page .page-content,
body.general-page footer {
  position: relative !important;
  z-index: 1 !important;
}

body.general-page .simple-page-header {
  background-color: transparent !important;
  background-image: none !important;
}

body.general-page .page-content {
  position: relative !important;
  overflow: hidden !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.general-page .page-content::before,
body.general-page .page-content::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.general-page .page-content::before {
  left: max(-130px, calc(50% - 1110px)) !important;
  top: 720px !important;
  width: 411px !important;
  height: 742px !important;
  background-image: url("/template/stomatologbg/assets/images/general-page-left-motif.png") !important;
  background-position: left top !important;
  opacity: 0.38 !important;
}

body.general-page .page-content::after {
  right: max(42px, calc(50% - 884px)) !important;
  bottom: 18px !important;
  width: 232px !important;
  height: 233px !important;
  background-image: url("/template/stomatologbg/assets/images/general-page-bottom-right-motif.png") !important;
  background-position: right bottom !important;
  opacity: 0.24 !important;
}

body.general-page .page-content > section,
body.general-page .page-content > div[class*="section"],
body.general-page .page-content > div[class*="component"],
body.general-page .page-content > section > .container,
body.general-page .page-content > div[class*="section"] > .container,
body.general-page .page-content > div[class*="component"] > .container {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 991px) {
  body.general-page {
    background-position: center 620px !important;
    background-size: 1200px auto !important;
  }

  body.general-page::before {
    height: 620px !important;
    background-size: 1200px auto !important;
  }

  body.general-page .page-content::before {
    left: -185px !important;
    top: 560px !important;
    width: 300px !important;
    height: 542px !important;
    opacity: 0.28 !important;
  }

  body.general-page .page-content::after {
    right: -18px !important;
    bottom: 10px !important;
    width: 150px !important;
    height: 151px !important;
    opacity: 0.2 !important;
  }
}

/* General single page intentionally shares the Gallery layer. */
body.general-page {
  background: #f3f7fa !important;
  background-image: none !important;
}

body.general-page::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  height: 760px !important;
  background:
    linear-gradient(180deg, rgba(243, 247, 250, 0) 0%, rgba(243, 247, 250, 0) 56%, #f3f7fa 100%),
    url("/template/stomatologbg/assets/images/gallery-top-motif.png") center top / cover no-repeat !important;
  opacity: 0.72 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.general-page::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  left: -118px !important;
  top: 850px !important;
  width: 360px !important;
  height: 650px !important;
  background: url("/template/stomatologbg/assets/images/gallery-left-leaf.png") left top / contain no-repeat !important;
  opacity: 0.58 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.general-page .page-content::before,
body.general-page .page-content::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 991px) {
  body.general-page::before {
    height: 520px !important;
  }

  body.general-page::after {
    top: 680px !important;
    left: -150px !important;
    width: 280px !important;
    height: 505px !important;
    opacity: 0.42 !important;
  }
}

/* Price list page layer from Figma */
body.cenovnik2 {
  background-color: #f2f7fa !important;
  background-image: url("/template/stomatologbg/assets/images/price-layer-repeat.png") !important;
  background-repeat: repeat-y !important;
  background-position: center 1161px !important;
  background-size: 1920px auto !important;
  overflow-x: hidden !important;
}

body.cenovnik2::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 1161px !important;
  background: url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1920px auto no-repeat !important;
  opacity: 0.13 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.cenovnik2::after {
  content: none !important;
  display: none !important;
}

body.cenovnik2 header,
body.cenovnik2 .simple-page-header,
body.cenovnik2 .page-content,
body.cenovnik2 .price-list-section,
body.cenovnik2 footer {
  position: relative !important;
  z-index: 1 !important;
}

body.cenovnik2 .simple-page-header,
body.cenovnik2 .price-list-section,
body.cenovnik2 .price-list-box {
  background-color: transparent !important;
  background-image: none !important;
}

body.cenovnik2 .page-content {
  position: relative !important;
  overflow: hidden !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.cenovnik2 .page-content::before,
body.cenovnik2 .page-content::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background-repeat: no-repeat !important;
}

body.cenovnik2 .page-content::before {
  content: none !important;
  display: none !important;
}

body.cenovnik2 .page-content::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

body.cenovnik2 .page-content > section,
body.cenovnik2 .page-content > div[class*="section"],
body.cenovnik2 .page-content > div[class*="component"],
body.cenovnik2 .page-content > section > .container,
body.cenovnik2 .page-content > div[class*="section"] > .container,
body.cenovnik2 .page-content > div[class*="component"] > .container {
  position: relative !important;
  z-index: 1 !important;
}

body.cenovnik2 .price-list-section {
  overflow: visible !important;
}

body.cenovnik2 .price-list-section::after {
  content: "" !important;
  position: absolute !important;
  left: max(-30px, calc(50% - 1000px)) !important;
  bottom: 8px !important;
  width: 260px !important;
  height: 470px !important;
  background: url("/template/stomatologbg/assets/images/price-layer-left-motif.png") left bottom / contain no-repeat !important;
  opacity: 0.34 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

@media (max-width: 991px) {
  body.cenovnik2 {
    background-position: center top !important;
    background-size: 1200px auto !important;
  }

  body.cenovnik2::before {
    height: 340px !important;
    background: url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1200px auto no-repeat !important;
    opacity: 0.14 !important;
  }

  body.cenovnik2 .page-content::before {
    content: none !important;
    display: none !important;
  }

  body.cenovnik2 .page-content::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  body.cenovnik2 .price-list-section::after {
    left: -90px !important;
    bottom: 4px !important;
    width: 210px !important;
    height: 379px !important;
    opacity: 0.28 !important;
  }
}

/* Doctor detail Figma lock - must stay last */
body.team-member-page header,
body.team-member-page header::before,
body.team-member-page header::after,
body.team-member-page header .topbar,
body.team-member-page header .topbar::before,
body.team-member-page header .topbar::after,
body.team-member-page header .topbar > .container,
body.team-member-page header .right-group,
body.team-member-page header .topmenu {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 10000 !important;
}

body.team-member-page header .main-nav {
  position: relative !important;
  z-index: 10001 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header .main-nav .mainnav-content {
  background: #5d6990 !important;
  box-shadow: 2px 4px 8px rgba(37, 59, 81, 0.11) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page .doctor-detail {
  margin-top: 0 !important;
  background: #fbfcfc !important;
}

body.team-member-page .doctor-detail__hero {
  min-height: 740px !important;
  padding-top: 150px !important;
  background-position: center top !important;
}

body.team-member-page .doctor-detail__hero--has-image {
  background-position: center top !important;
  background-size: cover !important;
}

body.team-member-page .doctor-detail__content {
  margin-top: -1px !important;
  padding-top: 86px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.92) 0%, rgba(243, 238, 238, 0.82) 31%, rgba(249, 251, 252, 0.96) 68%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -1px !important;
  left: 0 !important;
  width: 100% !important;
  height: 520px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.18) 0%, rgba(243, 238, 238, 0.26) 42%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  background-blend-mode: multiply !important;
  opacity: 0.72 !important;
  filter: sepia(0.58) saturate(1.18) hue-rotate(318deg) brightness(1.02) contrast(1.02) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 90px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: inline-flex !important;
  margin: 0 0 28px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 0 34px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text ul,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text ul {
  list-style: none !important;
  padding-left: 0 !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li {
  position: relative !important;
  padding-left: 21px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.58em !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-blue.png") !important;
}

body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-white.png") !important;
}

/* Doctor detail final Figma nudge */
body.team-member-page .doctor-detail__content {
  padding-top: 78px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.96) 0%, rgba(244, 237, 236, 0.88) 28%, rgba(247, 250, 252, 0.96) 68%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -34px !important;
  height: 610px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.04) 0%, rgba(244, 237, 236, 0.24) 46%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  opacity: 0.82 !important;
  filter: sepia(0.66) saturate(1.24) hue-rotate(318deg) brightness(1.02) contrast(1.02) !important;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 22%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 22%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 64px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: flex !important;
  margin: 0 0 28px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  display: block !important;
  clear: both !important;
  margin: 0 0 34px !important;
}

body.team-member-page .doctor-detail__content::before {
  bottom: -132px !important;
  width: 340px !important;
  height: 478px !important;
}

/* Doctor detail last blend and biography spacing */
body.team-member-page .doctor-detail__content {
  margin-top: -26px !important;
  padding-top: 104px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.98) 0%, rgba(244, 237, 236, 0.92) 22%, rgba(248, 250, 252, 0.96) 66%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -76px !important;
  height: 690px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.34) 0%, rgba(244, 237, 236, 0.28) 48%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  opacity: 0.86 !important;
  filter: sepia(0.54) saturate(1.12) hue-rotate(318deg) brightness(1.04) contrast(1.01) !important;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 13%, #000 60%, rgba(0, 0, 0, 0.5) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 13%, #000 60%, rgba(0, 0, 0, 0.5) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 78px !important;
  padding-bottom: 64px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: flex !important;
  margin: 0 0 26px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 0 38px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__text {
  max-width: 660px !important;
}

/* Doctor detail closing polish */
body.team-member-page .doctor-detail__content {
  margin-top: -38px !important;
  padding-top: 120px !important;
  background:
    linear-gradient(180deg, rgba(247, 241, 239, 0.98) 0%, rgba(247, 242, 240, 0.92) 24%, rgba(248, 250, 252, 0.96) 66%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -92px !important;
  height: 720px !important;
  background:
    linear-gradient(180deg, rgba(247, 241, 239, 0.46) 0%, rgba(247, 242, 240, 0.30) 45%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  opacity: 0.88 !important;
  filter: sepia(0.34) saturate(0.96) hue-rotate(316deg) brightness(1.06) contrast(1.0) !important;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 12%, #000 60%, rgba(0, 0, 0, 0.48) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 12%, #000 60%, rgba(0, 0, 0, 0.48) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 104px !important;
}

body.team-member-page .doctor-detail__bio-heading {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 26px !important;
  margin: 0 0 42px !important;
}

body.team-member-page .doctor-detail__bio-heading .doctor-detail__icon--pink,
body.team-member-page .doctor-detail__bio-heading h2 {
  margin: 0 !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__text {
  max-width: 660px !important;
}

/* Doctor detail final blend and bio spacing */
body.team-member-page .doctor-detail__content {
  margin-top: -26px !important;
  padding-top: 104px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.98) 0%, rgba(244, 237, 236, 0.92) 22%, rgba(248, 250, 252, 0.96) 66%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -76px !important;
  height: 690px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.34) 0%, rgba(244, 237, 236, 0.28) 48%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  opacity: 0.86 !important;
  filter: sepia(0.54) saturate(1.12) hue-rotate(318deg) brightness(1.04) contrast(1.01) !important;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 13%, #000 60%, rgba(0, 0, 0, 0.5) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 13%, #000 60%, rgba(0, 0, 0, 0.5) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 78px !important;
  padding-bottom: 64px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: flex !important;
  margin: 0 0 26px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 0 38px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__text {
  max-width: 660px !important;
}

/* Doctor detail Figma lock */
body.team-member-page header,
body.team-member-page header::before,
body.team-member-page header::after,
body.team-member-page header .topbar,
body.team-member-page header .topbar::before,
body.team-member-page header .topbar::after,
body.team-member-page header .topbar > .container,
body.team-member-page header .right-group,
body.team-member-page header .topmenu {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 10000 !important;
}

body.team-member-page header .main-nav {
  position: relative !important;
  z-index: 10001 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header .main-nav .mainnav-content {
  background: #5d6990 !important;
  box-shadow: 2px 4px 8px rgba(37, 59, 81, 0.11) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page .doctor-detail {
  margin-top: 0 !important;
  background: #fbfcfc !important;
}

body.team-member-page .doctor-detail__hero {
  min-height: 740px !important;
  padding-top: 150px !important;
  background-position: center top !important;
}

body.team-member-page .doctor-detail__hero--has-image {
  background-position: center top !important;
  background-size: cover !important;
}

body.team-member-page .doctor-detail__content {
  margin-top: -1px !important;
  padding-top: 86px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.92) 0%, rgba(243, 238, 238, 0.82) 31%, rgba(249, 251, 252, 0.96) 68%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -1px !important;
  left: 0 !important;
  width: 100% !important;
  height: 520px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.18) 0%, rgba(243, 238, 238, 0.26) 42%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  background-blend-mode: multiply !important;
  opacity: 0.72 !important;
  filter: sepia(0.58) saturate(1.18) hue-rotate(318deg) brightness(1.02) contrast(1.02) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 90px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: inline-flex !important;
  margin: 0 0 28px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 0 34px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text ul,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text ul {
  list-style: none !important;
  padding-left: 0 !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li {
  position: relative !important;
  padding-left: 21px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.58em !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-blue.png") !important;
}

body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-white.png") !important;
}

/* Doctor detail strict final override */
body.team-member-page header,
body.team-member-page header::before,
body.team-member-page header::after,
body.team-member-page header .topbar,
body.team-member-page header .topbar::before,
body.team-member-page header .topbar::after,
body.team-member-page header .topbar > .container,
body.team-member-page header .right-group,
body.team-member-page header .topmenu {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

body.team-member-page header .main-nav .mainnav-content {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page .doctor-detail__content {
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.72) 0%, rgba(243, 238, 238, 0.86) 28%, rgba(248, 251, 253, 0.98) 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: 0 !important;
  height: 760px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.30) 0%, rgba(243, 238, 238, 0.18) 46%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / cover no-repeat !important;
  background-blend-mode: normal !important;
  opacity: 1 !important;
  filter: none !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 82px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: inline-flex !important;
  margin: 0 0 28px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 0 34px !important;
}

/* Doctor detail Figma refinements */
body.team-member-page header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 10000 !important;
  background: transparent !important;
}

body.team-member-page header .topbar {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header .main-nav {
  position: relative !important;
  z-index: 10001 !important;
  background: transparent !important;
}

body.team-member-page .doctor-detail__hero {
  min-height: 740px !important;
  padding-top: 150px !important;
  background-position: center top !important;
}

body.team-member-page .doctor-detail__hero--has-image {
  background-position: center top !important;
  background-size: cover !important;
}

body.team-member-page .doctor-detail__content {
  margin-top: -1px !important;
  padding-top: 88px !important;
  background:
    linear-gradient(180deg, rgba(252, 248, 247, 0.82) 0%, rgba(250, 249, 248, 0.92) 34%, rgba(247, 251, 253, 0.98) 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -1px !important;
  height: 760px !important;
  opacity: 0.72 !important;
  filter: sepia(0.64) saturate(1.08) hue-rotate(318deg) brightness(1.02) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.42) 86%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.42) 86%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__content::before {
  bottom: -82px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text ul,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text ul {
  list-style: none !important;
  padding-left: 0 !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li {
  position: relative !important;
  padding-left: 21px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.58em !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-blue.png") !important;
}

body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-white.png") !important;
}

/* Doctor detail lower section warmth */
body.team-member-page .doctor-detail__content {
  background:
    linear-gradient(180deg, rgba(252, 246, 245, 0.76) 0%, rgba(251, 248, 247, 0.90) 32%, rgba(248, 251, 253, 0.98) 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  opacity: 0.84 !important;
  filter: sepia(0.82) saturate(1.28) hue-rotate(320deg) brightness(1.01) contrast(1.03) !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  margin-top: 10px !important;
  margin-left: 8px !important;
}

/* Doctor detail hard visual correction */
body.team-member-page header,
body.team-member-page header *,
body.team-member-page header .topbar,
body.team-member-page header .main-nav,
body.team-member-page header .main-nav .mainnav-content {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header .topbar {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

body.team-member-page header .main-nav .mainnav-content {
  background: #5d6990 !important;
  box-shadow: 2px 4px 8px rgba(37, 59, 81, 0.11) !important;
}

body.team-member-page .doctor-detail__content {
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.82) 0%, rgba(243, 238, 238, 0.88) 30%, rgba(247, 251, 253, 0.98) 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -8px !important;
  height: 900px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.72) 0%, rgba(243, 238, 238, 0.44) 44%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / cover no-repeat !important;
  background-blend-mode: multiply !important;
  opacity: 1 !important;
  filter: sepia(0.86) saturate(1.4) hue-rotate(318deg) brightness(0.98) contrast(1.07) !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__heading {
  align-items: center !important;
  margin-bottom: 30px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  margin: 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 !important;
}

/* Doctor detail final alignment */
body.team-member-page header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 10000 !important;
  background: transparent !important;
}

body.team-member-page header .topbar {
  background: rgba(249, 245, 236, 0.08) !important;
  backdrop-filter: blur(5px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(5px) saturate(108%) !important;
}

body.team-member-page header .main-nav {
  position: relative !important;
  z-index: 10001 !important;
  margin-top: 0 !important;
  background: transparent !important;
}

body.team-member-page .doctor-detail {
  margin-top: 0 !important;
  background-color: #f8fbfd !important;
}

body.team-member-page .doctor-detail__hero {
  min-height: 740px !important;
  padding-top: 150px !important;
  background-position: center top !important;
}

body.team-member-page .doctor-detail__hero--has-image {
  background-position: center top !important;
  background-size: cover !important;
}

body.team-member-page .doctor-detail__content {
  padding-top: 86px !important;
  background:
    linear-gradient(180deg, rgba(249, 251, 252, 0.86) 0%, rgba(247, 250, 252, 0.94) 44%, rgba(244, 249, 252, 0.98) 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: 0 !important;
  height: 650px !important;
  opacity: 0.58 !important;
}

/* Price list visual correction after browser review */
body.cenovnik2::before {
  height: 520px !important;
  background: url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1920px auto no-repeat !important;
  opacity: 0.16 !important;
}

body.cenovnik2 .simple-page-header {
  min-height: 250px !important;
  padding: 66px 0 36px !important;
}

body.cenovnik2 .page-content::before {
  content: none !important;
  display: none !important;
}

body.cenovnik2 .page-content::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

@media (max-width: 991px) {
  body.cenovnik2::before {
    height: 340px !important;
    background: url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1200px auto no-repeat !important;
    opacity: 0.14 !important;
  }

  body.cenovnik2 .simple-page-header {
    min-height: 210px !important;
    padding: 52px 0 30px !important;
  }

  body.cenovnik2 .page-content::before {
    content: none !important;
    display: none !important;
  }

  body.cenovnik2 .page-content::after {
    content: none !important;
    display: none !important;
    background: none !important;
  }

  body.cenovnik2 .price-list-section::after {
    left: -90px !important;
    bottom: 4px !important;
    width: 210px !important;
    height: 379px !important;
    opacity: 0.28 !important;
  }
}

/* Doctor detail Figma source override */
body.team-member-page header,
body.team-member-page header::before,
body.team-member-page header::after,
body.team-member-page header .topbar,
body.team-member-page header .topbar::before,
body.team-member-page header .topbar::after,
body.team-member-page header .topbar > .container,
body.team-member-page header .right-group,
body.team-member-page header .topmenu {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 10000 !important;
}

body.team-member-page header .main-nav {
  position: relative !important;
  z-index: 10001 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page header .main-nav .mainnav-content {
  background: #5d6990 !important;
  box-shadow: 2px 4px 8px rgba(37, 59, 81, 0.11) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.team-member-page .doctor-detail {
  margin-top: 0 !important;
  background: #fbfcfc !important;
}

body.team-member-page .doctor-detail__hero {
  min-height: 740px !important;
  padding-top: 150px !important;
  background-position: center top !important;
}

body.team-member-page .doctor-detail__hero--has-image {
  background-position: center top !important;
  background-size: cover !important;
}

body.team-member-page .doctor-detail__content {
  margin-top: -1px !important;
  padding-top: 86px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.92) 0%, rgba(243, 238, 238, 0.82) 31%, rgba(249, 251, 252, 0.96) 68%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -1px !important;
  left: 0 !important;
  width: 100% !important;
  height: 520px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.18) 0%, rgba(243, 238, 238, 0.26) 42%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  background-blend-mode: multiply !important;
  opacity: 0.72 !important;
  filter: sepia(0.58) saturate(1.18) hue-rotate(318deg) brightness(1.02) contrast(1.02) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 90px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: inline-flex !important;
  margin: 0 0 28px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 0 34px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text ul,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text ul {
  list-style: none !important;
  padding-left: 0 !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li {
  position: relative !important;
  padding-left: 21px !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before,
body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.58em !important;
  width: 12px !important;
  height: 12px !important;
  transform: translateY(-50%) !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
}

body.team-member-page .doctor-detail__card--blue .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-blue.png") !important;
}

body.team-member-page .doctor-detail__card--pink .doctor-detail__text li::before {
  background-image: url("/template/stomatologbg/assets/images/doctor-bullet-white.png") !important;
}
/* Doctor detail final Figma nudge */
body.team-member-page .doctor-detail__content {
  padding-top: 78px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.96) 0%, rgba(244, 240, 240, 0.88) 28%, rgba(247, 250, 252, 0.96) 68%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -34px !important;
  height: 610px !important;
  background:
    linear-gradient(180deg, rgba(243, 238, 238, 0.04) 0%, rgba(243, 238, 238, 0.24) 46%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  opacity: 0.82 !important;
  filter: sepia(0.66) saturate(1.24) hue-rotate(318deg) brightness(1.02) contrast(1.02) !important;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 22%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, #000 22%, #000 64%, rgba(0, 0, 0, 0.54) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 64px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: flex !important;
  margin: 0 0 28px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  display: block !important;
  clear: both !important;
  margin: 0 0 34px !important;
}

/* Doctor detail last color and leaf adjustment */
body.team-member-page .doctor-detail__content {
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.96) 0%, rgba(244, 237, 236, 0.88) 28%, rgba(247, 250, 252, 0.96) 68%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.04) 0%, rgba(244, 237, 236, 0.24) 46%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
}

body.team-member-page .doctor-detail__content::before {
  bottom: -132px !important;
  width: 340px !important;
  height: 478px !important;
}

/* Doctor detail last blend and biography spacing */
body.team-member-page .doctor-detail__content {
  margin-top: -26px !important;
  padding-top: 104px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.98) 0%, rgba(244, 237, 236, 0.92) 22%, rgba(248, 250, 252, 0.96) 66%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -76px !important;
  height: 690px !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 236, 0.34) 0%, rgba(244, 237, 236, 0.28) 48%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  opacity: 0.86 !important;
  filter: sepia(0.54) saturate(1.12) hue-rotate(318deg) brightness(1.04) contrast(1.01) !important;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 13%, #000 60%, rgba(0, 0, 0, 0.5) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.82) 13%, #000 60%, rgba(0, 0, 0, 0.5) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 78px !important;
  padding-bottom: 64px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__icon--pink {
  display: flex !important;
  margin: 0 0 26px 0 !important;
}

body.team-member-page .doctor-detail__card--bio h2 {
  margin: 0 0 38px !important;
}

body.team-member-page .doctor-detail__card--bio .doctor-detail__text {
  max-width: 660px !important;
}
/* Doctor detail absolute final correction */
body.team-member-page .doctor-detail__content {
  margin-top: -38px !important;
  padding-top: 120px !important;
  background:
    linear-gradient(180deg, rgba(247, 241, 239, 0.98) 0%, rgba(247, 242, 240, 0.92) 24%, rgba(248, 250, 252, 0.96) 66%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -92px !important;
  height: 720px !important;
  background:
    linear-gradient(180deg, rgba(247, 241, 239, 0.46) 0%, rgba(247, 242, 240, 0.30) 45%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  opacity: 0.88 !important;
  filter: sepia(0.34) saturate(0.96) hue-rotate(316deg) brightness(1.06) contrast(1.0) !important;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 12%, #000 60%, rgba(0, 0, 0, 0.48) 84%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 12%, #000 60%, rgba(0, 0, 0, 0.48) 84%, transparent 100%) !important;
}

body.team-member-page .doctor-detail__card--bio {
  padding-top: 104px !important;
}

body.team-member-page .doctor-detail__bio-heading {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 26px !important;
  margin: 0 0 42px !important;
}

body.team-member-page .doctor-detail__bio-heading .doctor-detail__icon--pink,
body.team-member-page .doctor-detail__bio-heading h2 {
  margin: 0 !important;
}

/* Doctor detail neutral hero mask blend */
body.team-member-page .doctor-detail__content {
  margin-top: -42px !important;
  padding-top: 124px !important;
  background:
    linear-gradient(180deg, rgba(242, 238, 237, 0.96) 0%, rgba(242, 239, 238, 0.90) 22%, rgba(246, 250, 252, 0.96) 68%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: -96px !important;
  height: 720px !important;
  background:
    linear-gradient(180deg, rgba(242, 238, 237, 0.34) 0%, rgba(242, 239, 238, 0.18) 46%, rgba(255, 255, 255, 0) 100%),
    url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  background-blend-mode: screen !important;
  opacity: 0.42 !important;
  filter: saturate(0.82) brightness(1.26) contrast(0.86) !important;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.76) 14%, #000 58%, rgba(0, 0, 0, 0.44) 82%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.76) 14%, #000 58%, rgba(0, 0, 0, 0.44) 82%, transparent 100%) !important;
}

/* Doctor detail mask motif focus */
body.team-member-page .doctor-detail__content {
  margin-top: 0 !important;
  padding-top: 92px !important;
  background:
    linear-gradient(180deg, rgba(246, 248, 249, 0.94) 0%, rgba(247, 250, 252, 0.96) 58%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

body.team-member-page .doctor-detail__content::after {
  top: 0 !important;
  height: 430px !important;
  background: url("/template/stomatologbg/assets/images/doctor-detail-top-mask.png") center top / 100% auto no-repeat !important;
  background-blend-mode: normal !important;
  opacity: 0.68 !important;
  filter: saturate(1.05) brightness(1.02) contrast(1.04) !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.86) 68%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.86) 68%, transparent 100%) !important;
}

/* Doctor detail soft hero spill */
body.team-member-page .doctor-detail__content {
  margin-top: 0 !important;
  padding-top: 104px !important;
  background:
    linear-gradient(180deg, rgba(242, 238, 237, 0.98) 0%, rgba(242, 239, 238, 0.94) 16%, rgba(245, 247, 248, 0.96) 42%, rgba(247, 250, 252, 0.96) 70%, #fbfcfc 100%),
    url("/template/stomatologbg/assets/images/general-page-repeat-bg.png") center top / cover repeat-y !important;
}

/* Cenovnik top motif blend: rectangle is the page base, dfs is only the upper leaf veil. */
body.cenovnik2 {
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/price-layer-repeat.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.cenovnik2::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  display: block !important;
  width: 100% !important;
  height: 500px !important;
  background: url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1920px auto no-repeat !important;
  opacity: 0.19 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.62) 78%, transparent 100%) !important;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.62) 78%, transparent 100%) !important;
}

body.cenovnik2 .simple-page-header,
body.cenovnik2 .page-content,
body.cenovnik2 .price-list-box {
  background-color: transparent !important;
  background-image: none !important;
}

@media (max-width: 991px) {
  body.cenovnik2 {
    background-position: center top !important;
    background-size: 1200px auto !important;
  }

  body.cenovnik2::before {
    height: 360px !important;
    background-size: 1200px auto !important;
    opacity: 0.18 !important;
  }
}

/* Cenovnik final layer order: dfs top, rectangle page body, leaf in bottom-left corner. */
body.cenovnik2 {
  position: relative !important;
  overflow-x: hidden !important;
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/price-layer-repeat.png") !important;
  background-repeat: repeat-y !important;
  background-position: center 500px !important;
  background-size: 1920px auto !important;
}

body.cenovnik2::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  display: block !important;
  width: 100% !important;
  height: 560px !important;
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0.18) 0%, rgba(244, 248, 251, 0.34) 58%, rgba(244, 248, 251, 0) 100%),
    url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1920px auto no-repeat !important;
  opacity: 0.24 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.cenovnik2::after {
  content: none !important;
  display: none !important;
}

body.cenovnik2 header,
body.cenovnik2 .simple-page-header,
body.cenovnik2 .page-content,
body.cenovnik2 .price-list-box,
body.cenovnik2 footer {
  position: relative !important;
  z-index: 1 !important;
}

body.cenovnik2 .simple-page-header,
body.cenovnik2 .page-content,
body.cenovnik2 .price-list-box {
  background: transparent !important;
  background-image: none !important;
}

body.cenovnik2 .simple-page-header {
  min-height: 312px !important;
  padding: 86px 0 46px !important;
}

body.cenovnik2 .page-content {
  position: relative !important;
  overflow: hidden !important;
}

body.cenovnik2 .page-content::before {
  content: none !important;
  display: none !important;
}

body.cenovnik2 .page-content::after {
  content: "" !important;
  position: absolute !important;
  left: max(-66px, calc(50% - 1042px)) !important;
  bottom: 4px !important;
  display: block !important;
  width: 360px !important;
  height: 650px !important;
  background: url("/template/stomatologbg/assets/images/price-layer-left-motif.png") left bottom / contain no-repeat !important;
  opacity: 0.34 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.cenovnik2 .price-list-section::after {
  content: none !important;
  display: none !important;
}

body.cenovnik2 .page-content > section,
body.cenovnik2 .page-content > div[class*="section"],
body.cenovnik2 .page-content > div[class*="component"],
body.cenovnik2 .page-content > section > .container,
body.cenovnik2 .page-content > div[class*="section"] > .container,
body.cenovnik2 .page-content > div[class*="component"] > .container {
  position: relative !important;
  z-index: 1 !important;
}

body.cenovnik2 .price-list-box {
  padding: 0 0 48px !important;
}

@media (max-width: 991px) {
  body.cenovnik2 {
    background-position: center 330px !important;
    background-size: 1200px auto !important;
  }

  body.cenovnik2::before {
    height: 380px !important;
    background-size: 1200px auto !important;
    opacity: 0.22 !important;
  }

  body.cenovnik2 .simple-page-header {
    min-height: 220px !important;
    padding: 54px 0 32px !important;
  }

  body.cenovnik2 .page-content::after {
    left: -105px !important;
    width: 250px !important;
    height: 451px !important;
    opacity: 0.28 !important;
  }
}

/* Cenovnik and About final Figma layout pass */
body.cenovnik2 {
  background-color: #f5f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/price-layer-repeat.png") !important;
  background-repeat: repeat-y !important;
  background-position: center 420px !important;
  background-size: 1920px auto !important;
}

body.cenovnik2::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  height: 560px !important;
  background:
    linear-gradient(180deg, rgba(245, 248, 251, 0.18) 0%, rgba(245, 248, 251, 0.62) 62%, rgba(245, 248, 251, 0) 100%),
    url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / 1920px auto no-repeat !important;
  opacity: 0.2 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.cenovnik2 header,
body.cenovnik2 .simple-page-header,
body.cenovnik2 .page-content,
body.cenovnik2 .price-list-box,
body.cenovnik2 footer {
  position: relative !important;
  z-index: 1 !important;
}

body.cenovnik2 .simple-page-header {
  min-height: 312px !important;
  padding: 86px 0 46px !important;
  background: transparent !important;
}

body.cenovnik2 .simple-page-header .container,
body.cenovnik2 .price-list-box .container {
  max-width: 1450px !important;
}

body.cenovnik2 .simple-page-header__pill {
  width: min(768px, 100%) !important;
  min-height: 124px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.62) !important;
  backdrop-filter: blur(4.5px) !important;
  -webkit-backdrop-filter: blur(4.5px) !important;
}

body.cenovnik2 .page-content {
  overflow: hidden !important;
  background: transparent !important;
}

body.cenovnik2 .price-list-box {
  padding: 0 0 48px !important;
  background: transparent !important;
}

body.cenovnik2 .price-list-box__card {
  padding: 31px 44px 35px !important;
  border-radius: 18px !important;
  background: rgba(181, 193, 218, 0.94) !important;
  box-shadow: 0 14px 28px rgba(73, 87, 119, 0.16) !important;
}

body.cenovnik2 .price-list-box__card h2 {
  margin-bottom: 20px !important;
  color: #637297 !important;
  font-family: "Lora", serif !important;
  font-size: 29px !important;
  line-height: 1.1 !important;
  letter-spacing: 0.06em !important;
}

body.cenovnik2 .price-list-box__table-wrap {
  border-radius: 16px !important;
  background: rgba(249, 246, 239, 0.92) !important;
}

body.cenovnik2 .price-list-box__table thead th {
  background: rgba(228, 205, 205, 0.9) !important;
}

body.cenovnik2 .price-list-section::after,
body.cenovnik2 .page-content::after {
  content: "" !important;
  position: absolute !important;
  left: max(-62px, calc(50% - 1038px)) !important;
  bottom: 10px !important;
  display: block !important;
  width: 360px !important;
  height: 650px !important;
  background: url("/template/stomatologbg/assets/images/price-layer-left-motif.png") left bottom / contain no-repeat !important;
  opacity: 0.32 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.o-nama {
  background-color: #eef4f7 !important;
  background-image: url("/template/stomatologbg/assets/images/about-bg-top.png") !important;
  background-repeat: repeat-y !important;
  background-position: center 560px !important;
  background-size: 1920px auto !important;
}

body.o-nama::before,
body.o-nama::after {
  content: none !important;
  display: none !important;
}

body.o-nama header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 30 !important;
  background: transparent !important;
}

body.o-nama header .topbar {
  background: rgba(249, 245, 236, 0.05) !important;
  backdrop-filter: blur(3px) saturate(108%) !important;
  -webkit-backdrop-filter: blur(3px) saturate(108%) !important;
}

body.o-nama header .main-nav .mainnav-content {
  background: rgba(93, 105, 144, 0.82) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
}

body.o-nama .page-header-image {
  min-height: 805px !important;
  margin-top: 0 !important;
  background: transparent !important;
}

body.o-nama .page-header-image__bg {
  object-fit: cover !important;
  object-position: center top !important;
}

body.o-nama .page-header-image__shade {
  height: 470px !important;
  background: linear-gradient(180deg, rgba(238, 244, 247, 0) 0%, rgba(238, 244, 247, 0.16) 36%, rgba(238, 244, 247, 0.78) 76%, #eef4f7 100%) !important;
}

body.o-nama .page-header-image .container {
  max-width: 1450px !important;
  min-height: 805px !important;
  padding-top: 0 !important;
  padding-bottom: 276px !important;
  display: flex !important;
  align-items: flex-end !important;
}

body.o-nama .page-header-image__pill {
  width: min(768px, calc(100% - 36px)) !important;
  min-height: 124px !important;
  margin-left: 18px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.46) !important;
  backdrop-filter: blur(10px) saturate(112%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(112%) !important;
  box-shadow: none !important;
}

body.o-nama .page-content,
body.o-nama .service-menu-section,
body.o-nama .text-box-section,
body.o-nama .service-media-section,
body.o-nama .service-contact-cta {
  background-color: transparent !important;
  background-image: none !important;
}

body.o-nama .page-header-image + .service-menu-section {
  margin-top: -260px !important;
  padding-top: 210px !important;
  padding-bottom: 72px !important;
  overflow: visible !important;
}

body.o-nama .service-menu-section::before,
body.o-nama .service-menu-section::after,
body.o-nama .service-media-section::before,
body.o-nama .text-box-section::before,
body.o-nama .service-contact-cta::before {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  pointer-events: none !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  z-index: 0 !important;
}

body.o-nama .service-menu-section::before {
  left: max(72px, calc(50% - 835px)) !important;
  top: 300px !important;
  width: 383px !important;
  height: 290px !important;
  background-image: url("/template/stomatologbg/assets/images/about-services-group.png") !important;
  opacity: 0.36 !important;
}

body.o-nama .service-menu-section::after {
  right: max(110px, calc(50% - 835px)) !important;
  top: 274px !important;
  width: 247px !important;
  height: 233px !important;
  background-image: url("/template/stomatologbg/assets/images/about-services-frame.png") !important;
  opacity: 0.48 !important;
}

body.o-nama .service-menu-section .container,
body.o-nama .text-box-section .container,
body.o-nama .service-media-section .container,
body.o-nama .service-contact-cta .container {
  position: relative !important;
  z-index: 1 !important;
}

body.o-nama .service-menu-section__grid {
  max-width: 1370px !important;
  gap: 28px 30px !important;
}

body.o-nama .service-menu-section__card {
  max-width: 308px !important;
  min-height: 158px !important;
  border-radius: 16px !important;
  background: rgba(249, 245, 236, 0.8) !important;
  box-shadow: 0 14px 28px rgba(38, 50, 83, 0.08) !important;
}

body.o-nama .service-menu-section__image {
  height: 108px !important;
}

body.o-nama .service-menu-section__title {
  min-height: 50px !important;
  padding: 10px 16px !important;
  font-size: 17px !important;
}

body.o-nama .service-media-section::before,
body.o-nama .text-box-section::before {
  left: max(-180px, calc(50% - 1060px)) !important;
  top: -120px !important;
  width: 520px !important;
  height: 730px !important;
  background-image: url("/template/stomatologbg/assets/images/about-text-layer.png") !important;
  opacity: 0.12 !important;
}

body.o-nama .service-contact-cta {
  background-image: linear-gradient(180deg, rgba(238, 244, 247, 0) 0%, rgba(238, 244, 247, 0.88) 42%, #eef4f7 100%) !important;
}

body.o-nama .service-contact-cta::before {
  right: max(-118px, calc(50% - 1040px)) !important;
  bottom: -138px !important;
  width: 380px !important;
  height: 533px !important;
  background-image: url("/template/stomatologbg/assets/images/about-text-layer.png") !important;
  opacity: 0.16 !important;
  transform: scaleX(-1) !important;
}

@media (max-width: 991px) {
  body.cenovnik2 {
    background-position: center 320px !important;
    background-size: 1200px auto !important;
  }

  body.cenovnik2::before {
    height: 360px !important;
    background-size: 1200px auto !important;
    opacity: 0.18 !important;
  }

  body.cenovnik2 .simple-page-header {
    min-height: 220px !important;
    padding: 54px 0 32px !important;
  }

  body.cenovnik2 .simple-page-header__pill {
    padding: 20px 28px !important;
  }

  body.cenovnik2 .price-list-box__card {
    padding: 22px 16px 24px !important;
  }

  body.cenovnik2 .price-list-section::after,
  body.cenovnik2 .page-content::after {
    left: -105px !important;
    width: 250px !important;
    height: 451px !important;
    opacity: 0.24 !important;
  }

  body.o-nama .page-header-image {
    min-height: 520px !important;
  }

  body.o-nama .page-header-image .container {
    min-height: 520px !important;
    padding-bottom: 106px !important;
  }

  body.o-nama .page-header-image__pill {
    margin-left: 0 !important;
    padding: 20px 28px !important;
  }

  body.o-nama .page-header-image + .service-menu-section {
    margin-top: -124px !important;
    padding-top: 144px !important;
  }

  body.o-nama .service-menu-section__grid {
    grid-template-columns: 1fr !important;
  }

  body.o-nama .service-menu-section__card {
    grid-column: auto !important;
    max-width: 308px !important;
  }
}

/* Cenovnik selected page skin: admin value "Cenovnik" maps to body.cenovnik2.
   The page base is Rectangle 23982; dfs is only the soft top motif veil. */
body.cenovnik2 {
  background-color: #f4f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/price-layer-repeat.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.cenovnik2::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  width: 100% !important;
  height: 520px !important;
  background:
    linear-gradient(180deg, rgba(244, 248, 251, 0) 0%, rgba(244, 248, 251, 0.02) 52%, rgba(244, 248, 251, 0.24) 82%, rgba(244, 248, 251, 0.5) 100%),
    url("/template/stomatologbg/assets/images/price-layer-dfs.png") center -22px / 1920px auto no-repeat !important;
  opacity: 0.92 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.cenovnik2 header,
body.cenovnik2 .simple-page-header,
body.cenovnik2 .page-content,
body.cenovnik2 .price-list-box,
body.cenovnik2 footer {
  position: relative !important;
  z-index: 1 !important;
}

body.cenovnik2 .simple-page-header,
body.cenovnik2 .page-content,
body.cenovnik2 .price-list-box {
  background-color: transparent !important;
  background-image: none !important;
}

body.cenovnik2 .simple-page-header {
  min-height: 284px !important;
  padding: 74px 0 34px !important;
}

body.cenovnik2 .page-content {
  overflow: hidden !important;
}

body.cenovnik2 .price-list-box {
  padding-top: 0 !important;
}

body.cenovnik2 .price-list-section::after,
body.cenovnik2 .page-content::after {
  content: "" !important;
  position: absolute !important;
  left: max(-34px, calc(50% - 982px)) !important;
  bottom: 22px !important;
  display: block !important;
  width: 266px !important;
  height: 480px !important;
  background: url("/template/stomatologbg/assets/images/price-layer-left-motif.png") left bottom / contain no-repeat !important;
  opacity: 0.9 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

@media (max-width: 991px) {
  body.cenovnik2 {
    background-position: center top !important;
    background-size: 1200px auto !important;
  }

  body.cenovnik2::before {
    height: 360px !important;
    background-size: 1200px auto !important;
    opacity: 0.82 !important;
  }

  body.cenovnik2 .simple-page-header {
    min-height: 220px !important;
    padding: 54px 0 32px !important;
  }

  body.cenovnik2 .price-list-section::after,
  body.cenovnik2 .page-content::after {
    left: -76px !important;
    width: 198px !important;
    height: 357px !important;
    opacity: 0.82 !important;
  }
}

/* O nama selected/fixed page layout: uploaded page-header image first, then 23982 -> 24066 background flow. */
body.o-nama {
  background-color: #eef4f7 !important;
  background-image: none !important;
  overflow-x: hidden !important;
}

body.o-nama .page-content {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.o-nama .page-content::before {
  content: "" !important;
  position: absolute !important;
  top: 650px !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: block !important;
  background-image:
    url("/template/stomatologbg/assets/images/about-layout-top.png"),
    url("/template/stomatologbg/assets/images/about-layout-bottom.png") !important;
  background-repeat: no-repeat, repeat-y !important;
  background-position: center top, center 1226px !important;
  background-size: 1920px auto, 1920px auto !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.o-nama .page-content::after {
  content: "" !important;
  position: absolute !important;
  left: max(-170px, calc(50% - 1060px)) !important;
  top: 1580px !important;
  display: block !important;
  width: 560px !important;
  height: 785px !important;
  background: url("/template/stomatologbg/assets/images/about-layout-leaf.png") left top / contain no-repeat !important;
  opacity: 0.18 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.o-nama .page-header-image,
body.o-nama .service-menu-section,
body.o-nama .text-box-section,
body.o-nama .service-media-section,
body.o-nama .service-contact-cta,
body.o-nama .rounded-text.about-rounded-new {
  position: relative !important;
  z-index: 1 !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.o-nama .page-header-image + .service-menu-section {
  background-image: none !important;
}

body.o-nama .service-media-section::before,
body.o-nama .text-box-section::before,
body.o-nama .service-contact-cta::before {
  content: none !important;
  display: none !important;
}

body.o-nama .service-contact-cta {
  background-image: none !important;
}

@media (max-width: 991px) {
  body.o-nama .page-content::before {
    top: 420px !important;
    background-position: center top, center 770px !important;
    background-size: 1200px auto, 1200px auto !important;
  }

  body.o-nama .page-content::after {
    left: -176px !important;
    top: 1120px !important;
    width: 360px !important;
    height: 505px !important;
    opacity: 0.16 !important;
  }
}

/* O nama canonical layout reset: keep the uploaded hero, then one continuous page background. */
body.o-nama {
  background-color: #eef4f7 !important;
  background-image: none !important;
  overflow-x: hidden !important;
}

body.o-nama header {
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  z-index: 30 !important;
  background: transparent !important;
}

body.o-nama header .topbar {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.o-nama header .main-nav .mainnav-content {
  background: rgba(93, 105, 144, 0.92) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.o-nama .page-content {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: transparent !important;
}

body.o-nama .page-content::before {
  content: "" !important;
  position: absolute !important;
  top: 650px !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  display: block !important;
  background-image:
    linear-gradient(180deg, rgba(238, 244, 247, 0) 0%, #eef4f7 110px),
    url("/template/stomatologbg/assets/images/about-layout-top.png"),
    url("/template/stomatologbg/assets/images/about-layout-bottom.png") !important;
  background-repeat: no-repeat, no-repeat, repeat-y !important;
  background-position: center top, center 48px, center 1220px !important;
  background-size: 100% 180px, 1920px auto, 1920px auto !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.o-nama .page-content::after {
  content: "" !important;
  position: absolute !important;
  left: max(-150px, calc(50% - 1030px)) !important;
  top: 1420px !important;
  display: block !important;
  width: 520px !important;
  height: 730px !important;
  background: url("/template/stomatologbg/assets/images/about-layout-leaf.png") left top / contain no-repeat !important;
  opacity: 0.34 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.o-nama .page-header-image {
  min-height: 805px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  overflow: hidden !important;
  background: #eef4f7 !important;
  position: relative !important;
  z-index: 1 !important;
}

body.o-nama .page-header-image::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  background: url("/template/stomatologbg/assets/images/about-header-motif.png") center top / cover no-repeat !important;
  opacity: 0.18 !important;
  mix-blend-mode: screen !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

body.o-nama .page-header-image__bg {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

body.o-nama .page-header-image__shade {
  inset: auto 0 0 !important;
  height: 430px !important;
  background: linear-gradient(180deg, rgba(238, 244, 247, 0) 0%, rgba(238, 244, 247, 0.32) 38%, rgba(238, 244, 247, 0.9) 76%, #eef4f7 100%) !important;
  z-index: 2 !important;
}

body.o-nama .page-header-image .container {
  max-width: 1450px !important;
  min-height: 805px !important;
  padding-top: 0 !important;
  padding-bottom: 170px !important;
  display: flex !important;
  align-items: flex-end !important;
  position: relative !important;
  z-index: 3 !important;
}

body.o-nama .page-header-image__pill {
  width: min(768px, calc(100% - 36px)) !important;
  min-height: 124px !important;
  margin-left: 18px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.42) !important;
  backdrop-filter: blur(10px) saturate(112%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(112%) !important;
  box-shadow: none !important;
}

body.o-nama .service-menu-section,
body.o-nama .text-box-section,
body.o-nama .service-media-section,
body.o-nama .service-contact-cta,
body.o-nama .rounded-text.about-rounded-new {
  position: relative !important;
  z-index: 1 !important;
  background-color: transparent !important;
  background-image: none !important;
}

body.o-nama .page-header-image + .service-menu-section {
  margin-top: -190px !important;
  padding-top: 170px !important;
  padding-bottom: 72px !important;
  overflow: visible !important;
}

body.o-nama .service-media-section::before,
body.o-nama .text-box-section::before,
body.o-nama .service-contact-cta::before {
  content: none !important;
  display: none !important;
}

body.o-nama .service-menu-section::before {
  content: "" !important;
  position: absolute !important;
  left: max(64px, calc(50% - 835px)) !important;
  top: 270px !important;
  width: 383px !important;
  height: 290px !important;
  background: url("/template/stomatologbg/assets/images/about-services-group.png") left top / contain no-repeat !important;
  opacity: 0.28 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.o-nama .service-menu-section::after {
  content: "" !important;
  position: absolute !important;
  right: max(90px, calc(50% - 835px)) !important;
  top: 254px !important;
  width: 247px !important;
  height: 233px !important;
  background: url("/template/stomatologbg/assets/images/about-services-frame.png") right top / contain no-repeat !important;
  opacity: 0.38 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.o-nama .service-menu-section .container,
body.o-nama .text-box-section .container,
body.o-nama .service-media-section .container,
body.o-nama .service-contact-cta .container {
  position: relative !important;
  z-index: 1 !important;
}

body.o-nama .service-menu-section__grid {
  max-width: 1370px !important;
  gap: 28px 30px !important;
}

body.o-nama .service-menu-section__card {
  max-width: 308px !important;
  min-height: 158px !important;
  border-radius: 16px !important;
  background: rgba(249, 245, 236, 0.8) !important;
  box-shadow: 0 14px 28px rgba(38, 50, 83, 0.08) !important;
}

body.o-nama .service-menu-section__image {
  height: 108px !important;
}

body.o-nama .service-menu-section__title {
  min-height: 50px !important;
  padding: 10px 16px !important;
  font-size: 17px !important;
}

@media (max-width: 991px) {
  body.o-nama .page-header-image {
    min-height: 520px !important;
  }

  body.o-nama .page-header-image .container {
    min-height: 520px !important;
    padding-bottom: 96px !important;
  }

  body.o-nama .page-header-image__pill {
    margin-left: 0 !important;
    padding: 20px 28px !important;
  }

  body.o-nama .page-content::before {
    top: 420px !important;
    background-position: center top, center 36px, center 770px !important;
    background-size: 100% 150px, 1200px auto, 1200px auto !important;
  }

  body.o-nama .page-content::after {
    left: -148px !important;
    top: 1120px !important;
    width: 330px !important;
    height: 462px !important;
    opacity: 0.24 !important;
  }

  body.o-nama .page-header-image + .service-menu-section {
    margin-top: -96px !important;
    padding-top: 118px !important;
  }
}

/* Home hero: one canonical layout pass */
body:has(.home-hero) {
  background: #f6f9fb !important;
}

body:has(.home-hero) header {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 10000 !important;
  background: transparent !important;
}

body:has(.home-hero) header .topbar {
  background: rgba(249, 245, 236, 0.18) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

body:has(.home-hero) header .main-nav .mainnav-content {
  background: rgba(93, 105, 144, 0.88) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 14px 28px rgba(38, 50, 83, 0.16) !important;
}

body .home-hero {
  min-height: 760px !important;
  margin-top: 0 !important;
  padding: 166px 0 154px !important;
  background-position: center top !important;
  background-size: cover !important;
}

body .home-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: url("/template/stomatologbg/assets/images/price-layer-dfs.png") center top / cover no-repeat !important;
  opacity: 0.16 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

body .home-hero::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 245px !important;
  background: linear-gradient(180deg, rgba(246, 249, 251, 0) 0%, rgba(246, 249, 251, 0.88) 72%, #f6f9fb 100%) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

body .home-hero__slider {
  z-index: 0 !important;
}

body .home-hero__slider img {
  object-fit: cover !important;
  object-position: center top !important;
}

body .home-hero .container {
  position: relative !important;
  z-index: 3 !important;
}

body .home-hero__panel {
  max-width: 875px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .home-hero__intro {
  padding: 22px 34px 20px !important;
  border-radius: 18px !important;
  background: rgba(249, 245, 236, 0.54) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

body .home-hero__intro h1 {
  margin: 0 0 12px !important;
  font-size: clamp(34px, 3.25vw, 52px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0.045em !important;
}

body .home-hero__intro p {
  max-width: 560px !important;
  margin: 0 auto !important;
  font-size: clamp(17px, 1.35vw, 23px) !important;
  line-height: 1.16 !important;
}

body .home-hero__lists {
  max-width: 575px !important;
  margin: 18px auto 0 !important;
  gap: 18px !important;
}

body .home-hero__lists ul {
  min-height: 116px !important;
  padding: 16px 24px 15px 39px !important;
  border-radius: 16px !important;
  background: rgba(249, 245, 236, 0.68) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  font-size: 16px !important;
}

body:has(.home-hero) .home-cta-buttons {
  min-height: 0 !important;
  margin-top: -128px !important;
  padding: 0 0 46px !important;
  background: transparent !important;
  position: relative !important;
  z-index: 5 !important;
}

body:has(.home-hero) .home-cta-buttons__inner {
  gap: 16px !important;
}

body:has(.home-hero) .home-cta-buttons__btn {
  width: 342px !important;
  max-width: calc(50vw - 20px) !important;
  min-height: 52px !important;
  padding: 7px 8px 7px 50px !important;
  font-size: 17px !important;
}

body:has(.home-hero) .home-cta-buttons__btn i {
  width: 40px !important;
  height: 40px !important;
  flex-basis: 40px !important;
}

body:has(.home-hero) .home-cta-buttons + section {
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  body .home-hero {
    min-height: 700px !important;
    padding: 138px 0 132px !important;
  }

  body .home-hero__lists {
    grid-template-columns: 1fr !important;
    max-width: 420px !important;
  }

  body:has(.home-hero) .home-cta-buttons {
    margin-top: -104px !important;
    padding-bottom: 34px !important;
  }

  body:has(.home-hero) .home-cta-buttons__inner {
    flex-direction: column !important;
    align-items: center !important;
  }

body:has(.home-hero) .home-cta-buttons__btn {
    width: min(342px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
  }
}

/* Home hero final composition */
body:has(.home-hero) header {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 10000 !important;
  background: transparent !important;
}

body:has(.home-hero) header .topbar {
  background: rgba(249, 245, 236, 0.20) !important;
  backdrop-filter: blur(9px) !important;
  -webkit-backdrop-filter: blur(9px) !important;
}

body:has(.home-hero) header .main-nav .mainnav-content {
  background: rgba(93, 105, 144, 0.92) !important;
  box-shadow: 0 14px 28px rgba(34, 44, 75, 0.18) !important;
}

body .home-hero {
  min-height: 760px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  background-position: center top !important;
  background-size: cover !important;
}

body .home-hero:has(+ .home-intro) {
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
}

body .home-hero:has(+ .home-intro) .home-hero__slider,
body .home-hero:has(+ .home-intro) .home-hero__slider .swiper-wrapper,
body .home-hero:has(+ .home-intro) .home-hero__slider .swiper-slide,
body .home-hero:has(+ .home-intro) .home-hero__slider img {
  height: 760px !important;
  min-height: 760px !important;
}

body .home-hero::before {
  opacity: 0.13 !important;
  mix-blend-mode: screen !important;
}

body .home-hero::after {
  height: 220px !important;
  background: linear-gradient(180deg, rgba(246, 249, 251, 0) 0%, rgba(246, 249, 251, 0.78) 70%, #f6f9fb 100%) !important;
}

body .home-hero .container {
  min-height: 760px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-top: 126px !important;
  padding-bottom: 72px !important;
}

body .home-hero__panel {
  width: min(840px, calc(100vw - 32px)) !important;
  max-width: 840px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}

body .home-hero__intro {
  border-radius: 18px !important;
  background: rgba(249, 245, 236, 0.66) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
}

body .home-hero__intro {
  padding: 24px 36px 22px !important;
}

body .home-hero__intro h1,
body .home-intro h1 {
  max-width: 790px !important;
  margin: 0 auto 14px !important;
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-size: clamp(36px, 3.35vw, 54px) !important;
  font-weight: 500 !important;
  line-height: 1.08 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

body .home-hero__intro p,
body .home-intro__lead {
  max-width: 590px !important;
  margin: 0 auto !important;
  color: #1e2640 !important;
  font-size: clamp(18px, 1.35vw, 23px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

body .home-hero__lists,
body .home-intro__services {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  width: min(610px, 100%) !important;
  max-width: 610px !important;
  margin: 18px auto 0 !important;
  text-align: left !important;
}

body .home-hero__lists ul,
body .home-intro__services ul {
  min-height: 118px !important;
  margin: 0 !important;
  padding: 17px 28px 16px 42px !important;
  border-radius: 18px !important;
  background: rgba(249, 245, 236, 0.72) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: none !important;
  color: #1e2640 !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.28 !important;
}

body .home-hero__lists li,
body .home-intro__services li {
  margin: 2px 0 !important;
  color: #1e2640 !important;
}

body .home-hero:has(+ .home-intro) .home-hero__panel {
  display: none !important;
}

body .home-hero + .home-intro {
  position: relative !important;
  z-index: 4 !important;
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
  margin-top: -760px !important;
  background: transparent !important;
  overflow: visible !important;
}

body .home-hero + .home-intro .home-intro__hero {
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
  padding: 222px 0 72px !important;
  background-image: none !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
}

body .home-hero + .home-intro .home-intro__hero::before {
  content: none !important;
}

body .home-hero + .home-intro .home-intro__panel {
  position: relative !important;
  width: min(840px, calc(100vw - 32px)) !important;
  max-width: 840px !important;
  margin: 0 auto !important;
  padding: 24px 36px 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  text-align: center !important;
}

body .home-hero + .home-intro .home-intro__panel::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: min(840px, 100%) !important;
  height: 210px !important;
  border-radius: 18px !important;
  background: rgba(249, 245, 236, 0.66) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transform: translateX(-50%) !important;
  z-index: -1 !important;
}

body .home-hero + .home-intro .home-intro__panel h1,
body .home-hero + .home-intro .home-intro__lead,
body .home-hero + .home-intro .home-intro__services,
body .home-hero + .home-intro .home-intro__actions {
  position: relative !important;
  z-index: 1 !important;
}

body .home-hero + .home-intro .home-intro__services {
  margin-top: 48px !important;
}

body .home-intro__actions {
  gap: 18px !important;
  margin-top: 18px !important;
}

body .home-intro__button,
body:has(.home-hero) .home-cta-buttons__btn {
  width: 342px !important;
  min-height: 52px !important;
  padding: 7px 8px 7px 48px !important;
  border-radius: 999px !important;
  font-size: 17px !important;
}

body:has(.home-hero) .home-cta-buttons {
  margin-top: -124px !important;
  padding: 0 0 42px !important;
  background: transparent !important;
  position: relative !important;
  z-index: 5 !important;
}

/* Home CMS fallback: components are not always direct siblings after render. */
body:has(.home-hero):has(.home-intro) .home-hero,
body:has(.home-hero):has(.home-intro) .home-hero .container,
body:has(.home-hero):has(.home-intro) .home-hero__slider,
body:has(.home-hero):has(.home-intro) .home-hero__slider .swiper-wrapper,
body:has(.home-hero):has(.home-intro) .home-hero__slider .swiper-slide,
body:has(.home-hero):has(.home-intro) .home-hero__slider img {
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
}

body:has(.home-hero):has(.home-intro) .home-hero__panel {
  display: none !important;
}

body:has(.home-hero):has(.home-intro) .home-intro {
  position: relative !important;
  z-index: 4 !important;
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
  margin-top: -760px !important;
  background: transparent !important;
  overflow: visible !important;
}

body:has(.home-hero):has(.home-intro) .home-intro__hero {
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
  padding: 222px 0 72px !important;
  background-image: none !important;
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
}

body:has(.home-hero):has(.home-intro) .home-intro__hero::before {
  content: none !important;
}

body:has(.home-hero):has(.home-intro) .home-intro__panel {
  position: relative !important;
  width: min(840px, calc(100vw - 32px)) !important;
  max-width: 840px !important;
  margin: 0 auto !important;
  padding: 24px 36px 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  text-align: center !important;
}

body:has(.home-hero):has(.home-intro) .home-intro__panel::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  width: min(840px, 100%) !important;
  height: 210px !important;
  border-radius: 18px !important;
  background: rgba(249, 245, 236, 0.66) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transform: translateX(-50%) !important;
  z-index: -1 !important;
}

body:has(.home-hero):has(.home-intro) .home-intro__panel h1,
body:has(.home-hero):has(.home-intro) .home-intro__lead,
body:has(.home-hero):has(.home-intro) .home-intro__services,
body:has(.home-hero):has(.home-intro) .home-intro__actions {
  position: relative !important;
  z-index: 1 !important;
}

body:has(.home-hero):has(.home-intro) .home-intro__services {
  margin-top: 48px !important;
}

@media (max-width: 991px) {
  body .home-hero,
  body .home-hero .container,
  body .home-hero + .home-intro,
  body .home-hero + .home-intro .home-intro__hero,
  body:has(.home-hero):has(.home-intro) .home-hero,
  body:has(.home-hero):has(.home-intro) .home-hero .container,
  body:has(.home-hero):has(.home-intro) .home-hero__slider,
  body:has(.home-hero):has(.home-intro) .home-hero__slider .swiper-wrapper,
  body:has(.home-hero):has(.home-intro) .home-hero__slider .swiper-slide,
  body:has(.home-hero):has(.home-intro) .home-hero__slider img,
  body:has(.home-hero):has(.home-intro) .home-intro,
  body:has(.home-hero):has(.home-intro) .home-intro__hero {
    min-height: 720px !important;
    height: 720px !important;
    max-height: 720px !important;
  }

  body .home-hero .container {
    padding-top: 126px !important;
  }

  body .home-hero + .home-intro,
  body:has(.home-hero):has(.home-intro) .home-intro {
    margin-top: -720px !important;
  }

  body .home-hero + .home-intro .home-intro__hero,
  body:has(.home-hero):has(.home-intro) .home-intro__hero {
    padding: 154px 0 56px !important;
  }

  body .home-hero__lists,
  body .home-intro__services {
    grid-template-columns: 1fr !important;
    width: min(420px, 100%) !important;
  }

  body .home-intro__actions,
  body:has(.home-hero) .home-cta-buttons__inner {
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* Stable home hero render: keep hero copy/buttons inside the hero itself. */
body:has(.home-hero) .home-hero,
body:has(.home-hero) .home-hero .container,
body:has(.home-hero) .home-hero__slider,
body:has(.home-hero) .home-hero__slider .swiper-wrapper,
body:has(.home-hero) .home-hero__slider .swiper-slide,
body:has(.home-hero) .home-hero__slider img {
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
}

body:has(.home-hero) .home-hero__panel {
  display: block !important;
}

body:has(.home-hero) .home-hero__lists {
  margin-top: 48px !important;
}

body:has(.home-hero) .home-hero__actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  margin-top: 18px !important;
}

body:has(.home-hero) .home-hero__button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 342px !important;
  min-height: 52px !important;
  padding: 7px 52px 7px 28px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

body:has(.home-hero) .home-hero__button--primary {
  background: #1f2847 !important;
  color: #fff !important;
}

body:has(.home-hero) .home-hero__button--secondary {
  background: rgba(235, 211, 211, 0.88) !important;
  color: #1f2847 !important;
}

body:has(.home-hero) .home-hero__button strong {
  position: absolute !important;
  right: 7px !important;
  top: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

body:has(.home-hero) .home-hero__button--primary strong {
  background: #667199 !important;
  color: #fff !important;
}

body:has(.home-hero) .home-hero__button--secondary strong {
  background: #fffaf5 !important;
  color: #d4b4b2 !important;
}

@media (max-width: 991px) {
  body:has(.home-hero) .home-hero,
  body:has(.home-hero) .home-hero .container,
  body:has(.home-hero) .home-hero__slider,
  body:has(.home-hero) .home-hero__slider .swiper-wrapper,
  body:has(.home-hero) .home-hero__slider .swiper-slide,
  body:has(.home-hero) .home-hero__slider img {
    height: 720px !important;
    min-height: 720px !important;
    max-height: 720px !important;
  }

  body:has(.home-hero) .home-hero__actions {
    flex-direction: column !important;
  }
}

/* Final home hero lock: keep the text/buttons pinned over the uploaded image. */
html body:has(.home-hero) .home-hero {
  position: relative !important;
  height: 760px !important;
  min-height: 760px !important;
  max-height: 760px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center !important;
}

html body:has(.home-hero) .home-hero__slider {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

html body:has(.home-hero) .home-hero__slider,
html body:has(.home-hero) .home-hero__slider .swiper-wrapper,
html body:has(.home-hero) .home-hero__slider .swiper-slide,
html body:has(.home-hero) .home-hero__slider img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
}

html body:has(.home-hero) .home-hero__slider img {
  display: block !important;
  object-fit: cover !important;
}

html body:has(.home-hero) .home-hero > .container {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
}

html body:has(.home-hero) .home-hero__panel {
  position: absolute !important;
  top: 202px !important;
  left: 50% !important;
  width: min(890px, calc(100vw - 32px)) !important;
  max-width: 890px !important;
  margin: 0 !important;
  transform: translateX(-50%) !important;
  pointer-events: auto !important;
}

@media (max-width: 991px) {
  html body:has(.home-hero) .home-hero {
    height: 720px !important;
    min-height: 720px !important;
    max-height: 720px !important;
  }

  html body:has(.home-hero) .home-hero__panel {
    top: 146px !important;
  }
}

@media (max-width: 575px) {
  html body:has(.home-hero) .home-hero {
    height: 680px !important;
    min-height: 680px !important;
    max-height: 680px !important;
  }

  html body:has(.home-hero) .home-hero__panel {
    top: 120px !important;
    width: calc(100vw - 24px) !important;
    padding: 20px 18px 22px !important;
  }
}

/* Final text components pass */
body .content-text-section--single,
body .content-text-section--double {
  padding: 18px 0 18px !important;
  background: transparent !important;
}

body .content-text-section--single .container,
body .content-text-section--double .container {
  max-width: 1450px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #DDC9CA !important;
}

body .content-text-section--single .container::after,
body .content-text-section--double .container::after {
  display: none !important;
}

body .content-text-section--single h2,
body .content-text-section--double h2 {
  margin: 0 0 12px !important;
  color: #1E2640 !important;
  font-family: "Spectral", serif !important;
  font-size: 25px !important;
  font-weight: 400 !important;
  line-height: 1.16 !important;
  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

body .content-text-section--single .content-text-section__body,
body .content-text-section--double .content-text-section__body {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body .content-text-section--single .content-text-section__body,
body .content-text-section--single .content-text-section__body p,
body .content-text-section--double .content-text-section__body,
body .content-text-section--double .content-text-section__body p {
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.34 !important;
}

body .content-text-section--single .content-text-section__body p,
body .content-text-section--double .content-text-section__body p {
  margin: 0 0 8px !important;
}

body .content-text-section--single .content-text-section__body p:last-child,
body .content-text-section--double .content-text-section__body p:last-child {
  margin-bottom: 0 !important;
}

body .content-text-section--double .content-text-section__columns {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 92px !important;
  align-items: start !important;
}

@media (max-width: 767px) {
  body .content-text-section--single,
  body .content-text-section--double {
    padding: 16px 0 !important;
  }

  body .content-text-section--single h2,
  body .content-text-section--double h2 {
    font-size: 22px !important;
  }

  body .content-text-section--double .content-text-section__columns {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Final contact page layer alignment */
body.kontakt,
body.contact,
body.page-skin--contact {
  position: relative !important;
  overflow-x: hidden !important;
  background-color: #f5f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/contact-layer-bg-820.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.kontakt .page-content,
body.contact .page-content,
body.page-skin--contact .page-content,
body.kontakt .simple-page-header,
body.contact .simple-page-header,
body.page-skin--contact .simple-page-header,
body.kontakt .contact-card-section,
body.contact .contact-card-section,
body.page-skin--contact .contact-card-section,
body.kontakt .map-section,
body.contact .map-section,
body.page-skin--contact .map-section {
  background-color: transparent !important;
  background-image: none !important;
}

body.kontakt::before,
body.contact::before,
body.page-skin--contact::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: max(-28px, calc(50% - 1015px)) !important;
  display: block !important;
  width: 520px !important;
  height: 602px !important;
  background: url("/template/stomatologbg/assets/images/contact-layer-motif-top-right.png") right top / contain no-repeat !important;
  opacity: 0.5 !important;
  filter: saturate(1.08) contrast(1.06) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.kontakt::after,
body.contact::after,
body.page-skin--contact::after,
body.page-skin--contact .page-content::before {
  content: none !important;
  display: none !important;
}

body.kontakt header,
body.kontakt .page-content,
body.kontakt footer,
body.contact header,
body.contact .page-content,
body.contact footer,
body.page-skin--contact header,
body.page-skin--contact .page-content,
body.page-skin--contact footer {
  position: relative !important;
  z-index: 1 !important;
}

body.kontakt .contact-card-section,
body.contact .contact-card-section,
body.page-skin--contact .contact-card-section {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

body.kontakt .contact-card-section::before,
body.contact .contact-card-section::before,
body.page-skin--contact .contact-card-section::before {
  content: "" !important;
  position: absolute !important;
  left: max(-24px, calc(50% - 930px)) !important;
  top: 108px !important;
  display: block !important;
  width: 430px !important;
  height: 472px !important;
  background: url("/template/stomatologbg/assets/images/contact-layer-motif-card-left.png") left top / contain no-repeat !important;
  opacity: 0.46 !important;
  filter: saturate(1.15) contrast(1.1) !important;
  transform: none !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.kontakt .contact-card-section .container,
body.contact .contact-card-section .container,
body.page-skin--contact .contact-card-section .container {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 991px) {
  body.kontakt::before,
  body.contact::before,
  body.page-skin--contact::before {
    right: -170px !important;
    width: 410px !important;
    height: 475px !important;
    opacity: 0.42 !important;
  }

  body.kontakt .contact-card-section::before,
  body.contact .contact-card-section::before,
  body.page-skin--contact .contact-card-section::before {
    left: -190px !important;
    top: 70px !important;
    width: 350px !important;
    height: 384px !important;
    opacity: 0.38 !important;
  }
}

/* Contact layout skin: keep these motifs tied to the selected page layout. */
body.page-skin--contact {
  position: relative !important;
  overflow-x: hidden !important;
  background-color: #f5f8fb !important;
  background-image: url("/template/stomatologbg/assets/images/contact-layer-bg-820.png") !important;
  background-repeat: repeat-y !important;
  background-position: center top !important;
  background-size: 1920px auto !important;
}

body.page-skin--contact::before,
body.page-skin--contact::after {
  content: none !important;
  display: none !important;
}

body.page-skin--contact header,
body.page-skin--contact .page-content,
body.page-skin--contact footer {
  position: relative !important;
  z-index: 1 !important;
}

body.page-skin--contact .page-content {
  overflow: hidden !important;
  background: transparent !important;
}

body.page-skin--contact .page-content::before {
  content: none !important;
  display: none !important;
}

body.page-skin--contact .page-content::after {
  content: "" !important;
  position: absolute !important;
  top: -120px !important;
  right: max(-26px, calc(50% - 1010px)) !important;
  display: block !important;
  width: 540px !important;
  height: 610px !important;
  background: url("/template/stomatologbg/assets/images/contact-layer-motif-top-right.png") right top / contain no-repeat !important;
  opacity: 0.58 !important;
  filter: saturate(1.12) contrast(1.08) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.page-skin--contact .simple-page-header,
body.page-skin--contact .contact-card-section,
body.page-skin--contact .map-section,
body.page-skin--contact .page-content > section,
body.page-skin--contact .page-content > div[class*="section"],
body.page-skin--contact .page-content > div[class*="component"] {
  background: transparent !important;
  background-image: none !important;
}

body.page-skin--contact .simple-page-header::before,
body.page-skin--contact .simple-page-header::after,
body.page-skin--contact .contact-card-section::after {
  content: none !important;
  display: none !important;
}

body.page-skin--contact .page-content > *,
body.page-skin--contact .simple-page-header .container,
body.page-skin--contact .contact-card-section .container,
body.page-skin--contact .map-section,
body.page-skin--contact .page-content > section > .container,
body.page-skin--contact .page-content > div[class*="section"] > .container,
body.page-skin--contact .page-content > div[class*="component"] > .container {
  position: relative !important;
  z-index: 1 !important;
}

body.page-skin--contact .contact-card-section {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

body.page-skin--contact .contact-card-section::before {
  content: "" !important;
  position: absolute !important;
  left: max(-32px, calc(50% - 950px)) !important;
  top: 78px !important;
  display: block !important;
  width: 530px !important;
  height: 582px !important;
  background: url("/template/stomatologbg/assets/images/contact-layer-motif-card-left.png") left top / contain no-repeat !important;
  opacity: 0.66 !important;
  filter: saturate(1.22) contrast(1.16) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

@media (max-width: 991px) {
  body.page-skin--contact .page-content::after {
    right: -170px !important;
    width: 430px !important;
    height: 486px !important;
    opacity: 0.5 !important;
  }

body.page-skin--contact .contact-card-section::before {
    left: -178px !important;
    top: 54px !important;
    width: 390px !important;
    height: 428px !important;
    opacity: 0.52 !important;
  }
}

/* Contact layout: keep the top-right motif anchored to the page start. */
body.kontakt::before,
body.contact::before,
body.contact-page::before,
body.page-skin--contact::before {
  content: none !important;
  display: none !important;
}

body.kontakt header:first-of-type,
body.contact header:first-of-type,
body.contact-page header:first-of-type,
body.page-skin--contact header:first-of-type {
  position: relative !important;
  overflow: visible !important;
  isolation: isolate !important;
  z-index: 5 !important;
}

body.kontakt header:first-of-type::after,
body.contact header:first-of-type::after,
body.contact-page header:first-of-type::after,
body.page-skin--contact header:first-of-type::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: max(-18px, calc(50% - 960px)) !important;
  display: block !important;
  width: clamp(360px, 28vw, 520px) !important;
  height: clamp(416px, 32vw, 600px) !important;
  background: url("/template/stomatologbg/assets/images/contact-layer-motif-top-right.png") right top / contain no-repeat !important;
  opacity: 0.74 !important;
  filter: saturate(1.26) contrast(1.16) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.kontakt header:first-of-type > *,
body.contact header:first-of-type > *,
body.contact-page header:first-of-type > *,
body.page-skin--contact header:first-of-type > * {
  position: relative !important;
  z-index: 1 !important;
}

body.kontakt .page-content::after,
body.contact .page-content::after,
body.contact-page .page-content::after,
body.page-skin--contact .page-content::after {
  content: none !important;
  display: none !important;
}

body.kontakt header,
body.kontakt .page-content,
body.kontakt footer,
body.contact header,
body.contact .page-content,
body.contact footer,
body.contact-page header,
body.contact-page .page-content,
body.contact-page footer,
body.page-skin--contact header,
body.page-skin--contact .page-content,
body.page-skin--contact footer {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 991px) {
  body.kontakt header:first-of-type::after,
  body.contact header:first-of-type::after,
  body.contact-page header:first-of-type::after,
  body.page-skin--contact header:first-of-type::after {
    right: -150px !important;
    width: 410px !important;
    height: 474px !important;
    opacity: 0.64 !important;
  }
}

body.kontakt .simple-page-header,
body.contact .simple-page-header,
body.contact-page .simple-page-header,
body.page-skin--contact .simple-page-header {
  padding-top: clamp(34px, 3vw, 52px) !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

body.kontakt .simple-page-header .container,
body.contact .simple-page-header .container,
body.contact-page .simple-page-header .container,
body.page-skin--contact .simple-page-header .container {
  width: min(100%, 1450px) !important;
  max-width: 1450px !important;
}

body.kontakt .simple-page-header__pill,
body.contact .simple-page-header__pill,
body.contact-page .simple-page-header__pill,
body.page-skin--contact .simple-page-header__pill {
  width: min(100%, 700px) !important;
  max-width: min(100%, 700px) !important;
  min-height: auto !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding: clamp(15px, 1.35vw, 22px) clamp(42px, 4vw, 68px) !important;
}

body.kontakt .contact-card-section,
body.contact .contact-card-section,
body.contact-page .contact-card-section,
body.page-skin--contact .contact-card-section {
  margin-top: clamp(42px, 3.6vw, 66px) !important;
  padding-top: 0 !important;
}

body.kontakt .contact-card__form-panel::before,
body.contact .contact-card__form-panel::before,
body.contact-page .contact-card__form-panel::before,
body.page-skin--contact .contact-card__form-panel::before {
  inset: 0 !important;
  background-position: right -54px center !important;
  background-size: auto 112% !important;
  opacity: 0.98 !important;
  filter: saturate(1.42) contrast(1.42) brightness(1.08) !important;
}

body.kontakt .contact-card__form button,
body.contact .contact-card__form button,
body.contact-page .contact-card__form button,
body.page-skin--contact .contact-card__form button {
  position: relative !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 0 62px !important;
}

body.kontakt .contact-card__form button span,
body.contact .contact-card__form button span,
body.contact-page .contact-card__form button span,
body.page-skin--contact .contact-card__form button span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

body.kontakt .contact-card__form button img,
body.contact .contact-card__form button img,
body.contact-page .contact-card__form button img,
body.page-skin--contact .contact-card__form button img {
  position: absolute !important;
  right: 32px !important;
  top: 50% !important;
  width: 24px !important;
  height: 24px !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 767px) {
  body.kontakt .simple-page-header__pill,
  body.contact .simple-page-header__pill,
  body.contact-page .simple-page-header__pill,
  body.page-skin--contact .simple-page-header__pill {
    width: min(100%, 520px) !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  body.kontakt .contact-card-section,
  body.contact .contact-card-section,
  body.contact-page .contact-card-section,
  body.page-skin--contact .contact-card-section {
    margin-top: 48px !important;
  }
}

/* Price list component - Figma aligned card, table typography and corner motif. */
body .price-list-box__card,
body.cenovnik2 .price-list-box__card {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: #B9C1D3 !important;
}

body .price-list-box__flower,
body.cenovnik2 .price-list-box__flower {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: clamp(220px, 26vw, 390px) !important;
  max-width: none !important;
  height: auto !important;
  opacity: 0.58 !important;
  filter: saturate(1.18) contrast(1.12) !important;
  mix-blend-mode: multiply !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

body .price-list-box__card h2,
body.cenovnik2 .price-list-box__card h2 {
  position: relative !important;
  z-index: 2 !important;
  color: #5D6990 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

body .price-list-box__table-wrap,
body.cenovnik2 .price-list-box__table-wrap {
  position: relative !important;
  z-index: 2 !important;
}

body .price-list-box__table-wrap::after,
body.cenovnik2 .price-list-box__table-wrap::after {
  content: none !important;
  display: none !important;
}

body .price-list-box__table,
body .price-list-box__table th,
body .price-list-box__table td,
body.cenovnik2 .price-list-box__table,
body.cenovnik2 .price-list-box__table th,
body.cenovnik2 .price-list-box__table td {
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

body .price-list-box__table thead th,
body.cenovnik2 .price-list-box__table thead th {
  background: #DDC9CA !important;
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

body .price-list-box__card::after,
body.cenovnik2 .price-list-box__card::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  display: block !important;
  width: clamp(220px, 26vw, 390px) !important;
  height: clamp(300px, 36vw, 545px) !important;
  background: url("/template/stomatologbg/assets/images/price-list-corner-motif.png") right top / contain no-repeat !important;
  opacity: 0.68 !important;
  filter: saturate(1.24) contrast(1.18) !important;
  mix-blend-mode: multiply !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

body .price-list-box__flower,
body.cenovnik2 .price-list-box__flower {
  top: 0 !important;
  right: 0 !important;
  opacity: 0.68 !important;
  filter: saturate(1.24) contrast(1.18) !important;
  transform: translateY(-22%) !important;
}

/* Final text box and FAQ component typography */
body .text-box-section__text,
body .text-box-section__text p,
body .text-box-section__text span,
body .text-box-section__text strong,
body .text-box-section__text b {
  color: #1F3A5F !important;
  font-family: "Spectral", serif !important;
  font-weight: 600 !important;
}

body .content-faq-section h2 {
  color: #1E2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

body .content-faq-section__item {
  border-bottom-color: #5D6990 !important;
}

body .content-faq-section__items {
  border-color: #5D6990 !important;
}

body .content-faq-section h2 {
  border-color: #DDC9CA !important;
}

body .content-faq-section__question,
body .content-faq-section__question span {
  color: #1F3A5F !important;
  font-family: "Spectral", serif !important;
  font-weight: 500 !important;
}

body .content-faq-section__icon::before,
body .content-faq-section__icon::after {
  background: #1F3A5F !important;
}

body .content-faq-section__answer,
body .content-faq-section__answer p,
body .content-faq-section__answer li,
body .content-faq-section__answer span {
  color: #4A4E69 !important;
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400 !important;
}

/* Final home component typography and sizing pass */
body section.home-technology .home-section-title h2 {
  color: #1F3A5F !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

body section.home-technology .home-section-title div,
body section.home-technology .home-section-title div p,
body section.home-technology .home-section-title div span {
  color: #1E1E1E !important;
  font-family: "Lora", serif !important;
  font-weight: 400 !important;
}

body section.home-technology .home-technology__card h3 {
  color: #1F3A5F !important;
  font-family: "Lora", serif !important;
  font-weight: 400 !important;
}

body section.home-technology .home-technology__card p {
  color: #1E1E1E !important;
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400 !important;
}

body section.home-technology .home-technology__icon,
body section.home-technology .home-technology__icon img,
body section.home-technology .home-technology__icon span {
  width: 118px !important;
  height: 118px !important;
}

body section.home-technology .home-technology__icon {
  margin-bottom: 24px !important;
}

body section.home-blogs h2 {
  color: #1F3A5F !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

body section.home-blogs .home-blogs__content h3 {
  color: #1F2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 500 !important;
}

body section.home-blogs .home-blogs__content p {
  color: #4A4E65 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

body section.home-blogs .home-blogs__content a {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  flex-basis: 34px !important;
  padding: 0 !important;
}

body section.home-blogs .home-blogs__content a img {
  width: 14px !important;
  height: 14px !important;
}

body section.home-contact .home-contact__head h2 {
  color: #1E2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 600 !important;
}

body section.home-contact .home-contact__head h3 {
  color: #1E2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

body section.home-contact .home-contact__head p {
  color: #4A4E69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

body section.home-contact .home-contact__form button {
  gap: clamp(30px, 2.5vw, 48px) !important;
  width: clamp(205px, 14.5vw, 276px) !important;
  min-height: clamp(36px, 2.25vw, 44px) !important;
  padding: 0 clamp(18px, 1.1vw, 22px) 0 clamp(36px, 2.2vw, 44px) !important;
  font-size: clamp(12px, .74vw, 14px) !important;
}

body section.home-contact .home-contact__form button::after {
  width: 17px !important;
  height: 17px !important;
  flex-basis: 17px !important;
}

@media (max-width: 575px) {
  body section.home-technology .home-technology__icon,
  body section.home-technology .home-technology__icon img,
  body section.home-technology .home-technology__icon span {
    width: 100px !important;
    height: 100px !important;
  }

  body section.home-blogs .home-blogs__content a {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    flex-basis: 32px !important;
  }
}

/* Final visual corrections for home cards */
body section.home-technology .home-technology__icon {
  width: 146px !important;
  height: 146px !important;
  max-width: 146px !important;
  margin-bottom: 26px !important;
}

body section.home-technology .home-technology__icon img,
body section.home-technology .home-technology__icon span {
  width: 146px !important;
  height: 146px !important;
  max-width: none !important;
  object-fit: contain !important;
  transform: scale(1.12) !important;
  transform-origin: center center !important;
}

body section.home-blogs .home-blogs__card {
  grid-template-columns: minmax(0, 1fr) clamp(155px, 38%, 212px) !important;
}

body section.home-blogs .home-blogs__content {
  min-width: 0 !important;
  overflow: hidden !important;
  padding-right: 12px !important;
  position: relative !important;
  z-index: 2 !important;
}

body section.home-blogs .home-blogs__content p {
  width: min(100%, 235px) !important;
  max-width: 235px !important;
  margin-right: 0 !important;
}

body section.home-blogs .home-blogs__image {
  min-width: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

body section.home-blogs .home-blogs__content a {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  flex-basis: 44px !important;
}

body section.home-blogs .home-blogs__content a img {
  width: 44px !important;
  height: 44px !important;
}

body section.home-contact .home-contact__panel::before {
  opacity: 0.62 !important;
}

body section.home-contact .home-contact__form button {
  justify-content: space-between !important;
  gap: 0 !important;
  width: clamp(178px, 12.4vw, 238px) !important;
  min-height: clamp(32px, 2vw, 39px) !important;
  padding: 0 clamp(13px, 0.9vw, 18px) 0 clamp(24px, 1.7vw, 34px) !important;
  font-size: clamp(11px, 0.68vw, 13px) !important;
}

body section.home-contact .home-contact__form button::after {
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 15px !important;
  margin-left: auto !important;
}

@media (max-width: 575px) {
  body section.home-technology .home-technology__icon,
  body section.home-technology .home-technology__icon img,
  body section.home-technology .home-technology__icon span {
    width: 116px !important;
    height: 116px !important;
  }

  body section.home-blogs .home-blogs__card {
    grid-template-columns: 1fr !important;
  }

  body section.home-blogs .home-blogs__content p {
    max-width: 100% !important;
  }
}

/* Our technology card shape and image placement */
body section.home-technology .home-technology__card {
  display: flex !important;
  min-height: clamp(315px, 18.2vw, 365px) !important;
  padding: clamp(10px, 0.75vw, 14px) clamp(22px, 1.8vw, 32px) clamp(28px, 2vw, 38px) !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  border-radius: clamp(42px, 3.3vw, 62px) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow:
    0 0 0 1px rgba(185, 193, 211, 0.2),
    0 9px 18px rgba(93, 105, 144, 0.22) !important;
  overflow: hidden !important;
}

body section.home-technology .home-technology__icon {
  margin-top: 0 !important;
  margin-bottom: clamp(14px, 1.1vw, 20px) !important;
}

body section.home-technology .home-technology__card p {
  max-width: 92% !important;
  margin-inline: auto !important;
}

/* Our technology cards - match compact Figma proportion */
body section.home-technology .home-technology__grid {
  max-width: 1160px !important;
  gap: clamp(22px, 2vw, 32px) !important;
  align-items: end !important;
  justify-content: center !important;
}

body section.home-technology .home-technology__card {
  width: min(100%, 332px) !important;
  max-width: 332px !important;
  min-height: clamp(330px, 20.6vw, 358px) !important;
  padding: clamp(14px, 1vw, 19px) clamp(26px, 1.8vw, 32px) clamp(22px, 1.5vw, 27px) !important;
  justify-self: center !important;
  border-radius: clamp(58px, 4.3vw, 74px) !important;
  box-shadow:
    0 0 0 1px rgba(185, 193, 211, 0.24),
    0 11px 18px rgba(93, 105, 144, 0.18) !important;
}

body section.home-technology .home-technology__icon {
  width: clamp(138px, 8.7vw, 162px) !important;
  height: clamp(106px, 7vw, 132px) !important;
  margin-bottom: clamp(18px, 1.35vw, 24px) !important;
}

body section.home-technology .home-technology__icon img,
body section.home-technology .home-technology__icon span {
  width: clamp(138px, 8.7vw, 162px) !important;
  height: clamp(106px, 7vw, 132px) !important;
  transform: none !important;
}

body section.home-technology .home-technology__card h3 {
  max-width: 220px !important;
  margin: 0 auto clamp(14px, 1vw, 19px) !important;
  font-size: clamp(24px, 1.45vw, 28px) !important;
  line-height: 1.1 !important;
}

body section.home-technology .home-technology__card p {
  max-width: 260px !important;
  font-size: clamp(16px, 0.9vw, 18px) !important;
  line-height: 1.24 !important;
}

@media (max-width: 575px) {
  body section.home-technology .home-technology__card {
    width: min(100%, 312px) !important;
    max-width: 312px !important;
    min-height: 332px !important;
  }
}

/* Home page final polish */
html body:has(.home-hero) header .topbar {
  background: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(2px) saturate(102%) !important;
  -webkit-backdrop-filter: blur(2px) saturate(102%) !important;
}

html body:has(.home-hero) header .main-nav .mainnav-content {
  backdrop-filter: blur(1.5px) saturate(101%) !important;
  -webkit-backdrop-filter: blur(1.5px) saturate(101%) !important;
}

html body .home-hero__intro,
html body:has(.home-hero):has(.home-intro) .home-intro__panel::before {
  width: min(720px, 90vw) !important;
  max-width: 720px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(2px) saturate(102%) !important;
  -webkit-backdrop-filter: blur(2px) saturate(102%) !important;
  box-shadow: 0 12px 24px rgba(30, 38, 64, 0.06) !important;
}

html body .home-hero__intro {
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 22px 32px 20px !important;
}

html body .home-hero__intro h1,
html body .home-intro h1 {
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.035em !important;
  text-transform: none !important;
}

html body .home-hero__intro p,
html body .home-intro__lead {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

html body .home-hero__lists,
html body .home-intro__services {
  width: min(620px, 86vw) !important;
}

html body .home-hero__lists ul,
html body .home-intro__services ul {
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(2px) saturate(102%) !important;
  -webkit-backdrop-filter: blur(2px) saturate(102%) !important;
  box-shadow: 0 10px 22px rgba(30, 38, 64, 0.06) !important;
}

html body .home-hero__lists li,
html body .home-intro__services li {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600 !important;
}

html body:has(.home-hero) .home-cta-buttons {
  background: transparent !important;
  margin-top: clamp(-92px, -6vw, -54px) !important;
  padding: 0 0 42px !important;
  position: relative !important;
  z-index: 6 !important;
}

html body:has(.home-hero) .home-cta-buttons__inner,
html body .home-intro__actions {
  gap: 14px !important;
  justify-content: center !important;
  margin-inline: auto !important;
  max-width: 720px !important;
  width: min(720px, 90vw) !important;
}

html body:has(.home-hero) .home-cta-buttons__btn,
html body .home-intro__button {
  align-items: center !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 14px rgba(30, 38, 64, 0.22) !important;
  display: inline-flex !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  height: 48px !important;
  justify-content: center !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  min-height: 48px !important;
  min-width: 252px !important;
  overflow: hidden !important;
  padding: 0 56px 0 25px !important;
  position: relative !important;
  width: 252px !important;
}

html body:has(.home-hero) .home-cta-buttons__btn--dark,
html body .home-intro__button--primary {
  background: #1e2640 !important;
  color: #ffffff !important;
}

html body:has(.home-hero) .home-cta-buttons__btn--light,
html body .home-intro__button--secondary {
  background: #ddc9ca !important;
  color: #4a4e69 !important;
}

html body:has(.home-hero) .home-cta-buttons__btn i,
html body .home-intro__button strong {
  align-items: center !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  font-size: 0 !important;
  height: 38px !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  position: absolute !important;
  right: 6px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 38px !important;
}

html body:has(.home-hero) .home-cta-buttons__btn i::before,
html body .home-intro__button strong::before {
  content: "\2197" !important;
  display: block !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

html body:has(.home-hero) .home-cta-buttons__btn i::after,
html body .home-intro__button strong::after {
  content: none !important;
}

html body:has(.home-hero) .home-cta-buttons__btn--dark i,
html body .home-intro__button--primary strong {
  background: #5d6990 !important;
  color: #ffffff !important;
}

html body:has(.home-hero) .home-cta-buttons__btn--light i,
html body .home-intro__button--secondary strong {
  background: #fff9f6 !important;
  color: #ddc9ca !important;
}

html body section.home-doctors {
  background: transparent !important;
  margin-top: 0 !important;
}

html body section.home-doctors .home-section-title > p {
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-section-title > h2 {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-section-title > div:first-of-type,
html body section.home-doctors .home-section-title > div:first-of-type * {
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-section-title > div:nth-of-type(2),
html body section.home-doctors .home-section-title > div:nth-of-type(2) * {
  color: #4a4e69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-doctors-team-grid {
  display: grid !important;
  gap: clamp(18px, 1.8vw, 28px) !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  justify-content: center !important;
  max-width: 1450px !important;
}

html body section.home-doctors .home-doctors-team-card h3 {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600 !important;
}

html body section.home-doctors .home-doctors-team-card .team-members-section__role,
html body section.home-doctors .home-doctors-team-card .team-members-section__excerpt,
html body section.home-doctors .home-doctors-team-card .team-members-section__content p {
  color: #4a4e69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

html body section.home-why::before {
  filter: sepia(0.12) saturate(1.55) hue-rotate(166deg) brightness(0.9) !important;
  opacity: 0.76 !important;
}

html body .home-why__grid {
  gap: clamp(8px, 1vw, 20px) !important;
  grid-template-columns: minmax(440px, 0.92fr) minmax(620px, 1.08fr) !important;
}

html body .home-why__content {
  max-width: 690px !important;
  padding-left: clamp(8px, 1.4vw, 28px) !important;
}

html body .home-why__content h2 {
  color: #1f3a5f !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

html body .home-why__toggle span {
  color: #1e1e1e !important;
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 600 !important;
}

html body .home-why__answer,
html body .home-why__answer * {
  color: #1e1e1e !important;
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400 !important;
}

@media (max-width: 1199px) {
  html body section.home-doctors .home-doctors-team-grid {
    grid-template-columns: repeat(2, minmax(0, 402px)) !important;
  }
}

@media (max-width: 767px) {
  html body section.home-doctors .home-doctors-team-grid {
    grid-template-columns: 1fr !important;
  }

  html body .home-why__grid {
    grid-template-columns: 1fr !important;
  }
}


/* Home refinements 2026-08-07 */
.site-header,
.header,
.main-header,
.header-menu,
.header-wrapper,
.navbar-wrapper,
.navigation-wrapper {
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.home-hero .hero-content,
.home-hero__content,
.hero-home__content,
.hero-home .hero-content,
.hero-home .hero-box,
.home-hero .hero-box,
.component-home-hero .hero-content,
.component-home-hero .hero-box,
.hero-section-home .hero-content,
.hero-section-home .hero-box,
.home-hero [class*="content-box"],
.hero-home [class*="content-box"],
.component-home-hero [class*="content-box"],
.home-hero [class*="text-box"],
.hero-home [class*="text-box"] {
  max-width: 900px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: rgba(255, 255, 255, .26) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  border-color: rgba(255, 255, 255, .38) !important;
}

.home-hero [class*="list"],
.hero-home [class*="list"],
.component-home-hero [class*="list"],
.home-hero [class*="service"],
.hero-home [class*="service"],
.component-home-hero [class*="service"] {
  background: rgba(255, 255, 255, .24) !important;
  backdrop-filter: blur(3px) !important;
  -webkit-backdrop-filter: blur(3px) !important;
  border-color: rgba(255, 255, 255, .36) !important;
}

.home-hero h1,
.hero-home h1,
.component-home-hero h1 {
  font-family: "Spectral", serif !important;
  color: #1e2640 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.home-hero .subtitle,
.home-hero .description,
.home-hero p,
.hero-home .subtitle,
.hero-home .description,
.hero-home p,
.component-home-hero .subtitle,
.component-home-hero .description,
.component-home-hero p {
  font-family: "Urbanist", sans-serif !important;
  color: #1e2640 !important;
}

.home-hero li,
.hero-home li,
.component-home-hero li {
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600 !important;
  color: #1e2640 !important;
}

.home-cta-buttons,
.cta-home,
.home-hero .cta,
.hero-home .cta {
  position: relative;
  z-index: 5;
  margin-top: clamp(16px, 2vw, 28px) !important;
}

.home-cta-buttons .container,
.cta-home .container {
  width: 100% !important;
  max-width: none !important;
}

.home-cta-buttons__inner,
.cta-home__inner {
  width: min(900px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
}

.home-cta-buttons__btn,
.cta-home__btn {
  position: relative;
  width: min(100%, 390px);
  min-height: 58px;
  padding: 0 74px 0 34px;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 700 !important;
  line-height: 1.05;
  text-decoration: none !important;
  box-shadow: 0 12px 22px rgba(31, 38, 64, .22);
}

.home-cta-buttons__btn--dark,
.cta-home__btn--dark,
.home-cta-buttons__btn:first-child,
.cta-home__btn:first-child {
  background: #1e2640 !important;
  color: #fff !important;
}

.home-cta-buttons__btn--light,
.cta-home__btn--light,
.home-cta-buttons__btn:last-child,
.cta-home__btn:last-child {
  background: #ddc9ca !important;
  color: #4a4e69 !important;
  border: 0 !important;
  box-shadow: 0 12px 18px rgba(221, 201, 202, .35);
}

.home-cta-buttons__btn::after,
.cta-home__btn::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

.home-cta-buttons__btn--dark::after,
.cta-home__btn--dark::after,
.home-cta-buttons__btn:first-child::after,
.cta-home__btn:first-child::after {
  background-color: rgba(93, 105, 144, .95);
  background-image: url("../images/home-cta-arrow-white.png");
}

.home-cta-buttons__btn--light::after,
.cta-home__btn--light::after,
.home-cta-buttons__btn:last-child::after,
.cta-home__btn:last-child::after {
  background-color: rgba(255, 250, 247, .95);
  background-image: url("../images/home-cta-arrow-pink.png");
}

.home-cta-buttons__btn img,
.home-cta-buttons__btn svg,
.cta-home__btn img,
.cta-home__btn svg {
  display: none !important;
}

.doctors-home-section,
.doctors-home,
.home-doctors-section,
.section-doctors-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 0 !important;
  background: #edf4f8 url("../images/home-doctors-bg.png") center top / cover no-repeat !important;
  padding-top: clamp(34px, 4vw, 62px) !important;
  padding-bottom: clamp(44px, 5vw, 80px) !important;
}

.doctors-home-section::before,
.doctors-home::before,
.home-doctors-section::before,
.section-doctors-home::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: clamp(220px, 27vw, 430px);
  height: clamp(280px, 36vw, 540px);
  background: url("../images/home-doctors-leaf-right.png") top right / contain no-repeat;
  opacity: .82;
  pointer-events: none;
}

.doctors-home-section::after,
.doctors-home::after,
.home-doctors-section::after,
.section-doctors-home::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(410px, 42vw, 620px);
  right: clamp(12px, 5vw, 105px);
  width: clamp(135px, 12vw, 215px);
  height: clamp(140px, 13vw, 230px);
  background: url("../images/home-doctors-leaf-card.png") center / contain no-repeat;
  opacity: .88;
  pointer-events: none;
}

.doctors-home-section > *,
.doctors-home > *,
.home-doctors-section > *,
.section-doctors-home > * {
  position: relative;
  z-index: 1;
}

.doctors-home-section .container,
.doctors-home .container,
.home-doctors-section .container,
.section-doctors-home .container {
  padding-top: 0 !important;
}

@media (min-width: 1200px) {
  .doctors-home-section .col-lg-4,
  .doctors-home .col-lg-4,
  .home-doctors-section .col-lg-4,
  .section-doctors-home .col-lg-4,
  .doctors-home-section .col-xl-4,
  .doctors-home .col-xl-4,
  .home-doctors-section .col-xl-4,
  .section-doctors-home .col-xl-4 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }
}

.doctors-home-section .card,
.doctors-home .card,
.home-doctors-section .card,
.section-doctors-home .card,
.doctors-home-section [class*="doctor-card"],
.doctors-home [class*="doctor-card"],
.home-doctors-section [class*="doctor-card"],
.section-doctors-home [class*="doctor-card"] {
  max-width: 265px;
  margin-left: auto;
  margin-right: auto;
}

.doctors-home-section h2,
.doctors-home h2,
.home-doctors-section h2,
.section-doctors-home h2 {
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
  color: #1e2640 !important;
}

.doctors-home-section .doctor-name,
.doctors-home-section [class*="name"],
.doctors-home .doctor-name,
.home-doctors-section .doctor-name {
  font-family: "Urbanist", sans-serif !important;
  font-weight: 600 !important;
  color: #1e2640 !important;
}

.doctors-home-section p,
.doctors-home-section .doctor-description,
.doctors-home-section [class*="description"],
.doctors-home .doctor-description,
.home-doctors-section .doctor-description {
  font-family: "Urbanist", sans-serif !important;
  color: #4a4e69 !important;
}

.why-us-home,
.why-us-section,
.home-why-us {
  margin-top: 0 !important;
  background: #edf4f8 url("../images/home-doctors-bg.png") center top / cover no-repeat !important;
}

.why-us-home::before,
.why-us-section::before,
.home-why-us::before {
  opacity: .72 !important;
}

.why-us-home h2,
.why-us-section h2,
.home-why-us h2 {
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
  color: #1f3a5f !important;
}

.why-us-home h3,
.why-us-section h3,
.home-why-us h3 {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 600 !important;
  color: #1e1e1e !important;
}

.why-us-home p,
.why-us-section p,
.home-why-us p {
  font-family: "Nunito Sans", sans-serif !important;
  color: #1e1e1e !important;
}

@media (max-width: 767px) {
  .home-cta-buttons__inner,
  .cta-home__inner {
    flex-direction: column;
    width: min(440px, calc(100% - 28px));
  }

  .home-cta-buttons__btn,
  .cta-home__btn {
    width: 100%;
    min-height: 54px;
    font-size: 18px;
  }

  .doctors-home-section::before,
  .doctors-home::before,
  .home-doctors-section::before,
  .section-doctors-home::before {
    width: 220px;
    opacity: .5;
  }

  .doctors-home-section::after,
  .doctors-home::after,
  .home-doctors-section::after,
  .section-doctors-home::after {
    width: 150px;
    opacity: .6;
  }
}
/* End home refinements 2026-08-07 */

/* Component rendering guard: these components must not depend on selected page layout */
body .category-page-header__content h1 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
  color: #1e2640 !important;
}

body .category-page-header__breadcrumb,
body .category-page-header__breadcrumb a,
body .category-page-header__breadcrumb span {
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 500 !important;
  color: #1e2640 !important;
}

body .content-text-section--single,
body .content-text-section--double {
  position: relative !important;
  padding: 18px 0 !important;
  background: transparent !important;
  color: #4a4e69 !important;
}

body .content-text-section--single .container,
body .content-text-section--double .container {
  width: min(100%, 1540px) !important;
  max-width: 1540px !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

body .content-faq-section .container {
  width: min(100%, 1540px) !important;
  max-width: 1540px !important;
  margin: 0 auto !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

body .content-text-section--single .container {
  padding-bottom: 16px !important;
  border-bottom: 1px solid #ddc9ca !important;
}

body .content-text-section--double .container {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body .content-text-section--single h2,
body .content-text-section--double h2 {
  margin: 0 0 22px !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
  color: #1e2640 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
}

body .content-text-section--single .content-text-section__body,
body .content-text-section--single .content-text-section__body p,
body .content-text-section--single .content-text-section__body li,
body .content-text-section--double .content-text-section__body,
body .content-text-section--double .content-text-section__body p,
body .content-text-section--double .content-text-section__body li {
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
  color: #4a4e69 !important;
}

body .content-text-section--single .content-text-section__body,
body .content-text-section--double .content-text-section__body {
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

body .content-text-section--double .content-text-section__columns {
  display: inline-grid !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #ddc9ca !important;
}

body .content-text-section--single + .content-text-section--single,
body .content-text-section--single + .content-text-section--double,
body .content-text-section--single + .content-faq-section,
body .content-text-section--double + .content-text-section--single,
body .content-text-section--double + .content-text-section--double,
body .content-text-section--double + .content-faq-section,
body .content-faq-section + .content-text-section--single,
body .content-faq-section + .content-text-section--double,
body .content-faq-section + .content-faq-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body .page-content > section + .content-text-section--single,
body .page-content > section + .content-text-section--double,
body .page-content > section + .content-faq-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body .content-faq-section__question {
  border-bottom: 1px solid #5d6990 !important;
}

@media (max-width: 767px) {
  body .content-text-section--single .container,
  body .content-text-section--double .container,
  body .content-faq-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

body.kontakt .simple-page-header,
body.contact .simple-page-header,
body.contact-page .simple-page-header,
body.page-skin--contact .simple-page-header {
  padding-top: clamp(34px, 3vw, 52px) !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

body.kontakt .simple-page-header .container,
body.contact .simple-page-header .container,
body.contact-page .simple-page-header .container,
body.page-skin--contact .simple-page-header .container {
  width: min(100%, 1450px) !important;
  max-width: 1450px !important;
}

body.kontakt .simple-page-header__pill,
body.contact .simple-page-header__pill,
body.contact-page .simple-page-header__pill,
body.page-skin--contact .simple-page-header__pill {
  width: min(100%, 700px) !important;
  max-width: min(100%, 700px) !important;
  min-height: auto !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding: clamp(15px, 1.35vw, 22px) clamp(42px, 4vw, 68px) !important;
}

body.kontakt .contact-card-section,
body.contact .contact-card-section,
body.contact-page .contact-card-section,
body.page-skin--contact .contact-card-section {
  margin-top: clamp(42px, 3.6vw, 66px) !important;
  padding-top: 0 !important;
}

body.kontakt .contact-card__form-panel::before,
body.contact .contact-card__form-panel::before,
body.contact-page .contact-card__form-panel::before,
body.page-skin--contact .contact-card__form-panel::before {
  inset: 0 !important;
  background-position: right -54px center !important;
  background-size: auto 112% !important;
  opacity: 0.98 !important;
  filter: saturate(1.42) contrast(1.42) brightness(1.08) !important;
}

body.kontakt .contact-card__form button,
body.contact .contact-card__form button,
body.contact-page .contact-card__form button,
body.page-skin--contact .contact-card__form button {
  position: relative !important;
  justify-content: center !important;
  gap: 0 !important;
  padding: 0 62px !important;
}

body.kontakt .contact-card__form button span,
body.contact .contact-card__form button span,
body.contact-page .contact-card__form button span,
body.page-skin--contact .contact-card__form button span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

body.kontakt .contact-card__form button img,
body.contact .contact-card__form button img,
body.contact-page .contact-card__form button img,
body.page-skin--contact .contact-card__form button img {
  position: absolute !important;
  right: 32px !important;
  top: 50% !important;
  width: 24px !important;
  height: 24px !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 767px) {
  body.kontakt .simple-page-header__pill,
  body.contact .simple-page-header__pill,
  body.contact-page .simple-page-header__pill,
  body.page-skin--contact .simple-page-header__pill {
    width: min(100%, 520px) !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }

  body.kontakt .contact-card-section,
  body.contact .contact-card-section,
  body.contact-page .contact-card-section,
  body.page-skin--contact .contact-card-section {
    margin-top: 48px !important;
  }
}

/* Contact/cenovnik final viewport override 2026-08-10 */
body.kontakt,
body.contact,
body.kontakt .page-content,
body.contact .page-content,
body.kontakt .contact-card-section,
body.contact .contact-card-section,
body.contact-page .contact-card-section,
body.page-skin--contact .contact-card-section {
  background-size: 100vw auto !important;
}

body.kontakt .simple-page-header,
body.contact .simple-page-header,
body.contact-page .simple-page-header,
body.page-skin--contact .simple-page-header {
  padding-top: clamp(42px, 3.5vw, 64px) !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

body.kontakt .simple-page-header__pill,
body.contact .simple-page-header__pill,
body.contact-page .simple-page-header__pill,
body.page-skin--contact .simple-page-header__pill {
  width: min(100%, 700px) !important;
  max-width: min(100%, 700px) !important;
  min-height: 0 !important;
  padding-top: clamp(10px, .9vw, 15px) !important;
  padding-bottom: clamp(10px, .9vw, 15px) !important;
}

body.kontakt .contact-card-section,
body.contact .contact-card-section,
body.contact-page .contact-card-section,
body.page-skin--contact .contact-card-section {
  margin-top: clamp(58px, 4.6vw, 82px) !important;
  padding-top: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

body.cenovnik2::before {
  left: 0 !important;
  right: 0 !important;
  background-size: 100vw auto !important;
}

@media (min-width: 1600px) {
  body.kontakt,
  body.contact,
  body.kontakt .page-content,
  body.contact .page-content,
  body.kontakt .contact-card-section,
  body.contact .contact-card-section,
  body.contact-page .contact-card-section,
  body.page-skin--contact .contact-card-section {
    background-size: 100vw auto !important;
  }

  body.cenovnik2::before {
    background-size: 100vw auto !important;
  }
}
/* End contact/cenovnik final viewport override 2026-08-10 */

/* Generic page header pill alignment */
body.general-page .simple-page-header,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header {
  min-height: clamp(245px, 17vw, 310px) !important;
  padding: clamp(20px, 2.4vw, 38px) 0 clamp(18px, 2vw, 34px) !important;
  display: flex !important;
  align-items: center !important;
}

body.general-page .simple-page-header .container,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header .container {
  display: flex !important;
  justify-content: flex-start !important;
}

body.general-page .simple-page-header__pill,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header__pill {
  width: fit-content !important;
  max-width: 100% !important;
  min-width: min(100%, 560px) !important;
  min-height: 102px !important;
  padding: 16px clamp(42px, 4.4vw, 72px) 15px !important;
  border-radius: 28px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

body.general-page .simple-page-header__pill h1,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header__pill h1 {
  margin-bottom: 6px !important;
  max-width: 100% !important;
  font-size: clamp(32px, 2.45vw, 46px) !important;
  line-height: 1.18 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.general-page .simple-page-header__breadcrumb,
body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header__breadcrumb {
  font-size: 13px !important;
}

@media (max-width: 767px) {
  body.general-page .simple-page-header,
  body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header {
    min-height: 220px !important;
    padding-top: 26px !important;
    padding-bottom: 24px !important;
  }

  body.general-page .simple-page-header__pill,
  body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header__pill {
    width: min(100%, 520px) !important;
    min-width: 0 !important;
    min-height: 92px !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  body.general-page .simple-page-header__pill h1,
  body.has-no-image-header:not(.gallery-page):not(.blog-page-list):not(.single-blog-page):not(.cenovnik2):not(.kontakt):not(.contact):not(.page-category):not(.team-member-page) .simple-page-header__pill h1 {
    white-space: normal !important;
  }
}

/* Blog list: align pill and apply uploaded card background */
body.blog-page-list .simple-page-header .container {
  max-width: 1450px !important;
}

body.blog-page-list .simple-page-header__pill {
  margin-left: 0 !important;
  margin-right: auto !important;
}

body.blog-page-list .blog-overview__card {
  width: 100% !important;
  max-width: 304px !important;
  min-height: 390px !important;
  padding: 24px 20px 58px !important;
  border-radius: 28px !important;
  background-color: transparent !important;
  background-image: url("/template/stomatologbg/assets/images/blog-card-bg-frame.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  box-shadow: none !important;
}

body.blog-page-list .blog-overview__grid {
  grid-template-columns: repeat(3, minmax(0, 304px)) !important;
  gap: 22px !important;
}

body.blog-page-list .blog-overview__image {
  height: 166px !important;
  border-radius: 18px !important;
  background: transparent !important;
}

body.blog-page-list .blog-overview__content {
  padding-top: 17px !important;
}

body.blog-page-list .blog-overview__content h2 {
  margin-bottom: 44px !important;
  font-family: "Spectral", serif !important;
  font-size: 18px !important;
  line-height: 1.16 !important;
  letter-spacing: 0.04em !important;
}

body.blog-page-list .blog-overview__content p {
  max-width: calc(100% - 48px) !important;
  font-size: 11px !important;
  line-height: 1.32 !important;
}

body.blog-page-list .blog-overview__arrow {
  right: 21px !important;
  bottom: 21px !important;
  width: 32px !important;
  height: 32px !important;
  background: #193963 !important;
}

/* Home hero final sizing */
html body .home-hero__lists {
  display: flex !important;
  grid-template-columns: none !important;
  justify-content: center !important;
  align-items: flex-start !important;
  width: auto !important;
  max-width: min(760px, 90vw) !important;
  gap: 26px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  opacity: 1 !important;
  overflow: visible !important;
  isolation: auto !important;
}

html body .home-hero__lists::before,
html body .home-hero__lists::after {
  content: none !important;
  display: none !important;
}

html body .home-hero [class*="list"].home-hero__lists {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html body .home-hero [class*="list"],
html body .hero-home [class*="list"],
html body .component-home-hero [class*="list"] {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-color: transparent !important;
}

html body:has(.home-hero) .home-hero__panel {
  padding-top: clamp(34px, 3vw, 58px) !important;
}

html body .home-hero__lists ul {
  display: block !important;
  justify-self: auto !important;
  flex: 0 0 auto !important;
  width: max-content !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 12px 24px 12px 30px !important;
  border-radius: 30px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(2px) saturate(102%) !important;
  -webkit-backdrop-filter: blur(2px) saturate(102%) !important;
  box-shadow: 0 12px 24px rgba(30, 38, 64, 0.06) !important;
  overflow: hidden !important;
}

html body .home-hero__lists li {
  white-space: nowrap !important;
}

html body:has(.home-hero) .home-cta-buttons__inner {
  width: min(720px, 90vw) !important;
  max-width: 720px !important;
  gap: 18px !important;
}

html body:has(.home-hero) .home-cta-buttons__btn {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 58px !important;
  height: 58px !important;
  font-size: 19px !important;
  padding: 0 72px 0 32px !important;
}

html body:has(.home-hero) .home-cta-buttons__btn::after {
  width: 50px !important;
  height: 50px !important;
  right: 7px !important;
  background-size: 28px 28px !important;
  z-index: 2 !important;
}

html body:has(.home-hero) .home-cta-buttons__btn i,
html body:has(.home-hero) .home-cta-buttons__btn i::before,
html body:has(.home-hero) .home-cta-buttons__btn i::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Home doctors section: Figma background and added right-side motifs */
html body section.home-doctors {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: #edf4f8 url("/template/stomatologbg/assets/images/home-doctors-section-bg-figma.png") center top / cover no-repeat !important;
}

html body section.home-doctors::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  top: clamp(0px, 1.2vw, 18px) !important;
  right: clamp(-80px, -3vw, -24px) !important;
  width: clamp(260px, 25vw, 430px) !important;
  aspect-ratio: 562 / 810 !important;
  background: url("/template/stomatologbg/assets/images/home-doctors-motif-top-right-figma.png") top right / contain no-repeat !important;
  opacity: 0.52 !important;
  pointer-events: none !important;
}

html body section.home-doctors::after {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  right: clamp(-40px, 2vw, 48px) !important;
  bottom: clamp(34px, 5vw, 86px) !important;
  width: clamp(190px, 18vw, 330px) !important;
  aspect-ratio: 538 / 623 !important;
  background: url("/template/stomatologbg/assets/images/home-doctors-motif-bottom-right-figma.png") right bottom / contain no-repeat !important;
  opacity: 0.74 !important;
  pointer-events: none !important;
}

html body section.home-doctors > .container {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 767px) {
  html body section.home-doctors::before {
    width: 220px !important;
    right: -92px !important;
    opacity: 0.42 !important;
  }

  html body section.home-doctors::after {
    width: 170px !important;
    right: -58px !important;
    bottom: 28px !important;
    opacity: 0.52 !important;
  }
}

/* Doctors home section final spacing, typography, and card alignment */
html body .home-cta-buttons + .home-doctors,
html body .home-cta-buttons + .doctors-section,
html body .home-cta-buttons + section.home-doctors {
  padding-top: clamp(42px, 3.1vw, 56px) !important;
}

html body section.home-doctors {
  padding-top: clamp(42px, 3.1vw, 56px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(237, 244, 248, 0.32) 72px, rgba(237, 244, 248, 0) 150px),
    #edf4f8 url("/template/stomatologbg/assets/images/home-doctors-section-bg-figma.png") center top / cover no-repeat !important;
  box-shadow: inset 0 52px 52px -46px rgba(255, 255, 255, 0.92) !important;
}

html body section.home-doctors::before {
  top: 0 !important;
  right: clamp(-80px, -3vw, -24px) !important;
  width: clamp(290px, 27vw, 470px) !important;
  opacity: 0.64 !important;
}

html body section.home-doctors::after {
  right: clamp(24px, 4.4vw, 92px) !important;
  bottom: clamp(100px, 9vw, 160px) !important;
  width: clamp(260px, 22vw, 420px) !important;
  opacity: 0.86 !important;
}

html body section.home-doctors .home-doctors__top-text,
html body section.home-doctors .home-doctors__top-text * {
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-section-title > p {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-section-title > h2 {
  color: #1e2640 !important;
  font-family: "Spectral", serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-section-title > div,
html body section.home-doctors .home-section-title > div * {
  color: #4a4e69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-weight: 400 !important;
}

html body section.home-doctors .home-section-title {
  margin-bottom: clamp(44px, 4vw, 58px) !important;
}

html body section.home-doctors .home-doctors-team-grid {
  position: relative !important;
  z-index: 2 !important;
  grid-template-columns: repeat(4, minmax(0, 292px)) !important;
  gap: clamp(10px, 1vw, 16px) !important;
  justify-content: center !important;
  max-width: 1220px !important;
}

html body section.home-doctors .home-doctors-team-card {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  max-width: 292px !important;
  min-height: 530px !important;
  padding: 22px 18px 30px !important;
  border-radius: 28px !important;
}

html body section.home-doctors .home-doctors-team-card::before {
  width: 250px !important;
  height: 278px !important;
  left: 21px !important;
  top: 28px !important;
}

html body section.home-doctors .home-doctors-team-card .team-members-section__image {
  width: min(245px, 92%) !important;
  height: 280px !important;
  margin-bottom: 28px !important;
}

@media (max-width: 1199px) {
  html body section.home-doctors .home-doctors-team-grid {
    grid-template-columns: repeat(2, minmax(0, 292px)) !important;
  }
}

@media (max-width: 767px) {
  html body .home-cta-buttons + .home-doctors,
  html body .home-cta-buttons + .doctors-section,
  html body .home-cta-buttons + section.home-doctors,
  html body section.home-doctors {
    padding-top: 36px !important;
  }

  html body section.home-doctors .home-doctors-team-grid {
    grid-template-columns: minmax(0, 292px) !important;
  }
}

/* Doctors home seamless CTA handoff */
html body:has(.home-cta-buttons + .home-doctors) .home-cta-buttons {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(237, 244, 248, 0.38) 74%, #edf4f8 100%) !important;
}

html body:has(.home-cta-buttons + .home-doctors) .home-cta-buttons::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -112px !important;
  height: 150px !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(237, 244, 248, 0.96) 0%, rgba(237, 244, 248, 0.72) 44%, rgba(237, 244, 248, 0) 100%) !important;
}

html body:has(.home-cta-buttons + .home-doctors) .home-cta-buttons > .container {
  position: relative !important;
  z-index: 1 !important;
}

html body .home-cta-buttons + .home-doctors,
html body .home-cta-buttons + .doctors-section,
html body .home-cta-buttons + section.home-doctors {
  margin-top: -1px !important;
  padding-top: clamp(38px, 2.7vw, 50px) !important;
}

html body section.home-doctors {
  padding-top: clamp(38px, 2.7vw, 50px) !important;
}

html body section.home-doctors::before {
  top: clamp(-155px, -8.4vw, -104px) !important;
  opacity: 0.96 !important;
  filter: saturate(1.55) contrast(1.32) brightness(0.82) !important;
}

html body section.home-doctors .home-section-title h2::after {
  background: #456a8a !important;
}

html body section.home-doctors::after {
  left: min(calc(50% + 430px), calc(100% - 380px)) !important;
  right: auto !important;
  bottom: clamp(86px, 7.5vw, 132px) !important;
  width: clamp(340px, 26vw, 520px) !important;
  opacity: 0.98 !important;
  filter: saturate(1.55) contrast(1.32) brightness(0.82) !important;
}

/* Doctors home: remove duplicate left leaf and pin the right leaf to the card row */
html body section.home-doctors {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(237, 244, 248, 0.34) 72px, rgba(237, 244, 248, 0) 150px),
    linear-gradient(180deg, #f8fbfd 0%, #edf4f8 46%, #b7c1d4 100%) !important;
}

html body section.home-doctors::before {
  z-index: 1 !important;
}

html body section.home-doctors::after {
  z-index: 1 !important;
  top: clamp(330px, 24vw, 430px) !important;
  bottom: auto !important;
  left: clamp(calc(50% + 285px), calc(50% + 21vw), calc(100% - 400px)) !important;
  width: clamp(360px, 29vw, 560px) !important;
  opacity: 1 !important;
}

html body section.home-doctors > .container {
  position: relative !important;
  z-index: 2 !important;
}

html body section.home-doctors .home-doctors-team-card {
  z-index: 3 !important;
}

/* Why us home: darker smaller motif and raised copy */
html body section.home-why::before {
  left: 0 !important;
  top: clamp(96px, 7vw, 126px) !important;
  width: clamp(210px, 15vw, 286px) !important;
  height: clamp(300px, 21vw, 408px) !important;
  opacity: 1 !important;
  background: #91a8bf !important;
  -webkit-mask: url("/template/stomatologbg/assets/images/why-home-objects.png") left top / contain no-repeat !important;
  mask: url("/template/stomatologbg/assets/images/why-home-objects.png") left top / contain no-repeat !important;
  filter: none !important;
}

html body .home-why__content {
  align-self: start !important;
  padding-bottom: 0 !important;
  margin-left: clamp(52px, 7vw, 138px) !important;
  transform: translateY(clamp(28px, 3vw, 58px)) !important;
}

html body .home-why__grid {
  align-items: start !important;
}

@media (max-width: 991px) {
  html body section.home-why::before {
    top: 80px !important;
    width: 164px !important;
    height: 234px !important;
    opacity: 0.82 !important;
  }

  html body .home-why__content {
    transform: none !important;
  }
}

/* Services with description final Figma sizing and motifs */
html body section.home-why + section.home-services-desc {
  margin-top: -142px !important;
  padding-top: clamp(92px, 7vw, 128px) !important;
}

html body section.home-services-desc {
  padding-bottom: clamp(74px, 6vw, 104px) !important;
}

html body section.home-services-desc::before {
  left: max(72px, calc(50% - 760px)) !important;
  top: clamp(250px, 18vw, 330px) !important;
  width: clamp(250px, 18vw, 340px) !important;
  height: clamp(190px, 14vw, 258px) !important;
  opacity: 0.62 !important;
  filter: saturate(1.28) contrast(1.16) brightness(0.9) !important;
  z-index: 1 !important;
}

html body section.home-services-desc::after {
  right: max(112px, calc(50% - 790px)) !important;
  top: clamp(690px, 48vw, 830px) !important;
  width: clamp(230px, 17vw, 320px) !important;
  height: clamp(216px, 16vw, 302px) !important;
  opacity: 0.56 !important;
  filter: saturate(1.12) contrast(1.08) brightness(0.98) !important;
  z-index: 1 !important;
}

html body section.home-services-desc .container,
html body section.home-services-desc h2,
html body section.home-services-desc .home-services-desc__grid {
  position: relative !important;
  z-index: 2 !important;
}

html body section.home-services-desc h2 {
  margin-bottom: clamp(50px, 4vw, 68px) !important;
}

html body section.home-services-desc .home-services-desc__grid {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: clamp(26px, 2.2vw, 38px) clamp(20px, 2vw, 32px) !important;
  max-width: 1260px !important;
}

html body section.home-services-desc .home-services-desc__card {
  max-width: 300px !important;
  min-height: 412px !important;
  border: 0 !important;
  border-radius: 28px !important;
  background: #f9f5ec !important;
  box-shadow: 0 18px 30px rgba(93, 105, 144, 0.16) !important;
  outline: 0 !important;
}

html body section.home-services-desc .home-services-desc__card:hover {
  box-shadow: 0 18px 30px rgba(93, 105, 144, 0.16) !important;
  transform: none !important;
}

html body section.home-services-desc .home-services-desc__card img {
  height: 174px !important;
  border-radius: 24px 24px 0 0 !important;
}

html body section.home-services-desc .home-services-desc__card div {
  padding: 26px 18px 24px !important;
}

html body section.home-services-desc .home-services-desc__card h3 {
  font-size: 22px !important;
  line-height: 1.15 !important;
}

html body section.home-services-desc .home-services-desc__card p {
  font-size: 14px !important;
  line-height: 1.18 !important;
}

@media (max-width: 991px) {
  html body section.home-why + section.home-services-desc {
    margin-top: -70px !important;
    padding-top: 100px !important;
  }

  html body section.home-services-desc::before {
    left: -80px !important;
    opacity: 0.38 !important;
  }

  html body section.home-services-desc::after {
    right: -70px !important;
    top: auto !important;
    bottom: 120px !important;
    opacity: 0.4 !important;
  }

  html body section.home-services-desc .home-services-desc__card {
    max-width: none !important;
  }
}

/* Services cards use the uploaded Figma frame, and motifs sit by the card rows */
html body section.home-services-desc::after {
  right: max(86px, calc(50% - 790px)) !important;
  top: clamp(585px, 41vw, 720px) !important;
  width: clamp(250px, 18vw, 340px) !important;
  height: clamp(236px, 17vw, 320px) !important;
  opacity: 0.66 !important;
}

html body section.home-services-desc .home-services-desc__card {
  min-height: 402px !important;
  padding: 18px 18px 28px !important;
  border: 0 !important;
  border-radius: 30px !important;
  background-color: transparent !important;
  background-image: url("/template/stomatologbg/assets/images/services-desc-card-bg-figma.png") !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 100% 100% !important;
  box-shadow: none !important;
}

html body section.home-services-desc .home-services-desc__card:hover {
  box-shadow: none !important;
}

html body section.home-services-desc .home-services-desc__card img {
  height: 170px !important;
  border-radius: 22px !important;
}

html body section.home-services-desc .home-services-desc__card div {
  padding: 26px 8px 0 !important;
}

html body section.home-services-desc .home-services-desc__card h3 {
  margin-bottom: 14px !important;
}

/* Home reviews: stronger decorative motifs */
html body section.home-reviews::before {
  opacity: 0.62 !important;
  filter: saturate(1.25) contrast(1.16) brightness(0.92) !important;
}

html body section.home-reviews::after {
  opacity: 0.54 !important;
  filter: saturate(1.24) contrast(1.15) brightness(0.94) !important;
}

/* Services with description: exact Figma card size and tighter spacing */
html body section.home-services-desc::before {
  left: max(72px, calc(50% - 780px)) !important;
  top: clamp(242px, 17vw, 318px) !important;
  width: clamp(282px, 20vw, 376px) !important;
  height: clamp(214px, 15.4vw, 286px) !important;
  opacity: 0.88 !important;
  filter: saturate(1.45) contrast(1.28) brightness(0.82) !important;
}

html body section.home-services-desc::after {
  right: max(84px, calc(50% - 795px)) !important;
  top: clamp(612px, 42vw, 692px) !important;
  width: clamp(282px, 19vw, 360px) !important;
  height: clamp(266px, 18vw, 340px) !important;
  opacity: 0.76 !important;
  filter: saturate(1.35) contrast(1.2) brightness(0.9) !important;
}

html body section.home-services-desc .home-services-desc__grid {
  gap: clamp(24px, 2vw, 34px) clamp(16px, 1.35vw, 24px) !important;
  max-width: 1390px !important;
}

html body section.home-services-desc .home-services-desc__card {
  width: 333px !important;
  max-width: 333px !important;
  min-height: 506px !important;
  padding: 19px 19px 30px !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body section.home-services-desc .home-services-desc__card img {
  height: 215px !important;
  border-radius: 22px !important;
}

/* Services with description: real card dimensions and contained images */
html body section.home-services-desc .home-services-desc__grid {
  grid-template-columns: repeat(4, 333px) !important;
  gap: 32px 26px !important;
  justify-content: center !important;
  align-items: start !important;
  max-width: 1410px !important;
}

html body section.home-services-desc .home-services-desc__card,
html body section.home-services-desc .home-services-desc__card:nth-child(n) {
  grid-column: auto !important;
  justify-self: center !important;
  box-sizing: border-box !important;
  width: 333px !important;
  max-width: 333px !important;
  min-height: 506px !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(1) {
  grid-column: 1 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(2) {
  grid-column: 2 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(3) {
  grid-column: 3 !important;
}

html body section.home-services-desc .home-services-desc__card img {
  width: 100% !important;
  height: 215px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #edf4f8 !important;
}

@media (max-width: 1430px) {
  html body section.home-services-desc .home-services-desc__grid {
    grid-template-columns: repeat(3, 333px) !important;
    max-width: 1050px !important;
  }
}

@media (max-width: 1100px) {
  html body section.home-services-desc .home-services-desc__grid {
    grid-template-columns: repeat(2, minmax(0, 333px)) !important;
  }
}

@media (max-width: 720px) {
  html body section.home-services-desc .home-services-desc__grid {
    grid-template-columns: minmax(0, 333px) !important;
  }

  html body section.home-services-desc .home-services-desc__card,
  html body section.home-services-desc .home-services-desc__card:nth-child(n) {
    width: min(333px, 100%) !important;
    max-width: 333px !important;
  }
}

/* Services with description: Figma node 234:69233 and softer section handoff */
html body section.home-why + section.home-services-desc {
  margin-top: -118px !important;
  padding-top: clamp(118px, 8vw, 150px) !important;
}

html body section.home-services-desc {
  background:
    linear-gradient(180deg, rgba(238, 243, 247, 0) 0%, rgba(238, 243, 247, 0.82) 82px, rgba(238, 243, 247, 0) 180px),
    url("/template/stomatologbg/assets/images/why-services-bg.png") center bottom / 100% auto no-repeat,
    #eef3f7 !important;
}

html body section.home-services-desc::before {
  opacity: 0.96 !important;
  filter: saturate(1.55) contrast(1.38) brightness(0.74) !important;
}

html body section.home-services-desc::after {
  top: clamp(570px, 39vw, 650px) !important;
  opacity: 0.86 !important;
  filter: saturate(1.55) contrast(1.34) brightness(0.82) !important;
}

html body section.home-services-desc .home-services-desc__grid {
  grid-template-columns: repeat(8, 149px) !important;
  gap: 28px 16px !important;
  max-width: 1320px !important;
}

html body section.home-services-desc .home-services-desc__card,
html body section.home-services-desc .home-services-desc__card:nth-child(n) {
  grid-column: span 2 !important;
  justify-self: stretch !important;
  width: 100% !important;
  max-width: none !important;
  height: 506px !important;
  min-height: 486px !important;
  padding: 14px 14px 28px !important;
  border-radius: 40px !important;
  background: linear-gradient(137.846deg, #dde2e8 0.948%, #f6f3ec 99.052%) !important;
  box-shadow: 7px 4px 16.6px 7px rgba(184, 192, 211, 0.22) !important;
  overflow: hidden !important;
}

html body section.home-services-desc .home-services-desc__card img {
  width: 100% !important;
  height: 242px !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 24px !important;
  background: transparent !important;
}

html body section.home-services-desc .home-services-desc__card div {
  padding: 26px 10px 0 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(1) {
  grid-column: 2 / span 2 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(2) {
  grid-column: 4 / span 2 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(3) {
  grid-column: 6 / span 2 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(4) {
  grid-column: 1 / span 2 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(5) {
  grid-column: 3 / span 2 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(6) {
  grid-column: 5 / span 2 !important;
}

html body section.home-services-desc .home-services-desc__card:nth-child(7) {
  grid-column: 7 / span 2 !important;
}

/* Services with description: grey handoff, tighter Figma cards, and row-two motif */
html body section.home-why + section.home-services-desc {
  margin-top: -150px !important;
  padding-top: clamp(142px, 9vw, 176px) !important;
}

html body section.home-services-desc {
  background:
    linear-gradient(180deg, rgba(238, 243, 247, 0.98) 0%, #eef3f7 125px, rgba(238, 243, 247, 0.94) 100%),
    url("/template/stomatologbg/assets/images/why-services-bg.png") center bottom / 100% auto no-repeat,
    #eef3f7 !important;
}

html body section.home-services-desc .home-services-desc__grid {
  grid-template-columns: repeat(8, 145px) !important;
  gap: 30px 14px !important;
  max-width: 1300px !important;
}

html body section.home-services-desc .home-services-desc__card,
html body section.home-services-desc .home-services-desc__card:nth-child(n) {
  height: 492px !important;
  min-height: 492px !important;
  border-radius: 38px !important;
}

html body section.home-services-desc .home-services-desc__card img {
  height: 220px !important;
  object-fit: cover !important;
  object-position: center 45% !important;
  transform: scale(1.03) !important;
  transform-origin: center center !important;
}

html body section.home-services-desc::after {
  left: calc(50% + 415px) !important;
  right: auto !important;
  top: clamp(612px, 42vw, 690px) !important;
  opacity: 0.82 !important;
}

/* Services card image must sit in the top of the card */
html body section.home-services-desc .home-services-desc__card,
html body section.home-services-desc .home-services-desc__card:nth-child(n) {
  padding: 0 !important;
}

html body section.home-services-desc .home-services-desc__card img {
  display: block !important;
  width: 100% !important;
  height: 205px !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #edf4f8 !important;
  border-radius: 40px 40px 0 0 !important;
}

html body section.home-services-desc .home-services-desc__card div {
  padding: 31px 24px 28px !important;
}

/* Services final image crop and grey section continuity */
html body section.home-services-desc {
  background:
    linear-gradient(180deg, #eef3f7 0%, #eef3f7 145px, rgba(238, 243, 247, 0.96) 100%),
    url("/template/stomatologbg/assets/images/why-services-bg.png") center bottom / 100% auto no-repeat,
    #eef3f7 !important;
}

html body section.home-services-desc .home-services-desc__grid {
  grid-template-columns: repeat(8, 145px) !important;
  gap: 30px 14px !important;
  max-width: 1300px !important;
}

html body section.home-services-desc .home-services-desc__card,
html body section.home-services-desc .home-services-desc__card:nth-child(n) {
  height: 492px !important;
  min-height: 492px !important;
  padding: 0 !important;
  border-radius: 38px !important;
}

html body section.home-services-desc .home-services-desc__card img {
  height: 220px !important;
  object-fit: cover !important;
  object-position: center 45% !important;
  transform: scale(1.035) !important;
  background: transparent !important;
  border-radius: 38px 38px 0 0 !important;
}

html body section.home-services-desc::after {
  left: calc(50% + 415px) !important;
  right: auto !important;
  top: clamp(612px, 42vw, 690px) !important;
}

/* Home reviews motif refinements */
html body section.home-reviews::after {
  top: -24px !important;
  right: -10px !important;
  width: clamp(500px, 38vw, 690px) !important;
  height: clamp(438px, 33.5vw, 606px) !important;
  opacity: 0.72 !important;
  filter: saturate(1.16) contrast(1.12) brightness(0.94) !important;
}

html body section.home-reviews::before {
  width: clamp(560px, 43vw, 690px) !important;
  height: clamp(316px, 25vw, 390px) !important;
  opacity: 0.5 !important;
  filter: saturate(0.82) contrast(0.92) brightness(1.26) !important;
}

/* Reviews right motif: move the visible drawing upward inside its box */
html body section.home-reviews::after {
  top: -72px !important;
  right: -18px !important;
  width: clamp(540px, 41vw, 740px) !important;
  height: clamp(474px, 36vw, 650px) !important;
  opacity: 0.78 !important;
  filter: saturate(1.2) contrast(1.16) brightness(0.9) !important;
  background-size: 100% auto !important;
  background-position: right -34px top -42px !important;
}

/* Home blogs: shift section content right and widen cards */
html body section.home-blogs .container {
  max-width: 1500px !important;
  transform: translateX(clamp(26px, 3.2vw, 62px)) !important;
}

html body section.home-blogs h2 {
  margin-left: 0 !important;
}

html body section.home-blogs .home-blogs__grid {
  grid-template-columns: repeat(3, minmax(0, 420px)) !important;
  gap: clamp(22px, 1.9vw, 34px) !important;
  justify-content: flex-start !important;
  max-width: 1320px !important;
}

html body section.home-blogs .home-blogs__card {
  grid-template-columns: minmax(0, 1fr) 190px !important;
  min-height: 230px !important;
  width: 100% !important;
  max-width: 420px !important;
}

html body section.home-blogs .home-blogs__content {
  padding: 40px 16px 24px 28px !important;
}

html body section.home-blogs .home-blogs__image {
  width: 190px !important;
}

@media (max-width: 991px) {
  html body section.home-blogs .container {
    transform: none !important;
  }

  html body section.home-blogs .home-blogs__grid {
    grid-template-columns: 1fr !important;
  }

  html body section.home-blogs .home-blogs__card {
    max-width: none !important;
  }
}

/* Final home handoff and compact controls */
html body section.home-why + section.home-services-desc {
  margin-top: -38px !important;
  padding-top: clamp(96px, 7vw, 132px) !important;
}

html body section.home-services-desc {
  background-color: #e7edf4 !important;
  background-image:
    linear-gradient(180deg, rgba(231, 237, 244, 0.92) 0%, #e7edf4 118px, #e7edf4 100%),
    url("/template/stomatologbg/assets/images/why-services-bg.png") !important;
  background-position: center top, center bottom !important;
  background-repeat: no-repeat, no-repeat !important;
  background-size: 100% 100%, 100% auto !important;
  box-shadow: inset 0 64px 60px -52px rgba(231, 237, 244, 0.96) !important;
}

html body section.home-blogs .home-blogs__content a {
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  flex: 0 0 36px !important;
}

html body section.home-blogs .home-blogs__content a img {
  width: 36px !important;
  height: 36px !important;
}

html body section.home-contact .home-contact__form button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: clamp(148px, 8.9vw, 176px) !important;
  min-width: 0 !important;
  max-width: clamp(148px, 8.9vw, 176px) !important;
  flex: 0 0 clamp(148px, 8.9vw, 176px) !important;
  min-height: clamp(28px, 1.55vw, 32px) !important;
  padding: 0 40px !important;
  gap: 0 !important;
  font-size: clamp(10px, 0.58vw, 12px) !important;
  line-height: 1 !important;
  text-align: center !important;
}

html body section.home-contact .home-contact__form button::after {
  position: absolute !important;
  top: 50% !important;
  right: clamp(13px, 0.85vw, 16px) !important;
  width: 12px !important;
  height: 12px !important;
  flex: 0 0 12px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
}

html body section.home-contact .home-contact__form button img,
html body section.home-contact .home-contact__form button svg {
  position: absolute !important;
  top: 50% !important;
  right: clamp(13px, 0.85vw, 16px) !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
}

/* About page pill should match team page pill */
html body.o-nama .page-header-image__pill {
  width: min(768px, 100%) !important;
  min-height: 124px !important;
  margin-left: 18px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(5px) saturate(100%) !important;
  -webkit-backdrop-filter: blur(9px) saturate(108%) !important;
  box-shadow: none !important;
  transform: translateY(-72px) !important;
}

html body.o-nama .page-header-image__pill h1 {
  margin: 0 0 8px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: 60px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 21px #fff !important;
}

html body.o-nama .page-header-image__pill p,
html body.o-nama .page-header-image__breadcrumb,
html body.o-nama .page-header-image__breadcrumb a,
html body.o-nama .page-header-image__breadcrumb span {
  color: #1e2640 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  text-shadow: 0 0 18px #fff !important;
}

/* O nama: final Figma-aligned page pass */
html body.o-nama {
  background: #eef4f7 !important;
}

html body.o-nama .page-content {
  position: relative !important;
  overflow: hidden !important;
  background: transparent !important;
}

html body.o-nama .page-content::before {
  top: 610px !important;
  background-image:
    linear-gradient(180deg, rgba(238, 244, 247, 0) 0%, #eef4f7 132px),
    url("/template/stomatologbg/assets/images/about-layout-top.png"),
    url("/template/stomatologbg/assets/images/about-layout-bottom.png") !important;
  background-position: center top, center 50px, center 1210px !important;
  background-size: 100% 185px, 1920px auto, 1920px auto !important;
}

html body.o-nama .page-header-image {
  min-height: clamp(640px, 42vw, 805px) !important;
  background: #eef4f7 !important;
}

html body.o-nama .page-header-image::before {
  opacity: 0.22 !important;
  filter: saturate(1.05) contrast(1.08) brightness(1) !important;
}

html body.o-nama .page-header-image__bg {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
}

html body.o-nama .page-header-image__shade {
  height: clamp(300px, 22vw, 430px) !important;
  background: linear-gradient(180deg, rgba(238, 244, 247, 0) 0%, rgba(238, 244, 247, 0.24) 36%, rgba(238, 244, 247, 0.88) 74%, #eef4f7 100%) !important;
}

html body.o-nama .page-header-image .container {
  max-width: 1450px !important;
  min-height: clamp(640px, 42vw, 805px) !important;
  padding-bottom: clamp(128px, 9vw, 170px) !important;
}

html body.o-nama .page-header-image__pill {
  width: min(768px, calc(100% - 36px)) !important;
  min-height: 124px !important;
  margin-left: 18px !important;
  padding: 21px 96px 20px !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.34) !important;
  backdrop-filter: blur(5px) saturate(100%) !important;
  -webkit-backdrop-filter: blur(9px) saturate(108%) !important;
  transform: translateY(-58px) !important;
}

html body.o-nama .page-header-image + .service-menu-section {
  margin-top: clamp(-175px, -8vw, -120px) !important;
  padding-top: clamp(145px, 9vw, 176px) !important;
  padding-bottom: clamp(58px, 4.5vw, 86px) !important;
}

html body.o-nama .service-menu-section,
html body.o-nama .text-box-section,
html body.o-nama .service-media-section,
html body.o-nama .service-contact-cta {
  background: transparent !important;
  overflow: visible !important;
}

html body.o-nama .service-menu-section::before {
  content: "" !important;
  left: max(60px, calc(50% - 805px)) !important;
  top: clamp(340px, 22vw, 420px) !important;
  width: clamp(300px, 21vw, 383px) !important;
  height: clamp(228px, 16vw, 290px) !important;
  background: url("/template/stomatologbg/assets/images/about-motif-group-left.png") left top / contain no-repeat !important;
  opacity: 0.36 !important;
  filter: saturate(1.12) contrast(1.08) brightness(0.96) !important;
  border: 0 !important;
  border-radius: 0 !important;
}

html body.o-nama .service-menu-section::after {
  content: "" !important;
  right: max(86px, calc(50% - 812px)) !important;
  top: clamp(510px, 35vw, 650px) !important;
  width: clamp(210px, 16vw, 288px) !important;
  height: clamp(198px, 15vw, 272px) !important;
  background: url("/template/stomatologbg/assets/images/services-home-motif-brown.png") right top / contain no-repeat !important;
  opacity: 0.36 !important;
  filter: saturate(1.08) contrast(1.04) brightness(1) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

html body.o-nama .service-menu-section .container,
html body.o-nama .text-box-section .container,
html body.o-nama .service-media-section .container,
html body.o-nama .service-contact-cta .container {
  max-width: 1450px !important;
}

html body.o-nama .service-menu-section h2 {
  max-width: 980px !important;
  margin: 0 auto 18px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: clamp(30px, 2.2vw, 42px) !important;
  font-weight: 500 !important;
  line-height: 1.18 !important;
  letter-spacing: 0.035em !important;
}

html body.o-nama .service-menu-section__intro {
  max-width: 1120px !important;
  margin: 0 auto 34px !important;
  color: #4a4e69 !important;
  font-size: clamp(12px, 0.74vw, 14px) !important;
  line-height: 1.28 !important;
}

html body.o-nama .service-menu-section__grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: 30px 34px !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
  justify-items: center !important;
}

html body.o-nama .service-menu-section__card {
  width: 100% !important;
  max-width: 318px !important;
  min-height: 166px !important;
  border-radius: 18px !important;
  background: rgba(249, 245, 236, 0.82) !important;
  box-shadow: 0 14px 28px rgba(38, 50, 83, 0.08) !important;
}

html body.o-nama .service-menu-section__card:nth-child(1) { grid-column: 3 / span 3 !important; }
html body.o-nama .service-menu-section__card:nth-child(2) { grid-column: 6 / span 3 !important; }
html body.o-nama .service-menu-section__card:nth-child(3) { grid-column: 9 / span 3 !important; }
html body.o-nama .service-menu-section__card:nth-child(4) { grid-column: 1 / span 3 !important; }
html body.o-nama .service-menu-section__card:nth-child(5) { grid-column: 4 / span 3 !important; }
html body.o-nama .service-menu-section__card:nth-child(6) { grid-column: 7 / span 3 !important; }
html body.o-nama .service-menu-section__card:nth-child(7) { grid-column: 10 / span 3 !important; }

html body.o-nama .service-menu-section__image {
  height: 116px !important;
  background: rgba(221, 201, 202, 0.24) !important;
}

html body.o-nama .service-menu-section__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

html body.o-nama .service-menu-section__title {
  min-height: 50px !important;
  padding: 10px 16px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: clamp(15px, 0.95vw, 18px) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

html body.o-nama .text-box-section {
  padding: clamp(56px, 5.2vw, 96px) 0 clamp(48px, 4vw, 74px) !important;
}

html body.o-nama .text-box-section__text {
  max-width: 1040px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: clamp(24px, 1.65vw, 32px) !important;
  font-weight: 600 !important;
  line-height: 1.24 !important;
  letter-spacing: 0.035em !important;
}

html body.o-nama .service-media-section {
  padding: clamp(34px, 3.4vw, 64px) 0 !important;
}

html body.o-nama .service-media-section__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  gap: clamp(64px, 6vw, 112px) !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
}

html body.o-nama .service-media-section--text-right .service-media-section__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
}

html body.o-nama .service-media-section__content h2 {
  margin: 0 0 36px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: clamp(28px, 1.75vw, 34px) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.055em !important;
}

html body.o-nama .service-media-section__text,
html body.o-nama .service-media-section__text p {
  color: #4a4e69 !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: clamp(13px, 0.76vw, 15px) !important;
  line-height: 1.42 !important;
}

html body.o-nama .service-media-section__media,
html body.o-nama .service-media-section__slider,
html body.o-nama .service-media-section__media .swiper,
html body.o-nama .service-media-section__media .swiper-wrapper,
html body.o-nama .service-media-section__media .swiper-slide {
  border-radius: 22px !important;
  overflow: hidden !important;
}

html body.o-nama .service-media-section__media img {
  height: clamp(300px, 21vw, 380px) !important;
  object-fit: cover !important;
}

html body.o-nama .service-contact-cta {
  padding: clamp(58px, 5vw, 88px) 0 clamp(72px, 5.5vw, 102px) !important;
  text-align: center !important;
}

html body.o-nama .service-contact-cta h2 {
  max-width: 820px !important;
  margin: 0 auto 36px !important;
  color: #1e2640 !important;
  font-family: "Spectral", "Lora", serif !important;
  font-size: clamp(25px, 1.6vw, 31px) !important;
  line-height: 1.28 !important;
  letter-spacing: 0.03em !important;
}

html body.o-nama .service-contact-cta__phones {
  gap: 28px !important;
}

html body.o-nama .service-contact-cta__phone {
  min-width: 218px !important;
  min-height: 48px !important;
  padding: 7px 22px 7px 9px !important;
  border-radius: 999px !important;
  font-size: 17px !important;
}

html body.o-nama .service-contact-cta__icon {
  width: 34px !important;
  height: 34px !important;
  flex-basis: 34px !important;
}

@media (max-width: 991px) {
  html body.o-nama .page-header-image {
    min-height: 520px !important;
  }

  html body.o-nama .page-header-image .container {
    min-height: 520px !important;
    padding-bottom: 96px !important;
  }

  html body.o-nama .page-header-image__pill {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 20px 28px !important;
    transform: translateY(-24px) !important;
  }

  html body.o-nama .page-header-image + .service-menu-section {
    margin-top: -86px !important;
    padding-top: 112px !important;
  }

  html body.o-nama .service-menu-section__grid,
  html body.o-nama .service-media-section__grid,
  html body.o-nama .service-media-section--text-right .service-media-section__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  html body.o-nama .service-menu-section__card:nth-child(n) {
    grid-column: auto !important;
    max-width: 318px !important;
  }
}
