html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  font-size: 1.833vw;
}

@media (max-width: 541px) {
  html {
    font-size: 4.267vw;
  }
}

body {
  max-width: 100vw;
  background: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.375rem;
  color: #222;
  cursor: default;
}

.wrapper {
  max-width: 30.0rem;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

.header {
  width: 22.125rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0.0625rem solid #88BE55;
  border-radius: 0.9375rem;
  box-sizing: border-box;
  position: relative;
  margin: 1.25rem auto 1.25rem auto;
  padding: 0.625rem 0.25rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 3.0625rem;
  height: auto;
  margin-left: 0;
  margin-right: 0.125rem;
}

.nav {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
}

.nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.4375rem;
  line-height: 0.5625rem;
  text-transform: uppercase;
  color: #222;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.cta-button {
  width: 3.625rem;
  height: 0.875rem;
  font-size: 0.4375rem;
  border: none;
  border-radius: 0.9375rem;
  background-color: #88BE55;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  margin-left: 0.75rem;
}


.banner {
  position: relative;
  width: 22.1062rem;
  height: 12.4313rem;
  border-radius: 0.9375rem;
  background: url('../img/banner1.png') center center / cover no-repeat;
  margin: 0 auto 1.25rem auto;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding: 1.25rem;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.9375rem;
  z-index: 1;
}

.banner-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.banner-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 630;
  font-size: 2.8125rem;
  line-height: 87%;
  text-transform: uppercase;
  margin: 0 0 3.0625rem 0;
}

.banner-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.0rem;
  line-height: 0.4375rem;
  text-transform: uppercase;
  margin: 0;
}

.banner-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2.0625rem;
  text-transform: uppercase;
  margin: 0 0 0.6875rem 0;
}

.button-wrapper {
  padding: 0.125rem;
  border-radius: 0.9375rem;
  border: 0.125rem solid #88BE55;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}


.banner-button {
  padding: 0.5rem 0.625rem;
  font-size: 0.5rem;
  background-color: #88BE55;
  color: white;
  border: none;
  border-radius: 0.9375rem;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  z-index: 2;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  /* Анимация кнопки */
}


.button-wrapper:hover {
  transform: scale(1.05);
}


.banner-button:hover {
  background-color: transparent;
  color: #ffffff;
  box-shadow: 0 0 0 0.25rem #88BE55;
}


.banner-image-wrapper {
  width: 22.1062rem;
  height: 12.4313rem;
  margin: 1.25rem auto;
  border-radius: 0.9375rem;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-video {
  position: absolute;
  width: 22.1rem;
  top: 0;
  left: 0;
  border-radius: 0.9375rem;
  overflow: hidden;
}

.slide {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.story-block-slide {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 640px;
  overflow: hidden;
}

.story-block-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.custom-section {
  background: url('../img/ЧОМУ.png') center center / cover no-repeat;
  background-size: 99% 80%;
  width: 22.1062rem;
  /* height: 12.4313rem; */
  margin: 2.25rem auto;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: white;
  box-sizing: border-box;
  position: relative;
}


.text-green {
  color: #fff;
  font-size: 2.25rem;
  background-color: #88BE55;
  padding: 0.0rem 0.3125rem;
  border-radius: 0.625rem;
  margin: 0.625rem 0;
  font-weight: 600;
  line-height: 90%;
}


.text-black {
  color: #222;
  font-size: 2.25rem;
  margin: 0.625rem 0;
  text-align: left;
  padding-left: 1.375rem;
  line-height: 100%;
  font-weight: 600;
}


.text-highlight {
  color: #88BE55;
  font-size: 3.1875rem;
  margin: 0.625rem 0;
  padding: 0.5rem 0.4375rem;
  border: 0.125rem solid #88BE55;
  border-radius: 0.6875rem;
  font-weight: 500;
}


.experience-section {
  background-color: #EAEAEA;

  width: 100%;
}

.experience-wrapper {
  background-color: #EAEAEA;
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 22.1062rem;
  margin: 0 auto;

}

.experience-grid {
  display: grid;
  grid-template-columns: 8.6875rem 9.4375rem auto;
  gap: 0.25rem;
  width: 100%;
  max-width: 30.0rem;
  box-sizing: border-box;
  padding: 0 0.465rem;
  align-items: start;
  margin-bottom: 0.5625rem;
}


.experience-title {
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
  width: 8.6875rem;
  height: 4.9375rem;
  box-sizing: border-box;
  text-align: center;
}

.experience-container {
  display: flex;
  justify-content: space-between;
  gap: 0.3125rem;
  max-width: 22.1062rem;
  margin: 0 auto;
}

.experience-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  flex: 1;
}

.info-item {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 0.1875rem;
  line-height: 112.00000000000001%;
  box-sizing: border-box;
  width: 9.4375rem;
  font-size: 0.4375rem;
  font-weight: 600;
}

.experience-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  align-items: center;
}

.number-item {
  width: 2.5rem;
  height: 1.3125rem;
  background-color: #88BE55;
  border-radius: 0.3125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.125rem;
  box-sizing: border-box;
}

.number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.5rem;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.number-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.3125rem;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}



