@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-SemiBold.eot');
	src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
		url('Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('Montserrat-SemiBold.woff') format('woff'),
		url('Montserrat-SemiBold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
  font-display:swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-Bold.eot');
	src: local('Montserrat Bold'), local('Montserrat-Bold'),
		url('Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
		url('Montserrat-Bold.woff') format('woff'),
		url('Montserrat-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
  font-display:swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-Regular.eot');
	src: local('Montserrat Regular'), local('Montserrat-Regular'),
		url('Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		url('Montserrat-Regular.woff') format('woff'),
		url('Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
  font-display:swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('Montserrat-Medium.eot');
	src: local('Montserrat Medium'), local('Montserrat-Medium'),
		url('Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
		url('Montserrat-Medium.woff') format('woff'),
		url('Montserrat-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
  font-display:swap;
}

:root {
  --c-main: #393939;
  --c-gradient: linear-gradient(72.81deg, #FF5700 0%, #FFB43A 40.89%, #FFCC49 99.38%);
  --c-orange: #FFB43A
}
input:not([type=checkbox]):not([type=radio]),
textarea, 
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

* {
  box-sizing: border-box
}
li {
  list-style: none
}
textarea {
 resize:none
}
input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
 color:#8C8E94;
 font-size:14px;
}
input::-moz-placeholder,textarea::-moz-placeholder {
 color:#8C8E94;
 font-size:14px;
}
input:-ms-input-placeholder,textarea:-ms-input-placeholder {
 color:#8C8E94;
 font-size:14px;
}
a {
  text-decoration: none;
}
button, .slick-arrow {
  outline: none!important;
  background: none;
  padding: 0;
  font-size: 0;
}
body,html {
 font-size:16px;
 min-height:100vh;
 min-width:320px;
 overflow-x:hidden;
 font-family:Montserrat, arial;
 color: var(--c-main);
 position:relative;
 word-wrap:break-word;
 -webkit-font-smoothing:antialiased;
 -moz-osx-font-smoothing:grayscale;
 -ms-text-size-adjust:100%;
 -moz-text-size-adjust:100%;
 -webkit-text-size-adjust:100%;
 -webkit-tap-highlight-color:transparent;
 -ms-touch-action:manipulation;
 touch-action:manipulation;
 line-height: 1.5;
}

.toggle-menu {
 display:none;
 width:28px;
 height:21px;

 position:absolute;
}
.toggle-menu span:after,.toggle-menu span:before {
 content:"";
 position:absolute;
 left:0;
 top:9px
}
.toggle-menu span:after {
 top:18px
}
.toggle-menu span {
 position:relative;
 display:block
}
.toggle-menu span,.toggle-menu span:after,.toggle-menu span:before {
 width:100%;
 height:4px;
 background-color:#fff;
 -webkit-transition:all .3s;
 transition:all .3s;
 -webkit-backface-visibility:hidden;
 backface-visibility:hidden;
 -webkit-border-radius:2px;
 border-radius:2px
}

.toggle-menu.on span {
 background-color:transparent
}
.toggle-menu.on span:before {
 -webkit-transform:rotate(45deg) translate(-1px,0);
 -ms-transform:rotate(45deg) translate(-1px,0);
 transform:rotate(45deg) translate(-1px,0)
}
.toggle-menu.on span:after {
 -webkit-transform:rotate(-45deg) translate(6px,-7px);
 -ms-transform:rotate(-45deg) translate(6px,-7px);
 transform:rotate(-45deg) translate(6px,-7px)
}
.btn {
 -webkit-appearance:none;
  transition:all .5s ease;
  height: 50px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  padding: 0 30px;
  position: relative;
  overflow: hidden;
}
.btn span {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 600;
}
.btn:after {
  content: '';
  position: absolute;
  border-radius: 30px;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  transition: width .3s ease;
}
.btn:hover:after {
  width: 100%;
}
.btn--orange {
  background: var(--c-gradient);
  color:#fff!important;
}
.btn--orange:after {
  background: rgba(255, 87, 0, 1);
}

.scroll {
  transition: all .5s ease;
  z-index: 11111;
  position: fixed;
  -webkit-box-shadow: 0 0 5px #000;
  box-shadow: 0 0 5px #000;
  width: 60px;
  height: 60px;
  right: -65px;
  bottom: 20px;
  -webkit-border-radius: 25px;
  border-radius: 30px;
  background-color: rgba(255, 180, 58, 1);
  opacity: .5;
  text-align: center;
  line-height: 1;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.scroll:hover {
  opacity: 1;
}
.scroll.active {
  right: 30px
}

section, footer, header {
  position: relative;
}
a {
  transition:all .3s ease
}
a:hover {
  text-decoration: none;
}
.btn:focus, .btn:active {
  outline:none!important;
  box-shadow:none!important;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1150px;
  position: relative;
}
.c-orange {
  background: linear-gradient(72.81deg, #FF5700 0%, #FFB43A 40.89%, #FFCC49 99.38%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.section__hh {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 30px;
}


.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 111;
}
.header .row {
  height: 84px;
  align-items: center;
  justify-content: space-between;
}
.header__desc {
  line-height: 1.6;
}
.header__tel {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--c-main);
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.header__tel:hover {
  color:var(--c-orange)
}
.header__contacts {
  display: flex;
  align-items: center;
}
body {
  padding-top: 84px;
}

.first {
  background-image: url(../img/first-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  z-index: 1;
}
.first__block1-wrap {
  width: 47%;
  min-width: 47%;
  margin-top: 120px;
}
.section__bordered {
  border-radius: 20px;
  background: var(--c-gradient);
  overflow: hidden;
  padding: 1px;
}
.first__block1 {
  background: #FFF7E6;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 20px;
}
.first__block1-hh {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 5px;
}
.first__block1-text {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  margin-top: 7px;
  text-align: center;
}
.first__block1-desc {
  text-align: center;
  margin-top: 5px;
}
.first__block2-wrap {
  width: 39%;
  min-width: 39%;
  margin-left: auto;
}
.first__block2 {
  padding: 30px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 20px;
}
.first__block2-hh {
  font-size: 34px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.first__block2-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}
.list {
  margin-bottom: 30px;
}
.list li {
  padding-left: 20px;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
}
.list li:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-gradient);
  top: 7px;
  left: 0;
}
.form__line {
  margin-bottom: 10px;
  display: block;
}
.form__line input {
  width: 100%;
  height: 42px;
  border-radius: 30px;
  background: #fff;
  padding: 0 20px;
  font-size: 14px;
}
.form__line input:focus {
  background: #FFF7E6;
}
.btn--small {
  height: 40px;
  padding: 0 20px;
}
.form__ps {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.form__footer {
  padding-left: 30px;
}
.checkbox-wrap {
  margin-bottom: 0;
  display: block;
  cursor: pointer;
  padding-left: 35px;
  position: relative;
}
.checkbox {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--c-gradient);
  border-radius: 3px;
  overflow: hidden;
  top: 2px;
  left: 0;
}
.checkbox:after {
  content: '';
  position: absolute;
  background-color: #fff;
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  border-radius: 3px;
}
.checkbox-wrap span {
  color: #8C8E94;
  font-size: 14px;
  display: block;
  line-height: 1.5;
}
.checkbox-wrap input:checked + .checkbox:after {
  background: var(--c-gradient);
}
.checkbox-wrap input:checked + .checkbox + span {
  color:var(--c-main)
}
.padded {
  padding: 60px 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}
.swiper-button-next {
  background-image: url(../img/icon-arr.svg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  top: 50%;
  right: -13px;
  margin: 0;
  margin-top: -50px;
  transition: filter .3s ease;
}
.swiper-button-prev {
  background-image: url(../img/icon-arr.svg);
  transform: rotate(180deg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  top: 50%;
  left: -13px;
  margin: 0;
  margin-top: -50px;
  transition: filter .3s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  filter: brightness(.2)
}
.doctor__slider, .quote__slider {
  padding: 0 50px;
  margin-left: -50px;
  margin-right: -50px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background: var(--c-main)!important;
}
.swiper-pagination {
  position: relative;
  width: 100%;
  transform: none;
  margin-top: 30px;
}
.doctor__slide {
  display: flex;
  align-items: center;
}
.doctor__slide-img {
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 15px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  height: 480px;
  width: 355px;
  min-width: 355px;
}
.doctor__slide-img img {
  max-width: 100%;
  max-height: 100%;
}
.doctor__slide-desc {
  padding-left: 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doctor__slide-title {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.2;
}
.doctor__slide-proff {
  color: #8C8E94;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 25px;
  margin-top: 10px;
}
.doctor__slide-block {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
}
.doctor__slide-block-text {
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  padding-left: 20px;
}
.doctor__ball1 {
  background: #FFCC49;
  filter: blur(120px);
  border-radius: 100px;
  transform: matrix(0.84, -0.53, -0.54, -0.85, 0, 0);
  width: 350px;
  height: 250px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  margin-left: -740px;
}
.doctor__ball2 {
  background: #FFCC49;
  filter: blur(120px);
  border-radius: 100px;
  transform: matrix(0.84, -0.53, -0.54, -0.85, 0, 0);
  width: 410px;
  height: 300px;
  position: absolute;
  top: 100px;
  right: 50%;
  margin-right: -790px;
}
body {
  overflow: hidden;
}
.section__hh span {
  font-weight: bold;
}
section p {
  line-height: 1.6;
  margin-bottom: 15px;
}
.service__el {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
  align-items: start;
  position: relative;
  padding-right: 40px;
}
.service__el-label {
  margin-top: auto;
  height: 30px;
  border-radius: 30px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
.service__el-wrap {
  margin-top: 90px;
}
.service__el-title {
  font-weight: bold;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}
.service__el-img {
  position: absolute;
  top: 0;
  transform: translateY(-40%);
  right: -30px;
}
.service__el p {
  position: relative;
}
.service__el-discount {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-gradient);
  top: 10px;
  right: 10px;
}
.service__el-discount:after {
  content: '';
  position: absolute;
  background-color: #fff;
  width: 66px;
  height: 66px;
  left: 1px;
  top: 3px;
  border-radius: 50%;
}
.service__el-discount span {
  width: 66px;
  height: 66px;
  position: absolute;
  left: 1px;
  top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: bold;
  z-index: 1;
  border-radius: 50%;
}
.service__el .section__bordered {
  margin-top: auto;
}


.plus .section__hh {
  background: #FFF7E6;
  border-radius: 20px;
  padding: 30px;
}
.plus__img {
  position: absolute;
  top: -40px;
  right: 50%;
  margin-right: -700px;
  z-index: 1;
}
.plus__el {
  margin-top: 40px;
  display: flex;
}
.plus__el-img {
  width: 200px;
  min-width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--c-gradient);
  padding: 3px;
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.plus__el-img-wrap {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.plus__el-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 25px;
}
.plus__el p {
  margin-bottom: 0;
}

.feedback {
  background: var(--c-gradient);
  padding: 30px 0;
}
.feedback__img {
  height: 100%;
  background-image: url(../img/feedback-img.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
.why__img {
  position: absolute;
  bottom: -50px;
  right: 50%;
  margin-right: -840px;
}
.quote__slide {
  border-radius: 20px;
  background: #FFF7E6;
  padding: 30px;
  height: 100%;
}
.quote__slide-top {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.quote__slide-ava {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.quote__slide-title {
  padding-left: 20px;
  line-height: 1.5;
  font-weight: bold;
}
.quote__slide p {
  margin-bottom: 0;
}
.quote .swiper-slide {
  opacity: 0;
  transition: opacity .3s ease;
}
.quote .swiper-slide-active, .quote .swiper-slide-next {
  opacity: 1;
}
.quote .swiper-button-next {
  margin-top: -20px;
}

.feedback__price-old {
  position: relative;
  font-size: 34px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
}
.feedback__price-old:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--c-main);
  left: 0;
  top: 10px;
  transform: rotate(-8deg);
  opacity: 0.6;
}
.feedback__img {
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: start;
}
.feedback__price {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
}
.mt-a {
  margin-top: auto;
}
.feedback__img > * {
  position: relative;
}
.feedback__img:before {
  content: '';
  position: absolute;
  background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  top: 0;
  bottom: 0;
  left: 0;
  width: 90%;
  border-radius: 20px 0 0 20px;
}

.skill__el img {
  max-width: 100%;
  max-height: 250px;
  border: 5px solid #FFCC49;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: block;
  width: auto;
  height: auto;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
}
.skill__el{
  display: block;
  max-height: 250px;
}
#map {
  height: 420px;
}
.baloon-el {
  background: #f2a55a;
  padding: 25px 15px;
  width: 240px;
  font-weight: 500;
  color:#fff;
  line-height: 1.3;
  border-radius: 20px;
  position: relative;
  top: -115px;
  left: -120px;
}
.baloon-el:after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 20px solid transparent;
  border-top: 20px solid #f2a55a;
  bottom: -40px;
  left: 50%;
  margin-left: -20px;
}

.last__block {
  border-radius: 20px;
  background: #FFF7E6;
  padding: 30px;
  margin-bottom: 90px;
}
.last__block .row {
  height: 100%;
  align-items: center;
  justify-content: center;
}
.last__desc {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
}
.last__tel {
  font-size: 64px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.3;
  border-bottom: 3px solid transparent
}
.row > * {
  padding: 0 15px;
}
.last__tel:hover {
  border-color: var(--c-orange)
}
.last__img {
  position: absolute;
  bottom: 0;
  right: 60%;
  margin-right: -650px;
  max-height: 88%;
}
.last__bg {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #FFCC49;
  filter: blur(110px);
  border-radius: 100px;
  transform: rotate(118.65deg);
  bottom: -320px;
  left: 50%;
  margin-left: -840px;
  position: absolute;
}
.footer {
  background: var(--c-gradient);
  padding-top: 60px;
  padding-bottom: 20px;
  color:#fff;
}
.footer__sign {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  padding-top: 10px;
  font-size: 30px;
  text-align: center;
}
.btn b {
  font-weight:600;
}
.swiper-slide {
  opacity: 0;
  transition: opacity .3s ease;
}
.swiper-slide-active {
  opacity: 1;
}
.skill__slider {
  display: none;
}
form .btn {
  min-width: 110px;
}


@media only screen and (min-width: 1199px) {
  ::-webkit-scrollbar { width: 10px; height: 10px;}
  ::-webkit-scrollbar-button {  background-color: #222; }
  ::-webkit-scrollbar-track {  background-color: #0f0f11;}
  ::-webkit-scrollbar-track-piece { background-color: #222;}
  ::-webkit-scrollbar-thumb { height: 50px; background-color: var(--c-orange);}
  ::-webkit-scrollbar-corner { background-color: #999;}
  ::-webkit-resizer { background-color: #666;}
  html {
    scrollbar-color: var(--c-orange) #222; /* thumb and track color */
    scrollbar-width: thin;
  }
}

@media only screen and (max-width: 1300px) {
  .doctor__slider, .quote__slider {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 1199px) {
  .first__block1-wrap, .first__block2-wrap {
    width: 50%;
  }
  .service__el-title {
    padding-right: 30px;
  }
  .service__el {
    padding: 15px;
    padding-top: 25px;
  }
  .service__el-img {
    max-height: 120px;
    max-width: 160px;
    right: 0!important;
    transform: translateY(-50%);
  }
}

@media only screen and (max-width: 1100px) {
  .plus .section__hh {
    padding-right: 150px;
  }
  .plus__img {
    width: 300px;
    margin-right: 0;
    right: -50px;
  }
  .service__el-wrap {
    width: 50%;
    flex-grow:1;
    min-width: 50%;
  }
  .header__desc {
    font-size: 12px;
  }
  .doctor__slide-title {
    font-size: 26px;
  }
  .doctor__slide-proff {
    font-size: 18px;
  }
  .doctor__slide-block-text{
    font-size: 24px;
  }
  .doctor__slide-block {
    padding: 15px;
  }
  .doctor__slide-img {
    width: 300px;
    min-width: 300px;
    height: 370px;
  }
}

@media only screen and (max-width: 991px) {
  .skill__slider {
    display: block;
  }
  .skill .row {
    display: none;
  }
  .feedback__img {
    height: 75vw;
    margin-top: 15px;
  }
  .section__hh {
    font-size: 28px;
  }
  .doctor__slider, .quote__slider, .skill__slider {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .swiper-slide {
    opacity: 1!important;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .doctor__slider, .quote__slider {
    padding: 0;
  }
  .swiper-slide {
    width: 85vw;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none!important;
  }
  .doctor__slide-block {
    padding: 0;
    border-radius: 0;
    display: block;
    text-align: center;
  }
  .doctor__slide-block-text {
    padding-left: 0;
    font-size: 34px;
    padding-top: 10px;
  }
  .doctor__slide-title, .doctor__slide-proff {
    font-size: 16px;
  }
  .doctor__slide-proff {
    margin-bottom: 0;
  }
  .doctor__slide-text {
    text-align: center;
    background: var(--c-gradient);
    border-radius: 15px;
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
  }
  .doctor__slide-desc .section__bordered {
    background: #fff;
    border-radius: 0;
    padding: 0;
  }
  .doctor__slide-text:after {
    content: '';
    position: absolute;
    border-radius: 15px;
    background-color: #fff;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
  }
  .doctor__slide  * {
    position: relative;
    z-index: 1;
  }
  .doctor__slide-img {
    border-radius: 0;
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 55vw;
    min-width: 100%;
  }
  .doctor__slide {
    display: block;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    background-color: #fff;
    border-radius: 20px;
    padding: 25px;
  }
  .doctor__slide-desc {
    padding-left: 0;
  }
  .first__block1-wrap {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .first__block1-hh {
    font-size: 34px;
  }
  .first__block1-text {
    font-size: 24px;
  }
  .first__block1-wrap, .first__block2-wrap {
    width: 100%;
  }
  .header__desc {
    display: none;
  }
  .header__logo img {
    height: 40px;
  }
  .btn {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }
  .header .row {
    height: 60px;
  }
  body {
    padding-top: 60px;
  }
  .container {
    padding: 0 15px;
  }
  .skill .swiper-slide {
    width: auto;
  }
  .last__tel {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .last__tel {
    text-align: center;
  }
  .last__tel {
    font-size: 24px;
  }
  .last .section__hh {
    text-align: center!important;
  }
  .plus .section__hh {
    padding-top: 250px;
  }
  .plus__img {
    top: 0;
    right: 0;
  }
  .plus .section__hh {
    padding-right: 30px;
  }
  .service__el-discount {
    transform: scale(.8);
    top: 0;
    right: 0;
  }
  .service__el-title {
    font-size: 20px;
  }
  .service__el-img {
    max-height: 100px;
    max-width: 130px;
  }
}

@media only screen and (max-width: 640px) {
  .footer__sign {
    font-size: 3vw;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 6.5vw;
  }
  .footer {
    padding-top: 30px;
  }
  .last__block {
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 30px;
  }
  .skill .swiper-slide {
    max-width: 90vw;
  }
  .feedback__img {
    padding: 15px;
  }
  .quote__slide p {
    font-size: 12px;
  }
  .quote__slide-ava {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .quote__slide-title {
    font-size: 14px;
    line-height: 1.2;
    padding-left: 10px;
  }
  .quote__slide-title br {
    display: none;
  }
  .quote__slide {
    padding: 15px;
    border-radius: 15px;
  }
  .quote__slide-top {
    margin-bottom: 15px;
  }
  .feedback__img {
    height: 90vw;
    min-height: 370px;
    border-radius: 15px;
  }
  .feedback__img:before {
    border-radius: 15px;
  }
  .plus__el-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .plus__el-img {
    width: 130px;
    min-width: 130px;
    height: 130px;
    padding: 1px;
    margin-right: 15px;
  }
  .plus__el-img-wrap {
    width: 123px;
    height: 123px;
  }
  .plus .section__hh {
    padding: 15px;
    border-radius: 15px;
    padding-top: 260px;
    margin-top: 40px;
  }
  .plus__img {
    top: 40px;
  }
  .service__el {
    border-radius: 15px;
  }
  .service__el-wrap {
    width: 100%;
    margin-top: 60px;
  }
  .form__line input {
    border-radius: 15px;
  }
  .swiper-pagination {
    display: none!important;
  }
  .padded {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .section__hh {
    font-size: 24px;
  }
  .doctor__slide {
    padding-top: 10px;
  }
  .doctor__slide-img {
    height: 65vw;
  }
  .swiper-slide {
    width: calc(100vw - 40px);
  }
  .first__block1-wrap {
    margin-bottom: 15px;
  }
  .header__tel {
    font-size: 0;
    margin-right: 25px;
  }
  .header__tel img {
    margin-right: 0!important;
  }
  .header .btn b {
    display: none;
  }
  .first__block1, .first__block2 {
    padding: 15px;
    border-radius: 15px;
  }
  .section__bordered {
    border-radius: 15px;
  }
  .first__block2-hh, .first__block2-text {
    text-align: center;
  }
  .form__ps {
    display: block;
  }
  .btn {
    width: 100%;
  }
  .form__footer {
    padding-left: 0;
    margin-top: 15px;
  }
  .first__block2-hh {
    font-size: 28px;
  }
  .first__block2-text, .first__block1-text {
    font-size: 20px;
  }
  .first__block1-desc {
    font-size: 12px;
  }
  .list li, section p {
    font-size: 14px;
    line-height: 1.3;
  }
  .list li:before {
    top: 5px;
  }
}

@media only screen and (max-width: 370px) {
  .plus__el {
    display: block;
    text-align: center;
  }
  .plus__el-img {
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .doctor__slide{
    padding: 15px;
  }
  .header__logo img {
    height: 25px;
  }
  .doctor__slide-block-text {
    font-size: 24px;
  }
}


/* Кнопка Чат в телеграм */
.chat-telegram {
    position: fixed;
    bottom: 16px;
    right: 125px;
    z-index: 99;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;

    font-size: 14px;

    padding: 4px;
    background: #FFFFFF;
    border: 2px solid #2298D5;
    color: #2298D5;
    border-radius: 10px;

    transition: all 0.3s;
}
.chat-telegram:hover {
    box-shadow: 0 0 10px 0 #30A8DE;
}

.chat-telegram__icon {
    display: block;
}
.chat-telegram__text {
    text-align: center;
    color: #2298D5;
    padding: 0 12px;
    font-weight: 500;
}
@media only screen and (max-width: 575px) {
    .chat-telegram {
        flex-direction: column-reverse;
        right: 2px;
        top: 50%;
        transform: translate(0px, -50%);
        bottom: inherit;
    }
    .chat-telegram__text {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        display: block;
        text-orientation: mixed;
        padding: 12px 0;
    }

}