@font-face {
  font-family: "Exo";
  src: url("../fonts/Exo2.0-Light.otf");
  font-weight: 300;
}

@font-face {
  font-family: "Exo";
  src: url("../fonts/Exo2.0-Medium.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Exo";
  src: url("../fonts/Exo2.0-Regular.otf");
  font-weight: 500;
}

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

ul,
menu,
dir {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}

:focus {
  outline: none;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: Exo;
  background: #fff;
  min-width: 320px;
}

.container {
  display: block;
  max-width: 1024px;
  min-width: 320px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.header {
  width: 100%;
  position: relative;
  z-index: 2;
}
.header__top {
  background: #7da6ab;
  background: rgba(125, 166, 171, 0.98);
  text-align: center;
  padding-top: 13px;
  padding-bottom: 20px;
}
.header__top-left {
  display: inline-block;
  float: left;
  text-align: left;
  width: 245px;
  padding-top: 20px;
}
.header__top-left .address {
  padding-top: 25px;
  width: 320px;
}
.header__top-center {
  display: inline-block;
}
.header__top-right {
  display: inline-block;
  float: right;
}
.header__bottom {
  background: #4b403f;
  background: url(../images/header-nav-bg.png) repeat-x;
  background-size: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.header__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  position: relative;
}
.header__nav-list {
  display: inline-block;
  color: #fff;
}
.header__nav-list-nav {
  position: relative;
}
.header__nav-list-nav:hover .header__nav--second {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(600px) rotateX(0);
  transform: translateY(0) perspective(600px) rotateX(0);
}
.header__nav-list-nav:after {
  content: "";
  position: absolute;
  top: 22px;
  right: 2px;
  z-index: 1;
  display: block;
  width: 10px;
  height: 6px;
  transition: all 0.5s ease;
  background: url(../images/nav-arr.png) no-repeat;
}
.header__nav-list-nav:hover:after {
  transform: rotate(180deg);
}
.header__nav-link {
  color: inherit;
  font-family: Exo;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  padding: 13px 17px;
  display: block;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header__nav-link:hover {
  color: #4b403f;
}
.header__nav-first > .header__nav-list:first-child .header__nav-link {
  padding-left: 9px;
}
.header__nav-first > .header__nav-list:last-child .header__nav-link {
  padding-right: 9px;
}
.header__nav--second {
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 10;
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  opacity: 0;
  -webkit-transform: translateY(0em) perspective(600px) rotateX(-90deg);
  transform: translateY(0em) perspective(600px) rotateX(-90deg);
  background: #fff;
  background: rgba(240, 243, 244, 0.9);
}
.header__nav--second .header__nav-list {
  display: block;
  width: 218px;
}
.header__nav--second .header__nav-list-active {
  background: #7ea8ad;
  background: rgba(126, 168, 173, 0.6);
}
.header__nav--second .header__nav-list:hover {
  background: #7ea8ad;
  background: rgba(126, 168, 173, 0.6);
}
.header__nav--second .header__nav-link {
  font-weight: 300;
  padding: 10px 10px;
  display: block;
  color: #4b403f;
  text-align: left;
}

body.main .header {
  position: absolute;
}

.target_nav {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30px;
  z-index: 10;
  left: 20px;
  cursor: pointer;
}
.target_nav:after {
  content: "";
  position: absolute;
  display: block;
  width: 200%;
  height: 200%;
  background: transparent;
  cursor: pointer;
  top: -20px;
  left: -15px;
}
.target_nav span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: #fff;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.target_nav span:nth-child(1),
.target_nav span:nth-child(4) {
  top: 0px;
}
.target_nav span:nth-child(2),
.target_nav span:nth-child(5) {
  top: 10px;
}
.target_nav span:nth-child(3),
.target_nav span:nth-child(6) {
  top: 20px;
}
.target_nav span:nth-child(4),
.target_nav span:nth-child(5),
.target_nav span:nth-child(6) {
  left: 15px;
}
.target_nav.open span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(19.8px, -5px);
  transform: rotate(45deg) translate(19.8px, -5px);
}
.target_nav.open span:nth-child(4) {
  -webkit-transform: rotate(-45deg) translate(-22.5px, 8.4px);
  transform: rotate(-45deg) translate(-22.5px, 8.4px);
}
.target_nav.open span:nth-child(2) {
  height: 15px;
  border-radius: 100%;
  -webkit-transform: scale(0.4) translate(21px, -16px);
  transform: scale(0.4) translate(21px, -16px);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
}
.target_nav.open span:nth-child(5) {
  height: 15px;
  border-radius: 100%;
  -webkit-transform: scale(0.4) translate(-16px, -16px);
  transform: scale(0.4) translate(-16px, -16px);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0;
}
.target_nav.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(19px, 5px);
  transform: rotate(-45deg) translate(19px, 5px);
}
.target_nav.open span:nth-child(6) {
  -webkit-transform: rotate(45deg) translate(-19.8px, -8.5px);
  transform: rotate(45deg) translate(-19.8px, -8.5px);
}
.target_nav-XS {
  display: block;
  border: 5px solid transparent;
  border-left: 5px solid #fff;
  position: absolute;
  top: 15px;
  left: 35px;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.target_nav-XS.open {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.target_nav-XS.open:after {
  top: -6px;
  left: -30px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.target_nav-XS:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 31px;
  background: transparent;
  cursor: pointer;
  top: -15px;
  left: -39px;
}

.navXS {
  display: none;
  background: #7ea8ad;
}
.navXS .navXS__head {
  display: block;
  width: 100%;
  height: 75px;
  padding: 10px 0px;
  text-align: center;
  box-sizing: border-box;
}
.navXS .header__nav-first {
  display: none;
}
.navXS .header__nav--second {
  display: none;
}
.navXS .header__nav-list-nav .target_nav {
  width: 39px;
  top: 14px;
  left: 27px;
}
.navXS .header__nav-list-nav .target_nav span {
  height: 2px;
}
.navXS .header__nav-list-nav .target_nav span:nth-child(2) {
  top: 5px;
}
.navXS .header__nav-list-nav .target_nav span:nth-child(3) {
  top: 10px;
}
.navXS .header__nav-list-nav .target_nav.open span:nth-child(1) {
  top: -1px;
  left: 8px;
}
.navXS .header__nav-list-nav {
  display: block;
}
.navXS .header__nav-list-nav:hover .target_nav span {
  background: #000;
}
.navXS .header__nav-list-nav .header__nav--second {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}
.navXS .header__nav-link {
  padding-left: 65px !important;
}
.navXS .header__nav-link:hover {
  background: #fff;
}
.navXS .logo {
  display: inline-block;
}
.navXS .logo svg {
  height: 60px;
  width: auto;
}
.navXS .button {
  display: inline-block;
}

.active-point {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background: #fff;
  background: url(../images/header-nav-bg-active.png) repeat-x;
  background-size: contain;
  z-index: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.social .social__link svg {
  -webkit-filter: drop-shadow(3px 3.8px 1.3px rgba(39, 39, 39, 0.2));
  filter: none;
  fill: #fff;
  display: inline-block;
  float: left;
  margin: 0px 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.social .social__link svg:hover {
  fill: #4b403f;
}
.social .social__link svg:active {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(39, 39, 39, 0.2));
  filter: none;
  fill: #fff;
}

.social .social__link-vk svg {
  width: 24px;
  margin-left: 20px;
  margin-top: 7px;
}
.social .social__link-vk svg:hover {
  /*fill: #507299;*/
}

.social .social__link-f svg {
  width: 20px;
  margin-top: 4px;
  margin-left: 17px;
}
.social .social__link-f svg:hover {
  /*fill: #3b5998;*/
}

.social .social__link-q svg {
  width: 24px;
  margin-left: 21px;
  margin-top: 2px;
}
.social .social__link-q svg:hover {
  /*fill: #19a15f;*/
}

.language {
  display: inline-block;
  float: left;
}
.language-select {
  display: block;
  width: 70px;
  height: 30px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: inherit;
  font-weight: 300;
  font-size: 20px;
}
.language-select option {
  background: #7da6ab;
}

.address {
  clear: both;
}
.address p {
  font-family: inherit;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
}
.address span {
  float: left;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -5px;
}
.address span svg {
  width: 20px;
  fill: #fff;
  -webkit-filter: drop-shadow(3px 3.8px 1.3px rgba(39, 39, 39, 0.2));
  filter: none;
}

.logo svg {
  -webkit-filter: drop-shadow(3px 3.8px 1.3px rgba(39, 39, 39, 0.2));
  /*  filter:none; */
  width: 100px;
}

.logo .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}

.logo .st1 {
  fill: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
}

.logo:hover .st1 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.order-phone {
  font-family: inherit;
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  margin-top: 20px;
}

.order-button {
  margin-top: 17px;
}

.button {
  font-family: inherit;
  font-weight: 300;
  font-size: 20px;
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 3px 35px 7px 35px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #fff;
}
.button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.button:hover {
  color: #4b403f;
}
.button:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.button-dark {
  background: #7da6ab;
  border-color: #7da6ab;
}
.button-block {
  display: inline-block;
}

.footer {
  background: #7ea8ad;
  text-align: center;
  padding-bottom: 35px;
}
.footer__left {
  display: inline-block;
  float: left;
  width: 183px;
  margin-top: 30px;
}
.footer__left .logo svg {
  width: 89px;
  margin-left: 31px;
}
.footer__left .social {
  margin-top: 21px;
  margin-left: 26px;
}
.footer__nav {
  display: inline-block;
  text-align: left;
  margin-top: 25px;
  margin-left: -40px;
}
.footer__nav-column {
  float: left;
}
.footer__nav-column:last-child {
  margin-left: 70px;
}
.footer__nav-column ul:first-child .footer__nav-list:first-child {
  margin-top: 0;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav ul .footer__nav-list {
  margin-bottom: 5px;
  padding: 0;
}
.footer__nav ul .footer__nav-list a {
  font-family: inherit;
  font-weight: 300;
  color: #272727;
  font-size: 14px;
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.footer__nav ul .footer__nav-list a:hover {
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}
.footer__nav ul .footer__nav-list:first-child {
  margin-top: 20px;
  margin-bottom: 4px;
}
.footer__nav ul .footer__nav-list:first-child a {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
.footer__right {
  display: inline-block;
  float: right;
}
.footer__right .order-phone {
  margin-top: 25px;
}
.footer__right .address {
  margin-top: 30px;
}

.sxema {
  clear: both;
  margin-top: 23px;
  text-align: left;
  margin-left: 30px;
}
.sxema p {
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  float: left;
}
.sxema p a {
  text-decoration: underline;
  color: inherit;
}
.sxema p a:hover {
  text-decoration: none;
}

.question {
  clear: both;
  padding-top: 36px;
}
.question h2 {
  font-family: inherit;
  font-size: 20px;
  font-weight: 300;
  color: #fefefe;
  margin: 0;
}
.question textarea {
  width: 100%;
  height: 143px;
  font-family: inherit;
  padding: 13px 12px;
  font-size: 14px;
  font-weight: 300;
  color: #272727;
  color: rgba(39, 39, 39, 0.5);
  resize: vertical;
  box-sizing: border-box;
  margin-bottom: 17px;
}
.question .button {
  width: 100%;
  background: transparent;
  cursor: pointer;
}

.banner {
  overflow: hidden;
  position: relative;
}
.banner .picker {
  position: absolute;
  bottom: 13%;
  left: 67%;
  z-index: 1;
  margin-left: -481px;
}
.banner__slide-item {
  position: relative;
  min-height: 100vh;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner__slide-item > img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  object-position: 44%;
  left: 0;
  width: 100%;
  top: 0;
    /* position: absolute;
    height: inherit;
    object-fit: cover;
    object-position: 44%;
    width: inherit;
    top: 0; */
      /* position: absolute;
      margin-top: 0;
      top: 0;
      height: inherit; */
      /* top: 50%;
      margin-top: -450px;
      left: 50%;
      margin-left: -960px; */
}
.banner__slide-dots {
  list-style: none;
  position: absolute;
  left: 50%;
  padding: 0;
  transform: translateX(-50%);
  /* list-style: none;
  position: absolute;
  left: 50%;
  margin-left: -26px;
  bottom: 40px;
  display: inline-block;
  padding: 0; */
}
.banner__slide-dots li {
  float: left;
  display: block;
  cursor: pointer;
  width: 10px;
  height: 10px;
  margin: 0px 8px;
  border-radius: 100%;
  border: none;
  transition: all 0.5s ease;
  background: #7ea8ad;
}
.banner__slide-dots li:hover {
  transform: scale(1.1);
}
.banner__slide-dots li.slick-active {
  background: #fff;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  border: 1px solid #ccc;
}
.banner__slide-dots li button {
  display: none;
}
.banner__slide-nav {
  position: absolute;
  display: block;
  width: 30px;
  height: 50px;
  z-index: 1;
  top: 50%;
  margin-top: 50px;
  left: 50%;
  transition: all 0.2s ease;
  cursor: pointer;
}
.banner__slide-nav-prev {
  margin-left: -638px;
  background: url(../images/arrow_left.png) no-repeat;
}
.banner__slide-nav-prev:hover {
  /* margin-left: -635px; */
}
.banner__slide-nav-next {
  margin-left: 608px;
  background: url(../images/arrow_right.png) no-repeat;
}
.banner__slide-nav-next:hover {
  margin-left: 603px;
}
.banner__box {
  position: absolute;
  top: 38%;
  left: 30%;
  /* left: calc(35% + 168px);  */
  z-index: 1;
}
/* .banner__box.third {left: calc(50% - 30px);} */
.banner__box-text {
  font-family: Hogarthscript;
  font-size: 110px;
  color: #fff;
  -webkit-filter: drop-shadow(0px 3px 4.8px rgba(39, 39, 39, 0.2));
  filter: none;
}
.banner__box-img {
  position: absolute;
  top: auto;
  right: 0;
  left: auto;
  margin: 10px -130px;
}
.banner__box .button {
  position: absolute;
  background: #7ea8ad;
  top: 18em;
  transform: translateX(-50%);    
  bottom: unset;
}

.page {
  margin-top: 35px;
}
.page-title h1,
.page-title h2 {
  text-align: center;
  color: #4b403f;
  font-family: Hogarthscript;
  font-size: 70px;
  line-height: 30px;
  font-weight: normal;
  margin-top: 15px;
}
.page__section-bg-white {
  width: 100%;
  margin-bottom: 33px;
}
.page__section-bg-blue {
  background: #7ea8ad;
  background: rgba(126, 168, 173, 0.9);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: inline-block;
  width: 100%;
  margin-bottom: 33px;
}
.page__section-text-decorate {
  text-align: center;
  margin-top: 0px;
  margin-bottom: 6px;
  color: #272727;
  font-size: 20px;
  font-weight: 300;
}
.page__section-text-decorate span {
  color: #7ea8ad;
  font-family: Hogarthscript;
  font-size: 50px;
}
.page__section-text-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  color: #4b403f;
  margin-top: 0;
  margin-bottom: 30px;
}
.page__section-leftside {
  display: inline-block;
  width: 230px;
  float: left;
}
.page__section-leftside .page__section-text-title {
  margin-bottom: 20px;
}
.page__section-leftside-item {
  margin-bottom: 30px;
}
.page__section-mainside {
  max-width: 830px;
  margin-left: 260px;
}
.page__section-mainside .page__section-text-decorate {
  font-size: 16px;
}
.page__section-mainside .page__section-text-decorate span {
  font-size: 45px;
}

.content__item {
  display: inline-block;
  box-sizing: border-box;
  margin: 10px -2px;
  vertical-align: top;
}
.content__item-padding {
  padding: 0px 10px;
}
.content__item-2 {
  width: 50%;
}
.content__item-3 {
  width: 33.3333%;
  padding: 0px 15px;
}
.content__item-3:first-child {
  padding-left: 0;
}
.content__item-3:last-child {
  padding-right: 0;
}
.content__item-4 {
  width: 25%;
  padding: 0px 6px;
}
.content__item-4:first-child {
  margin-left: 0;
  padding-left: 0;
}
.content__item-4:last-child {
  margin-left: 0;
  padding-right: 0;
}
.content__item:first-child {
  margin-left: 0;
}
.content__item:last-child {
  margin-left: 0;
}
.content__item-right {
  float: right;
}

.special {
  height: 400px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  padding: 30px;
  box-sizing: border-box;
}
.special__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}
.special__image img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.special:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.special__desc {
  position: absolute;
  width: 100%;
  bottom: 30px;
  z-index: 1;
}
.special__desc-text {
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
  clear: both;
  margin-top: 25px;
}
.special__desc-link {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  line-height: 16px;
}
.special__desc-link a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  top: -55px;
  left: -37px;
  position: absolute;
}
.special__desc-link a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 30px;
}
.special__desc-link a span {
  display: block;
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: #7ea8ad;
  float: left;
  margin-top: -10px;
  margin-right: 20px;
  position: relative;
}
.special__desc-link a span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7.5px;
  margin-left: -3.5px;
  height: 15px;
  width: 9px;
  background: url(../images/more_arrow.png) no-repeat;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.special__desc-link a:hover span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.special__desc-price {
  display: inline-block;
  background: #7ea8ad;
  position: absolute;
  right: 29px;
  bottom: 0;
  font-size: 20px;
  font-weight: 300;
  padding: 10px 13px;
  border: 1px solid #fff;
}

.uslugi__icon {
  padding: 0;
  height: 86px;
  text-align: center;
  margin-top: 52px;
}
.uslugi__icon-icon {
  width: 100%;
}

.uslugi__desc {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  width: 100%;
  text-align: center;
  margin: 30px 0px;
}

.feedback {
  border: 1px solid #49a7a2;
  padding: 26px 18px 60px 18px;
  min-height: 320px;
  max-height: 320px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.feedback > span {
  position: absolute;
  width: 100%;
  height: 150px;
  background-image: -webkit-linear-gradient(
    bottom,
    white 37%,
    transparent 100%
  );
  background-image: linear-gradient(to top, white 37%, transparent 100%);
  left: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.feedback.more {
  max-height: 100%;
}
.feedback.more > span {
  opacity: 0;
}
.feedback h2 {
  margin: 0;
  color: #7ea8ad;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.feedback p {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
  margin-bottom: 20px;
  position: relative;
}
.feedback-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  position: absolute;
  bottom: 9px;
  z-index: 2;
  cursor: pointer;
  color: #7ea8ad;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.feedback-link span {
  display: block;
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: #7ea8ad;
  float: left;
  margin-top: -10px;
  margin-right: 20px;
  position: relative;
}
.feedback-link span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7.5px;
  margin-left: -3.5px;
  height: 15px;
  width: 9px;
  background: url(../images/more_arrow.png) no-repeat;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.feedback-link:hover span:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.news {
  width: 100%;
}
.news__image {
  max-width: 100%;
}
.news__image img {
  width: 100%;
}
.news__desc {
  padding-left: 35px;
  padding-right: 25px;
  padding-bottom: 30px;
}
.news__desc-data {
  color: #272727;
  color: rgba(39, 39, 39, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}
.news__desc-title {
  color: #7ea8ad;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 30px;
}
.news__desc-title a {
  color: inherit;
  text-decoration: none;
}
.news__desc-text {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.slick-prev {
  color: transparent;
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  margin-top: 20px;
  left: -76px;
  width: 0px;
  height: 0px;
  cursor: pointer;
}
.slick-prev:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  border: 20px solid transparent;
  border-right: 20px solid #7ea8ad;
  z-index: 1;
}
.slick-prev:after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0px;
  border: 20px solid transparent;
  border-right: 20px solid #fff;
  z-index: 2;
}

.slick-next {
  color: transparent;
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: -44px;
  margin-top: 20px;
  width: 0px;
  height: 0px;
  cursor: pointer;
}
.slick-next:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  border: 20px solid transparent;
  border-left: 20px solid #fff;
  z-index: 2;
}
.slick-next:after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0px;
  border: 20px solid transparent;
  border-left: 20px solid #7ea8ad;
  z-index: 1;
}

.gallery__item img {
  width: 100%;
}

.promo {
  width: 100%;
}

.map {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.map.map--contacts {
  height: 500px;
}
.map__desc {
  position: absolute;
  top: 0;
  left: 0;
  background: #7ea8ad;
  background: rgba(126, 168, 173, 0.9);
  width: 230px;
  height: 100%;
  z-index: 100;
  padding: 20px;
  padding-top: 47px;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.map__desc h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding-right: 57px;
}
.map__desc a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  display: block;
  clear: both;
  margin-top: 30px;
}
.map__desc-link-train {
  margin-top: 40px !important;
}
.map__desc-link-svg {
  width: 46px;
  float: left;
  margin-right: 10px;
}
.map__desc-link-svg-plane {
  margin-top: -4px;
}
.map__desc-link-svg-train {
  margin-top: -10px;
}
.map__map {
  width: 100%;
  height: 100%;
}
.map__map #map {
  width: 960px;
  height: 300px;
}
.map.map--contacts .map__map #map {
  height: 500px;
}
.map__map #map .leaflet-left {
  right: 10px;
  left: auto;
  color: #7ea8ad;
}
.map__map #map .leaflet-bar {
  border-color: #7ea8ad;
}
.map__map #map .leaflet-bar a {
  color: #7ea8ad;
}

