@media (max-width: 991px) {
  html {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 13px;
  }
}

body {
  min-width: 320px;
}

.hidden {
  display: none !important;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
}

.sec {
  padding: 5.7rem 0;
}

@media (max-width: 575px) {
  .sec {
    padding: 4.7rem 0;
  }
}

.sec__title {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.sec-small {
  padding: 3rem 0 3.7rem;
}

.bg-secondary {
  background-color: var(--bs-secondary);
}

.color-primary {
  color: var(--bs-primary);
}

.main {
  overflow: hidden;
}

input, .btn {
  height: 2.6rem;
  font-size: 0.95rem;
  border: none;
}

input, .btn, textarea {
  padding: 1.1rem;
  border-radius: var(--bs-border-radius-lg);
}

input, textarea {
  background-color: var(--bs-secondary);
  border: none;
  margin-bottom: 1rem;
}

input:focus, textarea:focus {
  outline: none !important;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--bs-gray);
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--bs-gray);
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--bs-gray);
}

input::placeholder, textarea::placeholder {
  color: var(--bs-gray);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
  padding-top: 0;
  padding-bottom: 0;
  cursor: pointer;
}

.btn:after {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}

.btn.icon-rectangle:after {
  content: '';
  background-image: url(../img/icons/icon-rectangle.svg);
}

.btn.icon-date:after, .btn.consultation_form_btn:after {
  content: '';
  background-image: url(../img/icons/icon-date.svg);
}

.btn.icon-call:after {
  content: '';
  background-image: url(../img/icons/icon-call.svg);
}

.btn--primary {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}

.btn--primary:hover {
  background-color: var(--bs-primary-hover);
}

.btn--info {
  background-color: transparent;
  border: 2px solid var(--bs-body-color);
}

.btn--info:hover {
  color: #fff;
  background-color: var(--bs-body-color);
}

.btn--info:hover:after {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.btn--danger, .btn-default, #comments .btn-primary {
  background-color: var(--bs-danger);
  color: #fff;
}

.btn--danger:hover, .btn-default:hover, #comments .btn-primary:hover {
  color: #fff;
  background-color: var(--bs-danger-hover);
}

.btn--danger:after, .btn-default:after, #comments .btn-primary:after {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

.header-top {
  padding: 1.8rem 0 1.5rem;
  border-bottom: 1px solid #AFAFAF;
}

@media (max-width: 575px) {
  .header-top {
    padding: 0.8rem 0 0.5rem;
  }
}

@media (max-width: 575px) {
  .header-top .row .col {
    width: 230px;
  }
}

.header-top__link {
  position: relative;
  padding-left: 1.8rem;
}

.header-top__link::before {
  content: '';
  width: 1.1rem;
  height: 1rem;
  position: absolute;
  top: 0.3rem;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.header-top__link:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 1.8rem;
  right: 0;
  height: 1px;
  background-color: var(--bs-body-color);
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}

.header-top__link:hover:after {
  opacity: 0;
}

.header-top .icon-phone:before {
  background-image: url(../img/icons/icon-phone.svg);
}

.header-top .icon-mail:before {
  background-image: url(../img/icons/icon-mail.svg);
}

.header-top__search input {
  margin-bottom: 0;
}

.header-top__search [type="search"] {
  max-width: 192px;
}

.header-top__search [type="submit"] {
  margin-left: 0.5rem;
}

.header-center {
  padding: 1.5rem 0 1.6rem;
}

@media (max-width: 991px) {
  .header-center {
    padding-top: 1rem;
    padding-bottom: 0.8rem;
  }
}

.header-center__logo {
  display: inline-block;
  max-width: 170px;
}

@media (max-width: 991px) {
  .header-center__logo {
    max-width: 120px;
  }
}

@media (max-width: 575px) {
  .header-center__logo {
    max-width: 100%;
  }
}

.header-center__phone {
  text-align: right;
}

@media (max-width: 767px) {
  .header-center__phone {
    text-align: center;
  }
}

.header-center__phone-link {
  font-weight: 700;
  font-size: 1.7rem;
}

@media (max-width: 991px) {
  .header-center__phone-link {
    font-size: 1.5rem;
  }
}

.header-center__phone-text {
  margin-top: 0.6rem;
  color: var(--bs-primary);
}

@media (max-width: 991px) {
  .header-center__phone-text {
    margin-top: 0.2rem;
  }
}

