@import url(https://fonts.googleapis.com/css?family=Philosopher:400,700,400italic,700italic&subset=latin,cyrillic);
@import url(https://fonts.googleapis.com/css?family=Roboto:100&subset=latin,cyrillic);
/*
 LESS DSS (dynamic stylesheet) 1.8.5 (for less.js 1.3+)
 MORE INFO: http://cl.ly/Dqnr

 LESS mixins by Chris Krupski
*/
/* Backgrounds Group
========================== */
/* @group gradient-veritical() */
/* @end */
/* @group background-clip() */
/* @end */
/* Box Group
========================== */
/* @option: box-display() */
/* @end */
/* @group box-shadow() */
/* @end */
/* Border Group
========================== */
/* @group rounded() */
/* @end */
/* Transform Group
========================== */
/* @group matrix() */
/* @end */
/* @group rotate() */
/* @end */
/* @group scale() */
/* @end */
/* @group translate() */
/* @end */
/* @group skew() */
/* @end */
/* Transition
========================== */
/* Animation Group
========================== */
/* Column
========================== */
/* Misc Group
========================== */
.am-overlay {
  height: 100%;
  width: 100%;
  opacity: 0;
  overflow: auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.am-close-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.am-modal {
  position: absolute;
  z-index: 101;
}
.am-modal-open {
  /*overflow: hidden;*/
}
.am-modal-open header,
.am-modal-open footer,
.am-modal-open .content {
  /*-webkit-filter: blur(8px);
  filter: blur(8px);*/
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.am-modal-open .am-overlay {
  opacity: 1;
}
.am-modal {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
}
.am-modal.am-flipped .am-wrapper,
.am-modal.am-flipped .am-wrapper {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/*
a.am-animating {
  visibility: hidden !important;
}
*/

.am-wrapper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -o-transition: 0.6s;
  -o-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}
.am-front,
.am-back {
  -webkit-backface-visibility: hidden !important;
  -moz-backface-visibility: hidden !important;
  -o-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  transform-style: preserve-3d !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}
.am-front {
  z-index: 2 !important;
}
.am-back {
  background: rgba(73,73,73,.4);
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -ms-backface-visibility: visible !important; /* ??? */
}
.am-modal-content {
  visibility: hidden;
}
.am-modal-content + .am-close {
  color: white;
  width: 25px;
  height: 25px;
  line-height: 100%;
  text-align: center;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.7;
  font-size: 24px;
}
.am-modal-content + .am-close:visited {
  color: white;
}
.am-modal-content + .am-close:hover,
.am-modal-content + .am-close:active {
  color: white;
  opacity: 1;
}
.am-back > .am-modal-content > * {
  visibility: hidden;
}
.am-expanded.am-modal {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.am-expanded.am-back {
  width: 100%;
}
.am-sample {
  width: 100%;
  position: fixed;
  visibility: hidden;
  display: block;
}
#apply-form { display: none; }

.animated {
  visibility: visible !important;
  -webkit-animation-duration: 0.5s;
  -moz-animation-duration: 0.5s;
  -o-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes scaleShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85) translateY(-5px);
    -moz-transform: scale(0.85) translateY(-5px);
    -o-transform: scale(0.85) translateY(-5px);
    transform: scale(0.85) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
    -moz-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}
@-moz-keyframes scaleShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85) translateY(-5px);
    -moz-transform: scale(0.85) translateY(-5px);
    -o-transform: scale(0.85) translateY(-5px);
    transform: scale(0.85) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
    -moz-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}
@keyframes scaleShow {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85) translateY(-5px);
    -moz-transform: scale(0.85) translateY(-5px);
    -o-transform: scale(0.85) translateY(-5px);
    transform: scale(0.85) translateY(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
    -moz-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
}
.scaleShow {
  -webkit-animation-name: scaleShow;
  -moz-animation-name: scaleShow;
  -o-animation-name: scaleShow;
  animation-name: scaleShow;
}
@-webkit-keyframes scaleHide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
    -moz-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85) translateY(-5px);
    -moz-transform: scale(0.85) translateY(-5px);
    -o-transform: scale(0.85) translateY(-5px);
    transform: scale(0.85) translateY(-5px);
  }
}
@-moz-keyframes scaleHide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
    -moz-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85) translateY(-5px);
    -moz-transform: scale(0.85) translateY(-5px);
    -o-transform: scale(0.85) translateY(-5px);
    transform: scale(0.85) translateY(-5px);
  }
}
@keyframes scaleHide {
  0% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0px);
    -moz-transform: scale(1) translateY(0px);
    -o-transform: scale(1) translateY(0px);
    transform: scale(1) translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85) translateY(-5px);
    -moz-transform: scale(0.85) translateY(-5px);
    -o-transform: scale(0.85) translateY(-5px);
    transform: scale(0.85) translateY(-5px);
  }
}
.scaleHide {
  -webkit-animation-name: scaleHide;
  -moz-animation-name: scaleHide;
  -o-animation-name: scaleHide;
  animation-name: scaleHide;
}
.text-green {
  color: #48b95f;
}
.text-pink {
  color: #ec008c;
}
.text-black {
  color: #000000;
}
.text-white {
  color: #ffffff;
}
.text-sand {
  color: #fff7b4;
}
.font-philosopher {
  font-family: Philosopher, sans-serif;
}
.font-roboto {
  font-family: Roboto, sans-serif;
}
html {
  height: 100%;
}
body {
  background: #fff;
  color: #6e6e6e;
  font-family: Verdana, sans-serif;
  font-size: 13px;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  min-width: 1235px;
  position: relative;
  padding-bottom: 145px;
  min-height: 100%;
}
a {
  color: #ec008c;
  text-decoration: underline;
}
a:hover {
  color: #ec008c;
  text-decoration: none;
}
a:focus {
  outline: none !important;
  color: #ec008c;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: Philosopher, sans-serif;
  color: #000000;
  margin-top: 0;
}
h1,
.h1 {
  color: #494949;
}
h4,
.h4 {
  line-height: 20px;
  color: #232323;
}
h3,
.h3 {
  line-height: 17px;
}
ul,
menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.style li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 7px;
  line-height: 17px;
}
ul.style li:before {
  content: '';
  border-bottom: 1px solid #b9b9b9;
  position: absolute;
  width: 16px;
  left: 6px;
  top: 50%;
  margin-top: -1px;
}
.left-content.col-xs-3,
header > .container > .row > div.col-xs-3 {
  width: 19.4%;
}
.main-content.col-xs-9,
header > .container > .row > div.col-xs-9 {
  width: 80.6%;
}
.right-content {
  float: right;
}
.index .item .item-content {
  padding-right: 35px;
}
.index .item .item-content p {
  margin-top: 2px;
}
.index .left-content.col-xs-3,
.index header > .container > .row > div.col-xs-3 {
  width: 23%;
}
.index .main-content.col-xs-9,
.index header > .container > .row > div.col-xs-9 {
  width: 77%;
}
.index header {
  margin-bottom: 45px;
}