.picker {
  display: block;
  width: 350px;
  /*height: 230px;*/
  opacity: 0.9;
  background: #fff;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #7ea8ad;
  padding: 20px 40px;
  box-sizing: border-box;
  position: relative;
}
.picker__title {
  text-align: center;
  color: #4b403f;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
}
.picker__box-area label {
  color: #272727;
  font-size: 16px;
  cursor: pointer;
  font-weight: 400;
  clear: both;
  display: block;
  width: 100%;
  margin-bottom: 31px;
  position: relative;
}
.picker__box-area label > label.cal {
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 2px;
  right: 37px;
  background: url(../images/svg_icon/calendar.svg);
}
.picker__box-area label input {
  float: right;
  width: 131px;
  height: 30px;
  background: #fff;
  border: 1px solid #7ea8ad;
  margin-top: -5px;
  margin-right: 30px;
  text-align: center;
  color: #272727;
  color: #000000; /* rgba(39, 39, 39, 0.5); */
  font-size: 13px;
  font-weight: 400;
}
.picker__box-area label input:hover {
  border-color: #4b403f;
}
.picker__box-btn .button {
  font-size: 20px;
  background: #7ea8ad;
  border-color: #fff;
  width: 100%;
  padding: 1px;
}
.picker__info {
  position: absolute;
  bottom: -30px;
  left: 0;
  font-size: 16px;
  font-weight: 400;
  color: #7ea8ad;
  text-align: center;
  width: 100%;
}

