:root {
  --teal: #0d878b;
  --teal-2: #0e6f6c;
  --ink: #14161a;
  --muted: rgba(255, 255, 255, 0.85);
  --shadow: 0 12px 28px rgba(15, 20, 30, 0.12);
  --radius-pill: 999px;
  --container: 1320px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #FEFEFE;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.topbar {
  background: transparent;
  color: #fff;
}

.topbar__inner {
  min-height: 44px;
  background: var(--teal);
  border-radius: 0px 0px 50px 50px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
    font-family: "Nunito Sans", Sans-serif;
    font-size: 16px;
    letter-spacing: 0.04em;
}

.topbar__item--muted {
  color: var(--muted);
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
}

.icon svg {
  width: 16px;
  height: 16px;
}

.social {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  opacity: 0.95;
  transition: opacity 160ms ease;
}

.social:hover {
  opacity: 1;
}

.social svg {
  width: 20px;
  height: 20px;
}
/* The End Header */





/* Nav pill */
.navwrap {
  position: relative;
  margin-top: 10px;
}

.navpill {
  background-color: #FDFDFCCD;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  height: 64px;
  padding: 10px 14px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  width: 54px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav__link {
  font-family: "Nunito Sans", Sans-serif;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
  font-weight: 500;
  color: #1b1f25;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav__link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.telegram-wrap {
  flex: 0 0 170px;
  display: flex;
  justify-content: flex-end;
}

.telegram {
  height: 42px;
  border-radius: 999px;
  background: #1f7cff;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px 0 0;
  box-shadow: 0 10px 20px rgba(31, 124, 255, 0.25);
  flex: 0 0 auto;
  width: 170px;
}

.telegram__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.telegram__icon svg {
  width: 20px;
  height: 20px;
}

.telegram__label {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  margin-right: 10px;
}

.telegram:hover {
  transform: translateX(0);
  background: #1b6ef0;
  box-shadow: 0 12px 24px rgba(27, 110, 240, 0.35);
}

.telegram:hover .telegram__label {
  opacity: 1;
  transform: translateX(0);
}

.konsultatsiia-mobile,
.konsultatsiia-mesendzher{
  display:none;
}

.konsultatsiia-title::after{
  content:"";
  display:block;
  width:80%;
  height:1px;
  background:#999;
  margin:12px auto 18px;
}

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

@media (max-width:768px){

.konsultatsiia-mobile,
.konsultatsiia-mesendzher{
  display:block;
}


/* карточки */

.konsultatsiia-mobile,
.konsultatsiia-mesendzher{
background: #e9ecef;
        border-radius: 30px;
        padding: 5px;
        margin-top: 29px;
        text-align: center;
}


.konsultatsiia-title{
  font-size:16px;
  font-weight:500;
  margin-bottom:16px;
}


.konsultatsiia-hours p{
  font-size:16px;
  margin:6px 0;
}



/* ===== МЕССЕНДЖЕР ===== */

.mesendzher-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}


/* текст */

.mesendzher-text p{
          font-size: 15px;
        line-height: 22px;
  margin-bottom:14px;
  text-align:left;
}



/* иконки */

.mesendzher-icons{
  display:flex;
  gap:12px;
}

.mesendzher-icons img{
  width:80px;
  height:auto;
}



/* фото */

.mesendzher-photo img{
  width:120px;
  height:auto;
}
}
/* The End Nav pill */







/* Mobile menu (no JS) */
.navpill__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.navpill__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-left: auto;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.navpill__burger span {
  width: 18px;
  height: 2px;
  background: #1b1f25;
  border-radius: 999px;
  opacity: 0.85;
}


.mobile-address{
align-items:center;
gap:8px;
font-family:"Nunito Sans", Sans-serif;
font-size:14px;
color:#1b1f25;
white-space:nowrap;
display: none;
}

.mobile-address__icon svg{
width:18px;
height:18px;
}


