/* =========================================================
   1) Общие правки секций / страницы услуги
   ========================================================= */
section.slice {
  padding-bottom: 0 !important;
}

#service-detail-text {
  background-color: #EDEDED;
  margin-top: calc(-1 * var(--global-margin));
  padding: var(--global-margin) 0;
}

.service-element {
  display: flex;
  flex-direction: column;
  gap: var(--global-margin);
}

/* =========================================================
   2) Верхний баннер услуги (page-top-banner) — АКТУАЛЬНОЕ
   (включая нижние правки: min-height, mobile-grid, flex-bottom)
   ========================================================= */
.page-top-banner {
  width: 100%;
  position: relative;
  color: var(--color-primary);
  font-weight: 400;
  overflow: hidden;
  box-sizing: border-box;

  /* актуальные размеры */
  min-height: 35rem;
  padding: 70px 0 80px;

  /* чтобы нижний блок прижимался вниз */
  display: flex;
  flex-direction: column;

  > * {
    width: 100%;
  }

  > .container {
    display: flex;
    flex: 1 1 auto;
  }

  /* фон-картинка */
  .page-top-banner--pic {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: -1;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  /* контент */
  .page-top-banner__content {
    max-width: 554px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: auto !important; /* убираем прежний height: 87% */
  }

  /* типографика */
  .page-top-banner--title {
    font-size: clamp(2.14rem, 5vw, 3.57rem);
    font-weight: 700;
    line-height: 1.2;
  }

  .page-top-banner--price {
    color: var(--color-secondary);
  }

  .page-top-banner--text {
    margin-top: clamp(20px, 3vw, 37px);
    font-size: clamp(1rem, 2vw, 1.14rem);
  }

  /* нижняя зона (кнопка + соцсети) */
  .page-top-banner__bottom {
    margin-top: auto !important; /* актуально: прижимаем вниз */
    padding-top: 20px;
    display: flex;
    gap: clamp(10px, 2vw, 30px);
  }

  /* блок соцсетей */
  .page-top-banner__socials {
    font-size: clamp(14px, 2vw, 18px);
    border-radius: 30px;
    height: 51px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    background: #fff;

    .page-top-banner__socials-text {
      margin-right: 1rem;
      margin-left: 2.86rem;
      user-select: none;
    }

    .page-top-banner__socials-btn {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }
  }

  /* список в баннере + маркеры */
  .page-top-banner--list {
    list-style-type: none;
    padding-left: 0;

    li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;

      &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        background-color: #0086CC;
        border-radius: 50%;
        border: 3px solid white;
      }
    }
  }

  /* иконка/картинка "написать" — по умолчанию скрыта */
  .page-top-banner__write--img {
    display: none;
  }

  /* ---------- Mobile (<=768) ---------- */
  @media (max-width: 768px) {
    padding: 40px 0 23px;
    height: 50rem;
    display: flex;

    .page-top-banner__bottom {
      /* актуально: mobile-layout через grid */
      display: grid !important;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
      gap: 12px;
      align-items: center;
    }

    .page-top-banner__socials {
      grid-column: 1;
      grid-row: 1;

      .page-top-banner__socials-text {
        margin-left: 20px;
      }
    }

    .page-top-banner__write--img {
      display: block;
      grid-column: 2;
      grid-row: 1;
      justify-self: end;
      height: 3.7rem;
      width: auto;
    }

    .page-top-banner--button-doctor {
      grid-column: 1 / -1;
      grid-row: 2;
      width: 100%;
    }

    .page-top-banner--pic {
      margin-top: 40px;
    }
  }
}
.page-top-banner--button {

    &:hover {
        box-shadow: 0px -4px 6px 0px #7D111466 inset;
    }

    &:active {
        box-shadow: 0px 4px 10px 0px #00000033 inset;
    }
}
.contact-form__submit .c-btn {
    transition: all 0.3s ease;

    &:hover {
        box-shadow: 0px -4px 6px 0px #7D111466 inset;
    }

    &:active {
        box-shadow: 0px 4px 10px 0px #00000033 inset;
    }
}
.page-top-banner__socials-btn {
    transition: all 0.3s ease;
    &:hover {
        filter: brightness(0.9);
    }
}