.left-menu {
  position: relative;
  *zoom: 1;
}
.left-menu:before,
.left-menu:after {
  content: "";
  display: table;
}
.left-menu:after {
  clear: both;
}
.left-menu li {
  margin-right: 5px;
}
.left-menu li sup {
  margin-left: 5px;
  font-size: 60%;
  display: inline-block;
  text-decoration: none !important;
}
.left-menu li a {
  padding: 7px 10px 6px 10px;
  font-family: Philosopher, sans-serif;
  font-size: 17px;
  color: #48b95f;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  line-height: 1.2;
  margin-top: -6px;
}
.left-menu li a span {
  color: #ec008c;
  line-height: 18px;
  text-decoration: underline;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-backface-visibility: hidden;
}
.left-menu li a:hover {
  text-decoration: none;
}
.left-menu li a:hover span {
  text-decoration: none;
}
.left-menu li.active {
  /*margin-bottom: 6px!important;*/
}
.left-menu li.active a {
  color: #b9b9b9;
  background: #fff;
  text-decoration: underline;
  box-shadow: 0 2px 8px rgba(0,0,0, .1);
}
.left-menu li.active a span {
  color: #494949;
}
.left-menu ul {
  padding: 0 20px;
  margin: 10px 0;
}
.left-menu ul li {
  font-style: italic;
  font-size: 15px;
}
.left-menu ul li.title {
  font-family: Philosopher, sans-serif;
  margin-bottom: 4px;
}
.left-menu ul li.title span {
  background: #f3f3f3;
  display: inline-block;
  color: #777;
  padding: 7px 10px 6px;
  line-height: 1.2;
  margin-top: -6px;
}
.left-menu ul li a {
  color: #494949;
  font-size: 15px;
  text-decoration: underline;
}
.left-menu ul li a:hover {
  text-decoration: none;
}
.left-menu.bg-gray {
  background: #f3f3f3;
  padding: 30px;
  margin: 70px 0 0 0;
}
.left-menu.bg-gray li {
  color: #494949;
  font-size: 14px;
  margin-bottom: 0;
}
.left-menu.bg-gray li a {
  padding: 0;
  font-size: 16px;
  margin-top: 17px !important;
  display: inline-block;
}

.left-menu.bg-gray li.active a {
  background: none;
  box-shadow: none;
}
.left-menu.bg-gray + .envelope {
  margin-top: 55px;
}
.left-menu {
  margin: 15px 0 0 -10px;
  margin-bottom: 60px;
  white-space: normal;
}
.left-menu li {
  float: none;
  width: 100%;
  white-space: normal;
  margin-bottom: 10px;
}
.left-menu:not(.left-menu-like-main) {
  white-space: normal;
}
.left-menu:not(.left-menu-like-main) li {
  /*margin-bottom: 0;*/
}
.left-menu:not(.left-menu-like-main) li a {
  /*margin-top: -4px;*/
}
.left-menu:not(.left-menu-like-main) li a span {
  border-bottom: 0;
  text-decoration: underline;
}
.left-menu:not(.left-menu-like-main) li a:hover span {
  text-decoration: none;
}
.left-menu:not(.left-menu-like-main) li.active a {
  text-decoration: none;
}
.left-menu:not(.left-menu-like-main) li.active a span {
  text-decoration: none;
  border-bottom: 0;
}


.container {
  min-width: 1235px;
}
.content > .container > .row {
  margin-bottom: 60px;
}
.copy {
  margin-left: -19px;
}
.lead {
  font-size: 16px;
  font-weight: normal;
  margin-top: 31px;
  letter-spacing: 0.1em;
}
.well {
  border: 0;
  background: #fff;
  /* for multi values */
  -webkit-box-shadow: 0 5px 32px rgba(0,0,0, .1);
  -moz-box-shadow: 0 5px 32px rgba(0,0,0, .1);
  box-shadow: 0 5px 32px rgba(0,0,0, .1);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin-left: -18px;
  margin-top: -12px;
  margin-bottom: 27px;
}
.well h2,
.well h1 {
  color: #494949;
  line-height: 28px;
}
.well .link-tabs {
  margin-top: 18px;
  *zoom: 1;
}
.well .link-tabs:before,
.well .link-tabs:after {
  content: "";
  display: table;
}
.well .link-tabs:after {
  clear: both;
}
.well .link-tabs li {
  margin-bottom: 8px;
  float: left;
  margin-right: 15px;
}
.well .link-tabs li a {
  color: #038d1f;
  font-style: italic;
  font-family: Philosopher, sans-serif;
  font-size: 15px;
}
.well .link-tabs li.active a {
  color: #494949;
  text-decoration: none;
}
.pagination {
  margin-top: 0;
}
.pagination > li {
  float: left;
  font-size: 14px;
  margin-right: 5px;
}
.pagination > li > a {
  background-color: transparent;
  width: 32px;
  height: 32px;
  display: block;
  padding: 2px;
  text-align: center;
  font-weight: bold;
  color: #9e9e9e;
  border: 3px solid transparent;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-backface-visibility: hidden;
}
.pagination > li > a:hover {
  background-color: transparent;
  color: #9e9e9e;
  border-color: #9e9e9e;
}
.pagination > li.active a,
.pagination > li.active a:hover {
  color: #ffffff;
  background-color: #838384;
  border-color: transparent;
}