@media (max-width:768px){

/* верхняя полоска */

.topbar__item--muted{
display:none;
}

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

.topbar__left{
flex-direction:row;
gap:12px;
}

.topbar__right{
flex-direction:row;
gap:5px;
}

.topbar__item {
    font-size: 11px;
    gap: 5px;
}

.icon {
    width: 10px;
    height: 10px;
}
.icon svg {
    width: 10px;
    height: 10px;
}

.mobile-address {
    gap: 4px;
    font-size: 14px;
    display: flex;
    flex: 1;
    justify-content: center;
}



/* navpill */

.nav{
display:none;
}

.navpill__toggle:checked ~ .nav {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}


/* telegram только иконка */

.telegram{
width:36px;
height:36px;
padding:0;
border-radius:50%;
justify-content:center;
}

.telegram__label{
display:none;
}

.telegram-wrap{
flex:0;
display: none;
}

/* бургер */

.navpill__burger{
display:flex;
margin-left:auto;
}

}
/* The End Mobile menu (no JS) */






/* Hero */
.hero {
  margin-top: 0;
  min-height: 624px;
  display: grid;
  align-items: center;
  background: url("../images/hero.jpg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__inner {
  padding: 92px 0 72px;
  text-align: center;
}

.hero__kicker {
  margin: 0 0 18px;
    letter-spacing: 0.22em;
    font-family: "Nunito Sans", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1em;
    color: #1A2222;
}

.hero__title {
  margin: 0 0 22px;
  font-weight: 300;
  letter-spacing: 0.22em;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--teal);
  font-weight: 500;
  box-shadow: 0 14px 22px rgba(15, 127, 123, 0.18);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  background-color: #09A3A8;
  font-family: "Nunito Sans", Sans-serif;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.1em;
  fill: #FFFFFF;
  color: #FFFFFF;
  padding: 16px 32px 16px 32px;
      border: none;
      cursor: pointer;
}

.btn:hover {
  background: var(--teal-2);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(15, 127, 123, 0.22);
}
/* The End Hero */







/* Services slider */
.services {
  padding: 60px 0 80px;
  background: #fff;
}

.services__kicker {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-family: "Nunito Sans", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #0D878B;
}

.services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.services__title {
  margin: 0;
  font-size: 32px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Nunito Sans", Sans-serif;
    line-height: 42px;
    letter-spacing: 0.06em;
    color: #1A2222;
}

.services__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.services__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 50px;
  line-height: 1;
  padding: 0;
}

.services__arrow:hover {
  color: #037ce9;
}


.services-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  padding-left: 0;
  padding-right: 0;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
}


.services-slider::-webkit-scrollbar {
  display: none;
}

.services-slider__track {
  display: flex;
  gap: 23px;
  padding-top: 10px;
}

.service-card {
  flex: 0 0 auto; /* width controlled by script */
  scroll-snap-align: start;
  min-width: 200px; /* fallback minimum */
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 16px 16px 16px 16px;
}
.service-card:hover {
transform: translateY(-8px);
}


/* styles for second variant - three cards */
.services-slider--three .service-card__image {
  height: 460px;
}



.services-slider--three .service-card__image img {
  height: 460px;
}
.services-slider--three .service-card__image {
  position: relative;
  background: #e7f3f7;
}

.services-slider--three .service-card__image::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;

  background-image: url("../images/strelochka-verkh.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.services-slider--three  .service-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The End Services slider */




.service-card__image {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 16px 16px 16px 16px;
}

.service-card__image img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-card__link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  text-decoration: none;
  color: inherit;
  background-color: #FFFFFFD9;
  word-break: break-word;
  font-family: "Nunito Sans", Sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.02em;
}

.service-card__body {
  padding: 18px 22px 24px;
}

.service-card__body span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  color: #2b2b2b;
  font-size: 14px;
  margin: 16px 0px 0px 0px;
    padding: 12px 0px 12px 55px;
}

.service-card__body span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url("../images/dosvid-roboty.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.service-card__title {
  margin: 0;
  font-weight: 500;
  word-break: break-word;
  font-family: "Nunito Sans", Sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.02em;
  color: #1A2222;
}

.service-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #606877;
  min-height: 67px;
}