.about {
  float: left;
}
.about:last-child {
  margin-bottom: 100px;
}
.about__img img {
  width: 100%;
}
.about__desc {
  padding: 8% 8%;
  padding-bottom: 0px;
}
.about__desc p {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 23px;
}

.side-block {
  padding: 0;
  border: 1px solid #7ea8ad;
}
.side-block__title {
  color: #4b403f;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px;
  padding-left: 24px;
  padding-bottom: 0;
}
.side-block__list ul {
  list-style: none;
  padding: 0;
}
.side-block__list-contact {
  color: #272727;
  font-size: 16px;
  font-weight: 300;
  padding: 26px 0px 10px 49px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  line-height: 32px;
  position: relative;
}
.side-block__list-contact:hover {
  background: #7ea8ad;
  color: #fff;
}
.side-block__list-contact-map:after {
  content: "";
  display: block;
  width: 19px;
  height: 27px;
  position: absolute;
  top: 31px;
  left: 23px;
  background: url(../images/location.png) no-repeat;
}
.side-block__list-contact-phone {
  padding-top: 0;
  padding-bottom: 0;
}
.side-block__list-contact-phone:first-child {
  margin-top: 21px;
}
.side-block__list-contact-phone:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 9px;
  left: 23px;
  background: url(../images/phone.png) no-repeat;
}
.side-block__list-contact-phone:last-child:after {
  display: none;
}
.side-block__list-contact-mail {
  margin-top: 8px;
  margin-bottom: 20px;
}
.side-block__list-contact-mail:after {
  content: "";
  display: block;
  width: 19px;
  height: 16px;
  position: absolute;
  top: 35px;
  left: 24px;
  background: url(../images/mail.png) no-repeat;
}