/* =========================================================
   3) Преимущества (advantages)
   ========================================================= */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow-x: auto;
  font-weight: 400;
  margin: -15px;
  padding: 15px 15px 25px;
  margin-top: calc(-15px + 66px);

  .advantages-item {
    min-width: 270px;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    aspect-ratio: 1.3;
    padding: 35px 25px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color .3s;

    /* актуально: стрелку скрываем (раньше была иконка) */
    &:before {
      display: none;
      /* было:
      content: '';
      width: 20px;
      height: 20px;
      background: no-repeat center url('./img/ic_call_made.svg');
      background-size: contain;
      position: absolute;
      top: 15px;
      right: 25px;
      */
    }

    &:after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: 0px 4px 10px 0px #00000026;
      opacity: 0;
      transition: opacity .3s;
      border-radius: 5px;
    }

    &:nth-of-type(2) {
      background: var(--color-secondary);
      border-color: var(--color-secondary);
      padding: 30px;

      &:before {
        content: unset;
      }

      .advantages-item--title {
        color: #fff;
        font-size: 2.14rem;
        line-height: 0.9;
        font-style: italic;
        font-weight: 400;
      }
    }

    &:hover {
      &:not(:nth-of-type(2)) {
        border-color: #fff;

        .advantages-item--title {
          color: var(--color-secondary);
        }
      }

      &:after {
        opacity: 1;
      }
    }
  }

  .advantages-item--title {
    font-size: 1.14rem;
    font-weight: 500;
    transition: color .3s;
  }

  .advantages-item--text {
    font-size: 1rem;
    margin-top: auto;
    line-height: 1.2;
  }
}

/* =========================================================
   4) Текст + картинка (text-pic)
   ========================================================= */
.text-pic {
  overflow: hidden;

  .text-pic__inner {
    display: flex;
    gap: 20px;
    position: relative;
  }

  .text-block {
    width: 50%;
  }

  .text-pic--title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
  }

  .text-pic--text {
    margin-top: clamp(20px, 3vw, 38px);
    font-size: 1rem;
    line-height: clamp(26px, 3vw, 32px);
  }

  .pic-block {
    width: 50%;
    position: relative;
    z-index: 0;

    &:after {
      content: '';
      position: absolute;
      height: 317px;
      background: var(--color-primary);
      top: 27%;
      left: 17%;
      z-index: -1;
      width: 50vw;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  /* кнопка (АКТУАЛЬНЫЕ правки ниже) */
  .text-pic--btn {
    text-transform: uppercase;
    font-weight: 400;
    width: fit-content;
  }

  @media (max-width: 768px) {
    .text-pic__inner {
      flex-direction: column;
    }

    .text-block,
    .pic-block {
      width: 100%;
    }

    .text-pic__bottom {
      margin-top: 20px;
    }

    .pic-block:after {
      width: 100vw;
      height: 100%;
    }
  }
}

/* =========================================================
   5) Кнопка в text-pic — АКТУАЛЬНЫЕ переопределения
   ========================================================= */
.text-pic .text-pic--btn {
  background-color: #0086CC;
  color: white;
  border: 1px solid #0086CC;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  text-transform: uppercase;
  font-weight: 400;
  width: fit-content;
  transition: all 0.3s ease;
}

.text-pic .text-pic--btn:hover,
.text-pic .text-pic--btn:active {
  box-shadow: 2px 2px 6px 0px #00000040 inset;
}

.text-pic .text-pic--btn:after {
  background-color: white;
}

/* =========================================================
   6) Прайс услуги (service-price)
   ========================================================= */
.service-price {
  .service-price__tabs {
    display: flex;
    justify-content: end;
    gap: 60px;
  }

  .service-price__tab {
    position: relative;
    padding-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #A3A3A3;

    &:before {
      content: '';
      position: absolute;
      bottom: 0;
      border-bottom: 1px solid var(--color-secondary);
      width: 50%;
      opacity: 0;
    }

    &.active {
      color: var(--color-secondary);

      &:before {
        opacity: 1;
      }
    }
  }

  .service-price__content {
    margin-top: 50px;
    width: 100%;
  }

  .service-price__items {
    box-shadow: 0px 4px 10px 0px #00000026;
    border-radius: 5px;
    background-color: #fff;
    width: 100%;
    padding: 30px 20px 40px;
  }

  .service-price__item {
    width: 100%;
    display: none;

    .service-price__item-value {
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 12px 10px;
      border-bottom: 1px solid #D9D9D9;

      .service-price__item-value--desc {
        font-size: 16px;
      }

      .service-price__item-value--price {
        flex-shrink: 0;
        width: 10%;
        min-width: 85px;
        font-size: 16px;
        font-weight: 600;
      }
    }

    &.active {
      display: block;
    }
  }

  .service-price__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-secondary);
    padding: 11px;
    padding-left: 50px;
    gap: 15px;
  }

  .service-price__variants-text {
    color: #fff;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
  }

  .service-price__variants {
    border-radius: 10px;
    background-color: #fff;
    padding: 14px 93px;
    display: flex;
    align-items: center;
    gap: 29px;
  }

  @media (min-width: 769px) {
    .service-price__inner {
      margin-top: -75px;
    }
  }

  @media (max-width: 768px) {
    .service-price__tabs {
      flex-direction: column;
      gap: 15px;
      margin-top: 20px;
    }

    .service-price__tab {
      width: fit-content;
    }

    .service-price__bottom {
      padding: 30px 10px;
      flex-direction: column;
      align-items: start;
    }

    .service-price__variants {
      width: 100%;
      justify-content: center;
      padding: 10px 20px;
      gap: 10px;
    }
  }
}