.service-card__link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #1f7cff;
  box-shadow: 0 10px 20px rgba(31, 124, 255, 0.35);
  background-image: url("../images/strelochka-verkh.svg");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.service-card__link:hover .service-card__link-icon {
  background-color: #1b6ef0;
}


@media (max-width: 768px) {
  .services-slider--three .service-card {
    flex: 0 0 100%;
  }
  .service-card__text {
    font-weight: 400;
    font-size: 15px;
    color: #000;
}
}










/* About section */

.about{
  padding:0px 0px 80px;
}

.about__inner{
  background-color:#09A3A8;
  background-image:url(../images/section-o-nas.png);
  background-repeat:no-repeat;
  border-radius:0 0 40px 40px;
  background-position:bottom center;
  background-size:100% auto;
}

.about__content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:90px 0 80px;
  color:#ffffff;
}

.about__left{
  width:534px;
  font-family:"Nunito Sans", Sans-serif;
}

.about__label{
  margin:0;
  font-size:48px;
  font-weight:500;
  text-transform:uppercase;
  line-height:48px;
  letter-spacing:0.02em;
}

.about__label--accent{
  margin-top:12px;
  font-size:48px;
  font-weight:500;
  text-transform:uppercase;
  text-align:right;
  line-height:48px;
  letter-spacing:0.02em;
}

.about__card{
  flex:0 0 745px;
  background-color:#078e92;
  border-radius:18px;
  padding:40px 35px 45px;
  box-shadow:0 18px 44px rgba(0,0,0,0.18);
}

.about__item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.about__item + .about__item{
  margin-top:25px;
}

.about__item-icon{
  flex-shrink:0;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about__item-icon img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}

.about__item-title{
  margin:0 0 8px;
  font-size:20px;
  font-weight:500;
  line-height:28px;
}

.about__item-text{
  margin:0;
  font-size:14px;
  line-height:1.6;
}

/* The About section */

/* ===== планшет About section ===== */

@media (max-width:1024px){

.about__content{
  gap:30px;
}

.about__left{
  width:40%;
}

.about__card{
  flex:1;
}

.about__label{
  font-size:36px;
  line-height:40px;
}

.about__label--accent{
  font-size:36px;
  line-height:40px;
}

}


/* ===== телефон ===== */

@media (max-width:768px){

.about{
  padding: 0px 0px 15px;
}

.about__inner {
    background-color: #09A3A8;
    border-radius: 0 0 40px 40px;
    background-image: url(../images/Section-10.png);
    background-position: top center;
    background-repeat: repeat;
    background-size: cover;
}

.about__content{
  flex-direction:column;
  align-items:flex-start;
  padding: 40px 0 20px;
}

.about__left{
  width:100%;
}

.about__card{
  width:100%;
  margin-top:30px;
  padding:30px 24px;
}

.about__label{
  font-size:28px;
  line-height:32px;
}

.about__label--accent{
  font-size:28px;
  line-height:32px;
  text-align:left;
}

.about__item-title{
  font-size:18px;
}

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

}


/* ===== маленькие телефоны ===== */

@media (max-width:480px){

.about__item{
  gap:12px;
}

.about__item-icon{
  width:40px;
  height:40px;
}

.about__label{
  font-size:24px;
  line-height:28px;
          padding: 0 25px;
}

.about__label--accent{
font-size: 24px;
        line-height: 28px;
        text-align: right;
        padding: 0 25px;
}

}
/* The About section */







/* Турбота про Вас section */

.care-block{
  padding:20px;
  background:#ffffff;
}

.care-container{
  max-width:1320px;
  margin:0 auto;
  display:flex;
  gap:20px;
  align-items:stretch;
}

/* текстовый блок */