.side-nav {
  padding: 0;
  border: 1px solid #7ea8ad;
}
.side-nav__title {
  color: #4b403f;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 20px;
  padding-bottom: 0;
  padding-top: 13px;
}
.side-nav__list ul {
  list-style: none;
  padding: 0;
}
.side-nav__list ul li a {
  color: #272727;
  font-size: 16px;
  font-weight: 300;
  padding: 5px 0px 9px 25px;
  display: block;
  box-sizing: border-box;
  width: 100%;
}
.side-nav__list ul li a:hover {
  background: #7ea8ad;
  color: #fff;
}
.side-nav__list ul li.side-nav__list-active a {
  background: #7ea8ad;
  color: #fff;
}

.people__item {
  text-align: center;
}
.people__item-logo img {
  width: 110px;
}
.people__item-name h3 {
  color: #8ab0b4;
  font-size: 16px;
  font-weight: 400;
  margin-top: 2px;
  margin-bottom: 2px;
}
.people__item-name p {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.people__item-contact a {
  display: block;
  position: relative;
  margin-top: 2px;
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.people__item-contact-phone {
  margin-left: -37px;
}
.people__item-contact-phone:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
  left: 5px;
  top: 5px;
  background: url(../images/phone.png) no-repeat;
}
.people__item-contact-mail:before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 16px;
  margin-right: 10px;
  position: relative;
  top: 3px;
  background: url(../images/mail.png) no-repeat;
}