.equipment-title {
  background-color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3125rem;
  height: 2.75rem;
  text-align: center;
}

.equipment-info {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.equipment-item {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 0.1875rem;
  font-size: 0.4375rem;
  line-height: 112%;
  box-sizing: border-box;
  width: 9.5rem;
  font-weight: 600;
}

.equipment-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.equipment-number {
  width: 2.5rem;
  height: 1.125rem;
  background-color: #88BE55;
  border-radius: 0.3125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.125rem;
  box-sizing: border-box;
}

.equipment-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.5rem;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}

.equipment-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.3125rem;
  line-height: 120%;
  text-transform: uppercase;
  color: #fff;
}


.experience-group,
.equipment-group {
  margin-bottom: 1.25rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 8.6875rem 9.4375rem auto;
  gap: 0.25rem;
  width: 100%;
  max-width: 30.0rem;
  box-sizing: border-box;
  padding: 0 0.625rem;
  align-items: start;
}


.top {
  padding-top: 0.5rem;
}

.team-title-size {
  width: 8.6875rem;
  height: 2.5625rem;
  line-height: 120%;
}

.team-number-size {
  width: 2.5rem;
  height: 2.5625rem;

}

.team-info-size {
  width: 9.4375rem;
  height: 2.5625rem;
  display: flex;
  align-items: center;

}

.size-team {
  line-height: 120%;
  height: 2.875rem;
}

.size-team-second {
  height: 1.375rem;

}

.team-second {
  gap: 0.3125rem;
}

.title-content {
  position: relative;
  width: 100%;
  text-align: center;
}

.title-icon {
  position: absolute;
  top: -0.4375rem;
  right: 0.3125rem;
  width: 2.0625rem;
  height: auto;
}

.mission-section {
  background-image: url('../img/misiya.png');
  background-size: 80% 40%;
  background-repeat: no-repeat;
  background-position: bottom;
  width: 22.1062rem;
  margin: 0 auto;
  height: 12rem;
  padding: 2.25rem 0 0 0;
  text-align: center;
  color: #2D2D2D;
  margin-bottom: 2.25rem;
}

.mission-content {
  max-width: 30.0rem;
  margin: 0 auto;
}

.mission-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 2.625rem;
  line-height: 112%;
  letter-spacing: 0;
  color: #88BE55;
  margin-bottom: 0.625rem;
  margin: 0;
  text-align: start;
}

.mission-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 418;
  font-size: 0.625rem;
  line-height: 1%;
  text-transform: uppercase;
  color: #2D2D2D;
  text-align: start;
  padding-left: 1.875rem;
}

.mission-highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 418;
  font-size: 0.625rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  border: 0.0813rem solid #000;
  border-radius: 1.3125rem;
  display: inline-block;
  padding: 0.0rem 0.25rem;
  margin-bottom: 0.5rem;
  margin: 0;
}