.care-text{
  width:50%;
  background-color:#E7F3F7;
  border-radius:16px;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.care-text h2{
  font-size:28px;
  margin:0 0 20px 0;
  color:#000;
  font-family:"Nunito Sans", Sans-serif;
  font-weight:500;
  text-transform:uppercase;
  line-height:38px;
  letter-spacing:0.04em;
}

.care-text p{
  margin-bottom:30px;
  font-family:"Nunito Sans", Sans-serif;
  font-size:16px;
  font-weight:100;
  line-height:22px;
  letter-spacing:0.02em;
  color:#393E46;
}

.care-btn{
  display:inline-block;
  background-color:#09A3A8;
  font-family:"Nunito Sans", Sans-serif;
  font-size:20px;
  font-weight:100;
  line-height:20px;
  letter-spacing:0.1em;
  color:#FFFFFF;
  border-radius:37px;
  padding:16px 32px;
  transition:0.3s;
  width:max-content;
  border: none;
  cursor: pointer;
}

.care-btn:hover{
  background:#148c8c;
}

/* картинка */

.care-image{
  width:50%;
}

.care-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

/* ===== планшет ===== */

@media (max-width:1024px){

.care-text h2{
  font-size:24px;
  line-height:32px;
}

.care-text p{
  font-size: 16px;
  font-weight: 400;

}

.care-btn{
  font-size:18px;
  font-weight: 400;
}

}

/* ===== телефон ===== */

@media (max-width:768px){

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

.care-text,
.care-image{
  width:100%;
}

.care-image img{
  height:280px;
}

.care-text{
  padding:24px;
}

.care-text h2{
  font-size:22px;
  line-height:30px;
}

}
/* The End Турбота про Вас section */






/* Акції */
.akciji {
  padding: 60px 0 80px;
  background: #fff;
}

.akciji__kicker {
  margin: 0 0 10px;
  font-family: "Nunito Sans", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #0D878B;
}

.akciji__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.akciji__title {
  margin: 0;
  font-size: 32px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Nunito Sans", Sans-serif;
    line-height: 42px;
    letter-spacing: 0.06em;
    color: #1A2222;
}

.akciji__a {
display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #09A3A8;
    font-family: "Nunito Sans", Sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1em;
    fill: #FFFFFF;
    color: #FFFFFF;
    border-radius: 37px 37px 37px 37px;
    padding: 16px 32px 16px 32px;
}

.akciji__a:hover {
  background-color: #078E92;
    color: #FFFFFF;
}
.akciji__a::after {
  content: "→";
  margin-left: 6px;
  font-size: 14px;
}


	/* Сетка из 3 блоков, адаптивная */
.akciji-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Карточка акции */
.akcija-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Контент слева/сверху */
.akcija-card__content {
  padding: 24px 24px 16px;
}

.akcija-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.akcija-card__dates {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #777777;
}

.akcija-card__discount {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffefef;
  color: #d60000;
  font-weight: 600;
  font-size: 14px;
}

.akcija-card__text {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.5;
}

/* Ссылка "детальніше" в стиле иконки/кнопки */
.akcija-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #0073aa;
}

.akcija-card__link::after {
  content: "➜";
  font-size: 14px;
}

/* Картинка акции */
.akcija-card__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Адаптивность: планшет — 2 в ряд */
@media (max-width: 1024px) {
  .akciji-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Адаптивность: мобильный — 1 в ряд */
@media (max-width: 767px) {
  .akciji-grid {
    grid-template-columns: 1fr;
  }

  .akcija-card__content {
    padding: 20px 18px 14px;
  }
}


.akcija-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}


.akcija-card__image {
  position: relative;
}

.akcija-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.akcija-card__image .akcija-card__dates {
	position: absolute;
    right: 21px;
    bottom: 105px;
    display: inline-block;
    margin: 0;
    font-size: 13px;
    color: #ffffff;
    background: #6a9eca;
    padding: 3px 10px;
    border-radius: 15px;
}

.akcija-card__image .akcija-card__sam {
position: absolute;
    left: 0;
    bottom: 63px;
    display: inline-block;
    margin: 0;
    font-size: 13px;
    color: #000;
    padding: 5px 10px;
    width: 100%;
    text-align: center;
}


.akcija-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;             
  background: rgba(255, 255, 255, 0.7); 
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
}


.akcija-card__overlay--top {
  top: 63px;
  justify-content: center;
  text-transform: uppercase;
}

.akcija-card__title-on-image {
  margin: 0;
  font-size: 20px;
line-height: 1.3;
letter-spacing: 0.02em;
  font-weight: 600;
  color: #000000;
  text-align: center;
}