.no-margin {
  margin: 0 !important;
}

.number .special {
  height: 320px;
  margin-top: 23px;
}

.number p {
  color: #272727;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 24px;
}

.number .picker {
  float: right;
}

.restoran__gallery {
  width: 333px;
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
}
.restoran__gallery-item-link {
  margin-bottom: 25px;
  display: block;
}
.restoran__gallery-item-link img {
  width: 100%;
}

.restoran__menu {
  padding-left: 25px;
  width: 627px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.restoran__menu-book {
  margin-top: 32px;
  background: url(../images/menu-bg.jpg) center right repeat-y;
  box-shadow: 4.1px 2.9px 18px 2px rgba(39, 39, 39, 0.2);
  padding: 30px 75px 155px 40px;
}
.restoran__menu-book_footer {
  height: 164px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0px;
  background: url(../images/menu-bottom.jpg) bottom right no-repeat;
}
.restoran__menu-list {
  padding-left: 36px;
  padding-top: 8px;
}
.restoran__menu-list ul {
  display: inline-block;
  vertical-align: top;
}
.restoran__menu-list ul:first-child {
  margin-right: 100px;
}
.restoran__menu-list ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  cursor: pointer;
  border-bottom: 1px solid #fff;
}
.restoran__menu-list ul li span {
  color: #7ea8ad;
}
.restoran__menu-list ul li:hover {
  color: #4b403f;
  text-decoration: underline;
}
.restoran__menu-list ul li.restoran__menu-active {
  color: #4b403f;
  text-decoration: underline;
}