.mission-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 418;
  font-size: 0.625rem;
  line-height: 0.75rem;
  text-transform: uppercase;
  margin-top: 0.625rem;
  text-align: end;
  padding-right: 0.625rem;

}

.mission-support {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-style: italic;
  font-size: 0.625rem;
  line-height: 0.625rem;
  text-transform: uppercase;
  margin: 0;
}

.highlight-wrapper {
  text-align: left;
  padding-left: 1.875rem;
}


.stories-section {
  background: linear-gradient(90deg, #88BE55 0%, #B6E08F 100%);
  padding: 0.75rem 0.4375rem;
  font-family: 'Montserrat', sans-serif;
  width: 21.6062rem;
  margin: 0 auto;
  border-radius: 0.9375rem
}

.stories-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75.0rem;
  margin: 0 auto;
  height: 11.5rem;
  flex-direction: column;
}

.stories-text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.stories-word {
  background: #fff;
  color: #000;
  font-weight: 432;
  font-size: 1.25rem;
  line-height: 113%;
  text-transform: uppercase;
  padding: 0 0.5rem;
  border-radius: 0.3125rem;
  display: inline-block;
}

.first {
  width: 100%;
}

.second {
  width: 4.9375rem;
}



.slider-wrapper {
  position: relative;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-slider-wrapper {
  overflow: hidden;
  width: 17.0rem;
  border-radius: 0.625rem;
}

.stories-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

.slider-arrow {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0.0875rem solid #faf7f7;
  border-radius: 50%;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 0.625rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.slider-arrow.left {
  left: -0.0625rem;
}

.slider-arrow.right {
  right: -0.0625rem;
}


.consultation-section {
  display: flex;
  gap: 0.75rem;
  padding: 2.25rem 0;
  width: 22.1062rem;
  margin: 0 auto;
  justify-content: space-around;
}

.consultation-image {
  width: 10.0rem;
  height: 15.0rem;
  background-image: url('../img/111-23.png');
  background-size: cover;
  background-position: center;
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  flex-shrink: 0;
  margin-left: -1.2rem;
}

.consultation-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

}

.consultation-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.9375rem;
}

.free-label {
  color: #88BE55;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 100%;
  border: 0.125rem solid #88BE55;
  border-radius: 0.875rem;
  padding: 0.125rem 0.5rem;
  display: inline-block;
  width: fit-content;
}

.consult-label {
  color: #2D2D2D;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 100%;
}

.consult-button {
  background-color: #88BE55;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  padding: 0.625rem 2.625rem;
  border: none;
  border-radius: 1.5625rem;
  width: fit-content;
  cursor: pointer;
  margin-top: 1.25rem;
}

.consult-bottom-image img {
  width: 4.875rem;
  margin-left: 2.9375rem;
  margin-top: 0.625rem;

}





.feedback-section {
  background-image: url('../img/rev_bg.png');
  background-size: cover;
  background-position: center;
  padding: 0 0.625rem;
  position: relative;
  width: 22.1062rem;
  margin: 0 auto;
  height: 12.8125rem;
}

.feedback-bg-overlay {
  position: relative;
  max-width: 62.5rem;
  margin: 0 auto;
}

.feedback-overlay-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 22.1062rem;
  height: 12.4375rem;
  z-index: 1;
}

.feedback-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 4.0rem;
  line-height: 100%;
  color: #88BE55;
  margin: 0;
  position: relative;
  z-index: 2;
}

.feedback-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  z-index: 2;
  margin-top: 1.875rem;
}

.feedback-slides {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 43.75rem;
  position: relative;
}

.feedback-slide {
  background-color: #fff;
  padding: 0.4375rem;
  border-radius: 0.625rem;
  transition: transform 0.3s ease;
  display: none;
  flex-direction: column;
  gap: 0.625rem;
}

.feedback-slide.active {
  display: flex;
}

.feedback-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 100%;
  margin: 0;
  color: #2D2D2D;
}

.feedback-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 377;
  font-size: 0.725rem;
  line-height: 100%;
  margin: 0;
  color: #2D2D2D;
}