/* =========================================================
   7) Как проходит лечение (how-treatment-going)
   ========================================================= */
.how-treatment-going {
  --elements: 3;

  .how-treatment-going--title {
    .title-right {
      font-size: 20px;
      font-style: italic;
      color: var(--color-secondary);
      font-weight: 400;

      &:after {
        content: unset;
      }
    }
  }

  .how-treatment-going__items {
    display: grid;
    grid-template-columns: repeat(var(--elements), 1fr);
    gap: 20px;
  }

  .how-treatment-going__item {
    min-width: 200px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 376px;

    &:nth-of-type(4) {
      grid-column: span 2;
    }
  }

  .how-treatment-going__item-title {
    font-size: 1.86rem;
    font-weight: 700;
    line-height: 1;
    display: flex;
    gap: 18px;
    align-items: center;
    color: #fff;
    margin-top: 30px;

    span {
      display: inline-flex;
      background: var(--color-secondary);
      font-style: italic;
      padding: 2px 6px 2px 37px;
    }
  }

  .how-treatment-going__item-text {
    color: #fff;
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.43;
    padding: 14px 20px;
    margin-top: auto;
    position: relative;
    z-index: 0;

    &:before {
      content: '';
      background-color: #000;
      position: absolute;
      z-index: -1;
      inset: 0;
      opacity: .5;
    }

    a {
      color: #fff;
    }

    .icon-telegram,
    .icon-whatsapp {
      width: 16px;
      height: 16px;
    }
  }

  @media (max-width: 768px) {
    --elements: 2;

    .how-treatment-going__items {
      grid-auto-flow: dense;
    }
  }

  @media (max-width: 560px) {
    --elements: 1;

    .how-treatment-going__item:nth-of-type(4) {
      grid-column: span 1;
    }
  }
}

/* =========================================================
   8) Преимущества-2 (advantages-2)
   ========================================================= */
.advantages-2 {
  --elements: 3;

  .advantages-2__items {
    display: grid;
    grid-template-columns: repeat(var(--elements), 1fr);
    gap: clamp(20px, 3vw, 30px) 17px;
  }

  .advantages-2__item {
    border-radius: 5px;
    background-color: var(--color-secondary);
    padding: 3px 25px;
    gap: 15px;
    display: flex;
    align-items: center;
  }

  .advantages-2--picture {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    transform: translateY(-16px);
    box-shadow: 0px 4px 10px 0px #00000026;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .advantages-2--text {
    font-size: 1rem;
    line-height: 1.29;
    font-weight: 500;
    color: #fff;
  }

  @media (max-width: 992px) {
    --elements: 2;
  }

  @media (max-width: 650px) {
    --elements: 1;
  }
}

/* =========================================================
   9) Форма-1 (form-1)
   ========================================================= */