.restoran .menu {
  display: table;
  width: 100%;
}
.restoran .menu-item {
  display: table-row;
}
.restoran .menu-item:first-child .menu-cell {
  border-bottom: none;
}
.restoran .menu-item:first-child .menu-cell-name {
  font-size: 25px;
  line-height: 16px;
  text-transform: uppercase;
}
.restoran .menu-item:last-child .menu-cell {
  border-bottom: none;
}
.restoran .menu-cell {
  display: table-cell;
  border-bottom: 1px solid #7ea8ad;
  padding: 7px 0px;
  padding-right: 10px;
  vertical-align: middle;
}
.restoran .menu-cell:last-child {
  padding-right: 0;
}
.restoran .menu-cell-name {
  color: #272727;
  font-size: 14px;
  font-weight: 400;
}
.restoran .menu-cell-weight {
  text-align: right;
  color: rgba(39, 39, 39, 0.5);
  font-size: 12px;
  font-weight: 300;
}
.restoran .menu-cell-price {
  color: #7ea8ad;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.hotel__gallery {
  width: 100%;
}
.hotel__gallery-body {
  position: relative;
}
.hotel__gallery-head {
  margin-bottom: 27px;
  display: inline-block;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.hotel__gallery-head ul {
  list-style: none;
  padding: 0;
}
.hotel__gallery-head ul li {
  float: left;
  width: 25%;
  padding: 4px 0px;
  text-align: center;
  color: #4b403f;
  background: #fff;
  box-sizing: border-box;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  position: relative;
}
.hotel__gallery-head ul li span {
  display: block;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.hotel__gallery-head ul li:first-child {
  border-left: none;
}
.hotel__gallery-head ul li:last-child {
  /* border-right: none; */
}
.hotel__gallery-head ul li.hotel__gallery-head-active,
.hotel__gallery-head ul li:hover {
  color: #fff;
  background: #7ea8ad;
}
.hotel__gallery-head ul li.hotel__gallery-head-active:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #7ea8ad;
}

.hotel__slider {
  height: 280px;
  overflow: hidden;
}
.hotel__slider-zoom {
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  top: 50%;
  left: 405px;
  margin-top: -18px;
  background: url(../images/zoom.png) no-repeat;
}
.hotel__slider-fix {
  width: 800px;
  display: inline-block;
}
.hotel__slider-main {
  display: inline-block;
  width: 100%;
}
.hotel__slider-main_item {
  height: 280px;
  width: 800px;
  position: relative;
  overflow: hidden;
}
.hotel__slider-main_item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.hotel__slider-main .banner__slide-nav-prev {
  margin: 0;
  left: 15px;
  margin-top: -25px;
}
.hotel__slider-main .banner__slide-nav-next {
  margin: 0;
  right: 15px;
  margin-top: -25px;
  left: auto;
}
.hotel__slider-min {
  margin-left: 5px;
  display: inline-block;
  vertical-align: top;
  width: 150px;
}
.hotel__slider-min_item {
  height: 90px !important;
  width: 150px !important;
  position: relative;
  margin-bottom: 2px;
  overflow: hidden;
  cursor: pointer;
}
.hotel__slider-min_item img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.hotel__slider-min .slick-list {
  padding: 0 !important;
}

.hotel__desc {
  width: 100%;
  margin-top: 37px;
}
.hotel__desc h2 {
  color: #4b403f;
  font-size: 20px;
  font-weight: 400;
}
.hotel__desc-price {
  background: #7ea8ad;
  padding: 14px 27px;
}
.hotel__desc-price h2 {
  color: #272727;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  margin-bottom: 11px;
}
.hotel__desc-price p {
  color: #272727;
  font-size: 16px;
  font-weight: 300;
}
.hotel__desc-price p span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}
.hotel__desc-price span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
}
.hotel__desc-text h2 {
  margin-top: 35px;
  margin-bottom: 23px;
}
.hotel__desc-text p {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  padding-bottom: 19px;
}
.hotel__desc-service {
  clear: both;
  float: right;
  padding-top: 55px;
  width: 90%;
}
.hotel__desc-service h2 {
  margin-top: 0;
  margin-bottom: 30px;
  margin-left: -21px;
}
.hotel__desc-service ul {
  display: inline-block;
  vertical-align: top;
  margin-right: 101px;
  min-width: 85%;
}
.hotel__desc-service ul:last-child {
  margin-right: 8px;
}
.hotel__desc-service ul li {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 30px;
  list-style: none;
  position: relative;
}
.hotel__desc-service ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: -19px;
  width: 10px;
  height: 10px;
  background: #7ea8ad;
  border-radius: 100%;
  float: left;
}