.akcija-card__overlay--bottom {
  bottom: 0;
  justify-content: space-between;
}

.akcija-card__bottom-text {
  font-size: 16px;
  font-weight: 900;
  color: #000000;
      text-transform: uppercase;
}


.akcija-card__overlay--bottom .elementor-icon {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}


.akcija-card__content {
  display: none;
}


.akcija-card__overlay--bottom .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, filter 0.25s ease;
}


.akcija-card__overlay--bottom .elementor-icon svg {
  transition: transform 0.25s ease;
}

.akcija-card__overlay--bottom .elementor-icon svg path {
  transition: transform 0.25s ease;
  transform-origin: center;
}


.akcija-card__overlay--bottom .elementor-icon:hover {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(4, 124, 233, 0.45));
}


.akcija-card__overlay--bottom .elementor-icon:hover svg path {
  transform: translateX(2px);
}


.akcija-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.akcija-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.akcija-card__image img {
  transition: transform 0.6s ease;
}

/*
.akcija-card:hover .akcija-card__image img {
  transform: scale(1.05);
}
*/

.akcija-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
}

.akciji__a {
  transition: all .25s ease;
}

.akciji__a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(9,163,168,0.25);
}


.akcija-card__arrow{
display:inline-flex;
align-items:center;
justify-content:center;
transition:transform .25s ease, filter .25s ease;
}

.akcija-card:hover .akcija-card__arrow{
transform:translateY(-2px) scale(1.06);
filter:drop-shadow(0 6px 14px rgba(4,124,233,0.45));
}






/* Адаптивность: мобильный — 1 в ряд */
@media (max-width: 767px) {
  .akcija-card__overlay--top {
    top: 50px;
}
.akcija-card__bottom-text {
    font-size: 12px;
}
}


@media (max-width: 720px) {

  .akciji {
    padding: 40px 0 50px;
  }

  .akciji__header {
    align-items: center;
  }

  .akciji__title {
    font-size: 13px;
    line-height: 26px;
  }

  .akciji__a {
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    white-space: nowrap;
  }

.akciji__kicker {
    font-size: 14px;
}


.akcija-card__title-on-image {
    font-size: 14px;
}

.akcija-card__image .akcija-card__sam {
    bottom: 66px;
    font-size: 10px;
}


}
/* The End Акції медичного центру */




/* Блок Консультація  */

.consultation-section{
padding: 60px 0;
}
.consultation {
  background: url('../images/fon-konsultatsiia.webp');
  background-size: cover;
  border-radius: 24px;
  padding: 10px 35px 30px;
}

.consultation h2{
font-size: 28px;
font-weight: 500;
    text-transform: uppercase;
    line-height: 38px;
    color: #1A2222;
    margin: 20px 0 0;
    padding: 0 0 0 20px;
}

.consultation p{
  margin-bottom:30px;
  padding: 0 0 0 20px;
  color:#4a5a5c;
}
.consultation__form{
  display:flex;
  gap:20px;
  margin-bottom:10px;
}

.consultation__form input{
  flex:1;
  height:60px;
  border:none;
  border-radius:40px;
  padding:0 25px;
  font-size:16px;
}

.consultation__form button{
  background:#169a9c;
  color:#fff;
  border:none;
  padding:0 40px;
  border-radius:40px;
  font-size:18px;
  cursor:pointer;
}

.consultation__policy{
  font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #1A2222;
    padding: 0 0 0 20px;
}

@media (max-width:768px){

.consultation{
  padding:30px 20px;
  background-position: right bottom;
}

.consultation__form{
  flex-direction:column;
  gap:15px;
}

.consultation__form input{
  width:100%;
        height: 50px;
        padding: 15px 25px;
}

.consultation__form button{
  height:55px;
  width:100%;
}

}

/* The End блок консультація */




/* Блок Добра Клініка */
.clinic{
  padding:60px 0;
}

.clinic__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:30px;
  align-items:stretch;
}

/* карточки */

.clinic__card{
  background:#078E92;
  color:#fff;
  padding:25px;
  border-radius:20px;
}

