/* отступы в мобильном меню */
@media (max-width: 767px) {
    .navigation-bar {
        padding-top: 0.9rem !important;
        padding-bottom: 0.9rem !important;
    }
}


/* размер логотипа в мобильной шапке */
@media (max-width: 767px) {
    img.logo.dark {
        max-height: 40px !important;
    }
}


/* размер логотипа в мобильном мею, при откритии меню */
@media (max-width: 767px) {
    img.custom-logo {
        max-height: 40px !important;
    }
}

/* размер шрифта на главной стракнице в h1 для мобильных */
@media (max-width: 556px) {
  h1.hero-title {
    font-size: 1.9em !important;
  }
}
/* размер шрифта на главной стракнице в h1 для мобильных */
@media (max-width: 397px) {
  h1.hero-title {
    font-size: 1.7em !important;
  }
}


/* отступы между подблоками в мобильной версии в блоке "Full Development Cycle" на главной */
@media (max-width: 767px) {
  .col-padding-small {
    margin-bottom: 20px;
  }
}


/* размер шрифта пунктов меню в мобильной версии  */
@media (max-width: 767px) {
	#offcanvas_menu li > a {
		font-size: 1rem !important;
	}
}



/* на странице team/specialist в мобильной версии баг, не отображаются картинки */
@media (max-width: 768px) {
.overlappable-3 .image-col {
    min-height: 300px; 
}
}





/* синие цифры на странце team/specialist */

/* контейнер */
.numbers {
  padding-top: 25px;
  padding-bottom: 15px;
}

/* цифра в синем контурном круге на странице Team / Specialists */
.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 75px;
  height: 75px;

  font-family: "Montserrat", "Roboto", Arial, sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;

  color: #36baf6;          /* цвет цифры */
  background: transparent;/* без заливки */

  border: 3px solid #36baf6; /* толщина круга */
  border-radius: 50%;

  /* убираем всё лишнее */
  text-shadow: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}





/* толщина круга на странце cases */
[class*=border-color] {
    border: 3px solid !important;
}


/* отступ цифр в круга сверху на странце cases */
.features-5 p.number span {
    margin-top: .4em !important;
}







/* стили Contact Form 7 */


/* Контейнер формы */
.cf7-application-form {
    margin: 0 auto;
    padding-top: 5px;
}

/* Ряды и колонки */
.cf7-row {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.cf7-col {
    flex: 1;
}

.cf7-col-full {
    width: 100%;
}

/* Inputs, select, textarea */
.cf7-application-form input[type="text"],
.cf7-application-form input[type="email"],
.cf7-application-form input[type="tel"],
.cf7-application-form select,
.cf7-application-form textarea {
    width: 100%;
    font-size: 15px;
    border: 1px solid #dcdfe3;

    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: #000000; /* черный текст */
    box-sizing: border-box;
}

/* Текстовая область */
.cf7-application-form textarea {
    height: 150px; /* нужная высота */
    resize: vertical; /* позволяет менять вручную высоту */
}

/* Фиксированная высота и без изменения пользователем (опционально) */
.cf7-application-form textarea.fixed-height {
    height: 120px;
    resize: none;
}

/* Стили при фокусе */
.cf7-application-form input:focus,
.cf7-application-form select:focus,
.cf7-application-form textarea:focus {
    border-color: #03a9f4;
    box-shadow: 0 0 0 2px rgba(3, 169, 244, 0.15);
    outline: none;
}

/* File input */
.cf7-application-form input[type="file"] {
    font-size: 14px;
}

/* ===================== */
/* Кнопка Submit */
/* ===================== */
.cf7-submit-row {
    display: flex;
    justify-content: center; /* центрирование по горизонтали */
    align-items: center;     /* центрирование по вертикали */
    margin-top: 30px;
    margin-bottom: 0;

}

.cf7-application-form input[type="submit"] {
    background: #03a9f4;
    color: #fff;
    border: none;
    padding: 14px 42px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cf7-application-form input[type="submit"]:hover {
    background: #0288d1;
    transform: translateY(-1px);
}

/* ===================== */
/* Privacy text */
/* ===================== */
.cf7-privacy-text {
    margin-top: 16px;
    font-size: 13px;
    color: #000;
    text-align: center;
}

.cf7-privacy-text a {
    color: #03a9f4;
    text-decoration: none;
}

.cf7-privacy-text a:hover {
    text-decoration: underline;
}

/* ===================== */
/* Принудительно черный текст только для CF7 */
/* ===================== */
.wpcf7-form p,
.wpcf7-form label {
    color: #000000 !important;
}



.wpcf7-response-output {
    color: #000000 !important;
}

wpcf7-response-output

.wpcf7-spinner {
    display: none !important;
}


.form-checkbox {
    text-align: left !important;
}

	.wpcf7-list-item {
    margin: 10px !important;
}

.contact-form-wrapper label {
    letter-spacing: .0001rem !important;
}

/* ===================== */
/* Мобильные стили */
/* ===================== */
@media (max-width: 640px) {
    .cf7-row {
        flex-direction: column;
			    margin-bottom: -10px;
        gap: 14px;
    }
	.wpcf7-list-item {
    margin: 0px !important;
}

}