/* styles.css */



html {
    scroll-behavior: smooth;
}

body {
    line-height: normal;
    font-weight: 400;
    color: #000;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #031326;
}

.container {
    width: 100%;
    max-width: 1210px;
    padding: 0 15px;
    margin: 0 auto;
}


/*************** Modal **************/

.modal-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(4, 25, 44, 0.5);
    transform: scale(0);
    /*transition: all 0.3s ease-in-out;*/
    padding: 20px;
	box-sizing: border-box;
}

.modal-bg.active {
    z-index: 30;
    pointer-events: auto;
    opacity: 1;
    transform: scale(1);
}

.login {
    width: 100%;
    max-width: 640px;
    max-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 20px;
    gap: 20px;
}

.login-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #EDEDF1;
}

.login-top__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #333f50;
	padding: 0;
  margin: 0;
}

.login-top__close {
    width: 18px;
    height: 18px;
    position: relative;
    display: flex;
}

.login-top__close img {
    width: 100%;
    height: 100%;
}

.login-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form__label {
    width: 100%;
    position: relative;
    display: flex;
}

.login-form__label span {
    font-family: 'Circe', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #7f808b;
    background-color: #fff;
    position: absolute;
    top: -10px;
    left: 30px;
    padding: 0 6px;
    display: flex;
    flex-direction: row;
}

.login-form__label span:after {
    content: '*';
    color: #fe4700;
}

.login-form__label input {
    width: 100%;
    font-family: 'Circe', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    border: 2px solid #0070C0;
    border-radius: 10px;
    color: #000000;
    padding: 18px 10px 18px 35px;
}

.login-form__label input::placeholder {
    opacity: .6;
}

.login-form__button {
    width: 100%;
    padding: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #7f808b;
    border: 1px solid #EDEDF1;
    border-radius: 16px;
}

.login-form__button:hover {
    background-color: #c6c7cc;
    color: #ffffff;
}

.login-form__button_blue {
    background-color: #0070c0;
    border: 1px solid #0070C0;
    color: #ffffff;
}

.login-form__button_blue:hover {
    background-color: #fff;
    color: #0070c0;
}

/************************************/

.form-tabs__text {
  margin-top: 5px;
}

.form-tabs__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 390px;
  grid-template-columns: 1fr 390px;
  gap: 20px;
  border-top: 1px solid #ededf1;
}

.form-tabs__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 35px;
}

.form-tabs__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.form-tabs__items_2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.form-tabs__item {
  position: relative;
}

.item-form-tabs__name {
  position: absolute;
  top: -11px;
  left: 20px;
  color: #7f808b;
  line-height: normal;
  background-color: #fff;
  padding: 0px 5px;
  z-index: 2;
}

.item-form-tabs__name span {
  color: #ff7e54;
}

.item-form-tabs__select {
  border: 2px solid #0070c0;
  border-radius: 10px;
  display: block;
  font-size: 14px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
  padding: 0px 20px;
  min-height: 55px;
  background: none;
}
.newcity{
	display: none;
}

.newcity.show{
	display: block;
}  
.item-form-tabs__input {
  border: 2px solid #0070c0;
  border-radius: 10px;
  display: block;
  font-size: 14px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
  padding: 0px 20px;
  min-height: 55px;
  box-sizing: border-box;
}

.item-form-tabs__input::-webkit-input-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__input::-moz-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -moz-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__input:-ms-input-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -ms-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__input::-ms-input-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -ms-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__input::placeholder {
  color: rgba(127, 128, 139, 0.5);
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__input._error {
  color: #e93e1a;
}

.item-form-tabs__input._error::-webkit-input-placeholder {
  color: #e93e1a;
}

.item-form-tabs__input._error::-moz-placeholder {
  color: #e93e1a;
}

.item-form-tabs__input._error:-ms-input-placeholder {
  color: #e93e1a;
}

.item-form-tabs__input._error::-ms-input-placeholder {
  color: #e93e1a;
}

.item-form-tabs__input._error::placeholder {
  color: #e93e1a;
}

.item-form-tabs__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  pointer-events: none;
  width: 20px;
}

.item-form-tabs__icon path {
  fill: #0070c0;
}

.item-form-tabs__icon svg {
  width: 100%;
  height: auto;
}

.item-form-tabs__textarea {
  border: 2px solid #0070c0;
  border-radius: 10px;
  display: block;
  height: 100%;
  font-size: 14px;
  width: 100%;
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
  padding: 18px 20px;
  height: 120px;
}