.pagination .prev a,
.pagination .next a {
  border-color: transparent !important;
}
.pagination .prev a {
  background: url(../res/ui/arrow-left.png) no-repeat center center;
}
.pagination .next a {
  background: url(../res/ui/arrow-right.png) no-repeat center center;
}
.slider-pagination {
  margin-top: 30px;
}
#big_slider {
  padding-bottom: 140px;
}
.npr {
  padding-right: 0!important;
}
.icn-sprite {
  background: url(/res/ui/sprite.png) no-repeat;
  height: 22px;
  width: 22px;
  display: inline-block;
  vertical-align: middle;
}
.icn-sprite.icn-clock {
  background-position: -26px 0;
}
.icn-lock {
  background: url(../res/ui/icn-lock.png) no-repeat;
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}
.license {
  display: table;
  width: 100%;
}
.license .shadow-container {
  border: 5px solid #fff;
  margin-right: 15px;
  /* for multi values */
  -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
  -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
  box-shadow: 0 0 15px 0 rgba(0,0,0,.15);
}
.license em {
  margin-top: 15px;
  display: inline-block;
  font-family: Philosopher, sans-serif;
  font-size: 14px;
  color: #aeaeae;
}
.btn-dist {
  margin-top: 0;
  display: block;
  float: right;
  padding: 11px 15px;
  color: #494949;
  text-decoration: none;
  font-size: 16px;
  background-color: #f7f7f7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f4f4f4));
  background-image: -webkit-linear-gradient(top, #f9f9f9, #f4f4f4);
  background-image: -moz-linear-gradient(top, #f9f9f9, #f4f4f4);
  background-image: -o-linear-gradient(top, #f9f9f9, #f4f4f4);
  background-image: linear-gradient(top, #f9f9f9, #f4f4f4);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#f9f9f9', EndColorStr='#f4f4f4');
  font-family: Philosopher, sans-serif;
  /* for multi values */
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0, .22);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0, .22);
  box-shadow: 0 1px 1px rgba(0,0,0, .22);
}
.main-info p {
  max-width: 240px;
  line-height: 22px;
  margin-bottom: 22px;
}
.main-img {
  width: 400px;
  background: #fff;
  /* for multi values */
  -webkit-box-shadow: 0 5px 32px rgba(0,0,0, .10);
  -moz-box-shadow: 0 5px 32px rgba(0,0,0, .10);
  box-shadow: 0 5px 32px rgba(0,0,0, .10);
}
.main-img a {
  color: #48b95f;
  text-decoration: underline;
}
.main-img figcaption {
  padding: 14px 26px 22px;
}
.main-img figcaption span {
  display: inline;
  font-size: 36px;
  line-height: 36px;
  color: #ec008c;
  font-family: Philosopher, sans-serif;
}
.programm-list {
  margin-top: 12px!important;
  *zoom: 1;
}
.programm-list:before,
.programm-list:after {
  content: "";
  display: table;
}
.programm-list:after {
  clear: both;
}
.programm-list li {
  width: 50%;
  float: left;
  padding: 0;
  position: relative;
  height: 80px;
}
.programm-list li:nth-child(2n) {
  right: -20px;
}
.programm-list li i {
  position: absolute;
  top: 0;
  left: 0;
}
.programm-list li a {
  display: table;
  height: 100%;
  font-size: 17px;
  line-height: 20px;
  padding-left: 82px;
  font-family: Philosopher, sans-serif;
}
.programm-list li a span {
  display: table-cell;
  vertical-align: middle;
}
.menu-icon {
  display: inline-block;
  vertical-align: middle;
  background: url(../res/ui/icons_menu.png) no-repeat;
  width: 90px;
  height: 70px;
  position: relative;
}
.menu-icon.icn1 {
  background-position: -21px 13px;
  width: 79px;
  height: 86px;
}
.menu-icon.icn2 {
  background-position: -283px 0;
  width: 36px;
  height: 63px;
  left: 26px;
  top: 11px;
}
.menu-icon.icn3 {
  background-position: -20px -87px;
  width: 54px;
  height: 54px;
  top: 18px;
}
.menu-icon.icn4 {
  background-position: -262px -85px;
  width: 66px;
  height: 64px;
  top: 16px;
  left: 4px;
}
.menu-icon.icn5 {
  background-position: 0 -158px;
  width: 88px;
  height: 60px;
  top: 10px;
  left: -20px;
}
.menu-icon.icn6 {
  background-position: -257px -174px;
  width: 68px;
  height: 43px;
  top: 26px;
  left: 1px;
}
.menu-icon.icn7 {
  background-position: -30px -235px;
  width: 41px;
  height: 76px;
  top: 7px;
  left: 10px;
}
.menu-icon.icn8 {
  background-position: -259px -245px;
  width: 84px;
  height: 53px;
  top: 15px;
  left: 2px;
}
.menu-icon.icn9 {
  background-position: -10px -324px;
  width: 79px;
  height: 72px;
  top: 14px;
  left: -9px;
}
.menu-icon.icn10 {
  background-position: -268px -308px;
  width: 50px;
  height: 87px;
  left: 10px;
}
.menu-icon.icn11 {
  background-position: -10px -401px;
  width: 79px;
  height: 72px;
  top: 12px;
  left: -9px;
}
.menu-icon.icn12 {
  background-position: -258px -403px;
  width: 82px;
  height: 47px;
  top: 14px;
  left: 1px;
}
.main-links {
  *zoom: 1;
}
.main-links:before,
.main-links:after {
  content: "";
  display: table;
}
.main-links:after {
  clear: both;
}
.main-links .main-link-item {
  float: left;
  width: 16.666666%;
}
.main-links .main-link-item a {
  font-size: 18px;
  display: block;
  text-align: center;
  position: relative;
  font-family: Philosopher, sans-serif;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
}
.main-links .main-link-item a:hover {
  color: #f541a7;
  text-decoration: underline;
}
.main-links .main-link-item a:hover .img {
  border-color: #ec008c;
  filter: none;
  -webkit-filter: none;
}
.main-links .main-link-item a span {
  display: block;
  padding: 0 47px;
  line-height: 23px;
}
.main-links .main-link-item a .img {
  margin-bottom: 7px;
  background: #fff;
  border: 4px solid transparent;
  width: 158px;
  height: 158px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
  border-radius: 50%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.main-links .main-link-item a .img img {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  /* for multi values */
  -webkit-box-shadow: 0 13px 18px rgba(0,0,0, .06);
  -moz-box-shadow: 0 13px 18px rgba(0,0,0, .06);
  box-shadow: 0 13px 18px rgba(0,0,0, .06);
}
.main-links.main-links--left {
  width: 200px;
}
.main-links.main-links--left .main-link-item {
  float: none;
  width: 100%;
  margin-bottom: 25px;
}
.main-links.main-links--left .main-link-item a {
  padding: 22px 30px 22px 53px;
  line-height: 24px;
}
.main-links.main-links--left .main-link-item a span {
  position: relative;
  z-index: 2;
}
.main-links.main-links--left .main-link-item a .img {
  position: absolute;
  left: -23px;
  top: 0;
}
.social {
  *zoom: 1;
  margin: 7px 0 8px;
}
.social:before,
.social:after {
  content: "";
  display: table;
}
.social:after {
  clear: both;
}
.social ul li {
  float: left;
  width: 16px;
  height: 16px;
}
.social ul li a {
  position: relative;
}
.social ul li a:hover {
  top: -1px;
}
.social ul li + li {
  margin-left: 5px;
}
.social-icn {
  background: url(../res/ui/social24.png) no-repeat;
  width: 16px;
  height: 17px;
  display: block;
}
.social-icn.icn-vk {
  background-position: 00;
}
.social-icn.icn-tw {
  background-position: -22px;
}
.social-icn.icn-fb {
  background-position: -43px 0;
}
.social-icn.icn-mm {
  background-position: -64px 0;
}
.social-icn.icn-od {
  background-position: -85px 0;
}
.subs {
  margin-top: 55px;
}
.item {
  padding: 20px 0;
}
.item a {
  text-decoration: none !important;
}
.item a:hover span {
  text-decoration: none;
}
.item p {
  font-size: 13px;
  color: #6e6e6e;
  margin-top: 6px;
  line-height: 22px;
  margin-bottom: 0 !important;
}
.item .item-img {
  width: 150px;
  float: left;
  position: relative;
  background: #fff;
}
.item .item-img:after {
  content: '';
  border: 3px solid rgba(72, 185, 95, 0.1);
  position: absolute;
  left: -8px;
  top: 9px;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.item .item-img span {
  position: absolute;
  font-size: 11px;
  right: -7px;
  top: 7px;
  color: #fff;
  background: #48b95f;
  padding: 3px 8px 4px;
}
.item .item-img span:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 7px 0 0;
  border-color: #286835 transparent transparent transparent;
}
.item .item-content {
  margin-top: 8px;
  padding-left: 170px;
}
.item .item-content span {
  font-size: 15px;
  text-decoration: underline;
}
#content .lead {
  font-size: 16px;
  font-weight: normal;
  margin-top: 31px;
  letter-spacing: 0.1em;
  color: #494949;
}
#content p {
  color: #494949;
  line-height: 22px;
  margin-bottom: 20px;
}
#content p + h4 {
  margin-top: 32px;
}
#content p + ol {
  margin-top: -10px;
}
#content h2,
#content .h2 {
  margin-bottom: 36px;
  color: #494949;
}
#content div.pull-right {
  padding: 0 10px;
}
#content ol li {
  line-height: 23px;
}
#content h3 {
  margin-top: 25px;
  margin-bottom: 19px;
  color: #494949;
  line-height: 24px;
}
#content h4 {
  margin-top: 22px;
  font-weight: bold;
}
#content .table-striped > tbody > tr:nth-child(odd) > td,
#content .table-striped > tbody > tr:nth-child(odd) > th {
  background: #f9f9f9;
}
#content .table > thead > tr > th,
#content .table > tbody > tr > th,
#content .table > tfoot > tr > th,
#content .table > thead > tr > td,
#content .table > tbody > tr > td,
#content .table > tfoot > tr > td {
  border-top: 0;
  border-bottom: 1px solid #f2f2f2;
}
#content .table {
  margin-bottom: 28px;
}
#content .table thead {
  color: #9f9f9f;
  font-style: italic;
  font-weight: normal;
  font-family: Philosopher, sans-serif;
  font-size: 15px;
}
#content .table thead th {
  font-weight: normal;
  padding: 0 10px;
  vertical-align: bottom;
}
#content .table tbody {
  color: #494949;
  font-size: 13px;
}
#content .table tbody tr td {
  padding: 9px 10px;
}
#content .shadow-container {
  padding: 0 !important;
  margin-left: 20px;
  /* for multi values */
  -webkit-box-shadow: 0 5px 32px rgba(0,0,0, .1);
  -moz-box-shadow: 0 5px 32px rgba(0,0,0, .1);
  box-shadow: 0 5px 32px rgba(0,0,0, .1);
}
.dwnld-container {
  *zoom: 1;
}
.dwnld-container:before,
.dwnld-container:after {
  content: "";
  display: table;
}
.dwnld-container:after {
  clear: both;
}
.dwnld-container span {
  text-decoration: underline;
}
.dwnld-container a {
  background: url(../res/ui/pdf.png) no-repeat 0 12px;
  font-size: 14px;
  padding: 12px 0 6px 48px;
  text-decoration: none;
}
.dwnld-container a:hover span {
  text-decoration: none;
}
.dwnld-container em {
  display: block;
  text-decoration: none;
  color: #6b6b6b;
  font-family: Philosopher, sans-serif;
}
.teachers-list {
  *zoom: 1;
  margin-top: 15px;
}
.teachers-list:before,
.teachers-list:after {
  content: "";
  display: table;
}
.teachers-list:after {
  clear: both;
}
.teachers-list h3 {
  color: #494949;
  font-size: 23px;
  margin-top: 0 !important;
  margin-bottom: 0!important;
}
.teachers-list .teacher {
  margin-bottom: 50px;
  *zoom: 1;
}
.teachers-list .teacher:before,
.teachers-list .teacher:after {
  content: "";
  display: table;
}
.teachers-list .teacher:after {
  clear: both;
}
.teachers-list .teacher .img {
  width: 200px;
}
.teachers-list .teacher .img img {
  max-width: 100%;
}
.teachers-list .teacher dl {
  font-size: 12px;
  margin-top: 20px;
}
.teachers-list .teacher dt {
  color: #999;
  height: 20px;
  /*font: normal italic 14px sans-serif;*/
  font-style: italic;
  font-weight: normal;
  font-family: 'Philosopher', serif;
  font-size: 14px;
  overflow: visible;
  width: 28%;
}
.teachers-list .teacher dd {
  color: #333;
  line-height: 1.5;
  margin: -20px 0 10px 30%;
  width: 69%;
}
.teachers-list .teacher .desc {
  padding-left: 228px;
}
.teachers-list .teacher .desc p {
  line-height: 20px !important;
  margin-bottom: 0 !important;
  margin-top: 5px;
}
.teachers-list .diploms p {
  font-size: 16px;
  margin-top: 11px;
  margin-bottom: 4px !important;
  color: #494949 !important;
}
.teachers-list .diploms img {
  margin-right: 4px;
}
.programm-table {
  margin-top: 19px;
}
.programm-table tr td {
  line-height: 24px;
  font-size: 16px;
  color: #494949;
  padding-bottom: 24px;
  padding-right: 65px;
  vertical-align: top;
}
.programm-table tr td p {
  font-size: 13px;
  margin-bottom: 0 !important;
  float: left;
}
.programm-table tr td p + p {
  margin-left: 45px;
}
.programm-table tr td p em {
  color: #969696;
}
.programm-table tr td b {
  font-family: Philosopher, sans-serif;
}
.btn {
  text-transform: uppercase;
  font: bold 12px Verdana, sans-serif;
  text-decoration: none;
  letter-spacing: 2px;
  padding: 9px 12px 8px;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-backface-visibility: hidden;
}
.btn:focus {
  outline: none !important;
}
.btn.bg-white {
  background: #ffffff;
}
.btn.btn-pink {
  border: 2px solid #ec008c;
  color: #ec008c;
}
.btn.btn-pink:hover {
  color: #ffffff;
  background: #ec008c;
}
.btn.btn-white {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.btn.btn-white:hover {
  color: rgba(0, 0, 0, 0.75);
  background: #ffffff;
}
.btn.btn-big {
  font-size: 15px;
  padding: 12px 22px 11px;
}
.action {
  margin-top: 23px;
  padding: 18px 22px;
  margin-bottom: 45px;
  border-top: 3px solid #48b95f;
  background: #fff;
  /* for multi values */
  -webkit-box-shadow: 0 5px 32px rgba(0,0,0, .1);
  -moz-box-shadow: 0 5px 32px rgba(0,0,0, .1);
  box-shadow: 0 5px 32px rgba(0,0,0, .1);
}
.action p {
  margin-bottom: 0 !important;
  color: #0a7f98 !important;
  font-size: 14px;
}
.event-list-container {
  margin-bottom: 60px;
}
.event-list-container .item {
  padding: 26px 0 0;
}
.event-item {
  margin-top: 33px;
}
.event-item .event-date {
  font-size: 14px;
  color: #494949;
}
.event-item .event-title {
  font-family: Philosopher, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 12px;
  color: #000000;
}
.event-item .event-info {
  margin-bottom: 45px;
  color: #494949;
}
.event-item .event-info ul {
  margin-left: 5px;
  margin-bottom: 12px;
}
.event-item .event-info ul li {
  color: #494949;
}
.event-item h3 {
  margin-bottom: 16px;
}
.event-item .event-photos {
  *zoom: 1;
  width: 755px;
  margin-bottom: 40px;
}
.event-item .event-photos:before,
.event-item .event-photos:after {
  content: "";
  display: table;
}
.event-item .event-photos:after {
  clear: both;
}
.event-item .event-photos li {
  float: left;
  width: 150px;
  height: 150px;
  border: 1px solid #fff;
  overflow: hidden;
  margin-right: -1px;
  margin-bottom: -1px;
}
.event-item .event-photos li a img {
  opacity: 0.9;
  filter: alpha(opacity=90);
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-backface-visibility: hidden;
}
.event-item .event-photos li a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
}
.backto {
  display: inline-block;
}
.bold {
  font-weight: bold;
}
.right-content h3 {
  color: #171717;
  font-size: 23px;
  line-height: 23px;
}
.right-content .item .item-img {
  float: none;
}
.right-content .item .item-content {
  padding-left: 0;
  width: 100%;
  margin-top: 20px;
}
.review-container .slide .review-item .review-content {
  padding: 15px 20px;
  border: 3px solid #c2c2c2;
  position: relative;
  margin-bottom: 20px;
}
.review-container .slide .review-item .review-content:before {
  position: absolute;
  background: url("../res/ui/arrow-comment.png") no-repeat;
  width: 34px;
  height: 18px;
  content: "";
  left: 20px;
  bottom: -18px;
}
.review-container .slide .review-author {
  margin-left: 25px;
  color: #494949;
}
.review-container .slide .review-author em {
  color: #9e9e9e;
}
.review-container .rsTabs {
  margin-top: 20px;
  float: none;
  display: inline-block;
}
.review-container .rsTabs .rsTab {
  background-color: transparent;
  width: 26px;
  height: 26px;
  display: inline-block;
  cursor: pointer;
  padding: 1px;
  text-align: center;
  font-weight: bold;
  color: #9e9e9e;
  border: 3px solid transparent;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  margin-right: 7px;
  -webkit-backface-visibility: hidden;
}
.review-container .rsTabs .rsTab.rsNavSelected {
  color: #ec008c !important;
  border-color: #ec008c !important;
  background-color: transparent;
}
.review-container .rsArrow {
  display: inline-block !important;
  width: 21px;
  height: 26px;
  opacity: 1 !important;
  visibility: visible !important;
  top: 8px;
  position: relative;
}
.review-container .rsArrow.rsArrowLeft {
  background: url(../res/ui/arrow-left.png) no-repeat center center;
  margin-right: 11px;
}
.review-container .rsArrow.rsArrowRight {
  background: url(../res/ui/arrow-right.png) no-repeat center center;
  margin-left: 1px;
}
.pagination {
  position: relative;
  z-index: 35;
  padding-top: 4px;
  width: 100%;
  height: auto;
  display: inline-block;
  clear: both;
  margin: 20px auto 0 0;
  text-align: left;
  line-height: 5px;
  list-style-type: decimal;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0;
}