.hotel .picker {
  float: right;
}

#cboxTopLeft,
#cboxTopCenter,
#cboxTopRight,
#cboxMiddleLeft,
#cboxMiddleRight,
#cboxBottomLeft,
#cboxBottomCenter,
#cboxBottomRight {
  display: none;
}
#cboxLoadedContent {
  margin-bottom: 0;
}
#cboxClose {
  top: -40px;
  right: -40px;
  bottom: auto;
  width: 30px;
  height: 30px;
  background: url(../images/x.png) no-repeat;
  background-size: 100% 100%;
  color: transparent;
  transition: all 0.5s ease;
}
#cboxClose:hover {
  transform: rotate(90deg);
}
#cboxPrevious {
  color: transparent;
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: -100px;
  margin-top: 20px;
  width: 0px;
  height: 0px;
  cursor: pointer;
  transition: all 0.5s ease;
}
#cboxPrevious:hover {
  transform: translateX(-5px) scale(1.1);
}
#cboxPrevious:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  border: 20px solid transparent;
  border-right: 20px solid #fff;
  z-index: 2;
}
#cboxPrevious:after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 0px;
  border: 20px solid transparent;
  border-right: 20px solid #7ea8ad;
  z-index: 1;
}
#cboxNext {
  color: transparent;
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: auto;
  right: -60px;
  margin-top: 20px;
  width: 0px;
  height: 0px;
  cursor: pointer;
  transition: all 0.5s ease;
}
#cboxNext:hover {
  transform: translateX(5px) scale(1.1);
}
#cboxNext:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  border: 20px solid transparent;
  border-left: 20px solid #fff;
  z-index: 2;
}
#cboxNext:after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 0px;
  border: 20px solid transparent;
  border-left: 20px solid #7ea8ad;
  z-index: 1;
}
#colorbox,
#cboxOverlay,
#cboxWrapper,
#cboxContent {
  overflow: visible;
}
#cboxCurrent {
  display: none;
}

