/*
Author: Denis Timoshkov
*/

@font-face {
  font-family: "Futura";
  src: local("Futura Book"),
    url("../fonts/futurabook.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Futura";
  src: local("Futura Book Italic"),
    url("../fonts/futurabook-italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Futura";
  src: local("Futura Demi"),
    url("../fonts/futurademi.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.2;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus {
  outline: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body {
  line-height: 1.2;
  color: #000;
  font-weight: 400;
  font-family: "Futura", sans-serif;
  word-break: keep-all;
  word-wrap: normal;
  max-width: 1920px;
  min-width: 320px;
  margin: 0 auto;
  background-color: #fff;
}

.body--active {
  overflow: hidden;
}

.body.modal-open {
  padding: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-weight: 700;
  text-transform: none;
  padding: 0;
  position: relative;
  text-align: left;
  margin: 0;
  border: 0;
  margin-bottom: 20px;
  z-index: 1;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3,
h4 {
  font-size: 1.5rem;
  text-transform: none;
}

p {
  margin: 0 0 20px;
}

a {
  color: #7d5e58;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

a:hover {
  color: #50352f;
}

blockquote {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.styled-list {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.styled-list--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.styled-list li {
  padding: 0;
  padding-top: 1px;
  padding-left: 34px;
  min-height: 24px;
  margin: 0;
  margin-bottom: 20px;
  list-style: none;
  position: relative;
  z-index: 1;
}

.styled-list li:last-child {
  margin: 0;
}

.styled-list li::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
  z-index: 1;
  background-image: url("../img/icons/styled-list.svg");
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: center center;
}

.styled-list li::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7d5e58), to(#50352f));
  background-image: -o-linear-gradient(bottom, #7d5e58, #50352f);
  background-image: linear-gradient(to top, #7d5e58, #50352f);
  -webkit-box-shadow: 0 0 0 2px rgba(125, 94, 88, .5);
  box-shadow: 0 0 0 2px rgba(125, 94, 88, .5);
  z-index: -1;
}

#page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  margin-top: auto;
}

.footer-top {
  position: relative;
  z-index: 1;
}

.footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}

.footer-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -o-radial-gradient(center, circle, transparent, rgba(0, 0, 0, .9));
  background-image: radial-gradient(circle at center, transparent, rgba(0, 0, 0, .9));
  z-index: -1;
}

.footer-top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-form {
  width: 65%;
  padding: 40px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.appointment-form__list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.appointment-form__item {
  list-style: none;
  width: 50%;
  padding: 0;
  margin: 0;
}

.appointment-form__item:first-child {
  padding-right: 20px;
}

.footer-form .appointment-form__privacy {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.footer-contacts {
  width: 35%;
  padding-left: 40px;
}

.footer-contacts__list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-contacts__item {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-contacts .contacts-link {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.footer-contacts .contacts-link__name,
.footer-contacts .contacts-link__number,
.footer-contacts .contacts-link__text {
  color: #fff !important;
}

/* .footer-form__title, */
.footer-contacts__title {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.footer-contacts .contacts-link--adress::before {
  background-image: url("../img/icons/adress-black.svg");
}

.footer-contacts .contacts-link--phone::before {
  background-image: url("../img/icons/phone-black.svg");
}

.footer-contacts .contacts-link--email::before {
  background-image: url("../img/icons/email-black.svg");
}

.footer-contacts .contacts-link--time::before {
  background-image: url("../img/icons/time-black.svg");
}

.footer-contacts .contacts-link::after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  -webkit-box-shadow: 0 0 0 3px rgba(249, 239, 231, .5);
  box-shadow: 0 0 0 3px rgba(249, 239, 231, .5);
}

.social {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.social__item {
  list-style: none;
  padding: 0;
  padding-right: 20px;
  margin-bottom: 20px;
}

.social__item:last-child {
  padding: 0;
}

.social__link {
  display: block;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  border-radius: 50%;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: linear-gradient(to bottom, #7d5e58, #50352f);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  overflow: hidden;
}

.social__link:hover {
  background-color: transparent;
}

.social__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  z-index: 1;
}

.social__link--vk::before {
  background-image: url("../img/social/vk.svg");
}

.social__link--instagram::before {
  background-image: url("../img/social/instagram.svg");
}

.social__link--facebook::before {
  background-image: url("../img/social/facebook.svg");
}

.social__link--twitter::before {
  background-image: url("../img/social/twitter.svg");
}

.social__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: -o-linear-gradient(bottom, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to top, #7d5e58, #50352f);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
}

.social__link:hover::after {
  opacity: 1;
  visibility: visible;
}

.footer-bottom {
  padding: 20px 0;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
}

.footer-bottom a {
  color: #7d5e58 !important;
}

.footer-bottom a:hover {
  color: #50352f !important;
}

.footer-bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom__center {
  text-align: center;
  padding: 0 20px;
}

.footer-bottom__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: right;
}

#privacyModal .modal-dialog {
  max-width: 1366px;
  margin: auto;
}

#privacyModal .modal-content {
  padding: 20px;
  margin: 20px;
  margin-top: 70px;
  width: auto;
  min-width: 280px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

#privacyModal .modal-body {
  padding: 0;
}

.orvin {
  margin-right: 20px;
}

.privacy {
  display: block;
}

button {
  cursor: pointer;
}

.btn {
  display: inline-block;
  vertical-align: middle;
  padding: 20px 30px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  text-transform: none;
  line-height: 1.2;
  font-size: 1rem;
  white-space: nowrap;
  border: 0;
  border-radius: 40px;
  font-weight: 700;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  background-color: transparent;
  background-image: -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to bottom, #7d5e58, #50352f);
  position: relative;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 1;
  overflow: hidden;
}

.btn:hover {
  color: #fff;
  background-color: transparent;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-image: -o-linear-gradient(bottom, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to top, #7d5e58, #50352f);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
}

.btn:hover::before {
  opacity: 1;
  visibility: visible;
}

form {
  margin: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: -o-radial-gradient(center, circle, transparent, rgba(0, 0, 0, .9));
  background-image: radial-gradient(circle at center, transparent, rgba(0, 0, 0, .9));
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.modal-item {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 31;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.modal-item--active {
  visibility: visible;
  opacity: 1;
}

.modal-form__wrapper {
  width: 100%;
  max-width: 540px;
  height: auto;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  margin: auto;
  z-index: 2;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.modal-item--active .modal-form__wrapper {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.success-message {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 32;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.success-message--active {
  visibility: visible;
  opacity: 1;
}

.success-message__wrapper {
  width: 100%;
  max-width: 540px;
  height: auto;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  margin: auto;
  z-index: 2;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.success-message--active .success-message__wrapper {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.success-message__text {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: none;
  margin: 20px;
  padding: 40px;
  color: #fff;
  text-align: center;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  background-color: transparent;
  background-image: -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to bottom, #7d5e58, #50352f);
  border: 0;
  min-width: 280px;
}

.success-message__text span {
  display: block;
}

.modal-item--active .overlay,
.success-message--active .overlay {
  opacity: 1;
  visibility: visible;
}

.modal-form__content {
  margin: 20px;
  margin-top: 70px;
  padding: 40px;
  border: 0;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  min-width: 280px;
}

.modal-form__close,
.btn--modal-close {
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  background-color: transparent;
  background-image: -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to bottom, #7d5e58, #50352f);
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 2;
  border-radius: 0;
  border: 0;
  padding: 0;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  overflow: hidden;
}

.modal-form__close:hover,
.btn--modal-close:hover {
  background-color: transparent;
}

.modal-form__close::before,
.btn--modal-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-image: url("../img/icons/close.svg");
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: center center;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal-form__close::after,
.btn--modal-close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -o-linear-gradient(bottom, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to top, #7d5e58, #50352f);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
}

.modal-form__close:hover::after,
.btn--modal-close:hover::after {
  opacity: 1;
  visibility: visible;
}

label {
  margin: 0;
  display: block;
}

input,
textarea {
  min-width: 1px;
  line-height: 1.2;
}

textarea {
  width: 100% !important;
  min-height: 100px;
  max-height: 100px;
}

.appointment-form__control {
  position: relative;
  margin-bottom: 20px;
}

.appointment-form__label {
  margin-bottom: 5px;
  font-size: .9rem;
}

.appointment-form__required {
  color: #7d5e58;
}

.appointment-form__input {
  width: 100%;
  background-color: transparent !important;
  padding: 15px 20px !important;
  color: #000 !important;
  margin: 0;
  position: relative;
  z-index: 1;
  border-radius: 0;
  cursor: text;
  border: 1px solid #000;
}

.appointment-form__input:focus {
  border-color: #7d5e58;
}

.appointment-form__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  margin-right: 20px;
}

.checkbox {
  display: none;
}

.checkbox+label {
  position: relative;
  cursor: pointer;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
  margin-right: 10px;
}

.checkbox+label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: center center;
  z-index: 1;
}

.checkbox:checked+label::before {
  background-image: url("../img/icons/check.svg");
}

.checkbox+label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7d5e58), to(#50352f));
  background-image: -o-linear-gradient(bottom, #7d5e58, #50352f);
  background-image: linear-gradient(to top, #7d5e58, #50352f);
  -webkit-box-shadow: 0 0 0 2px rgba(125, 94, 88, .5);
  box-shadow: 0 0 0 2px rgba(125, 94, 88, .5);
  z-index: -1;
}

.privacy__outro a {
  color: #7d5e58 !important;
}

.privacy__outro a:hover {
  color: #50352f !important;
}

input:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
  display: none;
}

/* focus */

input:focus:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:focus::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:focus:-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:focus::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:focus::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:focus:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:focus::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

input:focus::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea::-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:-webkit-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

/* focus */

textarea:focus:-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:focus::-ms-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:focus:-webkit-textarea-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:focus::-moz-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -moz-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:focus::-webkit-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:focus:-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:focus::-ms-input-placeholder {
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

textarea:focus::placeholder {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  opacity: 1 !important;
  color: #000 !important;
}

.section {
  padding: 60px 0 40px;
  overflow: hidden;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1366px;
  padding: 0 20px;
  position: relative;
}

.site-header {
  width: 100%;
  max-width: 1920px;
}

.header-info {
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f9efe7), to(#f9e6d7));
  background-image: -o-linear-gradient(bottom, #f9efe7, #f9e6d7);
  background-image: linear-gradient(to top, #f9efe7, #f9e6d7);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  z-index: 4;
  position: relative;
  padding: 20px 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.header-info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 20px;
}

.main-logo__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.main-logo__slogan {
  font-size: 1.2rem;
  color: #7d5e58;
}

.up-button {
  position: relative;
  z-index: 1;
  min-width: 50px;
  max-width: 50px;
  height: 50px;
  cursor: pointer;
  display: block;
  border: 0;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  background-color: transparent;
  background-image: -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to bottom, #7d5e58, #50352f);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  overflow: hidden;
}

.up-button:hover {
  background-color: transparent;
}

.up-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/icons/up-button.svg");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: center center;
  z-index: 1;
}

.up-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -o-linear-gradient(bottom, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to top, #7d5e58, #50352f);
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
  box-shadow: inset 0 2px 0 0 rgba(0, 0, 0, .1);
}

.up-button:hover::after {
  opacity: 1;
  visibility: visible;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

table,
.table-content {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin-bottom: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .1);
}

.table-responsive table {
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.table-content thead tr:first-child {
  background-image: -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: linear-gradient(to bottom, #7d5e58, #50352f);
}

.table-content th,
.table-content td {
  padding: 15px 20px;
  text-align: center;
  border: 1px solid #ececec;
}

.table-content th:first-child,
.table-content td:first-child {
  text-align: left;
  font-weight: 700;
}

.table-content thead tr:first-child th,
.table-content thead tr:first-child td {
  color: #fff;
  font-weight: 700;
}

.table-content td[colspan] {
  text-align: center;
}


.header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  min-height: 46px;
  padding-left: 56px;
  white-space: nowrap;
  text-align: left;
  position: relative;
  z-index: 1;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.contacts-link:hover {
  color: #000;
}

.contacts-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: center center;
  z-index: 1;
}

.contacts-link--adress,
.contacts-link--time {
  white-space: normal;
}

.contacts-link--adress::before {
  background-image: url("../img/icons/adress.svg");
}

.contacts-link--phone::before {
  background-image: url("../img/icons/phone.svg");
}

.contacts-link--email::before {
  background-image: url("../img/icons/email.svg");
}

.contacts-link--time::before {
  background-image: url("../img/icons/time.svg");
}

.contacts-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7d5e58), to(#50352f));
  background-image: -o-linear-gradient(bottom, #7d5e58, #50352f);
  background-image: linear-gradient(to top, #7d5e58, #50352f);
  -webkit-box-shadow: 0 0 0 3px rgba(125, 94, 88, .5);
  box-shadow: 0 0 0 3px rgba(125, 94, 88, .5);
  z-index: -1;
}

.header-contacts .contacts-link {
  margin-right: 20px;
}

.header-contacts .contacts-link:last-child {
  margin: 0;
}

.contacts-link__name {
  font-size: .9rem;
}

.contacts-link__name,
.contacts-link__number,
.contacts-link__text {
  color: #000 !important;
}

.contacts-link__number {
  font-weight: 700;
  font-size: 1.2rem;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

#map {
  width: 100%;
  height: 500px;
}

/* main */

.gallery {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallery__item {
  list-style: none;
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.gallery__content {
  position: relative;
  background-color: #fff;
  padding: 0;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  display: block;
  z-index: 1;
  overflow: hidden;
}

.gallery__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
  -ms-transform: translate(-50%, -75%);
  transform: translate(-50%, -75%);
  width: 50px;
  height: 50px;
  border-radius: 0;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  background-color: transparent;
  background-image: url("../img/icons/plus.svg"), -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: url("../img/icons/plus.svg"), -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: url("../img/icons/plus.svg"), linear-gradient(to bottom, #7d5e58, #50352f);
  background-repeat: no-repeat;
  background-size: 20px auto, auto;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery__content:hover::before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

.gallery__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -o-radial-gradient(center, circle, transparent, rgba(0, 0, 0, .9));
  background-image: radial-gradient(circle at center, transparent, rgba(0, 0, 0, .9));
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery__content:hover::after {
  opacity: 1;
  visibility: visible;
}

.gallery__img {
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery__content:hover .gallery__img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.modal {
  padding: 0 !important;
}

.modal-open .modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.modal-backdrop {
  background-color: transparent;
  background-image: -o-radial-gradient(center, circle, transparent, rgba(0, 0, 0, .9));
  background-image: radial-gradient(circle at center, transparent, rgba(0, 0, 0, .9));
}

.modal-backdrop.show {
  opacity: 1;
}

.ekko-lightbox .modal-dialog {
  margin: 20px;
  min-width: 280px;
}

.img-fluid {
  padding: 0;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  width: auto !important;
  height: 100%;
}

.ekko-lightbox .modal-body {
  padding: 0;
}

.ekko-lightbox .modal-content {
  border: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, .1);
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.ekko-lightbox-nav-overlay a {
  font-size: 0;
  opacity: 0;
  position: relative;
  z-index: 1;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.ekko-lightbox-nav-overlay a:hover {
  opacity: 1;
}

.ekko-lightbox-nav-overlay a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 0;
  background-color: transparent;
  -webkit-box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, .1), 0 5px 15px 0 rgba(125, 94, 88, .5);
  background-repeat: no-repeat;
  background-size: 20px auto, auto;
  background-position: center center;
  z-index: -1;
}

.ekko-lightbox-nav-overlay a:first-child::before {
  left: 0;
  background-image: url("../img/icons/arrow-prev.svg"), -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: url("../img/icons/arrow-prev.svg"), -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: url("../img/icons/arrow-prev.svg"), linear-gradient(to bottom, #7d5e58, #50352f);
}

.ekko-lightbox-nav-overlay a:last-child::before {
  right: 0;
  background-image: url("../img/icons/arrow-next.svg"), -o-linear-gradient(top, #7d5e58, #50352f);
  background-image: url("../img/icons/arrow-next.svg"), -webkit-gradient(linear, left top, left bottom, from(#7d5e58), to(#50352f));
  background-image: url("../img/icons/arrow-next.svg"), linear-gradient(to bottom, #7d5e58, #50352f);
}

.main-slide {
  padding: 200px 0 180px;
  position: relative;
  z-index: 1;
}

.main-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/slide.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}

.main-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -o-radial-gradient(center, circle, transparent, rgba(0, 0, 0, .9));
  background-image: radial-gradient(circle at center, transparent, rgba(0, 0, 0, .9));
  z-index: -1;
}

.main-slide__content {
  margin-bottom: 40px;
}


.main-slide h1,
.main-slide__text {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.main-slide__text {
  font-size: 1.5rem;
}

.counter {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.counter__item {
  list-style: none;
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.counter__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 82px;
  padding-left: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.counter__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center center;
  z-index: 1;
}

.counter__content--one::before {
  background-image: url("../img/counter/1.svg");
}

.counter__content--two::before {
  background-image: url("../img/counter/2.svg");
}

.counter__content--three::before {
  background-image: url("../img/counter/3.svg");
}

.counter__content--four::before {
  background-image: url("../img/counter/4.svg");
}

.counter__content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  -webkit-box-shadow: 0 0 0 6px rgba(249, 239, 231, .5);
  box-shadow: 0 0 0 6px rgba(249, 239, 231, .5);
  z-index: -1;
}

.counter__number,
.counter__text {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.counter__number {
  font-size: 2.5rem;
}

.section--about {
  position: relative;
  z-index: 1;
}

.section--about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg/about.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}

.section--about::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -o-radial-gradient(center, circle, transparent, rgba(0, 0, 0, .9));
  background-image: radial-gradient(circle at center, transparent, rgba(0, 0, 0, .9));
  z-index: -1;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about__features {
  width: 50%;
  padding-right: 40px;
}

.about__sub {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.features {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features__item {
  list-style: none;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

.features__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 82px;
  padding-left: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.features__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-position: center center;
  z-index: 1;
}

.features__content--one::before {
  background-image: url("../img/features/1.svg");
}

.features__content--two::before {
  background-image: url("../img/features/2.svg");
}

.features__content--three::before {
  background-image: url("../img/features/3.svg");
}

.features__content--four::before {
  background-image: url("../img/features/4.svg");
}

.features__content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  -webkit-box-shadow: 0 0 0 6px rgba(249, 239, 231, .5);
  box-shadow: 0 0 0 6px rgba(249, 239, 231, .5);
  z-index: -1;
}

.features__title,
.features__text {
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

.about__content {
  width: 50%;
  padding: 40px;
  margin-bottom: 20px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
}

.about__content p:last-of-type {
  margin: 0;
}

.catalog {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__item {
  list-style: none;
  width: calc(100% / 3);
  padding: 0 10px;
  margin-bottom: 20px;
}

.catalog__content {
  position: relative;
  z-index: 2;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f9efe7));
  background-image: -o-linear-gradient(bottom, #fff, #f9efe7);
  background-image: linear-gradient(to top, #fff, #f9efe7);
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .1);
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.catalog__link {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 20px;
}

.catalog__content:hover .catalog__link::before {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

.catalog__content:hover .catalog__link::after {
  opacity: 1;
  visibility: visible;
}

.catalog__content:hover .catalog__img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.catalog__title,
.catalog__price {
  text-align: center;
}

.catalog__price {
  font-size: 1.2rem;
}

.catalog__number {
  font-weight: 700;
  font-size: 2rem;
  color: #7d5e58;
}

.catalog .btn {
  display: block;
  margin: 0 auto;
  margin-top: auto;
}

.catalog__content:hover .btn::before {
  opacity: 1;
  visibility: visible;
}

.site-header--fixed .header-info {
  position: fixed;
  top: -100%;
  width: 100%;
  min-width: 320px;
  z-index: 30;
  max-width: 1920px;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.scroll-up .header-info {
  top: 0;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.scroll-down .header-info {
  top: 0;
  -webkit-transform: translateY(-125%);
  -ms-transform: translateY(-125%);
  transform: translateY(-125%);
}

@media (max-width: 1199px) {
  html {
    font-size: 17px;
  }

  .styled-list li {
    padding-top: 2px;
  }

  .main-slide {
    padding: 160px 0 140px;
  }

}

@media (max-width: 991px) {
  html {
    font-size: 16px;
  }

  .styled-list li {
    padding-top: 3px;
  }

  .header-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .main-logo {
    margin: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .counter__item {
    width: 50%;
  }

  .main-slide {
    padding: 120px 0 100px;
  }

  .catalog__item {
    width: 50%;
  }

  .footer-top .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .footer-form__title,
  .footer-contacts__title {
    text-align: center;
  }

  .footer-form {
    width: 100%;
  }

  .footer-contacts {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .footer-contacts__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .footer-contacts__item {
    width: 25%;
    padding: 0 10px;
  }

  .footer-contacts .contacts-link {
    padding: 0;
    padding-top: 56px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer-contacts .contacts-link::before,
  .footer-contacts .contacts-link::after {
    top: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .social__item {
    padding: 0 10px !important;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-bottom__left,
  .footer-bottom__center {
    margin-bottom: 20px;
  }

  .footer-bottom__center,
  .footer-bottom__right {
    padding: 0;
  }

  .footer-bottom__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .orvin {
    margin: 0;
    margin-bottom: 20px;
  }

  .gallery__item {
    width: calc(100% / 3);
  }

}

@media (max-width: 767px) {
  html {
    font-size: 15px;
  }

  h1,
  h2 {
    text-align: center;
  }

  .styled-list li {
    padding-top: 4px;
  }

  .section {
    padding: 40px 0 20px;
  }

  #map {
    height: 400px;
  }

  .main-slide {
    padding: 80px 0 60px;
  }

  .main-slide__content {
    text-align: center;
  }

  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about__features {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .about__content {
    width: 100%;
    padding: 20px;
  }

  .appointment-form__item {
    width: 100%;
    padding: 0 !important;
  }

  .footer-form {
    padding: 20px;
    padding-bottom: 1px;
  }

  .footer-form .appointment-form__privacy {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .footer-form .btn {
    display: block;
    margin: 0 auto 20px;
  }

  .footer-contacts__list {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-contacts__item {
    width: 50%;
  }

  .modal-form__content,
  .success-message__text {
    padding: 20px;
  }

  .gallery__item {
    width: 50%;
  }

  .features__content {
    padding: 0;
    padding-top: 92px;
    min-height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .features__content::before,
  .features__content::after {
    top: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .features__title,
  .features__text {
    text-align: center;
  }

}

@media (max-width: 600px) {
  .counter__content {
    padding: 0;
    padding-top: 92px;
    min-height: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .counter__content::before,
  .counter__content::after {
    top: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .counter__number,
  .counter__text {
    text-align: center;
  }

  .catalog__item {
    width: 100%;
    padding: 0;
  }

}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .styled-list li {
    padding-top: 5px;
  }

  .main-logo {
    margin-bottom: 10px;
  }

  .header-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header-contacts .contacts-link {
    margin: 0;
    margin-bottom: 10px;
  }

  .main-slide {
    padding: 40px 0 20px;
  }

  .footer-contacts__item {
    width: 100%;
    padding: 0;
  }

  .main-slide h1 {
    font-size: 2.2rem;
  }

  .gallery__item {
    width: 100%;
    padding: 0;
  }

}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

  /* IE10+ CSS */
  .ekko-lightbox .modal-dialog {
    -webkit-box-flex: 100% !important;
    -ms-flex: 100% !important;
    flex: 100% !important;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    -ms-overflow-style: none;
  }
}