@charset "UTF-8";
.dms {
  display: flex;
  flex-wrap: wrap;
  gap: 90px;
  justify-content: space-between;
  padding: 50px 0;
}
.dms-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
  flex: 1 1 300px;
}
.dms-left__title {
  font-size: clamp(20px, 5vw, 40px);
  color: #3F3F3F;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.dms-left__list {
  font-size: clamp(12px, 3vw, 16px);
  color: #3F3F3F;
  font-weight: 400;
  line-height: normal;
  margin-left: 20px;
}
.dms-left__button {
  background-color: #75CB4B;
  text-decoration: none;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  width: 112px;
}
.dms-right {
  display: flex;
  flex-direction: column;
  flex: 1 1 500px;
}
.dms-right__text {
  text-transform: uppercase;
  font-size: clamp(16px, 4vw, 20px);
  line-height: normal;
  color: #75CB4B;
  font-weight: 700;
}
.dms-right__title {
  font-size: clamp(20px, 5vw, 40px);
  color: #3F3F3F;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.dms-right__box {
  background-color: rgba(220, 220, 220, 0.74);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px;
  margin-top: 40px;
}
.dms-right__item {
  background-color: #FFF;
  border-radius: 10px;
  display: flex;
  gap: 30px;
  padding: 30px;
  align-items: center;
}
.dms-right__item-name {
  font-size: clamp(12px, 3vw, 16px);
  color: #3F3F3F;
  font-weight: 400;
  line-height: normal;
  margin-left: 20px;
}
.dms-right__item-step {
  text-transform: uppercase;
  font-size: clamp(16px, 4vw, 20px);
  line-height: normal;
  color: #75CB4B;
  font-weight: 700;
  text-wrap: nowrap;
  white-space: nowrap;
}

.sale {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 40px;
}