.item-form-tabs__textarea::-webkit-input-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__textarea::-moz-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -moz-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__textarea:-ms-input-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -ms-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__textarea::-ms-input-placeholder {
  color: rgba(127, 128, 139, 0.5);
  -ms-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__textarea::placeholder {
  color: rgba(127, 128, 139, 0.5);
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.item-form-tabs__textarea._error {
  color: #e93e1a;
}

.item-form-tabs__textarea._error::-webkit-input-placeholder {
  color: #e93e1a;
}

.item-form-tabs__textarea._error::-moz-placeholder {
  color: #e93e1a;
}

.item-form-tabs__textarea._error:-ms-input-placeholder {
  color: #e93e1a;
}

.item-form-tabs__textarea._error::-ms-input-placeholder {
  color: #e93e1a;
}

.item-form-tabs__textarea._error::placeholder {
  color: #e93e1a;
}

.form-tabs__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}

.form-tabs__file {
  position: relative;
  border: 1px dashed #0070c0;
  border-radius: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.form-tabs__file._error {
  border: 1px dashed #e93e1a;
}

.form-tabs__file._error .file-form-tabs__title {
  color: #e93e1a;
}

.file-form-tabs__input {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.file-form-tabs__info {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 20px;
  right: 20px;
}

.file-form-tabs__title {
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  line-height: 87.5%;
  font-family: "Manrope";
}

.file-form-tabs__text {
  margin-top: 7px;
  color: #7f808b;
  font-size: 10px;
  line-height: 140%;
}

.file-form-tabs__bg {
  z-index: 3;
  background-color: #fff;
  border-radius: 10px;
  display: none;
}

.file-form-tabs__bg._active {
  display: block;
}

.file-form-tabs__remove {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  cursor: pointer;
  padding: 15px;
  margin: -15px;
  display: none;
}

.file-form-tabs__remove svg {
  width: 18px;
  height: auto;
}

.file-form-tabs__remove path {
  fill: #e93e1a;
}

.file-form-tabs__remove._active {
  display: block;
}

.form-tabs__btn {
  border-radius: 15px;
  color: #fff;
  min-height: 58px;
  font-family: "Manrope";
  line-height: normal;
  font-weight: 600;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
	  
}
.swiper-wrapper:not(.specialties__wrapper){
	width: 10000px;
}
.swiper-wrapper>div{
	/*margin-right: 20px;*/
	display: flex;
	gap: 20px;
}

@media (min-width: 480.98px) {
  .schedule__item_first .item-schedule__icons {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .schedule__item_blue .item-schedule__icons {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .item-schedule__icons {
    padding-left: 25px;
    border-left: 1px solid #ededf1;
  }
}

@media (min-width: 500.98px) {
  .topic__items_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 650.98px) {
  .footer__row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .schedule__item_small .item-schedule__row {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }

  .item-schedule__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }

  .item-schedule__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-right: 13px;
  }

  .item-disease-intro__content {
    border-radius: 20px;
  }
}

.drop {
  position: relative;
}

.drop .drop__top {
  min-height: 55px;
  position: relative;
  border: 2px solid #0070c0;
  border-radius: 10px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  cursor: pointer;
}

.drop .top-drop__title {
  font-size: 14px;
  line-height: normal;
}

.drop .top-drop__title._placeholder {
  color: rgba(127, 128, 139, 0.5);
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.drop .top-drop__title._error {
  color: #e93e1a;
}

.drop .top-drop__image {
  width: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.drop .top-drop__image img {
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
  width: 100%;
}

.drop .drop__body {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  right: 0;
  z-index: 3;
  background-color: #fff;
  border: 2px solid #0070c0;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0px, 10px);
      -ms-transform: translate(0px, 10px);
          transform: translate(0px, 10px);
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
  padding: 7.5px 0px;
}

.drop .drop__item {
  padding: 7.5px 15px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease 0ms;
  transition: all 0.25s ease 0ms;
}

.drop._active .drop__body {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
      -ms-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  z-index: 99999;
  position: absolute;
   display: inline;
}

.drop._active .top-drop__image img {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 31px;
}
@media (max-width: 650.98px) {

    .form-tabs__items {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
      }
      
      .form-tabs__items {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 30px;
}
}

.login-top__close{
	display: none;
}
.login-top__close img {
  width: 100%;
  height: 100%;
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease-in-out;
  padding: 0;
}

.login-form2 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}