@media (max-width: 991px) {
  .header-center__slogan {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .header-center__slogan {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .header-center__slogan {
    font-size: 0.8rem;
  }
  .header-center__slogan br {
    display: none;
  }
}

.nav {
  position: relative;
  background-color: var(--bs-primary);
  border-radius: var(--bs-border-radius-lg);
  padding: 0 0.7rem;
}

@media (max-width: 767px) {
  .nav.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.nav.active > ul {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .nav {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .nav {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}

.nav__btn {
  display: block;
  width: 2rem;
  height: 2rem;
  padding: 0.5rem;
  background-color: transparent;
  background-image: url(../img/icons/icon-menu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-filter: brightness(3);
          filter: brightness(3);
}

.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}

@media (max-width: 767px) {
  .nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    position: absolute;
    z-index: 11;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background-color: var(--bs-primary);
    border-bottom-left-radius: var(--bs-border-radius-lg);
    border-bottom-right-radius: var(--bs-border-radius-lg);
  }
}

.nav > ul > li {
  position: relative;
  padding: 0.8rem;
}

@media (max-width: 767px) {
  .nav > ul > li:first-child {
    border-top: 1px solid #fff;
    padding-top: 1rem;
  }
  .nav > ul > li:last-child {
    padding-bottom: 1.5rem;
  }
}

.nav > ul > li > a {
  display: block;
  white-space: nowrap;
  color: #fff;
}

.nav .dropdown {
  position: relative;
}

.nav .dropdown li {
  white-space: nowrap;
}

.nav .dropdown > ul {
  position: absolute;
  z-index: 11;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity ease .2s;
  transition: opacity ease .2s;
}

@media (min-width: 768px) {
  .nav .dropdown ul ul {
    top: 0;
    left: 100%;
  }
}

@media (min-width: 768px) {
  .nav .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
}

@media (min-width: 768px) {
  .nav .dropdown > a:after {
    content: '';
    display: inline-block;
    margin-left: 0.5rem;
    background-image: url(../img/icons/icon-chevron-down.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 0.5rem;
    height: 0.5rem;
  }
}

.nav .dropdown .dropdown > a:after {
  -webkit-filter: brightness(0);
          filter: brightness(0);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.nav > ul > .dropdown > ul {
  top: 100%;
  left: 0;
  padding-top: 0.7rem;
  min-width: 100%;
  border-radius: var(--bs-border-radius-lg);
  padding-top: 0.5rem;
}

.nav > ul > .dropdown > ul li {
  padding: 0.55rem 1rem;
  background-color: var(--bs-light);
}

.nav > ul > .dropdown > ul li:first-child {
  padding-top: 0.8rem;
  border-top-left-radius: var(--bs-border-radius-lg);
  border-top-right-radius: var(--bs-border-radius-lg);
}

.nav > ul > .dropdown > ul li:last-child {
  padding-bottom: 0.8rem;
  border-bottom-left-radius: var(--bs-border-radius-lg);
  border-bottom-right-radius: var(--bs-border-radius-lg);
}

@media (max-width: 767px) {
  .nav .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow: hidden;
  }
  .nav .dropdown ul {
    width: 100%;
  }
  .nav .dropdown.active > ul {
    visibility: visible;
    opacity: 1;
    position: relative;
  }
  .nav .dropdown__mob-btn {
    display: block;
    position: relative;
    z-index: 22;
    margin-left: auto;
    cursor: pointer;
    background-image: url(../img/icons/icon-chevron-down.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1rem;
    height: 1rem;
    -webkit-transition: -webkit-transform ease .2s;
    transition: -webkit-transform ease .2s;
    transition: transform ease .2s;
    transition: transform ease .2s, -webkit-transform ease .2s;
  }
  .nav .dropdown.active > .dropdown__mob-btn {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .nav ul ul .dropdown__mob-btn {
    -webkit-filter: brightness(0.25);
            filter: brightness(0.25);
  }
}

.breadcrumb {
  padding: 0;
  margin: 0;
  list-style: none;
  margin: 1.5rem 0 1.3rem;
}

.breadcrumb li {
  display: inline-block;
  color: var(--bs-gray);
}

.breadcrumb li:after {
  content: '/';
}

.breadcrumb li:last-child:after {
  content: none;
}

.breadcrumb a {
  color: var(--bs-primary);
}

.intro {
  position: relative;
  padding-top: 5rem;
  background-color: var(--bs-secondary);
}

@media (max-width: 575px) {
  .intro {
    padding-top: 2rem;
  }
}

.intro .sec {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

@media (max-width: 575px) {
  .intro .sec {
    padding-bottom: 3rem;
  }
}

.intro .container {
  position: relative;
  z-index: 1;
}

.intro .container:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: url(../img/doctor-say-hello.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

@media (max-width: 399px) {
  .intro .container:after {
    opacity: 0.6;
  }
}

@media (max-width: 399px) {
  .intro .btn {
    width: 170px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.intro .btn.icon-date:after, .intro .btn.consultation_form_btn:after {
  background-image: url(../img/icons/icon-mail.svg);
  -webkit-filter: invert(1);
          filter: invert(1);
  margin-top: 1px;
}

.intro .btn:not(:last-child) {
  margin-right: 1.6rem;
}

.intro__list {
  margin-bottom: 3rem;
}

.modal {
  display: none;
  min-width: 300px;
  max-width: 363px;
  padding: 2.5rem 3rem;
  border-radius: var(--bs-border-radius-lg);
}

.modal input, .modal textarea, .modal .btn {
  width: 100%;
}

.modal input, .modal textarea {
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
}

.modal input :focus, .modal textarea :focus {
  outline: none;
  border: none;
}

.modal textarea {
  min-height: 232px;
}

.modal__title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2d2d2d;
}

.modal__bottom {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--bs-gray);
}

.modal__bottom a {
  color: var(--bs-primary);
}

.modal.fancybox__content > .carousel__button.is-close {
  top: 0.8rem;
  right: 0.8rem;
  color: #2d2d2d;
  width: 1rem;
  height: 1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal .carousel__button svg {
  -webkit-filter: none;
          filter: none;
}

.modal .icon-date:after, .modal .consultation_form_btn:after {
  background-image: url(../img/icons/icon-mail.svg);
  margin-top: 1px;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.experience {
  text-align: center;
}

.experience .sec__title {
  margin-bottom: 2rem;
}

.experience__info {
  font-weight: 700;
  font-size: calc(1.325rem + 0.9vw);
}

@media (max-width: 575px) {
  .experience__text {
    font-size: 0.7rem;
  }
}

@media (max-width: 767px) {
  .info__img-wrap {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 768px) {
  .info__img-wrap {
    position: relative;
    height: 100%;
  }
  .info__img-wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: var(--bs-border-radius-lg);
  }
}

.info p {
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  line-height: 1.1;
}

.info p:last-of-type {
  margin-bottom: 0;
}

.info .row:not(:last-child) {
  margin-bottom: 5rem;
}

.info .btn-wrap {
  margin-top: 4.5rem;
}

@media (max-width: 575px) {
  .info .btn-wrap {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.price__table {
  width: 100%;
}

@media (max-width: 767px) {
  .price__table {
    font-size: 0.8rem;
  }
}

.price__link {
  cursor: pointer;
  color: var(--bs-gray);
  border-bottom: 1px dashed var(--bs-gray);
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}

.price__link:hover {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.price th {
  background-color: var(--bs-primary);
  color: #fff;
}

.price td, .price th {
  padding: 0.75rem 0.4rem;
}

.price th:first-child, .price td:first-child {
  padding-left: 1.7rem;
}

@media (max-width: 767px) {
  .price th:first-child, .price td:first-child {
    padding-left: 1rem;
  }
}

.price th:last-child, .price td:last-child {
  padding-right: 1.5rem;
}

@media (max-width: 767px) {
  .price th:last-child, .price td:last-child {
    padding-right: 1rem;
  }
}

.price th:first-child {
  border-top-left-radius: var(--bs-border-radius-lg);
}

.price th:last-child {
  border-top-right-radius: var(--bs-border-radius-lg);
}

.price tr:nth-child(2n) td {
  background-color: var(--bs-secondary);
}

.price__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.price__values del {
  color: var(--bs-gray);
  margin-right: 0.5rem;
}

.description {
  padding-bottom: 3.9rem;
}

.description .sec__title {
  margin-bottom: 3.9rem;
}

.description__list {
  font-weight: 700;
  font-size: 1.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 576px) {
  .description__list {
    -webkit-columns: 2;
            columns: 2;
  }
}

.description__list li {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 2.3rem;
}

.description__list [class*="icon-"]:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.description .icon-heart:before {
  background-image: url(../img/icons/icon-heart.svg);
}

.description .icon-honey:before {
  background-image: url(../img/icons/icon-honey.svg);
}

.description .icon-drop:before {
  background-image: url(../img/icons/icon-drop.svg);
}

.description .icon-medical:before {
  background-image: url(../img/icons/icon-medical.svg);
}

.description .icon-prick:before {
  background-image: url(../img/icons/icon-prick.svg);
}

.description .icon-book:before {
  background-image: url(../img/icons/icon-book.svg);
}

.faq__wrap {
  padding: 1.3rem 1.7rem 0.5rem;
  background-color: var(--bs-secondary);
  border-radius: var(--bs-border-radius-lg);
}

.faq__subtitle {
  color: var(--bs-gray);
  font-weight: 400;
  font-size: 1.52rem;
  margin-bottom: 1.7rem;
}

.faq__list {
  font-size: 1.5rem;
}

.faq__list:not(:last-child) {
  margin-bottom: 3rem;
}

.faq__list dt {
  position: relative;
  padding-left: 1.8rem;
  margin: 1.7rem 0 0;
  cursor: pointer;
  color: var(--bs-primary);
}

.faq__list dt:first-child {
  margin-top: 0;
}

.faq__list dt:last-child {
  margin-bottom: 0;
}

.faq__list dt:before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url(../img/icons/icon-chevron-right.svg);
  -webkit-transition: -webkit-transform ease .2s;
  transition: -webkit-transform ease .2s;
  transition: transform ease .2s;
  transition: transform ease .2s, -webkit-transform ease .2s;
}

.faq__list dt.active:before {
  top: 0.8rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq__list dd {
  font-size: 80%;
  display: none;
  padding: 1.8rem 3.6rem;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

@media (max-width: 575px) {
  .faq__list dd {
    padding-right: 0.8rem;
  }
}

.faq ul, .faq ol {
  padding-left: 17px;
}

.faq ul:last-child, .faq ol:last-child {
  margin: 0;
}

.faq ol li {
  margin-bottom: 1rem;
}

.faq ol li:last-child {
  margin-bottom: 0;
}

.convince {
  padding-top: 2.6rem;
}

@media (max-width: 767px) {
  .convince {
    padding-top: 1rem;
  }
}

.convince__text {
  padding-top: 1.4rem;
  padding-bottom: 3.3rem;
}

@media (min-width: 768px) {
  .convince__img-wrap {
    position: relative;
    height: 100%;
  }
  .convince__img-wrap img {
    position: absolute;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .convince__img-wrap img {
    left: 6%;
  }
}

@media (max-width: 767px) {
  .convince__img-wrap img {
    display: block;
    margin: auto;
    height: 50vh;
  }
}

.convince form {
  max-width: 300px;
  margin-top: 3rem;
}

@media (max-width: 575px) {
  .convince form {
    margin-top: 2rem;
  }
}

.convince form input {
  width: 100%;
  background-color: #fff;
  margin-bottom: 2.1rem;
}

.stages {
  counter-reset: stages;
  padding-bottom: 4.7rem;
}

@media (max-width: 575px) {
  .stages {
    padding-bottom: 0;
  }
}

.stages .sec__title {
  text-align: center;
}

@media (min-width: 576px) {
  .stages .sec__title {
    margin-bottom: 2rem;
    font-size: 2.65rem;
  }
}

@media (min-width: 768px) {
  .stages .row {
    background-image: url(../img/stages-bg.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 1rem;
  }
}

.stages .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: calc(var(--bs-gutter-x) * 0.5) 0;
  counter-increment: stages;
}

.stages__item {
  position: relative;
  background-color: var(--bs-secondary);
  border-radius: var(--bs-border-radius-lg);
  padding: 1.5rem;
  padding-bottom: 3rem;
  width: 100%;
}

.stages__item:after {
  content: counter(stages);
  font-weight: 700;
  font-size: 2.5rem;
  position: absolute;
  right: 0.4rem;
  bottom: -0.2rem;
  color: var(--bs-danger);
}

.stages__item--blue:after {
  color: var(--bs-primary);
}

.stages__item p {
  font-size: 1.27rem;
  line-height: 1.1;
}

@media (max-width: 991px) {
  .stages__item p {
    font-size: 1rem;
  }
}

.stages__title {
  font-weight: 700;
  font-size: 1.72rem;
  margin-bottom: 0.3rem;
}

@media (max-width: 991px) {
  .stages__title {
    font-size: 1.22rem;
  }
}

.medical {
  padding-bottom: 2.6rem;
}

.medical__subtitle {
  font-weight: 700;
  color: var(--bs-danger);
  margin-bottom: 3rem;
}

.medical .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: calc(var(--bs-gutter-x));
}

.medical__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-size: 1rem;
  padding: 1.5rem;
  background-color: var(--bs-secondary);
  border-radius: var(--bs-border-radius-lg);
}

@media (max-width: 1199px) {
  .medical__item {
    padding: 1.2rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 575px) {
  .medical__item {
    font-size: 1rem;
  }
}

.medical__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 1rem;
}

.medical__img img {
  border-radius: var(--bs-border-radius-lg);
  width: 166px;
  height: 165px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.medical__name {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.medical__info {
  margin-bottom: auto;
}

.medical__slider {
  margin-top: 2.5rem;
  margin-bottom: 1.3rem;
}

.medical__slider img {
  height: 104px;
  -o-object-fit: contain;
     object-fit: contain;
}

.medical__experience {
  position: relative;
  white-space: nowrap;
  color: var(--bs-gray);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.medical__experience:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url(../img/icons/icon-diamond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
}

.medical .carousel__slide {
  opacity: 0;
  padding: 0;
  -webkit-transition: opacity ease .4s;
  transition: opacity ease .4s;
}

.medical .carousel__slide img {
  display: block;
  margin: auto;
  -webkit-transition: opacity ease .2s;
  transition: opacity ease .2s;
}

.medical .carousel__slide a {
  position: relative;
}

.medical .carousel__slide a:before {
  content: '';
  position: absolute;
  z-index: 1;
  opacity: 0;
  background-color: var(--bs-primary);
  border-radius: var(--bs-border-radius-lg);
  background-image: url(../img/icons/icon-zoom.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 2rem;
  height: 2rem;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity ease .2s;
  transition: opacity ease .2s;
}

.medical .carousel__slide a:hover:before {
  opacity: 1;
}

.medical .carousel__slide:hover img {
  opacity: 0.6;
}

.medical .carousel__slide.is-selected {
  opacity: 1;
}

.medical .carousel__button {
  width: 30px;
  height: 30px;
  opacity: 0.5;
}

.medical .carousel__button.is-prev {
  left: 0;
}

.medical .carousel__button.is-next {
  right: 0;
}

.medical .carousel__dots {
  display: none;
}

.preferences {
  padding-bottom: 4.3rem;
}

@media (min-width: 576px) {
  .preferences .sec__title {
    margin-bottom: 3.3rem;
  }
}

@media (max-width: 575px) {
  .preferences .sec__title {
    margin-bottom: 2.5rem;
  }
}

.preferences__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 576px) {
  .preferences__list {
    -webkit-columns: 2;
            columns: 2;
  }
}

.preferences__item {
  position: relative;
  padding-left: 3.45rem;
  margin-bottom: 1.9rem;
}

.preferences__item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 2.2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
}

.preferences__name {
  display: block;
  font-size: 1.7rem;
  margin-bottom: 0.2rem;
}

.preferences .icon-user::before {
  background-image: url(../img/icons/icon-user-red.svg);
}

.preferences .icon-heart::before {
  background-image: url(../img/icons/icon-heart-red.svg);
}

.preferences .icon-wallet::before {
  background-image: url(../img/icons/icon-wallet-red.svg);
}

.preferences .icon-diamond::before {
  background-image: url(../img/icons/icon-diamond-red.svg);
}

.preferences .icon-book::before {
  background-image: url(../img/icons/icon-book-red.svg);
}

.preferences .icon-truck::before {
  background-image: url(../img/icons/icon-truck-red.svg);
}

.preferences .icon-smile::before {
  background-image: url(../img/icons/icon-smile-red.svg);
}

.preferences .icon-home::before {
  background-image: url(../img/icons/icon-home-red.svg);
}

.about .col--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.about img {
  border-radius: var(--bs-border-radius-lg);
}

.about__slider {
  padding-bottom: 3.7rem;
}

@media (max-width: 991px) {
  .about__slider {
    padding-bottom: 2rem;
  }
}

.about__slider.has-dots {
  margin-bottom: calc(0.5rem + 33px);
}

.about .carousel__slide {
  width: 100%;
  padding: 0;
}

.about .carousel__nav {
  position: absolute;
  top: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about .carousel__nav button {
  position: static;
  -webkit-transform: none;
          transform: none;
  height: 28px;
  width: 28px;
}

.about .carousel__dots {
  left: 30px;
  right: 30px;
  top: calc(100% + 0.2rem);
}

.about .btn-wrap {
  text-align: right;
}

.sertificates .sec__title {
  text-align: center;
}

@media (min-width: 768px) {
  .sertificates .sec__title {
    margin-bottom: 2rem;
  }
}

.sertificates .carousel__slide {
  width: auto;
}

@media (max-width: 1399px) {
  .sertificates .carousel__slide {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .sertificates .carousel__slide {
    width: 33.33%;
  }
}

@media (max-width: 767px) {
  .sertificates .carousel__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.sertificates .carousel__slide img {
  display: block;
  margin: auto;
}

.sertificates .carousel__dots {
  padding-left: 68px;
  padding-right: 68px;
}

.sertificates .carousel__nav {
  position: relative;
  z-index: 1;
}

.sertificates .carousel__button.is-prev, .sertificates .carousel__button.is-next {
  top: calc(100% + 1.2rem);
}

.medication {
  padding-bottom: 3.5rem;
}

.medication .sec__title {
  color: var(--bs-primary);
}

.medication__subtitle {
  color: var(--bs-danger);
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.medication .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: var(--bs-gutter-x);
}

.medication__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  text-align: center;
  border-radius: var(--bs-border-radius-lg);
  background-color: var(--bs-secondary);
  padding-bottom: 1.8rem;
}

.medication__padding {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (max-width: 1199px) {
  .medication__padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.medication__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 14vh;
  max-height: 127px;
  font-weight: 700;
  font-size: 1.55rem;
  margin-bottom: 2.5rem;
  background-color: var(--bs-primary);
  border-top-left-radius: var(--bs-border-radius-lg);
  border-top-right-radius: var(--bs-border-radius-lg);
  color: #fff;
}

.medication__price {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.7rem;
}

.medication__price-val {
  display: block;
  white-space: nowrap;
  font-size: 4.5rem;
}

@media (max-width: 1399px) {
  .medication__price-val {
    font-size: 3.5rem;
  }
}

@media (max-width: 1199px) {
  .medication__price-val {
    font-size: 2.5rem;
  }
}

.medication__price-info {
  display: block;
  font-size: 1.5rem;
}

.medication__installment {
  color: var(--bs-danger);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.medication__img {
  margin-bottom: 1.5rem;
  height: 50vh;
  max-height: 235px;
}

.medication__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.medication__list {
  list-style: none;
  text-align: left;
  margin: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 1199px) {
  .medication__list {
    font-size: 0.9rem;
  }
}

.medication__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.9rem;
}

.medication__list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icons/icon-check.svg);
}

.medication .btn-wrap {
  margin-top: auto;
}

.medication .btn {
  font-size: 1.1rem;
}

.medication__anonymous {
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 1.6rem;
  color: var(--bs-gray);
}

.promo {
  padding-bottom: 3.6rem;
}

.promo .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: var(--bs-gutter-x);
}

.promo__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #fff;
  border-radius: var(--bs-border-radius-lg);
  padding: 2rem;
}

@media (max-width: 575px) {
  .promo__item {
    -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;
  }
}

.promo__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 200px;
  margin-right: 20px;
}

@media (max-width: 575px) {
  .promo__img {
    margin-bottom: 2rem;
    margin-right: 0;
  }
}

.promo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.promo__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.promo__text {
  margin-bottom: 2rem;
}

@media (max-width: 575px) {
  .promo__text {
    margin-bottom: 1rem;
  }
}

.promo .btn-wrap {
  margin-top: auto;
  text-align: right;
}

@media (max-width: 575px) {
  .promo .btn-wrap {
    margin: auto;
    margin-bottom: 0;
  }
}

.services {
  padding-bottom: 2.8rem;
}

.services .sec__title {
  text-align: center;
}

.services .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: calc(var(--bs-gutter-x) + 0.7rem);
}

@media (max-width: 575px) {
  .services .col {
    margin-bottom: var(--bs-gutter-x);
  }
}

.services__item {
  width: 100%;
  font-size: 0.95rem;
  display: block;
  background-color: var(--bs-secondary);
  border-radius: var(--bs-border-radius-lg);
  padding: 1.9rem 1.5rem 1rem;
  -webkit-transition: all ease .2s;
  transition: all ease .2s;
}

.services__item:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

.services__name {
  font-size: 1.5rem;
  font-weight: 700;
}

.reviews .sec__title {
  margin-bottom: 2rem;
}

.reviews .has-dots {
  margin-bottom: calc(4.5rem + 30px);
}

.reviews .carousel__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33.33%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 991px) {
  .reviews .carousel__slide {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .reviews .carousel__slide {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.reviews__item {
  width: 100%;
  background-color: #fff;
  border-radius: var(--bs-border-radius-lg);
}

.reviews__item p {
  font-size: 0.94rem;
}

.reviews__item a {
  text-decoration: underline;
}

.reviews__link {
  position: relative;
  display: block;
  height: 225px;
}

.reviews__link:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../img/icons/icon-play.svg);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-size: contain;
}

.reviews__link img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  border-top-left-radius: var(--bs-border-radius-lg);
  border-top-right-radius: var(--bs-border-radius-lg);
}

.reviews__name {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reviews__content {
  padding: 1.8rem 1.3rem;
}

@media (max-width: 1199px) {
  .reviews__content {
    padding: 1.5rem 1.2rem 1rem;
  }
}

.reviews .carousel__dots {
  padding-left: 68px;
  padding-right: 68px;
  top: calc(100% + 2.5rem);
}

.reviews .carousel__nav {
  position: relative;
  z-index: 1;
}

.reviews .carousel__button.is-prev, .reviews .carousel__button.is-next {
  top: calc(100% + 3.1rem);
}

.reviews .btn-wrap {
  text-align: center;
  margin-top: 4rem;
}

.map {
  padding-bottom: 4.7rem;
}

.map .sec__title {
  text-align: center;
  margin-bottom: 3rem;
}

.map__wrap {
  text-align: center;
  margin-bottom: 3.1rem;
}

.map__contacts p {
  color: var(--bs-gray);
}

.map__contacts a {
  display: inline-block;
  color: var(--bs-primary);
}

.map__subtitle {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.emergency {
  padding-bottom: 3rem;
}

.emergency__padding {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 4rem;
  border-radius: var(--bs-border-radius-lg);
}

@media (max-width: 991px) {
  .emergency__padding {
    padding: 3rem 2rem;
  }
}

@media (max-width: 575px) {
  .emergency__padding {
    display: block;
  }
}

.emergency__img {
  max-width: 136px;
  margin-top: -0.5rem;
  margin-right: 6.7rem;
}

@media (max-width: 991px) {
  .emergency__img {
    margin-right: 2rem;
  }
}

@media (max-width: 767px) {
  .emergency__img {
    margin-right: 1.5rem;
  }
}

@media (max-width: 575px) {
  .emergency__img {
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }
}

.emergency .sec__title {
  margin-bottom: 0.55rem;
}

.emergency__phone {
  font-weight: 700;
  margin-bottom: 2.6rem;
}

.emergency__phone a {
  display: inline-block;
  font-size: 3.3rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 991px) {
  .emergency__phone a {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .emergency__phone a {
    font-size: 1.8rem;
  }
}

.emergency .btn-wrap {
  text-align: center;
}

@media (max-width: 991px) {
  .emergency .btn-wrap {
    text-align: left;
  }
}

.emergency .btn {
  font-size: 1.1rem;
  height: 2.8rem;
}

.footer {
  border-top: 1px solid #AFAFAF;
  padding: 3rem 0 5rem;
}

.footer .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 576px) {
  .footer .col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 575px) {
  .footer .col--menu {
    margin-top: 3rem;
  }
  .footer .col--menu .footer__menu {
    width: 50%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .footer .col--menu .footer__menu:first-child {
    padding-left: 0;
  }
  .footer .col--menu .footer__menu:last-child {
    padding-right: 0;
  }
}

.footer ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer__logo {
  margin-bottom: 1.9rem;
  max-width: 170px;
}

.footer__item, .footer__menu {
  margin-bottom: 3rem;
}

.footer__item:last-child, .footer__menu:last-child {
  margin-bottom: 0;
}

.footer__subtitle {
  color: var(--bs-gray);
  margin-bottom: 0.5rem;
}

.footer__cities-wrap {
  display: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 140px;
  border-radius: var(--bs-border-radius-lg);
  background-color: var(--bs-secondary);
  padding-top: 0.7rem;
  padding-bottom: 0.4rem;
}

.footer__city {
  background: #82c970;
  color: #fff;
}

.footer__city:hover {
  background-color: #70aa61;
  color: #fff;
}

.footer__cities-current {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 1rem;
}

.footer__cities-current:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: var(--bs-body-color);
  height: 1px;
  -webkit-transition: opacity ease .2s;
  transition: opacity ease .2s;
}

.footer__cities-current:hover:after {
  opacity: 0;
}

.footer__cities {
  overflow-y: scroll;
  height: 168px;
}

@media (max-width: 767px) {
  .footer__cities {
    height: 120px;
  }
}

.footer__cities li {
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.footer__cities li:last-child {
  margin-bottom: 0;
}

.footer__cities::-webkit-scrollbar {
  width: 2px;
}

.footer__cities::-webkit-scrollbar-thumb {
  background: var(--bs-gray);
}

.footer__translate {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9rem;
  margin-top: 0.7rem;
}

.footer__translate:before {
  content: '';
  position: absolute;
  width: 1rem;
  height: 1.1rem;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  background-image: url(../img/icons/icon-arrow-up.svg);
}

.footer__list {
  margin-top: 1.1rem;
}

.footer__list li {
  font-size: 0.95rem;
  margin: 0.7rem 0;
}

.footer__payment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__payment li:not(:last-child) {
  text-align: center;
  margin-right: 15px;
}

@media (max-width: 374px) {
  .footer__payment li:not(:last-child) {
    margin-right: 5px;
  }
}

.footer__payment img {
  display: block;
  margin: auto;
  width: 50px;
  height: 50px;
}

.footer__menu-title {
  position: relative;
  color: var(--bs-primary);
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
}

.footer__menu-title:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #AFAFAF;
}

.footer__menu-list {
  font-size: 0.95rem;
}

.footer__menu li {
  margin-bottom: 0.96rem;
}

@media (min-width: 576px) and (max-width: 991px) {
  .footer__callback {
    margin-top: 1rem;
  }
}

.footer__callback-link {
  font-weight: 700;
  color: var(--bs-primary);
  font-size: 1.74rem;
}

@media (max-width: 1399px) {
  .footer__callback-link {
    font-size: 1.5rem;
  }
}

@media (max-width: 1199px) {
  .footer__callback-link {
    font-size: 1.3rem;
  }
}

.footer__callback .btn-wrap {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.footer__callback .btn {
  font-size: 1.15rem;
}

@media (max-width: 1199px) {
  .footer__callback .btn {
    font-size: 0.95rem;
  }
}

.footer__info {
  font-size: 0.95rem;
  margin-top: 0.95rem;
}

.footer__links {
  font-size: 0.94rem;
}

.footer__links li {
  margin-bottom: 0.8rem;
}

.footer__links a {
  color: var(--bs-gray);
  text-decoration: underline;
}

.footer__support {
  margin-top: 2rem;
}

.attribution {
  text-align: center;
  font-size: 0.95rem;
  background-color: var(--bs-secondary);
  padding: 0.5rem 0;
}

.contacts__info {
  padding: 2rem;
  margin-bottom: 1rem;
}

.contacts__info-phone {
  display: inline-block;
  font-weight: 700;
  font-size: 2rem;
}

@media (max-width: 575px) {
  .contacts__info-phone {
    font-size: 1.6rem;
  }
}

.contacts__filials {
  padding: 0;
  list-style: none;
  -webkit-columns: 4;
          columns: 4;
}

@media (max-width: 575px) {
  .contacts__filials {
    -webkit-columns: 2;
            columns: 2;
  }
}

.contacts__filials li {
  margin-bottom: 0.25rem;
}

.contacts__filials a {
  color: var(--bs-primary);
}

.inner {
  position: relative;
  padding-right: 10rem;
  padding-bottom: 5.4rem;
}

@media (max-width: 1199px) {
  .inner {
    padding-right: 3rem;
  }
}

@media (max-width: 767px) {
  .inner {
    padding-right: 0rem;
  }
}

.inner__row {
  margin-bottom: 5.7rem;
}

.inner a {
  color: var(--bs-primary);
  -webkit-transition: color ease .2s;
  transition: color ease .2s;
}

.inner a:hover {
  color: var(--bs-primary-hover);
}

.inner::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100000px;
  background-color: var(--bs-secondary);
}

@media (max-width: 991px) {
  .inner::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 100000px;
    background-color: var(--bs-secondary);
  }
}

.inner .space {
  margin: 3rem 0;
}

@media (max-width: 991px) {
  .inner .space {
    margin: 2rem 0;
  }
  .inner .space:first-child {
    margin-top: 0;
  }
}

.inner .space ul {
  margin: 1rem 0;
}

.inner .links h4 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.inner .links li {
  color: #f9554c;
}

.inner .links ul ul {
  margin: 0;
  padding-left: 1.7rem;
  list-style-type: disc;
}

.inner h1 {
  margin-bottom: 2rem;
}

.inner h2, .inner h3, .inner h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.inner blockquote, .inner .important {
  margin: 1.8rem 0 2.3rem;
  padding-left: 1.2rem;
  border-left: 4px solid var(--bs-primary);
}

.consultation {
  background-color: var(--bs-primary);
  border-radius: var(--bs-border-radius-lg);
  color: #fff;
  padding: 2rem 2rem 1rem;
  margin: 3rem 0 3.5rem;
}

.consultation h3 {
  font-weight: 700;
}

.consultation__inner {
  text-align: left;
}

.consultation_form {
  margin-top: 3rem;
}

.consultation_form input {
  width: 100%;
  max-width: 192px;
}

.consultation_form_group {
  padding-right: 1rem;
}

@media (max-width: 575px) {
  .consultation_form_group {
    padding-right: 0;
  }
}

.consultation .form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 575px) {
  .consultation .form-inline {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.consultation_form_btn {
  white-space: nowrap;
}

#ArticleAuthorbox {
  font-size: 0.95rem;
}

.AuthorPhoto {
  border-radius: var(--bs-border-radius-lg);
}

@media (max-width: 575px) {
  .AuthorPhoto {
    display: block;
    margin-bottom: 1rem;
  }
}

.ArticleAuthorname {
  font-weight: 700;
  margin-bottom: 1rem;
}

.ArticleAuthorname [class*="hidden-"] {
  display: none;
}

p.BioArticleAuthor {
  margin-top: 0.5rem;
}

.Authorpostione {
  color: #008fd5;
  font-weight: 700;
  font-size: 1em;
  font-style: italic;
}

.comments-area {
  margin-top: 4.6rem;
}

.comments-title {
  position: relative;
  margin-right: -10rem;
  font-weight: 700;
  background-color: var(--bs-primary);
  color: #fff;
  font-size: 2.25rem;
  padding: 1.1rem 0 1rem;
  margin-bottom: 3.2rem;
}

@media (max-width: 1199px) {
  .comments-title {
    margin-right: -3rem;
  }
}

@media (max-width: 991px) {
  .comments-title {
    margin-right: 0rem;
  }
}

.comments-title:before, .comments-title:after {
  content: '';
  position: absolute;
  background-color: var(--bs-primary);
  top: 0;
  bottom: 0;
}

.comments-title:before {
  width: 10000px;
  right: 100%;
}

@media (max-width: 991px) {
  .comments-title:after {
    left: 100%;
    width: 10000px;
    z-index: 1;
  }
}

.comment-list {
  padding: 0;
}

.comment {
  padding: 2rem 2rem 1rem;
  background-color: #fff;
  margin-bottom: 1rem;
}

.comment-list {
  margin-bottom: 6rem;
}

.comment-meta {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--bs-gray);
}

.comment cite {
  font-style: normal;
  font-weight: 700;
  color: var(--bs-primary);
}

.comment .reply a {
  text-decoration: underline;
  color: var(--bs-gray);
}

.comment .avatar {
  height: auto;
  border-radius: var(--bs-border-radius-lg);
}

@media (max-width: 575px) {
  .comment .avatar {
    margin-bottom: 1rem;
  }
}

.comment-respond form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comment-respond form .row {
  margin: 0 -0.5rem;
}

.comment-respond form .row > * {
  padding: 0 0.5rem;
}

.comment-respond label {
  display: none;
}

.comment-respond input:not([type="submit"]), .comment-respond textarea {
  background-color: #fff;
}

.comment-respond input:not([type="submit"]) {
  width: 100%;
}

.comment-respond textarea {
  width: 100%;
}

.comment-respond #comment-submit {
  margin-top: 1rem;
}

.comment-respond #comment-before {
  -webkit-box-ordinal-group: -1;
      -ms-flex-order: -2;
          order: -2;
  margin-bottom: 2rem;
}

.comment-respond #author-info {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.comment-respond #author-info, .comment-respond #comment-text {
  max-width: 440px;
}

.comment-respond #email-notes {
  display: block;
  color: var(--bs-danger);
  margin-top: 0.4rem;
}

.comment-respond .comment-form-cookies-consent {
  display: none;
}

#cpmenutitle {
  display: none;
}

#cpmenutitletext {
  padding: 1rem;
  font-weight: 700;
  width: 100%;
  color: #fff;
  background-color: var(--bs-primary);
}

.sidebarnav .nav {
  list-style: none;
  background-color: var(--bs-secondary);
  border-radius: 0;
  padding: 3rem 1rem 2.3rem;
}

@media (max-width: 1199px) {
  .sidebarnav .nav {
    padding: 1.5rem 0.5rem 1.2rem;
  }
}

@media (max-width: 991px) {
  .sidebarnav .nav {
    font-size: 0.85rem;
    padding-top: 1rem;
  }
}

.sidebarnav .nav-item {
  padding: 0.7rem 1.2rem 0.6rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid #AFAFAF;
}

@media (max-width: 1399px) {
  .sidebarnav .nav-item {
    padding: 0.7rem 0.6rem 0.6rem;
    font-size: 1rem;
  }
}

@media (max-width: 1199px) {
  .sidebarnav .nav-item {
    padding: 0.7rem 0.6rem 0.6rem;
    font-size: 0.9rem;
  }
}

.sidebarnav .nav-link {
  -webkit-transition: color ease .2s;
  transition: color ease .2s;
}

.sidebarnav .nav-link:hover {
  color: var(--bs-primary);
}

#ctawidget {
  padding: 1.9rem 1.4rem 1.1rem;
  margin-bottom: 2rem;
  background-color: var(--bs-primary);
  color: #fff;
}

@media (max-width: 991px) {
  #ctawidget {
    padding: 1.5rem 0.8rem 1rem;
  }
}

.ctatitlew {
  font-weight: 700;
  font-size: 1.2rem;
}

@media (max-width: 1199px) {
  .ctatitlew {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .ctatitlew {
    font-size: 0.9rem;
  }
}

.hourescta {
  display: block;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 5.5rem;
}

@media (max-width: 1199px) {
  .hourescta {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .hourescta {
    font-size: 3rem;
  }
}

.cctaw {
  margin-bottom: 2rem;
}

.ctasw {
  display: block;
  text-align: center;
  font-size: 0.7rem;
}

.phonectaw {
  background-color: #fff;
  font-weight: 700;
  border-radius: var(--bs-border-radius-lg);
  color: var(--bs-danger);
  padding: 1.3rem 1.8rem 0.2rem;
  margin-bottom: 2.2rem;
}

@media (max-width: 1399px) {
  .phonectaw {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}

.phonectawt {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.phonectawtt {
  font-size: 1.25rem;
}

@media (max-width: 1199px) {
  .phonectawtt {
    font-size: 0.85rem;
  }
}

#ctaf {
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.ctafb {
  margin-bottom: 0.5rem;
}

#widgetbtn {
  background-color: var(--bs-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.7rem 0.5rem;
}

@media (max-width: 991px) {
  #widgetbtn {
    padding-left: 0;
    padding-right: 0;
  }
}

.fa-edit {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/icons/icon-edit.svg);
}

.cities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-columns: 2;
          columns: 2;
}

.cities-list li {
  white-space: nowrap;
  margin-bottom: 5px;
  font-size: 80%;
  color: var(--bs-primary);
}

.cities-list li:hover {
  color: var(--bs-primary-hover);
}

.cities-list :focus {
  border: none !important;
  outline: none !important;
}

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

.sectionlinks {
  margin: 20px 0;
  padding: 20px 10px;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.article-second-cta {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 7px rgba(151, 151, 153, 0.35), 0 3px 7px rgba(151, 151, 153, 0.35);
          box-shadow: 0 3px 7px rgba(151, 151, 153, 0.35), 0 3px 7px rgba(151, 151, 153, 0.35);
  margin: 2rem 0;
}

.article-second-cta-media {
  padding: 0;
}

.article-second-cta-figure {
  margin-bottom: 0;
}

.article-second-cta-figure figcaption {
  display: none;
}

.cta-second-text-box {
  padding: 0.5rem;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.article-second-cta-text-title {
  text-transform: uppercase;
  color: #c82333;
  margin-top: 7px;
  margin-bottom: 27px;
}

span.one-second-block-black {
  font-size: 48px;
  line-height: .8;
  font-weight: 500;
}

div.article-second-cta-text-desc {
  color: #1d2129;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 17px;
}

.article-second-cta-buttons a {
  font-size: 1.5rem;
  color: #c82333 !important;
  line-height: 1.2;
  font-weight: 500;
}

.inner .phone {
  color: #f85852;
  font-weight: 700;
  font-size: 22px;
}

.home-doctors {
  text-align: center;
  padding: 15px 0 20px;
  background: #f0f5f6;
}

.home-doctors.doctors-var-two .slogan-section, .home-doctors.doctors-var-two .text-center {
  text-align: left;
}

.home-doctors h5 {
  font-weight: 400;
}

.home-doctors .common-doctor {
  background-color: #fff;
}

.home-doctors .common-doctor figure {
  overflow: hidden;
  width: 100%;
  height: 196px;
}

.home-doctors img {
  width: 100%;
  height: auto;
}

.doctor-name, .home-doctors .common-doctor h5 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
  color: #3a3c41;
  min-height: 40px;
}

.home-doctors .common-doctor .text-content {
  padding: 19px 14px 13px;
}

.home-doctors.doctors-var-two {
  text-align: left;
  background-color: #fff;
}

.home-doctors.doctors-var-two .common-doctor {
  background-color: transparent;
}

.home-doctors.doctors-var-two .common-doctor .for-border {
  display: none;
}

.home-doctors.doctors-var-two .common-doctor .text-content {
  padding: 20px 0;
}

.slogan-section {
  margin-bottom: 10px;
  text-align: center;
}

.home-doctors .common-doctor .for-border {
  margin-bottom: 20px;
}

.for-border {
  height: 11px;
  width: 100%;
  border: none;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.pull-left {
  float: left !important;
}

.pull-right {
  float: right !important;
}

.pull-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .pull-left {
    margin-right: 10px;
  }
  .pull-right {
    margin-left: 10px;
  }
}

.importantred {
  display: block;
  padding: 11px 22px;
  margin: 0 0 22px;
  color: #c82333;
  border-left: 5px solid #c82333;
}

.alert {
  padding: 15px;
  margin-bottom: 22px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}

.home-doctors .common-doctor h5 small, .postione {
  color: #008fd5;
  font-weight: 700;
  font-size: 1em;
  font-style: italic;
}

.home-doctors .common-doctor ul {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  margin-top: 10em;
  opacity: 0;
  z-index: 1;
}

.common-doctor .fa {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70%;
}

.common-doctor .fa-phone {
  background-image: url(../img/icons/icon-call.svg);
}

.common-doctor .fa-envelope {
  background-image: url(../img/icons/icon-edit.svg);
}

.home-doctors .common-doctor li a {
  position: relative;
  display: block;
  background: #008fd5;
  color: #fff !important;
  padding: .85em;
  border: 5px solid rgba(255, 255, 255, 0.33);
}

.animate {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}

.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.doc-img {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
}

.doc-item {
  position: relative;
  overflow: hidden;
}

.doc-item:hover .doc-img {
  -webkit-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  opacity: .7;
}

.doc-item:hover .social-lists {
  margin-top: -2em;
  opacity: 1;
}

@media (max-width: 1199px) {
  span.one-second-block-black {
    font-size: 40px;
  }
  div.article-second-cta-text-title {
    margin-top: 7px;
    margin-bottom: 20px;
  }
  div.article-second-cta-text-desc {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .cta-second-text-box {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .article-second-cta-buttons a {
    font-size: 2rem;
  }
}

.new-archive [id*="entry-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.new-archive [id*="entry-"] [class*='col'] {
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.block-content-title a {
  color: #579fdc;
  font-size: 20px;
}

.block-content-text {
  color: #979799;
  line-height: 1.7;
}

#new-archive-row hr {
  margin-top: 42px;
  margin-bottom: 42px;
}

@media (max-width: 575px) {
  .new-archive [id*="entry-"] {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #new-archive-row, div#social-buttons {
    text-align: center;
  }
}

h1.entry-title {
  font-weight: 700;
}

[id*='question-'] h2 {
  margin-top: 1.3rem;
  line-height: 1.1;
}

[id*='question-'] p {
  line-height: 1.7;
}

.answer-text p {
  line-height: 1.7;
}

.answer-text h2, .answer-text h3 {
  margin-top: 1.3rem;
}

.answer-text ol li {
  margin-bottom: 1rem;
}

[id*='review-media'] img {
  display: block;
  margin-bottom: 1.5rem;
}

.type-otzyvy {
  margin-bottom: 1.2rem;
}

.type-otzyvy h2 {
  margin-top: 1.3rem;
}

.type-otzyvy .row {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.table {
  border-bottom: 1px solid #ddd;
  margin: 0 0 1.625em;
  width: 100%;
}

@media (max-width: 399px) {
  .table {
    word-break: break-word;
  }
}

.table > caption + thead > tr:first-child > td, .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th {
  border-top: none;
}

.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

#ourteams img {
  border-radius: 50%;
}

#ourteams > [class*='col-'] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

#ourteams > [class*='col-'] > :first-child {
  padding-right: 15px;
  padding-bottom: 15px;
}

.bubble-1 {
  background: #f5f5f5;
  color: #555;
}

.bubble-1, .bubble-2 {
  margin: 20px 0 40px;
  padding: 15px 20px;
  position: relative;
}

.bubble-1 cite {
  color: #272727;
}

.bubble-1 cite, .bubble-2 cite {
  bottom: -25px;
  display: block;
  font-size: 13px;
  font-weight: 500;
  height: 25px;
  left: 26px;
  line-height: 32px;
  padding-left: 40px;
  position: absolute;
}

.gkblock-2 {
  background: #fffef4;
  border: 1px solid #eae8cc;
}

.gkblock-1, .gkblock-2, .gkblock-3 {
  margin: 36px 0;
  padding: 15px 20px;
}

#smi-continer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1rem;
}

@media (max-width: 575px) {
  #smi-continer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#smi-media-box {
  padding-right: 15px;
  padding-bottom: 15px;
}

@media (max-width: 575px) {
  #smi-media-box {
    padding-right: 0;
  }
}

#smi-media-box iframe {
  max-width: 100%;
}

#smi-source {
  font-size: 1.4em;
  color: #579fdc;
}

#smi-title {
  font-size: 20px;
}

#smi-content {
  font-size: 15px;
}

#smi-title, #smi-source {
  text-align: center;
  font-weight: 700;
}

