@import url(normalize.css);
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #14110f;
  background-color: #fff;
  min-width: 320px;
  font-weight: 400;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
textarea,
select,
button {
  font-family: inherit;
  color: inherit;
  -webkit-appearance: none;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

.sp {
  display: none;
}

.spanish .sp {
  display: inline;
}

.spanish .en {
  display: none;
}

.container {
  max-width: 1280px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

.row {
  margin-left: -8px;
  margin-right: -8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col {
  padding-left: 8px;
  padding-right: 8px;
}

.bg-cover {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.bg-contain {
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: normal;
  letter-spacing: 4px;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0;
}

.main-btn {
  font-family: "Lora", serif;
  display: inline-block;
  font-size: 30px;
  line-height: normal;
  font-weight: 400;
  text-align: center;
  padding: 15px 30px;
  -webkit-transition: background-color 300ms, color 300ms;
  -o-transition: background-color 300ms, color 300ms;
  transition: background-color 300ms, color 300ms;
  background-color: transparent;
  cursor: pointer;
  letter-spacing: 2px;
  white-space: nowrap;
  border: 2px solid #33302f;
  color: #14110f;
}

.main-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.main-btn:hover {
  background-color: #33302f;
  color: #e2dedc;
}

.input-background {
  background-color: #fff;
  border: solid 1px rgba(45, 49, 66, 0.3);
  -webkit-border-radius: 3px;
  border-radius: 3px;
  height: 50px;
  z-index: 2;
}

.slick-dots {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 8px;
  -webkit-transition: background-color 500ms;
  -o-transition: background-color 500ms;
  transition: background-color 500ms;
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #3a3f41;
}

.slick-dots li.slick-active {
  background-color: #3a3f41;
}

.slick-dots li button {
  display: none;
}

@-webkit-keyframes fixedHeader {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fixedHeader {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.header {
  font-family: "Lora", serif;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0 8px;
  z-index: 20;
}

.header__phone {
  display: none;
}

.header.fixed {
  position: fixed;
  -webkit-animation: fixedHeader 500ms forwards;
  animation: fixedHeader 500ms forwards;
  background-color: #fff;
  -webkit-transition: -webkit-box-shadow 300ms , -webkit-transform 300ms;
  transition: -webkit-box-shadow 300ms , -webkit-transform 300ms;
  -o-transition: box-shadow 300ms , transform 300ms;
  transition: box-shadow 300ms , transform 300ms;
  transition: box-shadow 300ms , transform 300ms , -webkit-box-shadow 300ms , -webkit-transform 300ms;
  -webkit-box-shadow: 20px 20px 30px 0 rgba(75, 75, 75, 0.13);
  box-shadow: 20px 20px 30px 0 rgba(75, 75, 75, 0.13);
}

.header .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .row:last-child {
  margin-top: 35px;
}

.logo {
  z-index: 25;
}

.logo__img {
  display: block;
  width: 290px;
}

.nav {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav__phone {
  font-size: 24px;
}

.nav__phone:before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url(../img/icons/phone.png) no-repeat center;
  -webkit-background-size: contain;
  background-size: contain;
  vertical-align: bottom;
  position: relative;
  top: 5px;
  right: 25px;
  margin-right: 4px;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.nav__phone:before:before {
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.nav__list {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list li {
  margin-right: 50px;
}

.nav__list li.current {
  position: relative;
}

.nav__list li.current a {
  font-weight: 700;
  border-bottom: 1px solid #484341;
}

.nav__list li a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px solid #fff;
}

.nav__list li a:hover {
  color: #33302f;
}

.nav__order-btn {
  margin-left: 40px;
  line-height: 20px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: solid 2px #33302f;
  padding: 5px 25px 5px;
  font-size: 18px;
  background-color: #fff;
  -webkit-transition: color 300ms, background-color 300ms;
  -o-transition: color 300ms, background-color 300ms;
  transition: color 300ms, background-color 300ms;
}

.nav__order-btn:hover {
  background-color: #33302f;
  color: #fff;
}

.nav-lang__link {
  cursor: pointer;
  font-size: 18px;
}

.nav-lang__link-small {
  font-size: 14px;
  color: #9c928d;
  position: relative;
  bottom: 6px;
  cursor: pointer;
}

.main-slider {
  min-height: 100vh;
  padding: 270px 0 120px;
  background-image: url("../img/bg/home-bg.jpg");
}

.main-slider__title {
  font-family: "Playfair Display", serif;
  text-transform: capitalize;
  margin: 0 0 25px;
  font-size: 60px;
  line-height: 70px;
  font-weight: 400;
  letter-spacing: 7px;
}

.main-slider__subtitle {
  font-family: "Lora", serif;
  margin: 0 0 50px;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 3px;
}

.main-slider__phone {
  display: none;
}

.area {
  padding: 90px 0 120px;
}

.area .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.area .col {
  width: 33.33333%;
}

.area .col:nth-child(n+4) {
  margin-top: 80px;
}

.area__item {
  padding: 0 60px;
  height: 100%;
}

.area__item-title {
  font-family: "Playfair Display", serif;
  margin: 0 0 35px;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 2px;
}

.area__item-line {
  max-width: 150px;
  border: 1px solid #33302f;
  margin: 0 0 30px;
}

.area__item-descr {
  max-width: 260px;
  margin: 0;
  font-weight: 400;
  font-size: 18px;
}

.about {
  padding: 110px 0 130px;
  background-image: url("../img/bg/about-bg.jpg");
}

.about .row {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.about__item {
  width: 50%;
  padding-left: 70px;
}

.about__item-title {
  margin: 0 0 20px;
}

.about__item-descr {
  margin: 0 0 25px;
  font-family: "Lora", serif;
  font-size: 24px;
}

.about__item-text {
  margin: 0 0 35px;
  font-size: 18px;
}

.about__item-name {
  font-family: "Lora", serif;
  margin: 0 0 50px;
  font-size: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about__item-name span {
  display: block;
  width: 22px;
  border: 1px solid #33302f;
  margin-right: 15px;
  margin-top: 6px;
}

.price {
  padding: 40px 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#c9d0d4), to(#ffffff));
  background-image: -webkit-linear-gradient(left, #c9d0d4, #ffffff);
  background-image: -o-linear-gradient(left, #c9d0d4, #ffffff);
  background-image: linear-gradient(to right, #c9d0d4, #ffffff);
}

.price .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.price__item {
  text-align: center;
  font-family: "Lora", serif;
}

.price__item-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  margin: 0 0 25px;
  font-weight: 400;
}

.price__item-descr {
  font-size: 29px;
  margin: 0 0 25px;
}

.price__item-line {
  width: 260px;
  border: 1px solid #33302f;
  margin: 0 auto 25px;
}

.price__item-text {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom:0;
}

.advant {
  padding: 90px 0 100px;
}

.advant .section-title {
  margin: 0 0 90px;
}

.advant .row {
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.advant .col {
  width: 25%;
}

.advant__item {
  height: 100%;
  border: 3px solid #7d7d7d;
  font-family: "Lora", serif;
  position: relative;
  min-height: 300px;
}

.advant__item-text {
  font-size: 30px;
  text-align: center;
  padding: 0 35px 50px 40px;
}

.advant__item-img {
  display: block;
  background-color: #fff;
  padding: 5px 30px 30px 5px;
  margin: -5px 0 0 -5px;
}

.reviews {
  padding: 40px 0 15px;
  background-image: url("../img/bg/reviews-bg.jpg");
  background-position: left center;
}

.reviews .section-title {
  text-align: right;
}

.reviews-marc {
  display: none;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  text-align: center;
  line-height: 20px;
}

.reviews-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.reviews-slider {
  max-width: 580px;
  width: 100%;
}

.reviews__item {
  padding: 55px 10px 30px 20px;
  position: relative;
}

.reviews__item:before {
  content: '\201c';
  display: block;
  position: absolute;
  font-size: 90px;
  font-family: "Playfair Display", serif;
  top: 0;
  color: #14110f;
}

.reviews__item:after {
  content: '\201d';
  display: block;
  position: absolute;
  font-size: 90px;
  font-family: "Playfair Display", serif;
  bottom: -55px;
  right: 30px;
  color: #14110f;
}

.reviews__item-descr {
  margin: 0 0 25px;
  font-family: "Lora", serif;
  font-size: 30px;
  letter-spacing: 2px;
}

.reviews__item-text {
  margin: 0 0 25px;
  font-size: 20px;
  letter-spacing: 1px;
}

.reviews__item-client {
  max-width: 460px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.reviews__item-client p {
  font-size: 20px;
  margin: 0 0 10px;
}

.reviews__item-photo {
  width: 82px;
  height: 82px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.contacts {
  padding: 95px 0 55px;
}

.contacts .section-title {
  margin: 0 0 15px;
}

.contacts__descr {
  font-family: "Lora", serif;
  font-size: 30px;
  margin: 0 0 30px;
}

.contacts__line {
  max-width: 260px;
  border: 1px solid #33302f;
}

.contacts .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.contacts__form {
  max-width: 550px;
  padding-top: 50px;
}

.contacts__form-title {
  display: none;
}

.contacts__form-select {
  position: relative;
}

.contacts__form-select .select-option {
  padding: 0 2px;
  position: absolute;
  background-color: #ffffff;
  width: 100%;
  -webkit-box-shadow: 6px 6px 6px 0 lightgray;
  box-shadow: 6px 6px 6px 0 lightgray;
  z-index: 5;
  top: 40px;
  display: none;
}

.contacts__form-select .select-option .option {
  padding: 20px 0 20px 13px;
  border-bottom: 1px solid #d7d7d7;
  cursor: pointer;
}

.contacts__form-select .select-option .option:hover {
  background-color: #33302f;
  color: #ffffff;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.contacts .styled-inp {
  width: 100%;
  border: none;
  border-bottom: 1px solid #5a5857;
  padding: 10px 0 10px 15px;
  font-size: 24px;
  margin-bottom: 30px;
}

.contacts .textarea {
  height: 100px;
  margin-bottom: 50px;
}

.contacts__info {
  max-width: 390px;
  font-family: "Lora", serif;
  padding-top: 50px;
}

.contacts__info img {
  max-width: 390px;
  width: 100%;
}

.contacts__title {
  font-size: 30px;
  letter-spacing: 1px;
  margin: 0 0 30px;
}

.contacts__text {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  margin: 0 0 50px;
}

.map {
  height: 350px;
  position: relative;
}

.map__item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer {
  padding: 30px 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#b6babe), to(#edeeef));
  background-image: -webkit-linear-gradient(left, #b6babe, #edeeef);
  background-image: -o-linear-gradient(left, #b6babe, #edeeef);
  background-image: linear-gradient(to right, #b6babe, #edeeef);
}

.footer .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__item {
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 22px;
}

.footer__item:last-child {
  text-align: right;
}

.footer__item:first-child {
  max-width: 300px;
}

.footer__item:first-child p {
  margin: 0;
}

.footer__item .logo-footer {
  display: inline;
  width: 215px;
}

.footer__item-copyr {
  margin: 15px 0 0;
}

.footer-contacts {
  display: none;
}

.lity {
  background-color: rgba(225, 225, 225, 0.9);
}

.lity-wrap:before {
  margin-right: 0;
}

.lity-close {
  display: none;
}

.lity-content:after {
  display: none;
}

.popup-container {
  width: 1000px;
  max-width: 100%;
  position: relative;
  padding: 85px 85px 110px;
  background-image: url("../img/bg/popup-bg.jpg");
  -webkit-box-shadow: 20px 20px 30px 0 lightgray;
  box-shadow: 20px 20px 30px 0 lightgray;
}

.flex-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.success {
  max-width: 520px;
}

.success__title {
  font-size: 72px;
  margin: 0 0 30px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  letter-spacing: 4px;
}

.success__subtitle {
  margin: 0 0 100px;
  font-family: "Lora", serif;
  font-size: 36px;
  letter-spacing: 2px;
}

.success__btn {
  padding: 15px 100px;
}

.success__warn {
  margin: 10px 0 0;
}