.form-1 {
  position: relative;
  z-index: 0;
  padding: 60px 0 43px;

  .form-1__background {
    position: absolute;
    inset: 0;
    z-index: -1;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .contact-form {
    display: flex;
    flex-direction: column;

    label {
      font-weight: 400;
    }

    .contact-form__title {
      font-size: clamp(30px, 4vw, 36px);
      font-weight: 400;
      font-style: italic;
      line-height: 1;
      color: #fff;
    }

    .contact-form__subtitle {
      margin-top: 15px;
      font-size: clamp(30px, 4vw, 36px);
      line-height: 1;
      font-weight: 700;
      color: #fff;
      margin-left: 8%;
    }

    form {
      margin-top: clamp(40px, 4vw, 50px);
    }

    .contact-form__fields {
      display: flex;
      flex-direction: column;
      gap: clamp(10px, 2vw, 18px);
      width: 483px;
      max-width: 100%;
    }

    .contact-form__bottom {
      margin-top: clamp(20px, 3vw, 30px);
      display: flex;
      justify-content: space-between;
      align-items: center;

      @media (max-width: 768px) {
        flex-direction: column;
        align-items: start;
        gap: 40px;

        > * {
          width: 100%;
        }
      }
    }

    .contact-form__policy,
    .contact-form__policy a {
      font-size: 13px;
      line-height: 18px;
      font-weight: 400;
      color: #fff;
    }

    .contact-form__policy a {
      text-decoration: underline;
      color: var(--color-secondary);
    }

    .error-fld {
      color: var(--color-accent);
    }

    input[type="text"] {
      background-color: rgba(0, 0, 0, .3);
      color: #fff;
    }

    input[type="submit"] {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    padding: 200px 0 40px;

    .contact-form {
      .contact-form__subtitle {
        margin-left: 0;
      }
    }
  }
}

/* =========================================================
   10) Форма-2 (form-2)
   ========================================================= */
.form-2 {
  position: relative;
  z-index: 0;

  &:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 54%;
    background-color: var(--color-primary);
  }

  .container > div {
    position: relative;
  }

  .form-2__background {
    position: absolute;
    right: 0;
    z-index: -1;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    width: 43%;
    padding: 53px 0;

    label {
      font-weight: 400;
    }

    .contact-form__title {
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 700;
      line-height: 1;
      color: #fff;
    }

    .contact-form__subtitle {
      margin-top: clamp(20px, 3vw, 25px);
      font-size: clamp(16px, 2vw, 18px);
      line-height: clamp(26px, 2vw, 36px);
      font-weight: 400;
      color: #fff;

      a {
        font-size: 27px;
        color: var(--color-secondary);
        line-height: 1;
      }

      a.icon-social {
        width: 23px;
        height: 23px;
        margin-left: 6px;
      }

      a[href^="tel:"] {
        margin-left: 15px;
        white-space: nowrap;
      }

      @media (min-width: 769px) {
        br {
          display: none;
        }
      }
    }

    form {
      margin-top: clamp(40px, 4vw, 53px);
    }

    .contact-form__fields {
      display: flex;
      flex-direction: column;
      gap: clamp(10px, 2vw, 18px);
    }

    .contact-form__bottom {
      margin-top: 15px;
    }

    .contact-form__policy,
    .contact-form__policy a {
      font-size: 13px;
      line-height: 18px;
      font-weight: 400;
      color: #fff;
    }

    .contact-form__policy a {
      text-decoration: underline;
      color: var(--color-secondary);
    }

    .contact-form__submit {
      position: absolute;
      width: 50%;
      right: 0;
      top: 0;
      bottom: 0;
      display: flex;
      align-items: end;
      justify-content: center;
      padding: 33px;
      transform: translateY(-36px);

      .contact-form__background {
        position: absolute;
        inset: 0;

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
    }

    input[type="text"] {
      background-color: rgba(0, 0, 0, .3);
      color: #fff;
    }
  }

  @media (max-width: 768px) {
    &:before {
      width: 100%;
    }

    .contact-form {
      width: 100%;

      .contact-form__submit {
        position: static;
        width: 100%;
        transform: unset;
        padding: 0;
        margin-top: 45px;
        flex-direction: column;

        .contact-form__background {
          position: static;
          width: 100%;
        }

        input[type="submit"] {
          margin-top: 45px;
          width: 100%;
        }
      }
    }
  }
}





























































/* =========================================================
   call-me block
   ========================================================= */
.call-me-block {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 0px #60C7FD;
}

.call-me-block__inner {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    padding: 20px;
}

.call-me-block__image {
    flex: 0 0 260px;
    width: 260px;
    height: 340px;
}

.call-me-block__image img {
    width: 260px;
    height: 340px;
    border-radius: 10px;
    object-fit: cover;
}

.call-me-block__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.call-me-block__title {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}

.call-me-block__advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.call-me-block__advantage {
    width: 243px;
    border: 2px solid #60C7FD;
    border-radius: 9.5px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 17px;
    min-height: 70px;
    font-family: Roboto;
  font-weight:400;
}

.call-me-block__advantage img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .call-me-block {
        padding: 30px 20px;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block * {
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .call-me-block__inner {
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block__image {
        flex: 0 0 200px;
        width: 200px;
        height: 280px;
        max-width: 100%;
    }
    
    .call-me-block__image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
    
    .call-me-block__content {
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block__title {
        font-size: 28px;
    }
    
    .call-me-block__advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
        margin-top: 25px;
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block__advantage {
        width: 100%;
        min-height: 65px;
        font-size: 13px;
    }

    .call-me-block__phone {
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .call-me-block__inner {
        flex-direction: column;
    }
    .call-me-block__image {
        width: 100%;
        flex: none;
    }
    .call-me-block__image img {
        width: 100%;
    }
    .call-me-block__advantages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .call-me-block__advantages {
        grid-template-columns: 1fr;
    }
}




.call-me-block__phone-left {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #E31E25;
    padding: 15px 40px;
    flex-shrink: 0;
    font-size: 0;
}

.call-me-block__phone-right {
    background: #fff;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0;
}

.call-me-block__phone-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-me-block__phone-icon img {
    width: 100%;
    height: 100%;
}

.call-me-block__phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
}

.call-me-block__phone-text {
    font-family: Roboto;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #E31E25;
    display: inline-block;
}



.call-me-block__phone-text {
    font-family: Roboto;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #E31E25;
}


.call-me-block__phone {
    display: inline-flex;
    border: 0.5px solid #E31E25;
    border-radius: 40px;
    overflow: hidden;
    font-size: 0;
}

@media (max-width: 360px) {
    .call-me-block__phone-number {
        font-size: 16px;
    }
    
    .call-me-block__phone-text {
        font-size: 16px;
    }
}

@media (max-width: 340px) {
    .call-me-block__phone-number {
        font-size: 14px;
    }
    
    .call-me-block__phone-text {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .call-me-block__phone-number {
        font-size: 12px;
    }
    
    .call-me-block__phone-text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .call-me-block {
        padding: 40px 30px;
        border-radius: 0;
        overflow: hidden;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block * {
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .call-me-block__inner {
        padding: 0;
        gap: 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block__image {
        width: 100%;
        height: auto;
        max-width: 100%;
        flex: none;
    }
    
    .call-me-block__image img {
        width: 100%;
        height: auto;
        border-radius: 0;
        max-width: 100%;
    }
    
    .call-me-block__content {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block__title {
        font-size: 24px;
        margin-bottom: 20px;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .call-me-block__advantages {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .call-me-block__advantage {
        width: 100%;
        min-height: 60px;
        padding: 10px;
        font-size: 12px;
        line-height: 14px;
        max-width: 100%;
        word-wrap: break-word;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .call-me-block__phone {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .call-me-block__phone-left {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
    }
    
    .call-me-block__phone-right {
        width: 100%;
        justify-content: center;
        padding: 12px 10px;
        border-radius: 0 0 20px 20px;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
    
    .call-me-block__phone-number {
        font-size: 16px;
    }
    
    .call-me-block__phone-text {
        font-size: 16px;
    }
}
@media (min-width: 900px) and (max-width: 1200px){
.call-me-block__phone {
    width: 409px;
}
.call-me-block__phone-left {
    padding: 15px 15px;
	gap: 5px
}
.call-me-block__phone-number {
    font-size: 14px;
}

.call-me-block__phone-right {
    padding: 15px 15px;
}
.call-me-block__phone-text {
    font-size: 14px;
}
.call-me-block__phone {
        flex-wrap: nowrap;
    }
}