.ourprice {
  margin-top: 25px;
}

.ourprice thead {
  -webkit-box-shadow: 0 3px 4px rgba(154, 154, 154, 0.35);
          box-shadow: 0 3px 4px rgba(154, 154, 154, 0.35);
  background-color: #4ba0dd;
  color: #fff;
  font-size: 24px;
  font-weight: 100;
}

.cooltable thead {
  -webkit-box-shadow: 0 3px 4px rgba(154, 154, 154, 0.35);
          box-shadow: 0 3px 4px rgba(154, 154, 154, 0.35);
  background-color: #4ba0dd;
  color: #fff;
}

.cooltable thead > tr > th:first-child {
  vertical-align: top;
}

.cooltable caption {
  color: #000111;
  font-weight: 500;
}

.cooltable tbody > tr > th {
  font-weight: 400;
}

.cooltable thead > tr, .ourprice thead > tr {
  padding-bottom: 10px;
  padding-top: 10px;
}

.ourprice tbody > tr > td, .ourprice tbody > tr > th, .ourprice thead > tr > th {
  text-align: center;
}

.cooltable thead > tr > th, .ourprice thead > tr > th {
  font-weight: 100;
  margin-bottom: 13px;
  margin-top: 13px;
}

.cooltable tbody > tr:nth-of-type(odd), .ourprice tbody > tr:nth-of-type(odd) {
  background-color: #eee;
}

