* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  color: #555;
  outline: none;
  line-height: 1.5;
  word-wrap: break-word;
}
html,
body {
  height: auto;
}
body {
  background: #f1f1f1;
}
a {
  text-decoration: none;
}
a:hover {
  color: #000;
}
hr {
  border: none;
  border-bottom: 1px solid #ccc;
}
.stop_scrolling {
  height: 100%;
  overflow: hidden;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.col {
  /* The important bit. This percentage decides your columns. 
	 The percent can be px. It just represents your minimum starting width.
	 */
  flex: 1 0 33%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clr {
  clear: both;
}
.tac {
  text-align: center;
}
.bg_white .mob_br {
  display: none;
}
.indent {
  margin-left: 100px;
}

#loader {
  position: fixed;
  background: #f1f1f1;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
#loader img {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: auto;
  padding: 40px;
}
.header {
  background: #fff;
  border-bottom: 1px solid #ccc;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9;
}
.logo_holder {
  max-width: 300px;
  margin: auto;
}
.logo_holder_margin {
  margin: 0px 0px 0px 10px;
  float: left;
}
.big_logo {
  width: 300px;
  display: block;
  margin: 20px auto 40px;
}
.moving_logo {
  width: 200px;
  float: left;
  margin: 20px 0 20px 10px;
}

.nav {
  max-width: 1400px;
  width: 100%;
  margin: 20px auto;
  text-align: center;
}
.nav_item {
  display: inline-block;
}
.nav_link {
  padding: 10px;
}
.sub_nav {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px;
  width: max-content;
  text-align: left;
}
.nav_item:hover .sub_nav {
  display: block;
}
.sub_link {
  display: block;
  padding: 5px;
}
.nav_item_big {
}
.mob_sub_nav {
  display: none;
}
.nav_item_big:hover .sub_nav {
  display: inline-block;
}
.nav_item_big .sub_nav {
  position: initial;
  /* float: left;
  width: calc(100% / 6); */
}
.sub_nav_wrap {
  position: absolute;
  /* width: 90%;
  left: 5%; */
  background: #fff;
  margin: auto;
  text-align: left;
}
#burger {
  width: 24px;
  position: absolute;
  right: 10px;
  top: 26px;
  cursor: pointer;
}
#open_menu div {
  width: 20px;
  height: 2px;
  background: #555;
  margin: 6px auto;
  opacity: 0.5;
}
#open_menu {
  display: none;
}
#close_menu {
  font-size: 40px;
  display: none;
  position: absolute;
  top: -15px;
  right: 0px;
  opacity: 0.5;
}
.sub_link_drop {
  display: none;
}

#footer {
  border-top: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  background: #ffffff40;
  color: #000;
}
#footer p {
  color: #333;
}
#info {
  margin: 20px auto;
}
.info_box {
  display: inline-block;
  width: calc(100% / 5);
  float: left;
  text-align: center;
  padding: 5px;
  font-size: 14px;
}
#copyright {
  max-width: 440px;
  /*border-top: 1px solid #ccc;*/
  margin: auto;
  padding: 20px 0;
}
#copyright p {
  text-align: center;
  font-size: 12px;
}

.content {
  margin-top: 166px;
  padding: 80px;
  overflow: hidden;
}
.head_wrap {
  margin-top: 166px;
}
.half {
  width: 50%;
  display: inline-block;
}
.left {
  float: left;
}
.left img {
  width: 100%;
  filter: grayscale(1);
  display: block;
}
.ba-slider:hover img,
.left img:hover {
  filter: grayscale(0);
}
.right {
  padding: 3%;
}
.content .wrap {
  background: #ffffff80;
}
#contact_form {
  margin: auto;
  width: 100%;
  background: #ffffff40;
  overflow: hidden;
}
#contact_form input,
#contact_form textarea {
  display: block;
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #ccc;
}
#contact_form button {
  padding: 10px 20px;
}
.mapouter {
  position: relative;
  text-align: right;
  height: 520px;
  max-width: 100%;
  width: 100%;
}
.gmap_canvas {
  overflow: hidden;
  background: none !important;
  height: 520px;
  width: 100%;
}
#gmap_canvas {
  width: 100%;
  height: 520px;
}
#bl {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  /*object-position: 0 -13rem;*/
  filter: grayscale(0);
}
#bl:hover {
  filter: grayscale(0);
}
.staff,
.intervention,
.gallery img,
.img_link {
  width: calc(100% / 3);
  display: inline-block;
  float: left;
  height: 300px;
}
.img_link {
  width: 20%;
}

.staff img,
.intervention img,
.gallery img,
.img_link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
img {
  filter: grayscale(1);
  transition: 0.5s;
}
img:hover {
  filter: grayscale(0);
}
.staff img:hover,
.intervention img:hover,
.gallery img:hover,
.img_link img:hover {
  filter: grayscale(0);
}
.staff_link,
.intervention_link {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  top: -52px;
}
.intervention_link p {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 300px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.staff,
.gallery img {
  width: calc(100% / 4);
  height: 400px;
}
.gallery img {
  width: calc(100% / 6);
}
.staff img {
  object-position: top;
}
.gallery_nav {
  max-width: 382px;
  margin: auto;
  padding: 20px;
}
.gallery_nav h5 {
  display: inline-block;
  margin: 10px;
  text-align: center;
}
#gallery .wrap {
  background: #ffffff40;
  margin-bottom: 40px;
}
.gallery img {
  object-fit: contain;
  height: auto;
}
.gallery img:hover {
  cursor: zoom-in;
}
.zoomed {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.zoomed img {
  margin: auto;
  max-width: 800px;
  width: 100%;
  filter: grayscale(0);
}
.gallery_left,
.gallery_right,
.close_gallery,
#count {
  font-size: 40px;
  color: #fff;
  position: absolute;
  cursor: pointer;
  z-index: 9999;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
}
.close_gallery,
#count {
  padding: 0 10px;
}
.gallery_left {
  left: 0%;
}
.gallery_right {
  right: 0%;
}
.close_gallery {
  top: 0;
  right: 0%;
  line-height: 1;
  cursor: pointer;
}
#count {
  font-size: 16px;
  bottom: 0;
  left: calc(50% - 20px);
}
#count p,
#count span {
  font-size: 14px;
  color: #fff;
}

#doctor .wrap,
#zahvati .wrap {
  padding: 80px 80px 40px;
}
#doctor img,
#zahvati .content_img {
  margin-right: 80px;
  margin-bottom: 40px;
  max-width: 500px;
  width: 100%;
  /*border-bottom: 10px solid #ccc;*/
  box-shadow: 0px 20px 40px #ccc;
  padding: 40px 40px 0;
  float: left;
  background: #fff;
}

#doctor img {
  padding: 0;
}

#zahvati .content_img {
  padding: 0;
  float: right;
  max-width: 50%;
  margin: 0 0 40px 80px;
}
#doctor li,
#zahvati li {
  padding-left: 20px;
}
.social a {
  margin: 0 10px 0 0;
  font-size: 22px;
}
.more_imgs .down {
  width: 50px;
  margin: auto;
  transform: rotate(90deg);
}
.more_imgs .up {
  transform: rotate(-90deg);
}
#zahvati .box {
  margin-top: 20px;
}
.clinic {
  width: calc(100% / 3);
  height: 300px;
  float: left;
  display: inline-block;
}
.clinic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.second_half {
  padding: 50px 0;
  text-align: center;
}

.fullimg {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 1200px;
}

.box {
  max-width: 1200px;
  display: block;
  margin: 0 auto;
}