.feedback-arrow {
  background-color: transparent;
  border: 0.0625rem solid #000;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.125rem;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-block {
  background: linear-gradient(90deg, #88BE55 0%, #B6E08F 100%);
  padding: 0.75rem 0.4375rem;
  font-family: 'Montserrat', sans-serif;
  width: 21.6062rem;
  margin: 0 auto;
  border-radius: 0.625rem;
  padding-top: 0.625rem;
  margin-top: 2.25rem;
}

.story-block-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 75.0rem;
  margin: 0 auto;
  height: 11.5rem;
  flex-direction: column;
}

.story-block-text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.story-block-word {
  background: #fff;
  color: #000;
  font-weight: 432;
  font-size: 0.9375rem;
  line-height: 113%;
  text-transform: uppercase;
  padding: 0 0.5rem;
  border-radius: 0.3125rem;
  display: inline-block;
}

.first-word {
  width: 100%;
}

.second-word {
  width: 3.375rem;
}

.story-block-slider-container {
  position: relative;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-block-slider-wrapper {
  overflow: hidden;
  width: 17.0rem;
  border-radius: 0.625rem;
}

.story-block-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.story-block-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.story-block-slide img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}

.story-block-arrow {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0.0875rem solid #faf7f7;
  border-radius: 50%;
  width: 1.125rem;
  height: 1.125rem;
  font-size: 0.625rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.story-block-arrow.left {
  left: -0.0625rem;
}

.story-block-arrow.right {
  right: -0.0625rem;
}



.team-grid-section {
  padding-top: 2.25rem;
  font-family: 'Montserrat', sans-serif;
  width: 92%;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}

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

.team-photo {
  width: 100%;

  object-fit: cover;
  border-radius: 0.625rem;
  display: block;
  margin: 0 auto;
}

.team-name {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 113%;
  text-transform: uppercase;
  margin: 0.25rem 0 0.125rem;
  color: #000;
}

.team-title {
  font-weight: 400;
  font-size: 0.4125rem;
  line-height: 113%;
  text-transform: uppercase;
  color: #000;
}



.why-tomoclinic-section {
  line-height: 90%;
  font-family: 'Montserrat', sans-serif;
  width: 21.6062rem;
  margin: 0 auto;
  padding-top: 2.25rem;
}

.why-tomoclinic-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.375rem;
}

.why-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-top: 3.375rem;
}

.why-text-block {
  flex: 1 1 auto;
  min-width: 0;
}