.text-content p {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 20px;
}
.text-content li {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}
.text-content td {
  color: #272727;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
}
.text-content h2 {
  color: #272727;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

font {
  display: none;
}

.events-detail-pic {
  float: left;
  margin-bottom: 20px;
}
.events.gallery {
  width: 80%;
  margin: 0 auto;
}
.events.gallery .content__item {
  height: 88px;
  overflow: hidden;
}
.about__desc p.event-date {
  color: #7ea8ad;
}
.about__desc.events {
  padding: 0;
}
.about__desc.events p {
  margin-bottom: 9px;
}

a.tl-button,
a.tl-button:hover {
  float: right;
  text-align: center;
  display: inline-block;
  padding: 10px 15px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  color: white;
  background: linear-gradient(to top, #567f83, #567f83);
}
a.tl-button:hover {
  background: linear-gradient(to top, #67969b, #9cb0b2);
}
.restoran__gallery-item > .slick-prev {
  top: calc(50% - 20px);
  left: -14px;
}
.restoran__gallery-item > .slick-next {
  top: calc(50% - 20px);
  right: 16px;
}

.youtube-video{width: 100%;height: 480px;}@media (max-width: 768px){.youtube-video{height: 360px;}}@media (max-width: 430px){.youtube-video{height: 210px;}}@media (max-width: 380px){.youtube-video{height: 185px;}}
.index-text p{text-align: left}.index-text img{float: left}@media (max-width: 1024px){.index-text img {float: none;}.index-text, .index-text p{text-align: center;}}