.cooltable tbody > tr:hover, .ourprice tbody > tr:hover {
  background-color: #979799;
  color: #fff;
}

.cooltable tbody > tr > td, .cooltable thead > tr > th {
  text-align: center;
}

.ourprice thead > tr > th:nth-child(2) {
  text-align: left;
}

.ourprice tbody > tr > td:nth-child(2) {
  border-right: 1px solid #979799;
  border-left: 1px solid #979799;
  width: 35.8235295%;
  text-align: left;
}

.ourprice tbody > tr > th {
  width: 3.1764705%;
  font-weight: 400;
}

.ourprice tbody > tr > td:last-child {
  width: 16%;
}

div#discount-title {
  font-size: 28px;
  color: #fff;
  -webkit-box-shadow: 0 3px 4px rgba(154, 154, 154, 0.35);
          box-shadow: 0 3px 4px rgba(154, 154, 154, 0.35);
  background-color: #579fdc;
  text-align: center;
}

div#discount-title span {
  font-weight: 700;
  margin-right: 5px;
  margin-left: 5px;
  font-size: 30px;
  padding-bottom: 1px;
}

div#discount-text {
  color: #818181;
  margin-top: 9px;
  font-size: 28px;
  text-align: center;
}

div#discount-text span {
  color: #f85852;
  font-weight: 900;
  font-size: 30px;
  text-transform: uppercase;
}

