@font-face {
  font-family: "RobotoSlabReg";
  src: url(fonts/Roboto_Slab/RobotoSlab-Regular.ttf);
}

@font-face {
  font-family: "RobotoSlabLight";
  src: url(fonts/Roboto_Slab/RobotoSlab-Light.ttf);
}

@font-face {
  font-family: "UbuntuRegular";
  src: url(fonts/Ubuntu/Ubuntu-Regular.ttf);
}

@font-face {
  font-family: "UbuntuLight";
  src: url(fonts/Ubuntu/Ubuntu-Light.ttf);
}

@font-face {
  font-family: "UbuntuBold";
  src: url(fonts/Ubuntu/Ubuntu-Bold.ttf);
}

@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
  50% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0.8;
  }
  to {
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
}

@keyframes slideDown {
  from {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
  50% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0.8;
  }
  to {
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
}

@-webkit-keyframes arrowSlide {
  from {
    bottom: -15px;
  }
  50% {
    bottom: -25px;
    opacity: 1;
  }
  to {
    bottom: -30px;
  }
}

@keyframes arrowSlide {
  from {
    bottom: -15px;
  }
  50% {
    bottom: -25px;
    opacity: 1;
  }
  to {
    bottom: -30px;
  }
}

* {
  margin: 0;
  padding: 0;
}

.active {
  color: rgba(27, 152, 224, 0.8);
}

.red{
  color: red;
}

h1, h2, h3, h4, p, a {
  color: #333333;
  font-family: "UbuntuRegular";
}

.hidden-mobile-block {
  display: none;
}

.nav-inside-menu-mobile {
  display: none;
}

.nav-block-class {
  width: 100%;
  min-height: 100px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
}

.nav-fix-box {
  display: none;
  position: fixed;
  width: 100%;
  min-height: 100px;
  background-color: rgba(255, 255, 255, 0.65);
  top: 0;
  left: 0;
  z-index: 500;
}

.nav-inside {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.nav-inside-menu {
  width: 33%;
  min-height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-inside-menu a {
  text-decoration: none;
  font-size: 18px;
  margin-right: 16px;
  font-family: "UbuntuRegular";
}

.nav-inside-menu a:hover {
  color: #31acdd;
}

.nav-inside-menu a:first-child {
  margin-left: 5px;
}

.nav-inside-menu a:last-child {
  margin-right: 0;
}

.nav-inside-logo {
  width: 33%;
  height: 100px;
  text-align: center;
}

.nav-inside-logo img {
  margin-top: 5px;
}

.nav-inside-tel {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100px;
  text-align: center;
}

.nav-inside-tel p {
  font-size: 18px;
  margin-top: 8px;
  font-family: "UbuntuRegular";
}

header {
  width: 100%;
  min-height: 700px;
  height: 100vh;
  background: url(img/headerPic.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.down-animation {
  width: 30px;
  height: 80px;
  border: 3px solid #0b159c;
  border-radius: 20px;
  margin: 0 auto;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
}

.line-block {
  width: 4px;
  height: 35px;
  background-color: #0b159c;
  border-radius: 5px;
  margin: 0 auto;
  opacity: 0;
  -webkit-animation: slideDown 1.2s infinite linear;
          animation: slideDown 1.2s infinite linear;
}

.arrow-block {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  width: 12px;
  margin: 0 auto;
  height: 12px;
  border-right: 4px solid #0b159c;
  border-bottom: 4px solid #0b159c;
  border-top: 4px solid transparent;
  border-left: 4px solid transparent;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  -webkit-animation: arrowSlide 1.2s infinite linear;
          animation: arrowSlide 1.2s infinite linear;
}

.news-block {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.news-block__content{
  position: relative;
  width: 70%;
  height: 300px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box;
  top: 30%;
}

.content__info_1{
  width: 350px;
  height: 120px;
  background-color: #f0f9fe;
  border-radius: 10px;
  padding: 20px 10px 30px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
}
.content__info_1::after{
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #f0f9fe;
  border-radius: 20px 10px 0;
  transform: rotate(45deg);
  position: absolute;
  bottom: -13px;
  left: 7px;
}

.content__info_1 p{
  font-size: 21px;
  z-index: 100;
}

main {
  width: 100%;
  min-height: 1000px;
  background-color: rgba(66, 188, 255, 0.08);
  -webkit-box-shadow: 0 -25px 25px 5px white;
          box-shadow: 0 -25px 25px 5px white;
}

.main-inside {
  max-width: 1200px;
  margin: auto;
}

.main-inside h1 {
  height: 70px;
  color: white;
  font-size: 50px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 5px;
  border-radius: 50px;
  background: rgba(27, 152, 224, 0.8);
  font-family: "UbuntuBold";
}

.main-inside h2 {
  width: 100%;
  margin: 20px auto;
  text-align: center;
  font-size: 36px;
  padding: 10px 0;
  color: white;
  background-color: rgba(27, 152, 224, 0.8);
  border-radius: 50px;
  font-family: "UbuntuBold";
}

.about-us-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 300px;
}

.about-us-img {
  width: 50%;
  height: 400px;
  margin: 28px 10px 10px;
  background: url(img/aboutPic.jpg) no-repeat left;
  background-size: cover;
  border-radius: 5px;
  border: 1px solid rgba(27, 152, 224, 0.8);
  -webkit-box-shadow: 5px 10px 15px 5px lightgrey;
          box-shadow: 5px 10px 15px 5px lightgrey;
}

.about-us-info {
  width: 60%;
  padding-top: 15px;
  height: auto;
  text-align: center;
}

.about-us-info h2 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  margin-top: 20px;
  font-family: "UbuntuBold";
}

.about-us-info p {
  width: 80%;
  font-size: 18px;
  margin: auto;
}

.special-header {
  font-size: 32px !important;
  font-family: "UbuntuBold";
  padding: 25px 0;
}

.advant-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  min-height: 500px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.advant-block-element {
  width: 45%;
  min-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: center;
  margin-bottom: 30px;
}

.advant-block-element img {
  margin: 0 auto;
}

.advant-block-element h3 {
  margin: 15px auto;
  font-family: "UbuntuBold";
}

.advant-block-element p {
  padding: 0 20px;
}

.contact-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 400px;
}

.contact-block form {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  margin-top: 15px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  position: relative;
}

.contact-block form label {
  width: auto;
  font-size: 22px;
  font-family: "UbuntuLight";
}

.contact-block form input {
  width: auto;
  font-size: 20px;
  height: 40px;
  color: #333333;
  margin: 10px 0;
  padding-left: 10px;
  border-radius: 5px;
  border: 1px solid black;
}

.contact-block form input:focus {
  border: 1px solid rgba(27, 152, 224, 0.8);
}

.contact-block form textarea {
  width: auto;
  font-size: 20px;
  color: #333333;
  border-radius: 5px;
  border: 1px solid black;
  margin: 10px 0;
  padding-left: 10px;
}

.contact-block form textarea:focus {
  border: 1px solid rgba(27, 152, 224, 0.8);
}

.contact-block form button {
  width: 250px;
  height: 60px;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
  color: white;
  background-color: #0b159c;
  border: 0;
  border-radius: 5px;
  font-family: "UbuntuRegular";
}

.contact-block form button:hover {
  background-color: rgba(27, 152, 224, 0.8);
}

.contact-block form button:active {
  -webkit-transform: translate(2px, 2px);
          transform: translate(2px, 2px);
}

::-webkit-input-placeholder {
  font-size: 20px;
}

:-ms-input-placeholder {
  font-size: 20px;
}

::-ms-input-placeholder {
  font-size: 20px;
}

::placeholder {
  font-size: 20px;
}

.map-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 1200px;
  text-align: center;
  padding: 15px 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.block-with-map {
  width: 45%;
}

.block-with-map iframe {
  border: 1px solid #333333;
}

.time-adress-block {
  width: 45%;
}

.time-adress-block h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.adress-here {
  font-size: 22px;
  margin: 15px 0;
  color: red;
}

.time-of-working {
  font-size: 22px;
  margin: 15px 0;
}

.time-of-working span {
  color: red;
}

footer {
  min-height: 120px;
  padding-top: 15px;
  width: 100%;
  text-align: center;
  background-color: #ededed;
  -webkit-box-shadow: 10px 15px 20px 8px grey;
          box-shadow: 10px 15px 20px 8px grey;
}

.footer-up-block {
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.links-footer-block {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: justify;
  font-size: 18px;
  color: white;
}

.links-footer-block a {
  width: 90px;
}

.links-footer-block a:visited {
  text-decoration: none;
  color: #333333;
}

.logo-footer-block {
  width: 30%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.info-footer {
  width: 30%;
  text-align: right;
}

.info-footer p {
  color: #333333;
  font-size: 20px;
}

.info-footer p span {
  font-size: 18px;
  margin-top: 10px;
}

.footer-bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: column;
  margin-top: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 180px;
  background-color: #ededed;
  /* background-color: #b2b2b2; */
}

.footer-bottom-block span {
  font-size: 18px;
}

.footer-bottom_info-block-1{
  display: flex;
  justify-content: space-around;
}
.info-block-1-left{
  width: 40%;
}
.info-block-1-left p{
  margin: 5px 0;
  text-align: justify;
}
.info-block-1-right{
  width: 40%;
}
.info-block-1-right p{
  font-size: 12px;
  text-align: justify;
}
.footer-bottom_info-block-2{
  padding: 20px 0 5px;
}

.up-button-block {
  width: 0;
  height: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  border-right: 60px inset rgba(0, 0, 0, 0.6);
  border-bottom: 60px inset rgba(0, 0, 0, 0.6);
  border-top: 60px inset transparent;
  border-left: 60px inset transparent;
  cursor: pointer;
  display: none;
}

.up-button-block:hover {
  border-right: 60px inset rgba(27, 152, 224, 0.8);
  border-bottom: 60px inset rgba(27, 152, 224, 0.8);
}

.up-button-block p {
  color: white;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 30px;
  font-size: 22px;
  font-family: "UbuntuBold";
}

.price-main {
  width: 100%;
  background-color: rgba(66, 188, 255, 0.08);
  padding-top: 110px;
  margin: 0 auto;
  margin-bottom: 45px;
}

.price-main h1 {
  color: #333333;
  font-size: 34px;
  text-align: center;
  margin-bottom: 15px;
}

.price-table-box {
  width: 100%;
  background-color: rgba(27, 152, 224, 0.8);
  height: 60px;
  line-height: 60px;
  border: 1px solid #333333;
  border-collapse: collapse;
  text-align: center;
  cursor: pointer;
}

.ever {
  background-color: lightgrey;
}

thead {
  text-align: center;
  font-size: 20px;
  color: red;
  font-family: "UbuntuBold";
}

table {
  width: 100%;
  margin: 0 auto;
  color: #333333;
  font-size: 18px;
  font-family: "UbuntuRegular";
}

table td {
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  border-collapse: collapse;
  padding: 8px 180px;
}

table tr:hover {
  background-color: #0b159c;
  color: white;
  border-radius: 10px;
}

.info-box {
  display: none;
}

.main-services-block {
  width: 100%;
  background-color: rgba(66, 188, 255, 0.08);
}

.main-services {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 120px;
  min-height: 200px;
}

.main-services h1 {
  font-size: 34px;
  color: #333333;
  text-align: center;
  padding-top: 15px;
}

.services-items-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
  padding-bottom: 15px;
}

.services-items-left img {
  -webkit-box-shadow: 5px 10px 15px 5px lightgrey;
          box-shadow: 5px 10px 15px 5px lightgrey;
}

.services-items-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 55px;
  padding-bottom: 15px;
}

.services-items-right img {
  -webkit-box-shadow: -5px 10px 15px 5px lightgrey;
          box-shadow: -5px 10px 15px 5px lightgrey;
}

.inside-service-info {
  margin: 0 30px 10px 30px;
  padding-left: 15px;
}

.inside-service-info h2 {
  text-align: center;
  margin-bottom: 20px;
  background-color: rgba(27, 152, 224, 0.8);
  border-radius: 20px;
  padding: 5px 15px;
  color: white;
}

.inside-service-info p {
  font-size: 18px;
  color: #333333;
  text-align: justify;
}

.inside-service-info ul li {
  font-size: 18px;
  color: #333333;
  font-family: "UbuntuRegular";
}

.inside-service-info span {
  font-family: "UbuntuRegular";
  font-size: 22px;
  color: black;
  margin-bottom: 15px;
}

.license-block {
  width: 1200px;
  min-height: 200px;
  margin: auto;
  margin-top: 110px;
}

.old-license-block p {
  cursor: pointer;
  padding-top: 5px;
  font-size: 20px;
  text-decoration: underline;
}

.old-lic-in {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.old-lic-in img {
  width: 550px;
  height: 700px;
  margin: 15px 15px;
}

.new-license-block p {
  cursor: pointer;
  padding-top: 5px;
  font-size: 20px;
  text-decoration: underline;
}

.new-lic-in {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.new-lic-in img {
  width: 550px;
  height: 700px;
  margin: 15px 15px;
}
/*Med personal Slider*/
.viber-med-doc{
  max-width: 1200px;
  min-height: 10px;
  margin-bottom: 25px;
  margin-top: 15px;
  position: relative;
}
.cross-symbol{
  position: absolute;
  width: 45px;
  height: 45px;
  font-size: 28px;
  line-height: 40px;
  top: -15px;
  right: -15px;
  border-radius: 40px;
  background-color: lightblue;
  text-align: center;
  display: none;
  cursor: pointer;
}
.inside-doc-slider{
  width: 100%;
  height: 400px;
  /* border: 1px solid black; */
  position: relative;
}
.slick-prev{
  position: absolute;
  width: 70px;
  height: 100%;
  top: 0;
  left: 0;
  border: 0px;
  /* background-color: rgba(0,0,0,0.3); */
  background-color: transparent;
  cursor: pointer;
  z-index: 100;
  outline: none;
}
.slick-next{
  position: absolute;
  width: 70px;
  height: 100%;
  top: 0;
  right: 0;
  border: 0px;
  /* background-color: rgba(0,0,0,0.3); */
  background-color: transparent;
  cursor: pointer;
  z-index: 100;
  outline: none;
}
.doctor-info-block{
  width: 370px !important;
  height: 410px;
  margin: 15px;
  padding: 10px;
  box-sizing: border-box;
  background-color: #ededed;
  box-shadow: -1px 2px 13px 0px grey;
}
.doc-photo-block{
  width: 95%;
  height: 250px;
  /* background-color: white; */
  margin: 0 auto;
  margin-bottom: 20px;
}
.doc-photo-block img{
  margin: 0 auto;
  border-radius: 150px;
}

.more-info-butt{
  text-decoration: none;
  display: block;
  color: #333;
  width: 130px;
  height: 35px;
  padding-top: 10px;
  font-size: 20px;
  text-align: center;
  background-color: rgba(27, 152, 224, 0.8);
  border-radius: 5px;
  margin: 10px 15px;
}
.more-info-butt:hover{
  background-color: rgba(250,0,0,0.5);
}

.more-info-block{
  width: 100%;
  min-height: 500px;
  background-color: #ededed;
  border-radius: 10px;
  box-shadow: -1px -1px 15px 0px grey;
  display: flex;
  flex-direction: row;
}
.doctor-photo-block{
  width: 30%;
  height: 400px;
  margin: 15px;
}
.doctor-photo-block img{
  width: 100%;
  height: 400px;
}
.doctor-more-info-block{
  width: 70%;
  min-height: 200px;
  margin: 15px;
}
.doctor-name{
  font-size: 26px;
  margin: 20px 0 5px 0;
}
.doctor-workplace{
  font-size: 18px;
  margin-bottom: 15px;
}
.doctor-work-time{
  font-size: 20px;
  color: red;
  margin-bottom: 30px;
}
.doctor-work-time span{
  color: #333;
  font-weight: bold;
}
.doctor-license-photo{
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: space-around;
}
.doctor-license-photo img{
  width: 250px;
  height: 150px;
  margin-top: 25px;
  cursor: pointer;
  transition: 0.4s;
}
.big-lic-picture{
  position: fixed;
  z-index: 100;
  width: 900px !important;
  height: 600px !important;
  top: 25%;
  left: 30%;
  transition: 0.2s;
}

@media screen and (max-width: 415px) {
  .hidden-mobile-block {
    display: block;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 70px;
    right: -35px;
    width: 100px;
    height: 45px;
    line-height: 35px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    text-align: center;
    font-size: 20px;
    font-family: "UbuntuBold";
    color: white;
    border-radius: 10px;
    z-index: 2000;
    cursor: pointer;
  }
  .line-menu-block {
    width: 35px;
    height: 3px;
    background-color: #0b159c;
    margin-top: 8px;
    border-radius: 10px;
  }
  .nav-inside-menu {
    display: none;
  }
  .nav-inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .nav-inside-logo {
    width: 100%;
  }
  .nav-inside-tel {
    display: none;
  }
  .nav-inside-menu-mobile {
    z-index: 1900;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav-inside-menu-mobile p {
    margin-top: 15px;
    cursor: pointer;
  }
  .nav-inside-menu-mobile a {
    margin-top: 20px;
    font-size: 20px;
    text-decoration: none;
    font-family: "UbuntuRegular";
    color: #333333;
  }
  .nav-inside-menu-mobile a:hover {
    color: rgba(27, 152, 224, 0.8);
  }
  header {
    background-position: center;
    background-size: cover;
  }
  .news-block__content{
    padding: 0;
  }
  .content__info_1{
    width: 250px;
    height: 180px;
  }
  .main-inside h1 {
    border-radius: 0;
  }
  .main-inside h2 {
    border-radius: 0;
  }
  .about-us-block {
    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;
  }
  .about-us-img {
    width: 95%;
    background-position: center;
  }
  .about-us-info {
    width: 95%;
    margin: auto;
  }
  .about-us-info p {
    font-size: 16px;
    width: 100%;
  }
  .advant-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .advant-block-element {
    width: 95%;
    margin: auto;
    margin-bottom: 35px;
  }
  .contact-block {
    width: 90%;
    margin: auto;
  }
  .contact-block form {
    width: 100%;
  }
  .contact-block form button {
    width: auto;
  }
  .map-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-with-map {
    width: 95%;
  }
  .block-with-map iframe {
    width: 100%;
    height: 200px;
    margin: auto;
    margin-bottom: 20px;
  }
  .time-adress-block {
    width: 95%;
  }
  .footer-up-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95%;
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .links-footer-block {
    margin: 0 auto;
    margin-bottom: 25px;
    text-align: center;
  }
  .logo-footer-block {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .info-footer {
    width: 100%;
    text-align: center;
  }
  .footer-bottom-block span {
    font-size: 16px;
  }

  .footer-bottom-block{
    height: auto;
    align-items: center;
  }
  .footer-bottom_info-block-1{
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .info-block-1-left{
    width: 80%;
    margin-top: 15px;
  }
  .info-block-1-left p{
    margin: 5px 0;
    text-align: justify;
  }
  .info-block-1-right{
    width: 80%;
    margin-top: 15px;

  }
  .info-block-1-right p{
    font-size: 12px;
    text-align: justify;
  }
  .footer-bottom_info-block-2{
    padding: 20px 0 5px;
  }

  table {
    font-size: 14px;
  }
  table td {
    padding: 5px;
  }
  thead {
    font-size: 12px;
  }
  .price-table-box h2 {
    font-size: 20px;
  }
  .main-services h1 {
    font-size: 26px;
  }
  .services-items-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-items-left img {
    width: 300px;
    height: 200px;
    margin: auto;
    margin-bottom: 20px;
  }
  .services-items-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .services-items-right img {
    width: 300px;
    height: 200px;
    margin: auto;
    margin-bottom: 20px;
  }
  .inside-service-info {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .inside-service-info h2 {
    width: 100%;
    border-radius: 0;
    padding: 10px 0;
  }
  .inside-service-info p {
    width: 90%;
    margin: 0 auto;
  }
  .inside-service-info ul {
    width: 90%;
    margin: 0 auto;
    padding-left: 5%;
  }
  .inside-service-info span {
    margin-left: 10%;
  }
  .license-block {
    text-align: center;
    width: 100%;
  }
  .old-lic-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .old-lic-in img {
    width: 90%;
    height: 500px;
  }
  .new-lic-in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .new-lic-in img {
    width: 90%;
    height: 500px;
  }
  .doctor-info-block{
    width: 285px !important;
  }
  .more-info-block{
    display: flex;
    flex-direction: column;
  }
  .doctor-photo-block img{
    width: auto;
    max-width: 280px;
    height: 320px;
    margin: 0 auto;
    margin-right: 5px;
  }
  .doctor-license-photo{
    display: none;
  }
  .viber-med-doc{
    padding: 0 5px;
  }
  .cross-symbol{
    right: 0;
  }
}

@media screen and (min-width: 420px) and (max-width: 1024px) {
  .nav-inside {
    max-width: 1018px;
  }
  .nav-inside-menu a {
    font-size: 16px;
    margin-right: 8px;
  }
  .nav-inside-tel p {
    font-size: 18px;
    margin-top: 15px;
  }
  .down-animation {
    bottom: 10%;
  }
  .map-block {
    max-width: 1020px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .map-block iframe {
    width: 480px;
    height: 350px;
  }
  .footer-up-block {
    max-width: 90%;
  }
  .services-items-left img {
    width: 480px;
    margin-left: 15px;
  }
  .services-items-right img {
    width: 480px;
    margin-right: 15px;
  }
  table td {
    padding: 8px 120px;
  }
  .license-block {
    max-width: 100%;
  }
  .license-block div {
    margin-left: 20px;
  }
}

@media screen and (min-width: 420px) and (max-width: 770px) {
  .nav-inside-menu {
    margin-right: 10px;
  }
  .nav-inside-menu a:nth-child(2) {
    display: none;
  }
  .nav-inside-logo img {
    width: 260px;
    height: 75px;
  }
  .nav-inside-tel p {
    font-size: 16px;
  }
  .nav-inside-tel p img {
    width: 12px;
    height: 12px;
  }
  .main-inside h1 {
    border-radius: 0;
  }
  .main-inside h2 {
    border-radius: 0;
  }
  .about-us-img {
    width: 52%;
  }
  .map-block {
    max-width: 100%;
  }
  .block-with-map iframe {
    width: 350px;
    height: 360px;
  }
  .adress-here {
    font-size: 18px;
  }
  .time-of-working {
    font-size: 18px;
  }
  table td {
    padding: 8px 20px;
  }
  .price-special-footer {
    position: absolute;
    bottom: 0;
  }
  .services-items-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-items-left img {
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .services-items-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .services-items-right img {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */

.doc-info_banner
{
    display: flex;
}

.doc-info_banner img
{
    border-radius: 10px;
}

@media screen and (orientation: portrait) {
    .doc-info_banner
    {
        display: block;
    }
}