.pagination .rsBullet {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-right: 15px;
  list-style-type: decimal;
}
.pagination .rsBullet.rsNavSelected span {
  border-color: #ec008c;
}
.pagination .rsBullet span {
  display: block;
  min-width: 20px;
  height: 20px;
  border: 3px solid #9e9e9e;
}
.rsBullets {
  position: relative;
  z-index: 35;
  padding-top: 4px;
  width: 100%;
  height: auto;
  clear: both;
  margin: 20px auto 0 15px;
  line-height: 5px;
  text-align: center;
  font-size: 0;
}
.rsBullets .rsBullet {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-right: 10px;
  list-style-type: decimal;
  cursor: pointer;
}
.rsBullets .rsBullet.rsNavSelected span {
  background: #e5097f;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
}
.rsBullets .rsBullet span {
  display: block;
  width: 8px;
  height: 8px;
  background: #bdc5c7;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
}
.main-slider {
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.nav-tabs {
  margin: 20px 0 0;
  font-family: Philosopher, sans-serif;
}
.nav-tabs > li.active a {
  color: #62c268!important;
  background: #f3f3f3 !important;
}
.nav-tabs > li.active a span {
  border-bottom-color: transparent !important;
}
.nav-tabs > li > a {
  font-size: 28px;
  text-decoration: none;
  padding: 10px 20px;
}
.nav-tabs > li > a span {
  border-bottom: 1px dashed rgba(236, 0, 140, 0.4);
}
.nav-tabs > .nav-title {
  margin-left: 30px;
}
.nav-tabs > .nav-title > a {
  border: 0 !important;
  background: transparent !important;
  text-decoration: none;
  font-size: 30px;
  color: #4e4e4e;
}
.tab-body {
  background: #f3f3f3;
  min-height: 567px;
}
.tab-body h2 {
  color: #62c268;
  font-size: 48px;
  font-style: italic;
  line-height: 37px;
  margin-bottom: 27px;
}
.tab-body .col {
  display: inline-block;
  vertical-align: top;
  float: none;
  width: auto;
  margin: 0 -0.125em;
  max-width: 27%;
}
.main-tabs {
  background: #f3f3f3;
  border: 1px solid #dedede;
  margin-top: -1px;
}
.main-tabs > .tab-pane > .tab-body {
  padding: 35px 50px 20px;
}
.area__list > li {
  font-size: 15px;
  margin-bottom: 6px;
}
.area__list > li.active a {
  border-bottom: none;
  color: #ec008c;
  cursor: default;
  font-weight: bold;
}
.area__list > li.hover a {
  border-bottom-color: rgba(236, 0, 140, 0.2);
  color: #ec008c;
}
.area__list > li > a {
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.area__list > li > a:hover {
  color: #ec008c;
}
.area__deeplist > li {
  line-height: 1.2;
  margin-bottom: 12px;
}
.area__deeplist > li > a {
  color: #4e4e4e;
}
.svg-map {
  float: left;
  margin-top: -31px;
  margin-left: 34px;
}
.svg-map svg {
  height: 100%;
}

.svg-map #main_body g:hover .area,
.svg-map #main_body g.hover .area,
.svg-map #main_body g:hover .area path,
.svg-map #main_body g.hover .area path,
.svg-map #main_head g:hover .area,
.svg-map #main_head g.hover .area,
.svg-map #main_head g:hover .area path,
.svg-map #main_head g.hover .area path {
  fill: #ffd9ed;
}

.svg-map #main_head g:hover .filled,
.svg-map #main_head g.hover .filled,
.svg-map #main_head g:hover .filled path,
.svg-map #main_head g.hover .filled path {
  fill: #ec008c;
}