.discount {
  margin-bottom: 2rem;
}

.discount-textbtn {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
  border-radius: 0;
  background-color: #4ba0dd;
}

div#discount-text a, div#discount-text a:hover, div#discount-text a:visited {
  color: #fff !important;
}

#promocode {
  display: none;
}

#otzyvy-continer cite {
  color: #98989a;
  text-align: right;
  display: block;
  margin-top: 5px;
  margin-bottom: 50px;
  font-size: 16px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination .page-item {
  padding: 5px;
}

.table-responsive {
  overflow-x: auto;
  min-height: .01%;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 16.5px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
  }
}

#post-368 iframe {
  margin-bottom: 1.5rem;
}

.featured {
  margin: 20px 0;
}

p.subsection-title {
  font-size: 20px;
  font-weight: 700;
}

#post-31 .thumbnail {
  display: block;
  padding: 3px;
  height: auto;
  margin-bottom: 22px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #4ba0dd !important;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
}

#footerArticleInfo {
  margin-top: 45px;
}

.sidebar-3dtour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../img/call-to-action-back.webp);
  background-repeat: no-repeat;
  max-height: 289px;
  background-size: cover;
  padding: 30px;
  margin: 40px auto;
}

.sidebar-3dtour p {
  color: #fff;
}

.tour-icon img {
  max-height: 70px;
  display: block;
  margin: 0 auto 20px;
  -webkit-animation: pulsate 1.5s infinite;
          animation: pulsate 1.5s infinite;
}

@-webkit-keyframes pulsate {
  0%,
  100% {
    -webkit-transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
  }
}
/*# sourceMappingURL=style.css.map */