@media (max-width: 540px) {
  .dms {
    padding-top: 0;
    gap: 64px;
  }
  .dms-left {
    gap: 20px;
  }
  .dms-right__box {
    padding: 30px;
  }
  .dms-right__item {
    padding: 20px;
  }
}
.page-contacts {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contacts-box {
  display: flex;
  gap: 55px;
  background-color: rgba(220, 220, 220, 0.74);
  padding: 55px;
  border-radius: 30px;
  justify-content: space-between;
}
.contacts-box__point {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-box__point-img {
  width: 30px;
  height: 30px;
}
.contacts-box__point-phone {
  text-decoration: none;
  line-height: normal;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 700;
  color: #3F3F3F;
}
.contacts-box__point-text {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #3F3F3F;
}
.contacts-box__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  flex: 1 1 100px;
}
.contacts-box__left-title {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  color: #3f3f3f;
  font-weight: 700;
  line-height: normal;
}
.contacts-box__left-text {
  font-size: 16px;
  color: #3f3f3f;
  font-weight: 400;
  line-height: 20px;
}
.contacts-box__left-text--bold {
  font-weight: 700;
}
.contacts-box__map {
  height: 380px;
  background-color: #fff;
  border-radius: 30px;
  flex: 3 1 100px;
  overflow: hidden;
}

.form {
  max-width: 765px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 3px solid #E5E5E5;
  border-radius: 30px;
  padding: 60px;
  gap: 32px;
}
.form-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-top__title {
  color: #75DB47;
  font-size: clamp(20px, 5vw, 40px);
  line-height: normal;
  text-transform: uppercase;
  font-weight: 700;
}
.form-top__text {
  color: #3f3f3f;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 400;
}
.form-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-inputs__item {
  border: 0px;
  background-color: #F1F1F1;
  border-radius: 30px;
  padding: 20px;
  color: #3f3f3f;
  font-size: clamp(16px, 4vw, 20px);
  line-height: normal;
  font-weight: 400;
}
.form-inputs__button {
  width: 100%;
  background-color: #75DB47;
  border: 0px;
  border-radius: 30px;
  color: #fff;
  font-size: clamp(16px, 4vw, 20px);
  line-height: normal;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}
.form-inputs__button:hover {
  cursor: pointer;
}
.form-checkbox {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}
.form-checkbox__label {
  color: #989898;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.form-checkbox__marker {
  min-width: 20px;
  min-height: 20px;
  accent-color: #75DB47;
}
.form-checkbox__marker:hover {
  cursor: pointer;
}

.application {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: #3f3f3f;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.4);
}
.application-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.complate {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  align-items: center;
  padding: 60px;
  background-color: #fff;
  border: 3px solid #75DB47;
  border-radius: 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.complate-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.complate-box__title {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 600;
  line-height: normal;
  color: #75DB47;
  text-wrap: nowrap;
}
.complate-box__phrase {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #000;
  text-align: center;
}

@media (max-width: 1024px) {
  .contacts-box {
    flex-direction: column;
  }
  .contacts-box__map {
    flex: 0 1 auto;
  }
}
@media (max-width: 768px) {
  .contacts-box {
    padding: 30px;
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .form {
    padding: 30px;
  }
  .complate {
    padding: 30px;
  }
}
.tests-page {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.tests-page__top {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
  margin-bottom: 38px;
}
.tests-page__top-text {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #3F3F3F;
}
.tests-page__top-button {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #FFF;
  padding: 15px 30px;
  background-color: #75DB47;
  border-radius: 10px;
  text-align: center;
}
.tests-page__price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #E5E5E5;
  border-radius: 30px;
  padding: 42px 70px 70px 70px;
  margin-bottom: 32px;
}
.tests-page__price-item {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  gap: 30px;
  border-radius: 10px;
  padding: 30px;
}
.tests-page__price-name {
  text-transform: uppercase;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 700;
  color: #3F3F3F;
}
.tests-page__price-right {
  width: 200px;
  min-width: 200px;
  display: flex;
  justify-content: space-between;
}
.tests-page__price-elaboration {
  text-transform: uppercase;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 700;
  color: #75DB47;
  align-self: flex-end;
}
.tests-page__price-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 30px 20px 30px;
}
.tests-page__price-ps {
  text-transform: uppercase;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 400;
  color: #3F3F3F;
  margin: 30px 0 -30px 30px;
}
.tests-page__bottom {
  position: relative;
}
.tests-page__bottom-title {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  line-height: normal;
  font-weight: 700;
  color: #3F3F3F;
  margin-bottom: 35px;
  margin-top: 48px;
}
.tests-page__bottom-text {
  width: 35%;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 500;
  line-height: normal;
}
.tests-page__bottom-img {
  position: absolute;
  bottom: -85px;
  right: 0;
  z-index: -15;
}
.tests-page__board {
  width: 540px;
  display: flex;
  gap: 24px;
  align-items: center;
  background-color: #75DB47;
  border-radius: 20px;
  padding: 20px;
}
.tests-page__board-box {
  min-width: 104px;
  height: 71px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tests-page__board-text {
  color: #fff;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 500;
  line-height: normal;
}
.tests-page__board-title {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.tests-page__board-description {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #3F3F3F;
}

.panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 132px;
  gap: 40px;
}
.panel-container {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
.panel-container--mini {
  width: 40%;
}
.panel-container__title {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  line-height: normal;
  font-weight: 700;
  color: #3F3F3F;
}
.panel-container__title--color {
  color: #75DB47;
}
.panel-container__text {
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 400;
  color: #3F3F3F;
}
.panel-container__list {
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 400;
  color: #3F3F3F;
  margin-left: 20px;
}
.panel-container__link {
  background-color: #75DB47;
  text-decoration: none;
  border-radius: 30px;
  font-size: clamp(12px, 3vw, 16px);
  line-height: 20px;
  font-weight: 700;
  color: #FFF;
  width: 120px;
  padding: 12px 32px;
  text-align: center;
}

@media (max-width: 1160px) {
  .tests-page__price--mini {
    width: 100%;
  }
}
@media (max-width: 1060px) {
  .panel {
    padding-top: 40px;
  }
  .panel-container {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .tests-page__top {
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
  }
  .tests-page__board {
    width: calc(100% - 40px);
  }
  .tests-page__board-title {
    width: 100%;
  }
  .tests-page__bottom {
    margin-bottom: 180px;
  }
  .tests-page__bottom-text {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .tests-page__price-item {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  .tests-page__price-right {
    justify-content: flex-end;
    gap: 30px;
    width: auto;
    min-width: auto;
  }
  .tests-page__price-elaboration:first-child {
    display: none;
  }
  .tests-page__price-name--deadline {
    display: none;
  }
  .tests-page__price-top {
    padding: 0 20px 20px 20px;
  }
}
@media (max-width: 540px) {
  .tests-page__price {
    padding: 40px;
    margin-bottom: 0;
  }
  .tests-page {
    margin-top: 24px;
  }
  .tests-page__top {
    gap: 24px;
  }
  .tests-page__top-button {
    font-size: 12px;
  }
  .tests-page__price-top {
    display: none;
  }
  .tests-page__bottom-title {
    margin: 0 0 14px 0;
  }
  .tests-page__bottom {
    margin-top: 50px;
    margin-bottom: 0;
  }
  .tests-page__bottom-img {
    display: none;
  }
  .tests-page__board {
    flex-direction: column;
    text-align: center;
  }
  .tests-page__board-title {
    gap: 12px;
  }
  .panel {
    gap: 50px;
    padding-top: 20px;
  }
  .panel-container {
    gap: 20px;
  }
  .tests-page__price-ps {
    margin: 0;
  }
}
.hospital {
  padding-top: 50px;
}
.hospital-box {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  background-color: rgba(220, 220, 220, 0.74);
  border-radius: 30px;
  padding: 45px;
}
.hospital-box__left {
  display: grid;
  grid-template-columns: repeat(2, 189px);
  column-gap: 50px;
  row-gap: 64px;
}
.hospital-box__right-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
.hospital-middle {
  margin-top: 50px;
  display: flex;
}
.hospital-middle__image img {
  width: calc(100% + 120px);
  margin-left: -120px;
  margin-top: 20px;
}
.hospital-middle__info {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.hospital-middle__info-text {
  margin-top: 50px;
  font-weight: 400;
  font-size: clamp(16px, 4vw, 20px);
  line-height: normal;
  color: #3F3F3F;
}
.hospital-middle__info-text--bold {
  font-weight: 700;
}
.hospital-middle__info-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.hospital-middle__info-step {
  display: flex;
  flex-direction: column;
}
.hospital-middle__info-image {
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.hospital-middle__info-title {
  text-transform: uppercase;
  color: #75DB47;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
}
.hospital-middle__info-description {
  color: #3F3F3F;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  margin-top: 10px;
  text-wrap: nowrap;
}
.hospital-bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hospital-bottom__up {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 65%;
  padding: 40px 40px;
  border-radius: 30px;
  background-color: #75CB4B;
}
.hospital-bottom-title {
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(20px, 5vw, 40px);
  line-height: normal;
  font-weight: 700;
}
.hospital-bottom-text {
  margin-left: 20px;
  color: #fff;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 400;
}
.hospital-bottom__down {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 65%;
  padding: 40px 40px;
}

.black {
  color: #3F3F3F;
}

@media (max-width: 1024px) {
  .hospital-box {
    flex-direction: column;
    align-items: center;
  }
  .hospital-middle {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }
  .hospital-middle__info {
    width: 80%;
  }
  .hospital-bottom__up {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .hospital-middle__info-block {
    flex-direction: column;
    gap: 36px;
    margin-bottom: 70px;
  }
  .hospital-middle__info {
    gap: 70px;
  }
  .hospital-middle__info-text {
    margin-top: 20px;
  }
  .hospital__image {
    display: none;
  }
}
@media (max-width: 540px) {
  .hospital-middle__info-block {
    gap: 24px;
    margin-bottom: 50px;
  }
  .hospital-middle__info {
    gap: 50px;
  }
  .hospital-middle__info-text {
    margin-top: 0px;
  }
  .hospital-middle__info-title {
    font-size: 20px;
  }
  .hospital-box__left {
    grid-template-columns: repeat(1, 189px);
  }
}
.doctors-page {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 124px;
  justify-content: space-between;
}
.doctors-page--once {
  margin-top: 153px;
}
.doctors-page__box {
  display: flex;
  flex-direction: column;
  gap: 130px;
}
.doctors-page__list {
  width: 586px;
}
.doctors-page__list--new {
  display: flex;
  flex-direction: column;
}
.doctors-page__list-text {
  font-size: clamp(12px, 3vw, 16px);
  color: #3F3F3F;
  font-weight: 400;
  line-height: normal;
}
.doctors-page__list-inscription {
  text-transform: uppercase;
  font-size: clamp(16px, 4vw, 20px);
  line-height: normal;
  font-weight: 700;
  color: rgb(117, 219, 71);
}
.doctors-page__list-inscription--dop {
  margin-top: -24px;
}
.doctors-page__list-title {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  line-height: normal;
  font-weight: 700;
  color: rgb(63, 63, 63);
  margin-bottom: 30px;
  margin-top: 30px;
}
.doctors-page__list-title--color {
  color: rgb(117, 219, 71);
}
.doctors-page__list-items {
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 400;
  color: rgb(63, 63, 63);
  margin-left: 16px;
  margin-top: 35px;
}
.doctors-page__list-paragraph {
  color: rgb(255, 255, 255);
}
.doctors-page__list-back {
  background-color: rgb(117, 219, 71);
  padding: 40px;
  border-radius: 30px;
  margin-top: 90px;
}
.doctors-page__image {
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: -10;
  width: 50%;
}
.doctors-page__price {
  display: flex;
  flex-direction: column;
  background-color: #DCDCDC;
  border-radius: 30px;
  padding: 42px 23px;
  margin-top: 27px;
}
.doctors-page__price--ver {
  margin-top: 64px;
}
.doctors-page__price-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.doctors-page__price-box--one {
  flex-direction: column;
}
.doctors-page__price-item {
  width: 500px;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  gap: 40px;
  flex: 1 1 30%;
  align-items: center;
}
.doctors-page__price-item--ver {
  width: 500px;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  gap: 40px;
  align-items: center;
}
.doctors-page__price-text {
  color: #3F3F3F;
  font-size: clamp(12px, 3vw, 16px);
  text-transform: uppercase;
  font-weight: 700;
}
.doctors-page__price-cost {
  color: #75DB47;
  font-size: clamp(12px, 3vw, 16px);
  text-transform: uppercase;
  font-weight: 700;
  text-wrap: nowrap;
}
.doctors-page__price-ps {
  text-transform: uppercase;
  color: #3F3F3F;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 700;
  margin-top: 20px;
  margin-left: 20px;
}

@media (max-width: 1024px) {
  .doctors-page__price-item {
    width: 100%;
    flex: 0 1 auto;
  }
  .doctors-page__price-item--ver {
    width: 100%;
    flex: 0 1 auto;
  }
  .doctors-page__list {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .doctors-page {
    row-gap: 64px;
  }
  .doctors-page__box {
    row-gap: 64px;
  }
  .doctors-page__list-items {
    margin-top: 20px;
  }
  .doctors-page__list-title {
    margin-bottom: 20px;
  }
  .doctors-page__price--ver {
    margin-top: 24px;
  }
}
@media (max-width: 540px) {
  .doctors-page__price-item--ver,
  .doctors-page__price-item {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
  .doctors-page__price-cost {
    align-self: flex-end;
  }
  .doctors-page__price-text {
    align-self: flex-start;
  }
  .doctors-page--once {
    margin-top: 80px;
  }
  .doctors-page__list-title {
    margin-bottom: 20px;
  }
  .doctors-page__list-back {
    margin-top: 40px;
  }
  .doctors-page__box {
    gap: 64px;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
  padding-top: 54px;
}
.header-logo {
  height: 60px;
  margin-top: 13px;
}
.header-logo__textless {
  display: none;
  height: 110px;
}
.header-navigate {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 65px;
  margin-top: 38px;
}
.header-navigate__link {
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  line-height: 11px;
  text-align: left;
  color: #727272;
}
.header-navigate__link--active {
  color: #3F3F3F;
}
.header-timeWork {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.header-timeWork__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 11px;
  color: #3F3F3F;
}
.header-timeWork__phone {
  text-decoration: none;
  white-space: nowrap;
  border-radius: 30px;
  background-color: #75CB4B;
  padding: 16px 19px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  line-height: 11px;
  align-items: center;
  margin-bottom: 5px;
}

.phone-button {
  display: none;
  background-color: #75CB4B;
  width: 60px;
  height: 50px;
  border: 0px;
  border-radius: 30px;
}

.navigate {
  position: relative;
}
.navigate-button {
  display: none;
  background-color: #75CB4B;
  width: 60px;
  height: 50px;
  border: 0px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
}
.navigate-button__block {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #75CB4B;
  padding: 20px;
  border-radius: 10px;
  top: 70px;
  z-index: 14;
}
.navigate-button__block--nav {
  left: 0;
}
.navigate-button__block--phone {
  right: 0;
}
.navigate-button__block-link {
  text-decoration: none;
  text-transform: uppercase;
  text-wrap: nowrap;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
}
.navigate-button__block-link--low {
  text-transform: lowercase;
  font-weight: 400;
}

.main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 74px 0px 54px 0px;
}
.main-left {
  display: flex;
  width: 45%;
  flex-direction: column;
  align-items: center;
}
.main-left__title {
  display: flex;
  align-items: end;
  height: 230px;
  font-weight: 700;
  font-size: clamp(20px, 5vw, 40px);
  line-height: normal;
  color: #3F3F3F;
  text-align: center;
}
.main-left__information {
  margin: 22px 0 50px 0;
  text-align: center;
  color: #3F3F3F;
  font-size: clamp(12px, 3vw, 14px);
  line-height: normal;
  font-weight: 500;
}
.main-left__button {
  width: 200px;
  border: none;
  border-radius: 30px;
  background: #75CB4B;
  padding: 16px 18px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 10px;
  text-align: center;
  text-transform: uppercase;
}
.main-left__button:hover {
  cursor: pointer;
}
.main-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  height: fit-content;
}
.main-right__bottom {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.main-right__bottom-box {
  position: relative;
  background-color: #d3d3d3;
  border-radius: 30px;
}
.main-right__bottom-box:hover {
  background-color: #75CB4B;
}
.main-right__banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.main-right__banner-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 25;
}
.main-right__banner--ban1 {
  grid-area: ban1;
  padding-bottom: 25px;
}
.main-right__banner--ban2 {
  grid-area: ban2;
}
.main-right__banner--ban3 {
  grid-area: ban3;
}
.main-right__banner-image {
  display: block;
  z-index: -5;
  left: 0;
  top: 0;
  border-radius: 30px;
}
.main-right__banner-image--1 {
  background-size: cover;
  background-image: url(/image/banner1.png);
  width: 100%;
  height: 300px;
}
.main-right__banner-image--2 {
  background-size: cover;
  background-image: url(/image/dms.png);
}
.main-right__banner-image--3 {
  background-size: cover;
  background-image: url(/image/uzi.png);
}
.main-right__banner-tittle {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  color: #FFFFFF;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}
.main-right__banner-description {
  font-size: clamp(10px, 2vw, 14px);
  color: #FFFFFF;
  font-weight: 300;
  line-height: normal;
  margin-top: 18px;
}
.main-right__banner-description--span {
  font-weight: 700;
}
.main-right__banner-button {
  text-transform: uppercase;
  text-decoration: none;
  background-color: rgba(208, 208, 208, 0.62);
  color: #FFFFFF;
  border-radius: 30px;
  font-size: 10px;
  padding: 7px 12px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 375px) {
  .main-right__banner-button {
    font-size: 12px;
    padding: 7px 16px;
  }
}
@media (min-width: 425px) {
  .main-right__banner-button {
    font-size: 15px;
    padding: 7px 16px;
  }
}
@media (min-width: 576px) {
  .main-right__banner-button {
    font-size: 16px;
    padding: 7px 18px;
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .main-right__banner-button {
    font-size: 16px;
    padding: 12px 28px;
  }
}
@media (min-width: 992px) {
  .main-right__banner-button {
    padding: 12px 37px;
    font-size: 14px;
  }
}
.main-right__banner-container {
  position: absolute;
  bottom: 20px;
  left: 30px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding-right: 20px;
  flex-direction: column;
  width: 90%;
}
.main-right__banner-container--mini {
  flex-direction: column;
  align-items: flex-start;
}

.svg-burger {
  width: 28px;
  height: 19px;
}

.svg-phone {
  width: 20px;
  height: 19px;
}

@media (max-width: 1140px) {
  .main {
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
  }
  .main-left__title {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .header {
    height: 110px;
    gap: 20px;
    padding-top: 54px;
    align-items: center;
  }
  .header-navigate {
    display: none;
  }
  .header-timeWork {
    display: none;
  }
  .phone-button {
    display: block;
  }
  .navigate-button {
    display: flex;
  }
  .header-logo {
    display: none;
  }
  .header-logo__textless {
    display: block;
  }
}
@media (max-width: 768px) {
  .main-right__banner-description {
    margin: 0;
  }
  .last {
    display: none;
  }
  .last-back__right--down {
    display: none;
  }
  .last-back__right--up {
    display: none;
  }
}
@media (max-width: 425px) {
  .svg-burger {
    width: 18px;
    height: 10px;
  }
  .svg-phone {
    width: 15px;
    height: 13px;
  }
  .navigate-button {
    width: 44px;
    height: 34px;
  }
  .header-logo__textless {
    height: 64px;
  }
  .navigate-button__block {
    gap: 15px;
  }
  .navigate-button__block-link {
    font-size: 12px;
  }
  .main-right__banner-container {
    bottom: 10px;
    left: 15px;
  }
}
.direction-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, 189px);
  column-gap: 52px;
  row-gap: 117px;
  padding: 100px 69px 76px 58px;
  background-color: rgba(220, 220, 220, 0.74);
  border-radius: 30px;
  margin-top: 65px;
  justify-content: center;
}
.direction-box__service {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 72px 60px 120px 60px;
  background-color: rgba(220, 220, 220, 0.74);
  border-radius: 30px;
  margin-bottom: 105px;
  gap: 50px;
}
.direction-box__service-buttons {
  background-color: #75DB47;
  text-transform: uppercase;
  width: 272px;
  border: 0px;
  border-radius: 30px;
  color: #fff;
  padding: 12px 0px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  align-self: center;
  text-align: center;
}
.direction-box__service-buttons:hover {
  cursor: pointer;
}
.direction-box__service-front {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 354px;
  padding-top: 19px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.direction-box--upm {
  position: absolute;
  height: 358px;
  width: 250px;
  bottom: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  border-bottom-right-radius: 30px;
  z-index: 1;
}
.direction-box--downm {
  position: absolute;
  height: 30px;
  width: 250px;
  bottom: 328px;
  right: 0;
  background-color: rgba(220, 220, 220, 0.74);
  border-bottom-right-radius: 30px;
  z-index: 2;
}

.direction {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  width: 171px;
  height: 155px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 30px;
  background-color: rgb(255, 255, 255);
  padding: 26px 8px 10px 8px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.direction:hover {
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: scale(1.04);
}
.direction__image {
  height: 62px;
}
.direction__title {
  color: rgb(117, 203, 75);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.direction__text {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-align: center;
}
.direction__link {
  grid-column: 1/-1;
  text-transform: uppercase;
  background-color: rgb(117, 203, 75);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  border-radius: 30px;
  text-align: center;
  padding: 12px 0;
  display: none;
}

.add-front {
  width: 635px;
  height: 231px;
  top: -22px;
  left: -452px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  border-radius: 30px;
  padding: 37px 34px 23px 39px;
  margin-top: 30px;
}
.add-front__title {
  text-transform: uppercase;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 700;
  color: rgb(63, 63, 63);
  line-height: normal;
}
.add-front__text {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  color: rgb(63, 63, 63);
  line-height: normal;
}
.add-front__buttons {
  display: flex;
  gap: 35px;
}
.add-front__buttons-item {
  background-color: rgb(255, 255, 255);
  border: 0px;
  border-radius: 30px;
  padding: 11px 20px;
  color: rgb(117, 203, 75);
  text-transform: uppercase;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 20px;
  font-weight: 700;
}
.add-front__buttons-item:hover {
  cursor: pointer;
}

.last {
  position: relative;
  width: 189px;
  height: 193px;
  grid-column-start: -2;
}
.last-front {
  position: absolute;
  width: 422px;
  height: 260px;
  top: -22px;
  left: -224px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  border-radius: 30px;
  padding: 30px;
  margin-top: -30px;
  z-index: 20;
}
.last-front__link {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #FFFFFF;
  width: 100%;
  border-radius: 30px;
  padding: 12px 50px;
  text-align: center;
  background-color: #75CB4B;
}
.last-back {
  position: absolute;
  width: 444px;
  height: 283px;
  top: -44px;
  left: -246px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 30px;
  padding: 30px;
  margin-top: -30px;
}
.last-back__left--up {
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: -76px;
  left: -276px;
  background-color: rgba(220, 220, 220, 0.74);
  border-bottom-right-radius: 30px;
  z-index: 16;
}
.last-back__left--down {
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: -76px;
  left: -276px;
  background-color: rgb(255, 255, 255);
  z-index: 15;
}
.last-back__right--up {
  position: absolute;
  width: 120px;
  height: 30px;
  bottom: 343px;
  right: 0;
  background-color: rgba(220, 220, 220, 0.74);
  border-bottom-right-radius: 30px;
  z-index: 7;
}
.last-back__right--down {
  position: absolute;
  width: 120px;
  height: 373px;
  bottom: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  z-index: 6;
}

.letter {
  letter-spacing: -0.6px;
}

@media (max-width: 768px) {
  .add-front {
    width: auto;
    height: auto;
  }
  .direction-box {
    margin-top: 20px;
    row-gap: 72px;
  }
  .direction__link {
    display: block;
  }
}
@media (max-width: 540px) {
  .direction-box {
    row-gap: 55px;
    padding: 40px 55px 40px 55px;
  }
  .direction-box__service {
    padding: 40px 40px 120px 40px;
    margin-bottom: 64px;
  }
  .direction-box__service-front {
    background-color: transparent;
    bottom: 24px;
  }
}
@media (max-width: 425px) {
  .add-front__buttons {
    justify-content: center;
  }
  .direction__title {
    font-size: 14px;
  }
  .direction__text {
    font-size: 10px;
  }
}
.content__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  padding-left: 28px;
}
.content__directions {
  background-image: url(./image/Subtract\ \(1\).png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  margin-left: 28px;
  margin-top: 34px;
}
.content__information {
  background-color: rgb(117, 203, 75);
  border-radius: 30px;
  padding: 40px;
  margin-top: 5px;
}
.content__discription {
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  text-align: left;
}
.content__text {
  color: rgba(255, 255, 255, 0.95);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0%;
  text-align: left;
}
.content__link {
  border-radius: 30px;
  background: rgb(255, 255, 255);
  color: rgb(117, 219, 71);
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  text-align: left;
  padding: 16px 70px;
  margin-top: 20px;
}

.content__discription {
  color: rgba(255, 255, 255, 0.95);
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
}

.specialist {
  padding: 0 40px;
}
.specialist-cart {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px 30px 30px 30px;
  width: 398px;
  height: 323px;
  border: 3px solid #EFEFEF;
  border-radius: 30px;
  background-color: #fff;
  transition: transform 0.2s;
}
.specialist-cart:hover {
  transform: scale(1.05);
}
.specialist-cart__photo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgb(239, 239, 239);
  background: white;
}
.specialist-cart__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specialist-cart__name {
  color: #3F3F3F;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
}
.specialist-cart__information {
  display: flex;
  width: 385px;
  justify-content: space-between;
}
.specialist-cart__information-specifically {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  min-width: 116px;
}
.specialist-cart__information-specifically--text {
  font-weight: 400;
}
.specialist-cart__description {
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-left: 26px;
}
.specialist-cart__description-point {
  margin-bottom: 20px;
}
.specialist-cart__bottons {
  display: flex;
  width: 385px;
  justify-content: space-between;
  gap: 25px;
}
.specialist-cart__bottons-details {
  width: 172px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: rgb(239, 239, 239);
  padding: 12px 0px;
  color: #636363;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  transition: all 0.2s ease;
}
.specialist-cart__bottons-details:hover {
  transform: scale(1.06);
}
.specialist-cart__bottons-price {
  width: 172px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: rgb(255, 255, 255);
  padding: 12px 0px;
  color: #3F3F3F;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
}
.specialist-cart__bottons-signup {
  text-decoration: none;
  background-color: #75CB4B;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  border: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  padding: 12px 25px;
}
.specialist-cart__bottons-signup:hover {
  transform: scale(1.06);
}
.specialist-box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 175px 0 0 0;
  width: 100%;
}
.specialist-title {
  color: rgb(63, 63, 63);
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 700;
  line-height: normal;
  text-align: left;
  text-transform: uppercase;
  margin-top: 128px;
}

.white {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

.specialist-container {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

/* Стили для скроллбара (опционально) */
.specialist-container::-webkit-scrollbar {
  height: 8px;
}

.specialist-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.specialist-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.specialist-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.fio {
  display: none;
}

@media (max-width: 540px) {
  .specialist-cart {
    width: 174px;
    height: auto;
    padding: 82px 30px 30px 30px;
  }
  .specialist-cart__name {
    font-size: 16px;
  }
  .specialist-cart__information-specifically {
    font-size: 12px;
  }
  .specialist-cart__description {
    font-size: 12px;
  }
  .specialist-cart__photo {
    width: 118px;
    height: 118px;
  }
  .specialist-cart__information {
    width: auto;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
  }
  .specialist-cart__bottons {
    width: auto;
    flex-direction: column;
    gap: 10px;
  }
  .specialist-box {
    padding: 80px 0 0 0;
  }
  .fio {
    display: block;
  }
  .specialist-title {
    margin-top: 50px;
  }
}
.about {
  display: flex;
  flex-direction: row;
  margin: 110px 0;
  justify-content: space-between;
  padding: 0 40px;
}
.about-text {
  align-self: center;
  width: 782px;
  color: rgb(63, 63, 63);
  font-family: Montserrat;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0%;
  text-align: left;
}
.about-title {
  display: flex;
  height: 144px;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px;
}
.about-title__text {
  color: rgb(63, 63, 63);
  font-family: Montserrat;
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0%;
  text-align: left;
  text-transform: uppercase;
  width: 300px;
}
.about-title__link {
  text-decoration: none;
  padding: 12px 37px;
  font-size: 14px;
  font-weight: 700;
  color: #3F3F3F;
  background-color: #E8E8E8;
  border-radius: 30px;
  width: fit-content;
  height: 18px;
}

.reviews {
  display: flex;
  gap: 17px;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  padding-bottom: 150px;
  margin-top: 20px;
}
.reviews-left {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 17px;
}
.reviews-box {
  display: flex;
  flex-wrap: wrap;
  flex: 2 1 670px;
  gap: 17px;
}
.reviews-item {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(220, 220, 220, 0.74);
  padding: 30px;
  border-radius: 30px;
}
.reviews-item__who {
  display: flex;
  gap: 70px;
}
.reviews-item__who-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 17px;
  color: #3F3F3F;
}
.reviews-item__who-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
}
.reviews-item__text {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  line-height: 17px;
  font-weight: 400;
}
.reviews-item__link {
  border-radius: 30px;
  background: rgb(117, 203, 75);
  color: rgb(255, 255, 255);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  line-height: 10px;
  text-transform: uppercase;
  text-align: center;
  width: 172px;
  padding: 16px 0;
}
.reviews-center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.reviews-center__link {
  background: rgba(220, 220, 220, 0.74);
  border-radius: 30px;
  color: #3F3F3F;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  padding: 13px 20px;
}
.reviews--first {
  min-width: 290px;
  flex: 1 1 50px;
}
.reviews--second {
  min-width: 300px;
  flex: 1 1 50px;
}
.reviews--third {
  position: relative;
  flex: 1 2 400px;
}
.reviews-title {
  text-transform: uppercase;
  color: #3F3F3F;
  font-weight: 700;
  font-size: 40px;
}
.reviews-title--top {
  display: none;
  font-size: clamp(20px, 5vw, 40px);
}
.reviews-title__back {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 228px;
  height: 80px;
  display: flex;
  padding: 0px;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 30px;
  background-color: rgb(255, 255, 255);
}

.corner-left__up {
  position: absolute;
  top: 0;
  right: 228px;
  z-index: 7;
  width: 30px;
  height: 30px;
  border-top-right-radius: 30px;
  background: rgba(220, 220, 220, 0.74);
}

.corner-left__down {
  position: absolute;
  top: 0;
  right: 228px;
  z-index: 6;
  width: 30px;
  height: 30px;
  background-color: rgb(255, 255, 255);
}

.corner-right__up {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 9;
  width: 30px;
  height: 30px;
  border-top-right-radius: 30px;
  background: rgba(220, 220, 220, 0.74);
}

.corner-right__down {
  position: absolute;
  top: 80px;
  right: 0px;
  z-index: 7;
  width: 30px;
  height: 30px;
  background: rgb(255, 255, 255);
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    gap: 30px;
  }
  .about-title {
    flex-direction: row;
    height: auto;
  }
  .about-text {
    width: auto;
  }
  .about-title__text {
    width: auto;
  }
}
@media (max-width: 540px) {
  .reviews-title__back {
    display: none;
  }
  .corner-left__up {
    display: none;
  }
  .corner-left__down {
    display: none;
  }
  .corner-right__up {
    display: none;
  }
  .corner-right__down {
    display: none;
  }
  .reviews-title--top {
    display: block;
  }
  .about {
    margin: 80px 0;
  }
  .reviews--first {
    min-width: auto;
  }
}
.clinic {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  padding: 64px 30px;
  justify-content: center;
}
.clinic-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1 1 400px;
}
.clinic-text__title {
  text-transform: uppercase;
  color: #3f3f3f;
  font-size: clamp(20px, 5vw, 40px);
  line-height: normal;
  font-weight: 700;
  margin-bottom: 10px;
}
.clinic-text__description {
  color: #3f3f3f;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 400;
}
.clinic-image {
  width: 100%;
}

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

@media (max-width: 540px) {
  .clinic {
    padding: 32px 30px;
  }
  .clinic-text {
    gap: 10px;
  }
}
.bottom {
  background: #DCDCDC;
  padding-top: 48px;
  padding-bottom: 35px;
  position: relative;
}

.footer {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  width: 182px;
  height: 50px;
  margin-left: 60px;
}
.footer-media {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  flex-wrap: wrap;
  gap: 55px;
}
.footer-media__bottom {
  width: 55%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-left {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-left__link {
  text-decoration: none;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 11px;
  font-weight: 700;
  color: #727272;
  width: fit-content;
}
.footer-center {
  width: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-center__email {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-center__email-img {
  width: 30px;
  height: 30px;
}
.footer-center__email-text {
  text-decoration: none;
  color: #3F3F3F;
  font-size: clamp(12px, 3vw, 14px);
  line-height: 10px;
  font-weight: 400;
}
.footer-center__button {
  width: 172px;
  background-color: #75CB4B;
  color: #FFFFFF;
  text-align: center;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 10px;
  border: 0px;
  border-radius: 30px;
  margin-top: 5px;
}
.footer-center__button:hover {
  cursor: pointer;
}
.footer-center__text {
  color: #3F3F3F;
  font-size: clamp(12px, 3vw, 16px);
  line-height: normal;
  font-weight: 300;
  align-self: center;
}
.footer-right {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-right__box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-right__box-img {
  width: 30px;
  height: 30px;
}
.footer-right__box-phone {
  text-decoration: none;
  line-height: normal;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 700;
  color: #3F3F3F;
}
.footer-right__box-text {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  line-height: normal;
  color: #3F3F3F;
}

@media (max-width: 1024px) {
  .footer-left {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-media {
    flex-direction: row-reverse;
  }
  .footer-logo {
    align-self: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 610px) {
  .footer-left {
    flex-direction: column;
    align-items: center;
  }
  .footer-media {
    justify-content: center;
  }
  .footer-logo {
    margin-left: 0;
  }
  .footer-center__text {
    text-align: center;
  }
  .footer-right {
    gap: 20px;
  }
  .footer-right__box {
    justify-content: center;
  }
  .footer-right__box-img {
    display: block;
  }
}
.tab-menu {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.tab-menu__title {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 700;
  line-height: normal;
  color: #3F3F3F;
}

.tab {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.tab__label {
  height: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(232, 232, 232);
  border-radius: 30px;
  color: rgb(63, 63, 63);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  padding: 9px 28px;
}
.tab__label:hover {
  cursor: pointer;
  background-color: rgb(232, 232, 232);
}
.tab__search {
  background: url("./image/search.png") no-repeat 25px center;
  height: 44px;
  width: 263px;
  background-color: rgb(255, 255, 255);
  border: 3px solid rgb(232, 232, 232);
  border-radius: 30px;
  color: rgb(63, 63, 63);
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 9px 28px 9px 62px;
}
.tab__search::placeholder {
  text-transform: uppercase;
  color: rgb(232, 232, 232);
}
.tab__search:focus {
  background: url("./image/search-dark.png") no-repeat 25px center;
}

.tab > input[type=radio] {
  display: none;
}

.navigate > input[type=checkbox] {
  display: none;
}

.navigate-button__block {
  display: none;
}

.navigate:has(#phone:checked) > #phone-block,
.navigate:has(#nav:checked) > #nav-block {
  display: flex;
}

.tab-content {
  display: none;
}

.doctors-content {
  display: none;
}

.tab__search {
  display: none;
}

.tab > input[type=radio]:checked + label {
  cursor: pointer;
  background-color: rgb(232, 232, 232);
}

.page-sale:has(#tab-dms:checked) > #dms,
.page-sale:has(#tab-sale:checked) > #sale {
  display: block;
}

.page-doctors:has(#sale:checked) > #sale,
.page-doctors:has(#dms:checked) > #dms,
.page-doctors:has(#tab-service:checked) > #service,
.page-doctors:has(#tab-doctors:checked) > #doctors,
.page-doctors:has(#tab-tests:checked) > #tests,
.page-doctors:has(#tab-hospital:checked) > #hospital {
  display: block;
}

.page-doctors:has(#tab-doctors:checked) > .tab-menu > .tab > .tab__search {
  display: block;
}

@media (max-width: 768px) {
  .tab-menu {
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
.basicTests {
  width: 600px;
  margin-top: 200px;
}

/* LICENSE STYLES */
.license {
  padding: 40px 0;
  background: #f8f9fa;
}

.license-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.license-title {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
}

/* Сетка лицензий - 4 в ряд */
.license-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
}

.license-item {
  width: 100%;
  height: 0;
  padding-bottom: 136.8%; /* Соотношение 307/420 = 0.731 */
  position: relative;
}

.license-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background: white;
}

.license-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.license-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid #e0e0e0;
}

.license-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(117, 110, 110, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.license-card:hover .license-overlay {
  opacity: 1;
  visibility: visible;
}

.license-btn {
  background: white;
  color: #2c3e50;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.license-btn:hover {
  background: #f1f3f5;
  transform: scale(1.05);
}

.license-icon {
  font-size: 16px;
}

/* Модальное окно */
.license-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
}

.license-modal.active {
  display: flex;
}

.license-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.license-modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.license-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.license-close:hover {
  color: #ff4757;
}

/* Адаптивность для больших экранов */
@media (max-width: 1440px) {
  .license-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
/* Адаптивность для ноутбуков */
@media (max-width: 1200px) {
  .license-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .license-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
/* Адаптивность для планшетов (768px) */
@media (max-width: 900px) {
  .license-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .license-container {
    padding: 0 15px;
  }
  .license-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
/* Адаптивность для мобильных (480px) */
@media (max-width: 600px) {
  .license-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  .license-container {
    padding: 0 12px;
  }
  .license-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .license-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .license-icon {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .license-grid {
    gap: 16px;
  }
  .license-container {
    padding: 0 10px;
  }
  .license-title {
    font-size: 1.4rem;
  }
  .license-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
/* Для очень маленьких экранов */
@media (max-width: 360px) {
  .license-grid {
    max-width: 300px;
  }
  .license-title {
    font-size: 1.2rem;
  }
  .license-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
}
.political {
  padding-top: 180px;
  padding-bottom: 140px;
}
.political-title {
  color: rgb(63, 63, 63);
  font-size: clamp(16px, 4vw, 40px);
  font-weight: 700;
  line-height: 49px;
  text-align: left;
}
.political-subtitle {
  color: rgb(117, 203, 75);
  font-size: clamp(16px, 4vw, 40px);
  font-weight: 700;
  line-height: 49px;
  text-align: left;
  padding: 50px 0 40px 0;
}
.political-text {
  color: rgb(63, 63, 63);
  font-size: clamp(8px, 4vw, 16px);
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  padding: 5px 0;
}
.political-city {
  color: rgb(63, 63, 63);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin-top: 55px;
}

.pc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pc-overlay[aria-hidden=false] {
  display: flex;
  align-items: flex-end;
}

.pc-card {
  width: min(520px, 92vw);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 16px;
  margin: 20px;
}

.pc-text {
  margin-bottom: 12px;
  color: #111;
  line-height: 1.45;
}

.pc-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.pc-actions button {
  padding: 8px 12px;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

#pcAccept {
  background: #75cb4b;
  color: #073c1f;
}

.pc-ghost {
  background: #f4f5f7;
  color: #111;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

body {
  font-weight: normal;
  background-position: 141px 2px;
  background-repeat: no-repeat;
  position: relative;
}

body {
  position: relative;
}

a {
  text-decoration: none;
}

.margin-up {
  margin-top: -80px;
}
@media (max-width: 768px) {
  .margin-up {
    margin-top: 0;
  }
}

.margin-down {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .margin-down {
    margin-bottom: 0;
  }
}

.center {
  padding-left: calc(50% - 670px);
  padding-right: calc(50% - 670px);
}

.bufer {
  padding-left: 30px;
  padding-right: 30px;
}

.pol2 {
  width: 200px;
  height: 80px;
  background-color: lightblue;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0% 100%);
  border-radius: 0px 20px 20px 0px;
}

.pol3 {
  width: 200px;
  height: 80px;
  background-color: lightblue;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 20%, 0% 100%);
  border-radius: 20px;
}

.star {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: red;
  clip-path: polygon(50% 0% around 10px, 61% 35%, 98% 35%, 70% 55%, 79% 91%, 50% 70%, 21% 91%, 30% 55%, 2% 35%, 39% 35%);
  /* Пример формы звезды */
  border-radius: 10px;
}

.verh {
  position: absolute;
  grid-column: 1/-1;
  background-color: royalblue;
}

.niz {
  position: absolute;
  grid-column: 1/-3;
  background-color: olive;
}

.block {
  position: relative;
  padding-top: 64px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .block {
    padding-top: 156px;
  }
}

.block-dna__up {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  filter: grayscale(100%);
  z-index: -30;
}

.block-dna__down {
  position: absolute;
  bottom: 0;
  right: 0;
  filter: grayscale(100%);
  z-index: -30;
}

.cub-up__left {
  position: absolute;
  width: 30px;
  height: 30px;
  border-bottom-right-radius: 30px;
  bottom: 0;
  z-index: 16;
  left: calc(50% - 207px);
  background-color: rgba(220, 220, 220, 0.74);
}
@media (max-width: 540px) {
  .cub-up__left {
    display: none;
  }
}

.cub-down__left {
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 0;
  z-index: 15;
  left: calc(50% - 207px);
  background-color: #fff;
}
@media (max-width: 540px) {
  .cub-down__left {
    display: none;
  }
}

.cub-up__right {
  position: absolute;
  width: 30px;
  height: 30px;
  border-bottom-left-radius: 30px;
  bottom: 0;
  z-index: 16;
  left: calc(50% + 177px);
  background-color: rgba(220, 220, 220, 0.74);
}
@media (max-width: 540px) {
  .cub-up__right {
    display: none;
  }
}

.cub-down__right {
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 0;
  z-index: 15;
  left: calc(50% + 177px);
  background-color: #fff;
}
@media (max-width: 540px) {
  .cub-down__right {
    display: none;
  }
}

.y {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(305px, 620px));
  background-color: aquamarine;
}

.y > img {
  object-fit: cover;
  /* Сохраняем пропорции изображения */
  height: auto;
  /* Высота должна меняться автоматически */
  max-width: 100%;
}

.yy {
  grid-column-start: 1;
  grid-column-end: span 2;
  /* Первое изображение занимает две колонки */
  grid-row-start: 1;
  grid-row-end: 2;
}

.r {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.rr {
  position: relative;
  width: 100%;
  object-fit: cover;
  height: fit-content;
}

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