.svg-map #main_body g:hover .outline,
.svg-map #main_body g.hover .outline,
.svg-map #main_head g:hover .outline,
.svg-map #main_head g.hover .outline {
  stroke: #ec008c;
}

.svg-map #head {
  height: 410px;
  margin-top: 58px;
}
.svg-map #body {
  height: 543px;
  width: 255px;
}

.problem__list > li {
  color: #4e4e4e;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
.problem__list > li ul {
  margin-top: 5px;
}
.problem__list > li ul li {
  padding-left: 40px;
  margin-bottom: 5px;
  position: relative;
}
.problem__list > li ul li:before {
  content: '';
  position: absolute;
  width: 14px;
  left: 5px;
  top: 50%;
  border-bottom: 1px solid rgba(10, 10, 10, 0.2);
}
.problem__list > li ul a {
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px solid rgba(78, 78, 78, 0.2);
}
.problem__list > li ul a:hover {
  border-bottom-color: transparent;
}
.problem__list > li a {
  color: #4e4e4e;
}
.w100 {
  width: 100%;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.mb50 {
  margin-bottom: 50px;
}
h6,
.style {
  color: #494949;
}
.shadow-bottom {
  box-shadow: 0 15px 40px -16px rgba(0,0,0,.1);
}
.shadow-green {
  box-shadow: 0 0 27px rgba(72, 185, 95, .26);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
}
.shadow-green:hover {
  box-shadow: 0 0 27px rgba(72, 185, 95, .5);
}
.envelope {
  background: url("../res/ui/envelope.jpg") no-repeat;
  width: 225px;
  height: 238px;
}
.envelope .content {
  padding: 62px 30px 30px;
}
.envelope .content h4 {
  text-align: center;
  font-style: italic;
  color: #6b6b6b;
}
.envelope .content form {
  margin-top: 24px;
}
.envelope .content form input[type="text"],
.envelope .content form input[type="email"],
.envelope .content form input[type="password"],
.envelope .content form input.form-control {
  height: 36px;
  font-size: 12px;
}
.envelope .content form input[type="submit"] {
  margin-top: 15px;
}
.item-action a {
  text-decoration: none;
}
.item-action .item-img {
  margin: 15px 0;
}
.item-action a:hover p {
  border-bottom-color: transparent;
}
.item-action .item-content span {
  background: #48b95f;
  color: #ffffff;
  font-size: 11px;
  display: inline-block;
  padding: 2px 10px 4px;
  margin-right: 5px;
}
.item-action .item-content p {
  display: inline-block;
  position: relative;
  top: 2px;
  margin-bottom: 0;
  border-bottom: 1px solid;
}
.item-action p a {
  border-bottom: 1px solid;
}
.item-action p a:hover {
  border-bottom-color: transparent;
}
.item-action + .item-action {
  margin-top: 45px;
}
.item-action .right {
  margin-top: 35px;
}
.actions-list {
  width: 100%;
  margin-bottom: 100px;
  display: inline-block;
}
.photos {
  margin: 5px 0 25px;
  display: inline-block;
  width: 100%;
}
.photos a {
  margin-right: 2px;
}
.price .row {
  margin: 0 -8px;
  font-size: 0;
}
.price .row .col-xs-4 {
  float: none;
  vertical-align: top;
  display: inline-block;
  padding: 8px;
}
.price-block {
  background: #f2f2f2;
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #494949!important;
  cursor: default;
  line-height: 22px;
}
.price-block p {
  margin: 0 !important;
  font-size: 15px;
}
.price-block h4 {
  margin: 10px 0 20px !important;
  color: #494949;
  font-size: 23px;
  font-weight: bold;
}
.price-block .btn-pink {
  color: #ec008c !important;
}
.price-block .btn-pink:hover {
  color: #fff!important;
}
.results .results-img {
  display: inline-block;
  margin-bottom: 40px;
  position: relative;
}
.results .results-img + .results-img { margin-left: 15px; }
.results .results-img img { border: 1px solid #e7e7e7; margin-bottom: 5px; }

.results .results-img span {
  top: 100%;
  color: #666;
  font-size: 13px;
  line-height: 1.2;
  position: absolute;
  text-decoration: none;
}

.services-dropdown h1 {
  display: inline-block;
  margin-right: 20px;
}
.dropdown {
  display: inline-block;
}
.dropdown .arrow {
  display: inline-block;
  top: 7px;
  position: relative;
  z-index: 9;
  width: 43px;
  height: 34px;
  background: #ffffff url("../res/ui/arrow.png") no-repeat center;
  border: 1px solid #b7b7b7;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.dropdown:hover .arrow { border-color: #666; }

.dropdown .dropdown-menu {
  border: 1px solid #b7b7b7;
  /*border-radius: 0 4px 4px 4px;*/
  border-radius: 4px 0 4px 4px;
  /*box-shadow: none;*/
  left: auto;
  right: 0;
  z-index: 8;
}

.dropdown .dropdown-menu li {
  font-family: Philosopher, sans-serif;
  font-style: italic;
}
.dropdown .dropdown-menu li a {
  color: #ec008c;
  font-size: 15px;
}
.dropdown .dropdown-menu li a:hover {
  background: transparent;
}
.dropdown .dropdown-menu li.active a {
  color: #6e6e6e;
  background: transparent;
}
.dropdown.open .arrow {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
  border-color: #b7b7b7;
}
.dropdown.open .arrow:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: #ffffff;
}
.fade-bg {
  padding: 30px 35px;
  color: #ffffff;
}
.fade-bg h1,
.fade-bg p {
  color: #ffffff !important;
}
.fade-bg p {
  margin-bottom: 0 !important;
  font-size: 20px;
  font-family: Roboto, sans-serif;
  font-weight: 100;
  line-height: 1.6em !important;
  -webkit-font-smoothing: subpixel-antialiased;
}
.services-list {
  margin-top: 25px;
  margin-bottom: 10px;
  display: inline-block;
}
.services-list li {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
.services-list li h3 { margin-bottom: 10px !important; }
.services-list li p { margin-bottom: 0 !important; }

h1 .btn {
  left: 40px;
  position: relative;
}

.reviews {
  margin-top: 10px;
}
.reviews .pagination {
  margin-top: 40px;
}
.review {
  border: 1px solid #e7e7e7;
  padding: 25px 30px;
  margin: 15px 0;
  display: inline-block;
  border-radius: 4px;
  width: 100%;
}
.review .date {
  font-size: 12px;
  color: #bdbdbf;
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: 1px;
}
.review .date + .name {
  margin-left: 10px;
}
.review .name {
  font-size: 17px;
  color: #a5a5a5;
  display: inline-block;
  margin-top: -5px;
}
.review .name + a {
  margin-left: 15px;
  color: #a2a0a0;
  font-style: italic;
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  font-family: Philosopher, sans-serif;
  top: -2px;
}
.review p {
  font-size: 13px;
  color: #494949;
  line-height: 1.8em;
  margin: 10px 0 0 0;
}
.questions .review p {
  color: #000 !important;
  font-size: 14px;
}
.questions .review .answer {
  margin: 20px -30px -25px;
  border-top: 1px solid #e4e4e4;
  border-radius: 0 0 4px 4px;
}
.questions .review .answer p {
  margin-top: 0;
}
.answer {
  background: #f5f5f5;
  padding: 30px;
}
.answer .left {
  width: 290px;
  margin-left: 15px;
}
.answer .left .img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  display: inline-block;
  float: left;
}
.answer .left .img img {
  border-radius: 50%;
  width: 100%;
}
.answer .left .desc {
  float: left;
  width: 150px;
  margin-left: 15px;
  margin-top: 10px;
  font-size: 14px;
  color: #a5a5a5;
}
.answer .left .desc .name {
  font-size: 14px;
  width: 100%;
}
.answer .left .desc i {
  margin-top: 3px;
  font-family: Philosopher, sans-serif;
  display: inline-block;
}
.answer .right {
  margin-left: 280px;
  position: relative;
}
.answer .right p {
  color: #666 !important;
  margin-bottom: 0;
  line-height: 24px !important;
  font-family: Philosopher, sans-serif;
  font-size: 16px;
  font-style: italic;
}
.answer .right:before {
  content: "";
  position: absolute;
  left: -22px;
  top: 12px;
  width: 10px;
  height: 1px;
  background: #0b7689;
}
.category {
  box-shadow: 0 14px 18px -16px #887e75;
}
.category ul {
  padding: 15px 25px;
}
.category ul li {
  display: inline-block;
  font-family: Philosopher, sans-serif;
  font-size: 17px;
  margin-right: 20px;
}

.category .top a:hover,
.category .bottom a:hover { border-bottom: none; }
.category ul li:last-child { margin-right: 0; }
.category .top { background: #f3f3f3; }
.category .top a { border-bottom: 1px solid #f6b8d9; text-decoration: none; }
.category .top li.active a {
  color: #7b7b7b;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
}

.category .bottom {
  background: #e0e0e0;
  position: relative;
}
.category .bottom li {
  font-style: italic;
  color: #7b7b7b;
  font-size: 16px;
}
.category .bottom li a {
  color: #494949;
  border-bottom: 1px solid #bbb;
  text-decoration: none;
}
.category .bottom li.active a {
  border-bottom: none;
  color: #7b7b7b;
  cursor: default;
}
.category .bottom:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background-color: #d9d9d8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d5d4d3), to(#e0e0e0));
  background-image: -webkit-linear-gradient(top, #d5d4d3, #e0e0e0);
  background-image: -moz-linear-gradient(top, #d5d4d3, #e0e0e0);
  background-image: -o-linear-gradient(top, #d5d4d3, #e0e0e0);
  background-image: linear-gradient(top, #d5d4d3, #e0e0e0);
}

.photos-group,
.price-group {
  margin-top: 40px;
  margin-bottom: 80px;
}

.photos-group h3,
.price-group h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.price-group .price-block {
  padding: 0;
  border: 1px solid #e9e9e9;
  overflow: hidden;
  background: #fff;
  position: relative;
  margin: 0px 0 20px 0;
}
.price-group .price-block .left {
  font-size: 14px;
  color: #494949;
  background: #ffffff;
  padding-right: 0;
}
.price-group .price-block .left span {
  padding: 15px 20px;
  display: inline-block;
  margin-top: -1px;
}
.price-group .price-block .right {
  padding-left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
}
.price-group .price-block .right .price-value {
  background: #f2f2f2;
  width: 100%;
  height: 100%;
  display: inline-block;
  font-size: 23px;
  color: #48b95f;
  font-weight: 700;
  padding: 16px 5px;
  text-align: center;
  font-family: Philosopher, sans-serif;
}
.price-group .price-block .info {
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -18px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-backface-visibility: hidden;
}
.price-group .price-block .info a {
  color: #fff;
  display: inline-block;
  line-height: normal;
}
.price-group .price-block .btn.btn-white {
  background: transparent !important;
  color: #fff !important;
}
.price-group .price-block .btn.btn-white:hover {
  background: #fff !important;
  color: rgba(0, 0, 0, 0.75) !important;
}
.price-group .price-block .apply {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-backface-visibility: hidden;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 0 20px;
  color: #fff !important;
  cursor: default;
}
.price-group .price-block .apply .v-align {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  margin-top: -18px;
}
.price-group .price-block .apply ._right a {
  color: #ffffff;
  font-size: 13px !important;
  text-decoration: none;
  border-bottom: 1px solid;
  line-height: 15px;
  position: relative;
  top: -2px;
}
.price-group .price-block .apply ._right a:hover {
  border-bottom-color: transparent;
}
.price-group .price-block:hover .apply,
.price-group .price-block:hover .info {
  opacity: 1;
}
.am-modal-open .apply {
  opacity: 1;
}
.am-back {
  background: transparent;
  color: #ffffff;
  /*overflow: auto;*/
}
.am-back .am-modal-content + .am-close {
  display: none;
}
.am-back.am-expanded {
  background-color: #222 !important;
  background: rgba(73, 73, 73, 0.7) !important;
  height: 100% !important;
  position: absolute;
}
.am-back .btn {
  font-size: 15px;
  padding: 18px;
  background: transparent;
}
.am-back .submit-group {
  margin: 13px 0;
}

.form-error {
  color: #E0BE00;
  display: none;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

.am-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}
.am-modal-content {
  width: 690px;
  top: 0%;
  left: 50%;
  height: 100%;
  margin: 0 0 0 -345px;
  position: absolute;
}
.am-modal-content .head {
  margin-bottom: 40px;
}
.am-modal-content .t-middle {
  padding: 0px 0 40px;
}
.am-close {
  font-size: 15px;
  cursor: pointer;
}
.am-close:hover i {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.am-close i {
  font-size: 60px;
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  position: relative;
  top: -4px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-backface-visibility: hidden;
}
.am-modal .title {
  color: #fff7b4;
  font-size: 36px;
  line-height: 1em;
  margin-bottom: 20px;
}
.am-modal .sub-title {
  font-style: italic;
  font-size: 17px;
}
.am-modal .text-muted {
  color: #d4d4d4;
  font-style: italic;
  font-size: 17px;
}
label {
  font-weight: normal;
  font-size: 15px;
}
.t-middle {
  display: table;
  width: 100%;
  height: 100%;
}
.t-middle .t-row {
  display: table-row;
}
.t-middle .t-cell {
  display: table-cell;
  vertical-align: middle;
}
.ruble {
  position: relative;
}
.ruble:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: 3px;
  border-bottom: 1px solid;
}
header {
  padding: 16px 0 23px;
  margin-bottom: 30px;
  background-color: #cecece;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dadada), to(#bdbdbb));
  background-image: -webkit-linear-gradient(top, #dadada, #bdbdbb);
  background-image: -moz-linear-gradient(top, #dadada, #bdbdbb);
  background-image: linear-gradient(top, #dadada, #bdbdbb);
}
header .logo {
  display: block;
  margin-left: -40px;
}
header .col-xs-9,
header .col-xs-8 {
  position: relative;
}
header .main-content {
  padding-top: 20px;
}
footer {
  background: #838384;
  padding: 41px 0;
  color: #fff;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
footer p {
  margin-bottom: 6px;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #ffffff;
  border-bottom: 1px solid #ec008c;
}
.tel {
  font-size: 14px;
}
.tel .icn-tel {
  margin-right: 6px;
}
.tel p {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  color: #6e6e6e;
  margin-right: 15px;
}
.tel a {
  font: 700 27px/25px Philosopher, sans-serif;
  text-decoration: none;
  color: #494949;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.tel a span {
  color: #6e6e6e;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.schedule {
  color: #6e6e6e;
  font-size: 14px;
  padding-left: 52px;
}
.schedule .icn-clock {
  margin-right: 3px;
}
.schedule span {
  color: #222;
}
.schedule p {
  margin-right: 7px;
}
.schedule p,
.schedule span {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
.main-menu-container {
  margin-top: 22px;
  z-index: 2;
}
.main-menu {
  display: table;
  width: 100%;
  position: relative;
  margin-top: 10px;
  background-color: #f8f8f8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eeeeee));
  background-image: -webkit-linear-gradient(top, #ffffff, #eeeeee);
  background-image: -moz-linear-gradient(top, #ffffff, #eeeeee);
  background-image: linear-gradient(top, #ffffff, #eeeeee);
  border-radius: 4px;
  height: 55px;
  overflow: hidden;
  box-shadow: 0 15px 40px -16px #887e75;
}
.main-menu menu {
  display: table-row;
}
.main-menu li {
  *float: left;
  display: table-cell;
  margin-right: 0;
  height: 100%;
}
.main-menu li a {
  display: block;
  padding: 15px 21px;
  font-family: Philosopher, sans-serif;
  font-size: 18px;
  color: #ec008c;
  text-decoration: none;
  height: 100%;
}
.main-menu li a span {
  border-bottom: 1px solid #f6b8d9;
  color: #ec008c;
  line-height: 18px;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-backface-visibility: hidden;
}
.main-menu li a:hover {
  text-decoration: none;
}
.main-menu li a:hover span {
  border-bottom-color: transparent;
}
.main-menu li.active a {
  color: #ffffff;
  background-color: #a2a2a2;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#aeaeae), to(#909090));
  background-image: -webkit-linear-gradient(top, #aeaeae, #909090);
  background-image: -moz-linear-gradient(top, #aeaeae, #909090);
  background-image: linear-gradient(top, #aeaeae, #909090);
}
.main-menu li.active a span {
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  border-bottom-color: #c0c0c0;
}
.modal .modal-dialog {
  box-shadow: none;
  border-radius: 0;
  width: 500px;
}
.modal .modal-content {
  border-radius: 0;
  box-shadow: none;
}
.modal .close {
  color: #979797;
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid #979797;
  opacity: 1;
  filter: alpha(opacity=100);
  margin-top: 3px;
}
.modal .close:hover {
  border-bottom-color: transparent;
}
.modal .modal-body {
  padding: 16px 22px 28px;
}
.modal .modal-header {
  background: #fbfbfb;
  border-bottom-color: #dbdbdb;
  padding: 14px 22px;
}
.modal .modal-header .modal-title {
  font-size: 24px;
  line-height: 20px;
  color: #030303;
}
.modal .modal-body label,
.modal .modal-body h5 {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 5px;
  font-family: Verdana, sans-serif;
  color: #494949;
}
.modal .form-control {
  width: 320px;
}
button:focus {
  outline: none !important;
}
.form-control {
  height: 46px;
}
.form-control:focus {
  border-color: #ec008c;
  outline: 0;
  box-shadow: none;
}
.form-control.error {
  background: #fffce3;
  border-color: #e0be00;
  box-shadow: inset 0 0 0 1px #e0be00;
}
textarea.form-control {
  height: 105px;
  resize: none;
}
.checkbox {
  padding-left: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox label {
  margin-bottom: 3px !important;
}
input[type="text"],
input[type="email"],
input[type="password"],
input.form-control {
  border: 1px solid #e5e5e5;
  font-size: 14px;
  box-shadow: none;
}
input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input.form-control::-webkit-input-placeholder {
  color: #acacac;
}
input[type="text"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input.form-control::-moz-placeholder {
  color: #acacac;
}
input[type="text"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input.form-control:-moz-placeholder {
  color: #acacac;
}
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input.form-control:-ms-input-placeholder {
  color: #acacac;
}
label.error {
  display: none!important;
}
@media (min-width: 1170px) {
  .container { width: 1235px; }
}

@media (max-width: 1300px) {
  header .logo { margin-left: 0; }
}