.clinic__card--main{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* заголовок */

.clinic__title{
font-size: 29px;
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
        line-height: 1.4;
        max-width: 64.607%;
}

/* текст */

.clinic__text{
font-size: 12px;
    margin: 0;
    font-weight: 100;
    line-height: 19px;
    letter-spacing: 0.02em;
    color: #FFFFFFBF;
}

/* кнопка */

.clinic__btn{
  display:inline-block;
  background:#fff;
  color:#000;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:300;
  transition:.3s;
  max-width: 230px;
}

.clinic__btn:hover{
  transform:translateY(-2px);
  background-color: #09A3A8;
    color: #FFFFFF;
}

/* изображения */

.clinic__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}

/* правый блок */

.clinic__right{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* ===== Мобильная версия ===== */

@media (max-width:1024px){

  .clinic__grid{
    grid-template-columns:1fr;
  }

  .clinic__title{
    font-size: 22px;
        margin-bottom: 15px;
  }

  .clinic__card{
    padding:25px;
  }

  .clinic__image img{
    height:260px;
  }
  .clinic__btn{
margin-top: 30px;
}

}
/* ===== The End Блок Добра Клініка ===== */







/* ===== FOOTER ===== */
.footer{
background:#0E363F;
color:#fff;
padding:60px 0;
}

/* верх футера */

.footer__top{
display:grid;
grid-template-columns:420px 1fr;
gap:40px;
margin-bottom:60px;
}

/* контакты */

.footer__contacts{
background:#f3f3f3;
color:#222;
padding: 10px 35px 35px;
border-radius:16px;
}

.footer__contacts-title{
font-size:28px;
margin-bottom:20px;
}

.footer__contact{
margin-bottom:10px;
font-size:16px;
}

.footer__divider{
height:1px;
background:#ccc;
margin:15px 0;
}


.footer__phone{
display:flex;
align-items:center;
gap:10px;
}

.footer__icon{
flex-shrink:0;
width: 20px;
    height: 20px;
}

.footer__messenger{
margin-left:10px;
flex-shrink:0;
}


/* карта */

.footer__map iframe{
width:100%;
height:100%;
min-height:260px;
border:0;
border-radius:16px;
}

/* низ футера */

.footer__bottom{
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

.footer__logo{
width:65px;
margin-bottom:15px;
}

.footer__social{
display:flex;
gap:15px;
}

.footer__menu{
display:flex;
gap:30px;
flex-wrap:wrap;
}

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

.footer__form{
max-width:300px;
width:100%;
}

.footer__title{
margin-bottom:10px;
text-align: center;
}

.footer__form-inner{
display:flex;
gap:10px;
}

.footer__form input{
flex:1;
border:none;
padding:12px 16px;
border-radius:25px;
}

.footer__form button{
background:#18A4A8;
border:none;
color:#fff;
padding:12px 20px;
border-radius:25px;
cursor:pointer;
}

/* ===== мобильная версия ===== */

@media (max-width:900px){

.footer__top{
grid-template-columns:1fr;
}

.footer__bottom{
flex-direction:column;
text-align:center;
}

.footer__menu{
justify-content:center;
}

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

.footer__form button{
width:100%;
}

}
/* ===== The End FOOTER ===== */



.blog-home{
margin: 0px 0 80px 0;
}

.blog-home__top{
display:flex;
justify-content:space-between;
align-items:flex-end;
margin-bottom:32px;
}

.blog-home__label{
color: #2aa6a4;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}
.blog__header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 35px;
}
.blog-home__title{
display: inline-flex;
    align-items: center;
    justify-content: center;
font-size:36px;
font-weight:500;
margin:0;
}

.blog-home__all{
display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
background:#1aa3a5;
color:#fff;
padding:12px 24px;
border-radius:30px;
text-decoration:none;
font-size:16px;
transition:.3s;
}

.blog-home__all:hover{
background:#158c8f;
}

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


.blog-card{
position:relative;
border-radius:18px;
overflow:hidden;
display:block;
height:100%;
}

.blog-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.blog-card__content{
position:absolute;
bottom:0;
left:0;
right:0;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
background:linear-gradient(transparent, rgba(0,0,0,.6));
}

.blog-card__title{
color:#fff;
font-size:18px;
max-width:70%;
}

.blog-card__btn{
flex-shrink:0;
}

.blog-card svg{
transition:.3s;
}

.blog-card:hover svg{
transform:translate(4px,-4px);
}


@media (max-width:1024px){

.blog-home__grid{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:640px){

.blog-home{
margin:40px 0;
}

.blog-home__top{
flex-direction:column;
align-items:flex-start;
gap:16px;
}

.blog-home__title{
font-size:18px;
}

.blog-home__grid{
grid-template-columns:1fr;
}

.blog-card{
height:100%;
}

.blog-home__all{
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    white-space: nowrap;
}



}
/* ===== The End Blog ===== */





/* ===== Слайдер отзывы ===== */
.reviews{
background:#09A3A8;
padding:50px 0 70px;
border-radius: 0 0 40px 40px;
}

.reviews__title{
color: #fff;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 500;
}

.reviews__slider{
position:relative;
}

.reviews__viewport{
overflow:hidden;
padding: 20px 0;
touch-action:pan-y;
display:flex;
justify-content:center;
min-height: 250px;
}

.reviews__track{
display:flex;
gap:24px;
will-change:transform;
transition:transform .45s cubic-bezier(.22,.61,.36,1);
justify-content:center;
}

.review{
  position: relative;
flex:0 0 300px;
background:#fff;
padding:20px 10px 5px 15px;
border-radius:14px;
transition:transform .3s;
flex:0 0 300px;
max-width:300px;
}
.review::before{
    content: "";
    position: absolute;
    top: 25px;
    right: 15px;
    background: url(../images/icon.svg) no-repeat center;
    background-size: contain;
    width: 20px;
    height: 20px;
}
.review:hover{
transform:translateY(-10px);
}

.review__name{
font-weight:600;
margin-bottom:0px;
font-size: 14px;
}
.date{
color: #8a8a8a;
font-size: 12px;
font-weight: 100;
margin-top: 3px;
}
.review__stars{
color:#ffb400;
margin:10px 0;
font-size: 19px;
}
.review__stars::after{
    content: "";
    position: relative;
    top: 2px;
    left: 10px;
    pointer-events: none;
    display: inline-block;
    background: url(../images/ti-verified.svg);
    background-size: cover;
    width: 15px;
    height: 15px;
}
.foto-review{
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
margin-right: 10px;
}

.ti-review-header{
display: flex;
align-items: center;
margin-bottom: 10px;
}
.review p{
-webkit-box-orient: vertical;
    line-height: 20.75px;
    font-size: 14px;
    text-align: left;
    transition: height 0.5s;
    font-style: normal;
}
.reviews__arrow{
position:absolute;
top:43%;
transform:translateY(-50%);
border-radius:50%;
border:none;
background:none;
cursor:pointer;
font-size:50px;
color: #fff;
}

.reviews__arrow--prev{
left: -10px;
}

.reviews__arrow--next{
right: -10px;
}

.reviews__arrow{
  width: 38px;
  height: 38px;
  font-size: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
}

.reviews__viewport{
overflow-x: auto;
scrollbar-width: none;
}

.reviews__viewport::-webkit-scrollbar{
display: none;
}

@media (max-width:900px){

.review{
flex:0 0 260px;
}

}

@media (max-width:640px){

.reviews__viewport{
overflow-x: auto;
overflow-y: hidden;
padding: 20px 10px;
min-height: 200px;
display: block;
touch-action: pan-x;
}

.reviews__track{
justify-content:flex-start;
gap: 16px;
}

.review{
flex: 0 0 calc(100vw - 40px);
max-width: calc(100vw - 40px);
}
.reviews {
    padding: 40px 0;
}
.reviews__arrow{
display:none;
}
.reviews__title {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 20px;
}
}
/* ===== The End Слайдер отзывы ===== */





/* ===== partners ===== */

.partners{
  margin-bottom: 30px;
padding: 30px 0 70px;
background:#09A3A8;
overflow:hidden;
border-radius: 0 0 40px 40px;
}

.partners__title{
margin-bottom: 40px;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 42px;
    letter-spacing: 0.06em;
    color: #fff;

}

.partners__slider{

overflow:hidden;
position:relative;
padding: 10px 0;
}

.partners__track{

display:flex;
gap:15px;
animation:partners-scroll 80s linear infinite;

}

.partners__track:hover{
animation-play-state: paused;
}


.partner img{

max-width:150px;
max-height:60px;
object-fit:contain;

filter: grayscale(100%);
opacity:.6;

transition:filter .4s, opacity .4s, transform .4s;

}

.partner.active img{

filter: grayscale(0%);
opacity:1;

}

.partner:hover img{

filter:none;
opacity:1;

}


.partners__slider::before,
.partners__slider::after{

content:"";
position:absolute;
top:0;
width:120px;
height:100%;
z-index:2;

}

.partners__slider::before{

left:0;
background:linear-gradient(to right,#09A3A8,transparent);

}

.partners__slider::after{

right:0;
background:linear-gradient(to left,#09A3A8,transparent);

}


/* анимация */

@keyframes partners-scroll{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}



/* эффект центра */

.partner{
flex:0 0 220px;
background:#fff;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
padding:30px;
border:1px solid #e8ecf4;
transition:transform .4s, opacity .4s;
opacity:.6;
transform:scale(.9);
}

.partner.active{
opacity:1;
transform:scale(1.1);
}


/* адаптив */

@media(max-width:900px){

.partner{

flex:0 0 180px;

}

}

@media(max-width:640px){

.partner{

flex:0 0 140px;
padding:20px;

}
.partners__title {
    margin-bottom: 20px;
            margin-top: 0;
    font-size: 25px;
    font-weight: 400;
}

}

/* ===== The end Партнеры ===== */








/* Responsive */
@media (max-width: 720px) {
  .services {
    padding-top: 40px;
    padding-bottom: 20px;
  }
.foot-green{
background-image: url(https://dobraclinic.ck.ua/wp-content/uploads/2025/09/Frame-253-3.png);
        background-position: bottom center;
        background-size: cover;
        background-repeat: no-repeat;
}
  .services__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand {
    width: 30px;
    height: 30px;
}
.brand__logo {
    width: 30px;
    height: 30px;
}

.services__kicker {
    font-size: 14px;
}
.services__title {
    font-size: 16px;
    line-height: 15px;
}

.services__kinder{
    font-size: 12px;
    line-height: 20px;
}
.clinic__text {
    font-size: 16px;
    font-weight: 500;
        line-height: 22px;

}



}


@media (max-width: 980px) {
  .topbar__right .topbar__item--muted span:last-child {
    display: none;
  }

  .nav {
    gap: 14px;
  }
  .topbar__item {
        font-size: 14px;
        gap: 5px;
    }

}

@media (max-width: 820px) {
  .navpill {
    gap: 10px;
    height: 48px;
  }

  .navpill__burger {
    display: flex;
  }

  .nav {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    width: min(var(--container), calc(100% - 32px));
    background: #0D878B;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .3s ease, opacity .2s ease;
  }

  .nav__link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid #e5e9f0;
    color: #fff;
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }

  .nav__link:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
    color: #fff;
  }

  .navpill__toggle:checked ~ .nav {
    opacity: 1;
    pointer-events: auto;
    max-height: 500px;
  }
}

@media (max-width: 520px) {
  .topbar__inner {
    justify-content: center;
    min-height: 32px; 
    padding: 0; 
  }

  .hero__inner {
    padding: 10px 0 0px;
  }

  .hero {
  min-height: 800px;
  margin-top: 0px;
  background-image: url(../images/Mobile-Menu-1.png);
        background-position: top left;
        background-size: cover;
}



  .hero__title {
letter-spacing: 0.04em;
        font-size: 28px;
        font-weight: 500;
        margin: 5px 0 35px;
  }
  .btn {
    font-size: 15px;
    line-height: 7px;
}
.hero__kicker {
  color: #304B91;
        letter-spacing: 0.8px;
        font-weight: 600;
        font-size: 16px;
}


}