.why-title span,
.why-subtext span {
  font-size: 0.6875rem;
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.why-image-block {
  flex-shrink: 0;
}

.why-image {
  width: 9.5625rem;
  height: 11.25rem;
  object-fit: cover;
  border-radius: 0.625rem;
}

.why-middle-image-block {
  flex-shrink: 0;
}

.why-middle-image {
  width: 4.6875rem;
  height: 6.0625rem;
}


.accordion-section {
  background-color: #EAEAEA;
  width: 100%;

}

.accordion-container {
  width: 21.6062rem;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  margin-top: 2.25rem;
  height: auto;
  padding: 1rem 0 1.625rem;
}

.accordion-item {
  position: relative;
  padding-top: 0.625rem;

}

.accordion-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.accordion-item.open::after {
  opacity: 0;
}

.accordion-header {
  width: 100%;
  height: 1.3125rem;
  background-color: #88BE55;
  color: #fff;
  border-radius: 0.3125rem;
  padding: 0 0.625rem;
  cursor: pointer;
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.accordion-header .icon {
  font-size: 0.875rem;
  font-weight: bold;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;

  padding: 0 0.625rem;
}

.accordion-content.open {
  max-height: 62.5rem;
  padding: 0.625rem 0.625rem;
}

.accordion-row {
  display: flex;
  gap: 0.375rem;
  margin: 0.625rem 0;
  justify-content: space-between;
}

.clinic-box,
.clinic-description {
  border-radius: 0.625rem;
  padding: 0.125rem 0.25rem;
  font-family: 'Montserrat', sans-serif;
}


.grey-box {
  background-color: #B1B1B1;
  color: #fff;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  width: 5.8125rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grey-description {
  background-color: #B1B1B1;
  color: #fff;
  font-weight: 500;
  font-size: 0.4375rem;
  line-height: 1.12;
  text-transform: uppercase;
  width: 15.8125rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
}


.white-box {
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  width: 5.8125rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-description {
  background-color: #fff;
  color: #000;
  font-weight: 500;
  font-size: 0.4375rem;
  line-height: 1.12;
  text-transform: uppercase;
  width: 15.8125rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
}

.accordion-row.grey {
  background-color: #b1b1b1;
  color: #fff;
}

.accordion-row.white {
  background-color: #fff;
  color: #000;
}

.clinic-box {
  width: 5.8125rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 0.3125rem;
  border-radius: 0.25rem;
  padding: 0.125rem;
}

.clinic-description {
  width: 13.75rem;
  height: 3.25rem;
  font-size: 0.5375rem;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.12;
  display: flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
}

.accordion-footnote {
  font-size: 0.4375rem;
  font-style: italic;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0.625rem 0;
  line-height: 1.12;
}

.top-table {
  margin-top: 1.25rem;
  display: flex;
}

.table-section {
  width: 21.5rem;
  margin: 0 auto;
  margin-top: 2.25rem;
}

.comparison-table {
  width: 21.5rem;
  height: 9rem;
  border-radius: 0.9375rem;
  border: 0.125rem solid black;
  /* 0.125rem = 2px */
  border-collapse: collapse;
  /* убирает двойные границы */
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
}


.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 0.25rem;
  font-size: 0.4725rem;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 0.0625rem solid black;
  box-shadow: inset 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.1);
}

.comparison-table th {
  font-weight: 700;
}

.comparison-table td {
  font-weight: 700;
  font-size: 0.5125rem;
}

.comparison-table th:first-child {
  background-color: #fff;
}

.comparison-table th:nth-child(2) {
  background-color: #CCCCCC;
  width: 2.5rem;
  color: white;
  text-align: center;
}

.comparison-table th:nth-child(3) {
  background-color: #88BE55;
  width: 2.5rem;
  color: white;
  text-align: center;
}

.comparison-table td:first-child {
  background-color: #fff;
}

.comparison-table td:nth-child(2) {
  background-color: #CCCCCC;
  width: 2.5rem;
  color: white;
  text-align: center;
}

.comparison-table td:nth-child(3) {
  background-color: #88BE55;
  width: 2.5rem;
  color: white;
  text-align: center;
}


.info-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 22.1062rem;
  margin: 0 auto;
  margin-top: 1.25rem;
}

.text-container {
  margin-right: 0.3125rem;
}

.free-text {
  color: #88BE55;
  font-size: 1.25rem;
  margin: 0.625rem 0;
  padding: 0.1875rem 0.4375rem;
  border: 0.125rem solid #88BE55;
  border-radius: 1.125rem;
  font-weight: 600;
  width: 9.3125rem;
}

.consultation {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 90%;
  letter-spacing: 0;
  color: #000;
  margin: 0;

}

.treatment {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 90%;
  letter-spacing: 0;
  color: #000;
  margin: 0;

}

.btn {
  display: inline-block;
  background-color: #88BE55;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.25rem 2.0rem;
  text-transform: uppercase;
  margin-top: 1.25rem;
  text-decoration: none;
  border-radius: 0.875rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #77a34e;
}

.image-container {
  flex-shrink: 0;
}

.image {
  width: 10.9806rem;
  height: 9.625rem;
  object-fit: cover;
  border-radius: 0.625rem;
}


.footer-section {
  width: 22.1062rem;
  margin: 0 auto;
}

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

.footer-main-image {
  width: 8.0625rem;
  height: 2.6875rem;
  margin-bottom: 0.25rem;
  margin-top: 1.875rem;
}

.footer-icons-container {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 1.875rem;
}

.footer-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.footer-text {
  font-size: 0.625rem;
  line-height: 1.5;
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}