@charset "UTF-8";
/*fonts*/
@font-face {
  font-family: "CenturyGothic";
  src: url("../fonts/CenturyGothic-Italic.woff.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "CenturyGothic";
  src: url("../fonts/CenturyGothic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CenturyGothic";
  src: url("../fonts/CenturyGothic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MinionPro";
  src: url("../fonts/MinionPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chronicle";
  src: url("../fonts/Chronicle.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*options*/
body {
  font-family: "CenturyGothic", sans-serif;
  color: #1A0A0B;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background: #E2AE57;
}

body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.7);
}

p {
  width: 100%;
}

img {
  max-width: 100%;
}

ul, ol {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style-type: none;
}

a {
  transition: 0.3s;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: #FFFFFF;
  text-decoration: none;
  outline: none;
}

textarea {
  resize: none;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  transition: 0.3s;
  background: transparent;
  overflow: hidden;
}

.buttons:after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
}

.buttons:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 3px;
  transform: skewX(50deg);
  transition: 0.5s;
}

/*header*/
header {
  position: relative;
  display: flex;
}

header .row {
  position: relative;
}

.header-mobile {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  z-index: 2;
  padding-top: 20px;
  animation: header-mob 3s ease-in;
}

@keyframes header-mob {
  0% {
    opacity: 0;
    top: -100px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.header-line_icon {
  order: 2;
  width: 100%;
  height: 20px;
  z-index: 1;
  margin-bottom: 30px;
  display: none;
}

.header-burger {
  width: 33px;
  height: 22px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 60;
}

.header-burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #E2AE57;
  opacity: 1;
  right: 0;
  border-radius: 10px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.header-burger span:nth-child(1) {
  top: 0px;
}

.header-burger span:nth-child(2) {
  top: 10px;
}

.header-burger span:nth-child(3) {
  bottom: 0;
}

.header-burger.open-burger span:nth-child(1) {
  top: 8px;
  background: #E2AE57;
  transform: rotate(135deg);
}

.header-burger.open-burger span:nth-child(2) {
  opacity: 0;
}

.header-burger.open-burger span:nth-child(3) {
  top: 8px;
  background: #E2AE57;
  transform: rotate(-135deg);
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  left: 0;
  z-index: 1;
  padding-top: 20px;
  animation: header-show 3s ease-in;
}

.header-logo {
  height: 87px;
}

.header-left {
  width: 30%;
}

.header-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
}

.header-info_contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 50px;
}

.header-info_phone {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.header-info_phone a {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
}

.heade-info_adress {
  display: flex;
  align-items: center;
}

.heade-info_adress span {
  color: #FFFFFF;
  font-size: 16px;
}

.header-info_icon {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
  margin-right: 11px;
  transition: 0.3s;
}

.header-info_button {
  width: 195px;
  height: 45px;
}

.header-info_button:after {
  background: #E2AE57;
}

.header-info_button:before {
  background: #C7994D;
}

.header-menu {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

.header-menu_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-menu_list a {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.5s;
}

.header-menu_list a:after {
  content: "";
  height: 2px;
  width: 100%;
  margin-top: 5px;
  background: #E2AE57;
  transition: 0.5s;
  transform: scale(0, 1);
}

/*-header*/
/*main*/
.main-wrap {
  overflow: hidden;
  position: relative;
}

.main-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 980px;
  width: 100%;
  background: black;
  animation: main-bgr 5s ease-out both;
}

@keyframes main-bgr {
  0% {
    transform: scale(1.3) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.webp .main {
  background: url(../img/bgr/main.webp) center no-repeat;
  background-size: cover;
}

.no-webp .main {
  background: url(../img/bgr/main.jpg) center no-repeat;
  background-size: cover;
}

.main-clouds {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.main-clouds_one {
  display: block;
  position: absolute;
  bottom: 0;
  height: 250px;
  width: 800px;
  animation: cloud-one 15s infinite linear alternate;
}

.webp .main-clouds_one {
  background: url(../img/bgr/cloud1.webp) center no-repeat;
  background-size: contain;
}

.no-webp .main-clouds_one {
  background: url(../img/bgr/cloud1.png) center no-repeat;
  background-size: contain;
}

@keyframes cloud-one {
  0% {
    left: 0;
  }
  100% {
    left: 60%;
  }
}
.main-clouds_two {
  display: block;
  position: absolute;
  bottom: 0;
  height: 250px;
  width: 800px;
  animation: cloud-two 15s infinite linear alternate;
}

.webp .main-clouds_two {
  background: url(../img/bgr/cloud2.webp) center no-repeat;
  background-size: contain;
}

.no-webp .main-clouds_two {
  background: url(../img/bgr/cloud2.png) center no-repeat;
  background-size: contain;
}

@keyframes cloud-two {
  0% {
    right: 0;
  }
  100% {
    right: 60%;
  }
}
.main-clouds_three {
  display: block;
  position: absolute;
  bottom: 0;
  height: 250px;
  width: 800px;
  animation: cloud-three 20s infinite linear alternate;
}

.webp .main-clouds_three {
  background: url(../img/bgr/cloud3.webp) center no-repeat;
  background-size: contain;
}

.no-webp .main-clouds_three {
  background: url(../img/bgr/cloud3.png) center no-repeat;
  background-size: contain;
}

@keyframes cloud-three {
  0% {
    right: 0;
  }
  100% {
    right: 70%;
  }
}
.main-clouds_four {
  display: block;
  position: absolute;
  bottom: 0;
  height: 250px;
  width: 800px;
  animation: cloud-four 20s infinite linear alternate;
}

.webp .main-clouds_four {
  background: url(../img/bgr/cloud3.webp) center no-repeat;
  background-size: contain;
}

.no-webp .main-clouds_four {
  background: url(../img/bgr/cloud3.png) center no-repeat;
  background-size: contain;
}

@keyframes cloud-four {
  0% {
    left: 0;
  }
  100% {
    left: 70%;
  }
}
.main-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  color: #FFFFFF;
  animation: main-box 13s;
  transition: 0.3s;
}

.main-box h1 {
  font-size: 200px;
  line-height: 130px;
  font-family: "Chronicle", sans-serif;
}

.main-box span {
  font-size: 40px;
}

@keyframes main-box {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*-main*/
/*about*/
.about {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 20px;
  overflow: hidden;
}

.about:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 112%;
  height: 100%;
  transition: 0.5s;
  animation: footer-bgr 10s infinite linear alternate;
}

.webp .about:after {
  background: url(../img/bgr/ate.webp) center no-repeat;
  background-size: cover;
}

.no-webp .about:after {
  background: url(../img/bgr/ate.png) center no-repeat;
  background-size: cover;
}

.about-img img {
  width: 480px;
  height: 600px;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text_title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.about-text_title h2 {
  font-family: "MinionPro", sans-serif;
  font-size: 60px;
  margin-bottom: 0;
}

.about-text p {
  margin-bottom: 30px;
  color: rgba(26, 10, 11, 0.75);
}

.about-text_icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  animation: graviti 4s infinite linear alternate;
}

.about-text_boxs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.about-text_box {
  display: flex;
  flex-direction: column;
  width: 32%;
}

.about-text_box span {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.about-text_btn {
  width: 235px;
  height: 60px;
}

.about-text_btn:after {
  background: #88281A;
}

.about-text_btn:before {
  background: #671F15;
}

.ic-list_right {
  min-width: 100px;
  width: 100px;
  height: 35px;
  fill: #E2AE57;
  margin-left: 25px;
  animation: graviti 6s infinite linear alternate;
}

@keyframes graviti {
  0% {
    transform: translate3d(0, 5px, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
  100% {
    transform: translate3d(0, 5px, 0);
  }
}
.ic-list_left {
  width: 100px;
  height: 35px;
  fill: #E2AE57;
  margin-right: 25px;
  transform: rotateY(180deg);
  animation: graviti 6s infinite linear alternate;
}

.about-info_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.about-info_title h3 {
  font-family: "MinionPro", sans-serif;
  font-size: 60px;
  margin-bottom: 0;
}

.about-info {
  margin-top: 130px;
}

.about-slider {
  padding-bottom: 50px;
}

.about-slide {
  width: 390px;
}

.about-slide span {
  margin-top: 10px;
  display: inline-block;
}

.about-slide_img {
  display: block;
  width: 100%;
  height: 250px;
}

.about-slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slider_pagination {
  top: auto !important;
  bottom: 0px;
  width: 290px !important;
  left: 50% !important;
  transform: translate(-50%);
  background: #C3BBBC;
}

.about-slider_pagination .swiper-pagination-progressbar-fill {
  background: #88281A;
  display: block;
}

/*-about*/
/*info*/
.info {
  position: relative;
  padding: 130px 0;
}

.info:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #E9E6E6 100%);
}

.info-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.info-box:last-child {
  margin-bottom: 0;
}

.info-box_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 47%;
}

.info-box_title {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.info-box_title h3 {
  font-family: "MinionPro", sans-serif;
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 0;
}

.info-box:nth-child(1) .ic-list_right {
  position: absolute;
  bottom: 14%;
  left: 34%;
}

.info-box:nth-child(2) .ic-list_right {
  position: absolute;
  bottom: 14%;
  right: 10%;
}

.info-box_text ul {
  margin-bottom: 40px;
  width: 100%;
}

.info-box_text li {
  display: flex;
  margin-bottom: 15px;
  color: rgba(26, 10, 11, 0.75);
}

.info-box_text li:last-child {
  margin-bottom: 0;
}

.info-box_text li:before {
  content: "";
  min-width: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E2AE57;
  margin-right: 11px;
  margin-top: 7px;
}

.info-box_text button {
  width: 235px;
  height: 60px;
}

.info-box_text button:after {
  background: #88281A;
}

.info-box_text button:before {
  background: #671F15;
}

.info-box_img {
  width: 46%;
}

.info-box_img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

/*-info*/
/*work*/
.work {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 130px;
}

.work:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 112%;
  height: 100%;
  transition: 0.5s;
  animation: footer-bgr 10s infinite linear alternate;
}

.webp .work:after {
  background: url(../img/bgr/mountains.webp) center no-repeat;
  background-size: cover;
}

.no-webp .work:after {
  background: url(../img/bgr/mountains.png) center no-repeat;
  background-size: cover;
}

.work-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

.work-title h2 {
  font-family: "MinionPro", sans-serif;
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 0;
}

.work-box_icon {
  width: 66px;
  height: 66px;
  margin-bottom: 25px;
  animation: graviti 6s infinite linear alternate;
}

.work-boxs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.work-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  width: 30%;
  margin-bottom: 60px;
}

.work-box span {
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 100%;
}

.work-box p {
  margin-bottom: 0;
  color: rgba(26, 10, 11, 0.75);
}

.work-box:nth-child(4) {
  margin-left: 70px;
  margin-bottom: 0;
}

.work-box:nth-child(5) {
  margin-right: 70px;
  margin-bottom: 0;
}

.work-box:nth-child(1) .work-box_line {
  content: "";
  position: absolute;
  z-index: 1;
  right: -29%;
  top: 0;
  display: block;
  width: 184px;
  height: 54px;
  background: url(../img/icon/line.svg) center no-repeat;
  background-size: contain;
}

.work-box:nth-child(1) .work-box_line:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon/ok.svg) center no-repeat;
  background-size: contain;
}

.work-box:nth-child(3) .work-box_line {
  content: "";
  position: absolute;
  z-index: 1;
  left: -29%;
  top: 0;
  display: block;
  width: 184px;
  height: 54px;
  background: url(../img/icon/line.svg) center no-repeat;
  background-size: contain;
}

.work-box:nth-child(3) .work-box_line:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon/ok.svg) center no-repeat;
  background-size: contain;
}

.work-box:nth-child(4) .work-box_line {
  content: "";
  position: absolute;
  z-index: 1;
  right: -52%;
  top: 0;
  display: block;
  width: 184px;
  height: 54px;
  background: url(../img/icon/line.svg) center no-repeat;
  background-size: contain;
}

.work-box:nth-child(4) .work-box_line:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%);
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon/false.svg) center no-repeat;
  background-size: contain;
}

/*-work*/
/*comments*/
.comments {
  position: relative;
}

.comments .row {
  position: relative;
}

.comments:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, #E9E6E6 100%);
}

.comments:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

.comments-slide {
  background: #FFFFFF;
  box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.comments-slide:after {
  content: "“";
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 100px;
  line-height: 120px;
  font-weight: 700;
  color: #E2AE57;
}

.comments-slider {
  padding: 0 15px;
  height: 650px;
}

.comments-slide {
  height: auto;
  padding: 30px;
}

.comments-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.comments-text_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.comments-text_title h2 {
  font-family: "MinionPro", sans-serif;
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 0;
}

.comments-text p {
  margin-bottom: 30px;
  color: rgba(26, 10, 11, 0.75);
}

.comments-text_btn {
  width: 235px;
  height: 60px;
  margin-right: 40px;
}

.comments-text_btn:after {
  background: #88281A;
}

.comments-text_btn:before {
  background: #671F15;
}

.comments-text_bottom {
  display: flex;
  align-items: center;
}

.comments-slide_top {
  margin-bottom: 19px;
}

.comments-slide_top img {
  min-width: 65px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 25px;
}

.comments-slide_top {
  display: flex;
  align-items: center;
}

.comments-slide_text h5 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(26, 10, 11, 0.75);
}

.comments-slide_text span {
  font-size: 16px;
  color: rgba(26, 10, 11, 0.75);
}

.comments-slide_bottom p:last-child {
  margin-bottom: 0;
}

.comments-slide_bottom p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(26, 10, 11, 0.75);
}

.comments-text {
  padding-left: 60px;
}

.comments-arrows {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translate(-50%);
}

.comments-arrows_next, .comments-arrows_prev {
  width: 23px;
  height: 23px;
  cursor: pointer;
  fill: rgba(26, 10, 11, 0.5);
  transition: 0.3s;
}

.comments-arrows_next {
  transform: rotate(180deg);
  margin-top: 30px;
}

.comments-arrows_next:hover, .comments-arrows_prev:hover {
  fill: #1A0A0B;
}

.comments-slider_pagination {
  display: none;
  top: auto !important;
  bottom: 0px;
  width: 290px !important;
  left: 50% !important;
  transform: translate(-50%);
  background: #C3BBBC;
}

.comments-slider_pagination .swiper-pagination-progressbar-fill {
  background: #88281A;
  display: block;
}

.comments-boxs {
  padding: 50px 0px;
}
.comments-boxs img {
  width: 100%;
  margin-bottom: 30px;
}
.comments-boxs img:last-child {
  margin-bottom: 0px;
}

/*-comments*/
/*cap*/
.cap-wrap {
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
}

.cap-wrap:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

.cap {
  height: 410px;
  padding-bottom: 130px;
  display: flex;
  align-items: flex-end;
  width: 100%;
  background: black;
  animation: main-bgr 4s ease-out both;
}

@keyframes main-bgr {
  0% {
    transform: scale(1.3) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.cap-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: main-box 10s;
}

.cap-box h1 {
  color: #FFFFFF;
  font-size: 64px;
  font-family: "Chronicle", sans-serif;
  text-align: center;
}

.cap-box ul {
  display: flex;
}

.cap-box li {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.cap-box li:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/icon/arrow.svg) center no-repeat;
  background-size: contain;
  margin-left: 15px;
}

.cap-box li:last-child {
  margin-right: 0;
}

.cap-box li:last-child a {
  color: #E2AE57;
}

.cap-box li:last-child:after {
  display: none;
}

.cap-box a {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.cap-box a:after {
  content: "";
  height: 2px;
  width: 100%;
  margin-top: 2px;
  background: #FFFFFF;
  transition: 0.4s;
  transform: scale(0, 1);
}

.cap-clouds {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.cap-clouds_one, .cap-clouds_two {
  display: block;
  position: absolute;
  bottom: 0;
  height: 170px;
  width: 800px;
  animation: cap-one 10s infinite linear alternate;
}

.webp .cap-clouds_one {
  background: url(../img/bgr/1.webp) center no-repeat;
  background-size: contain;
}

.no-webp .cap-clouds_one {
  background: url(../img/bgr/1.png) center no-repeat;
  background-size: contain;
}

@keyframes cap-one {
  0% {
    left: 0;
  }
  100% {
    left: 60%;
  }
}
.cap-clouds_two {
  animation: cap-two 10s infinite linear alternate;
}

.webp .cap-clouds_two {
  background: url(../img/bgr/2.webp) center no-repeat;
  background-size: contain;
}

.no-webp .cap-clouds_two {
  background: url(../img/bgr/2.png) center no-repeat;
  background-size: contain;
}

@keyframes cap-two {
  0% {
    right: 0;
  }
  100% {
    right: 60%;
  }
}
.cap-clouds_three, .cap-clouds_four {
  display: block;
  position: absolute;
  bottom: 0;
  height: 170px;
  width: 800px;
  animation: cap-three 20s infinite linear alternate;
}

.webp .cap-clouds_three {
  background: url(../img/bgr/3.webp) center no-repeat;
  background-size: contain;
}

.no-webp .cap-clouds_three {
  background: url(../img/bgr/3.png) center no-repeat;
  background-size: contain;
}

@keyframes cap-three {
  0% {
    right: 0;
  }
  100% {
    right: 70%;
  }
}
.cap-clouds_four {
  animation: cap-four 20s infinite linear alternate;
}

.webp .cap-clouds_four {
  background: url(../img/bgr/4.webp) center no-repeat;
  background-size: contain;
}

.no-webp .cap-clouds_four {
  background: url(../img/bgr/4.png) center no-repeat;
  background-size: contain;
}

@keyframes cap-four {
  0% {
    left: 0;
  }
  100% {
    left: 70%;
  }
}
/*-cap*/
/*contacts*/
.webp .cap-contacts {
  background: url(../img/bgr/contacts.webp) center no-repeat;
  background-size: cover;
}

.no-webp .cap-contacts {
  background: url(../img/bgr/contacts.jpg) center no-repeat;
  background-size: cover;
}

.contacts-boxs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #C6C2C2;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contacts-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 24%;
}

.contacts-box span {
  display: inline-block;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contacts-box p {
  color: rgba(26, 10, 11, 0.75);
  font-size: 14px;
  margin-bottom: 0;
}

.contacts-box a {
  display: flex;
  flex-direction: column;
  color: rgba(26, 10, 11, 0.75);
  font-size: 14px;
  margin-bottom: 4px;
}

.contacts-box a:after {
  content: "";
  height: 1px;
  width: 100%;
  margin-top: 1px;
  background: rgba(26, 10, 11, 0.75);
  transition: 0.4s;
  transform: scale(0, 1);
}

.contacts-box_icon {
  height: 42px;
  margin-bottom: 20px;
}

.contacts-info span {
  display: inline-block;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contacts-info li {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 25px;
}

.contacts-info li:last-child {
  margin-bottom: 0;
}

.contacts-info_icon {
  height: 45px;
  width: 45px;
  min-width: 45px;
  margin-right: 20px;
}

.contacts-info_text p {
  color: rgba(26, 10, 11, 0.75);
  font-size: 16px;
  margin-bottom: 5px;
}

.contacts-info_text span {
  color: rgba(26, 10, 11, 0.75);
  font-size: 12px;
  text-transform: capitalize;
  letter-spacing: normal;
  padding-left: 65px;
}

.contacts-map {
  width: 100%;
  height: 460px;
  margin-bottom: 30px;
  position: relative;
}

.contacts-map:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: url(../img/icon/loader.gif) center no-repeat;
  background-size: contain;
}

/*-contacts*/
/*sidebar*/
.sidebar {
  overflow: hidden;
  position: relative;
  padding: 80px 15px 80px 15px;
  border: 1px solid #C6C2C2;
}

.sidebar-title {
  display: flex;
  align-items: center;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 101%;
}

.sidebar-title {
  height: 60px;
  background: #E2AE57;
}

.sidebar-title h4 {
  font-family: "MinionPro", sans-serif;
  color: #88281A;
  font-size: 26px;
  padding-left: 20px;
  margin-bottom: 0;
}

.sidebar p {
  color: rgba(26, 10, 11, 0.75);
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
}

.sidebar-room {
  margin-bottom: 5px;
}

.sidebar-room_boxs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sidebar-room span {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sidebar-room_box span {
  color: rgba(26, 10, 11, 0.5);
  font-size: 12px;
  margin-bottom: 0;
}

.sidebar-room_box {
  margin-bottom: 15px;
}

.sidebar-room_box:nth-child(1), .sidebar-room_box:nth-child(2), .sidebar-room_box:nth-child(3), .sidebar-room_box:nth-child(4) {
  width: 47%;
}

.sidebar-room_box:nth-child(5) {
  width: 100%;
}

.sidebar-room_select {
  width: 100%;
  height: 27px;
  cursor: pointer;
}

.jq-selectbox__select {
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 15px;
  border-bottom: 1px solid #C6C2C2;
}

.jq-selectbox__dropdown {
  width: 100%;
  background: #F8F8F8;
  border-left: 1px solid #C6C2C2;
  border-right: 1px solid #C6C2C2;
  border-bottom: 1px solid #C6C2C2;
  box-sizing: border-box;
}

.jq-selectbox__dropdown ul {
  padding: 5px 0;
}

.jq-selectbox__dropdown li {
  padding: 3px 10px;
}

.sidebar-room_select.dropdown .jq-selectbox__trigger {
  transform: rotate(180deg);
}

.jq-selectbox__trigger {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/icon/arrow-select.svg) center no-repeat;
  background-size: contain;
  transition: 0.2s;
}

.sidebar-label {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sidebar-label_arrow {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 10px;
  height: 10px;
  transition: 0.2s;
  transform: rotate(90deg);
}

.sidebar-label input {
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #C6C2C2;
  margin-top: 10px;
  padding-bottom: 12px;
  cursor: pointer;
}

.sidebar-label input:focus + .sidebar-label_arrow {
  transform: rotate(-90deg);
}

.sidebar-label input::-webkit-input-placeholder {
  color: #1A0A0B;
}

.sidebar-label input::-moz-placeholder {
  color: #1A0A0B;
}

.sidebar-label input:-ms-input-placeholder {
  color: #1A0A0B;
}

.sidebar-label input:-moz-placeholder {
  color: #1A0A0B;
}

.datepicker--cell.-selected-, .datepicker--cell.-selected-, .datepicker--cell.-selected-.-focus- {
  background: #FAD494;
  color: #FFFFFF;
  border-radius: 50%;
}

.datepicker--cell.-current- {
  color: #FAD494;
}

.datepicker--day-name {
  color: rgba(26, 10, 11, 0.75);
}

.datepicker-inline .datepicker {
  border-radius: 0;
}

.sidebar-people_boxs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sidebar-people_boxs .sidebar-label {
  width: 47%;
  margin-bottom: 0;
}

.jq-number__spin.minus {
  position: absolute;
  right: 0;
  bottom: 10px;
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/icon/arrow-select.svg) center no-repeat;
  background-size: contain;
  cursor: pointer;
}

.jq-number__spin.plus {
  position: absolute;
  right: 0;
  top: 10px;
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/icon/arrow-select.svg) center no-repeat;
  background-size: contain;
  transform: rotate(180deg);
  cursor: pointer;
}

.jq-number {
  position: relative;
  width: 100%;
}

.sidebar-button {
  width: 101%;
  height: 60px;
  position: absolute;
  bottom: -1px;
  left: -1px;
  border-radius: 0;
}

.sidebar-button:after {
  background: #88281A;
  border-radius: 0;
}

.sidebar-button:before {
  background: #671F15;
  border-radius: 0;
}

.sidebar-reset {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: transparent;
  border: none;
  color: #88281A;
  font-size: 14px;
  font-weight: 700;
}

.sidebar-reset_icon {
  fill: #88281A;
  width: 8px;
  height: 8px;
  margin-left: 5px;
  margin-top: 2px;
}

/*-sidebar*/
/*clients*/
.webp .cap-clients {
  background: url(../img/bgr/clients.webp) center no-repeat;
  background-size: cover;
}

.no-webp .cap-clients {
  background: url(../img/bgr/clients.jpg) center no-repeat;
  background-size: cover;
}

.clients p {
  font-size: 16px;
  color: rgba(26, 10, 11, 0.75);
  margin-bottom: 30px;
}

.clients-boxs {
  display: flex;
  flex-wrap: wrap;
}

.clients-box {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding-right: 10px;
  margin-bottom: 25px;
}

.clients-box span {
  display: inline-block;
  font-size: 14px;
  color: rgba(26, 10, 11, 0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.clients-box p {
  font-size: 14px;
  color: rgba(26, 10, 11, 0.75);
  margin-bottom: 0;
}

.clients-box_icon {
  height: 42px;
  width: 42px;
  fill: #88281A;
  margin-bottom: 11px;
}

.clients-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.clients-title .ic-list_right {
  width: 45px;
  min-width: 45px;
  height: 20px;
}

.clients-title h3 {
  font-size: 30px;
  font-family: "MinionPro", sans-serif;
  margin-bottom: 0;
}

.clients-slider {
  height: 500px;
  margin-bottom: 30px;
}

.clients-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients-arrows {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.clients-arrows_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(93, 35, 41, 0.75);
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}

.clients-arrows_box:first-child {
  margin-right: 2px;
}

.clients-arrows_next, .clients-arrows_prev {
  width: 10px;
  height: 10px;
  fill: #FFFFFF;
}

.clients-arrows_next {
  transform: rotate(-90deg);
}

.clients-arrows_prev {
  transform: rotate(90deg);
}

/*-clients*/
/*leisure*/
.webp .cap-sport {
  background: url(../img/bgr/sport.webp) center no-repeat;
  background-size: cover;
}

.no-webp .cap-sport {
  background: url(../img/bgr/sport.jpg) center no-repeat;
  background-size: cover;
}

.webp .cap-leisure {
  background: url(../img/bgr/leisure.webp) center no-repeat;
  background-size: cover;
}

.no-webp .cap-leisure {
  background: url(../img/bgr/leisure.jpg) center no-repeat;
  background-size: cover;
}

.leisure-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.leisure-title .ic-list_right {
  width: 45px;
  min-width: 45px;
  height: 20px;
}

.leisure-title h3 {
  font-size: 30px;
  font-family: "MinionPro", sans-serif;
  margin-bottom: 0;
}

.leisure-wrap {
  width: 48%;
}

.leisure {
  display: flex;
  justify-content: space-between;
}

.leisure-boxs li {
  margin-bottom: 30px;
}

.leisure-boxs li:last-child {
  margin-bottom: 0;
}

.leisure-boxs span {
  display: flex;
  align-items: center;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.leisure-boxs span:before {
  content: "";
  min-width: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E2AE57;
  margin-right: 10px;
}

.leisure-boxs p {
  font-size: 16px;
  color: rgba(26, 10, 11, 0.75);
  margin-bottom: 30px;
}

.leisure-slider {
  height: 470px;
}

.leisure-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leisure-arrows {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.leisure-arrows_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(93, 35, 41, 0.75);
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}

.leisure-arrows_box:first-child {
  margin-right: 2px;
}

.leisure-arrows_next, .leisure-arrows_prev {
  width: 10px;
  height: 10px;
  fill: #FFFFFF;
}

.leisure-arrows_next {
  transform: rotate(-90deg);
}

.leisure-arrows_prev {
  transform: rotate(90deg);
}

/*-leisure*/
/*restaurant*/
.webp .cap-restaurant {
  background: url(../img/bgr/restaurant.webp) center no-repeat;
  background-size: cover;
}

.no-webp .cap-restaurant {
  background: url(../img/bgr/restaurant.jpg) center no-repeat;
  background-size: cover;
}

.restaurant p {
  font-size: 16px;
  color: rgba(26, 10, 11, 0.75);
  margin-bottom: 30px;
}

.restaurant-boxs {
  display: flex;
  justify-content: space-between;
}

.restaurant-box:nth-child(1) {
  width: 60%;
}

.restaurant-box:nth-child(2) {
  width: 38%;
}

.restaurant-box img {
  margin-bottom: 30px;
}

.restaurant-box_info {
  padding: 20px;
  border: 1px dashed #C6C2C2;
  margin-bottom: 30px;
}

.restaurant-box_info li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.restaurant-box_info p {
  text-align: center;
  margin-bottom: 0;
}

.restaurant-box_info span {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.restaurant-box .clients-slider {
  height: 300px;
}

/*-restaurant*/
/*residence*/
.webp .cap-residence {
  background: url(../img/bgr/residence.webp) center no-repeat;
  background-size: cover;
}

.no-webp .cap-residence {
  background: url(../img/bgr/residence.jpg) center no-repeat;
  background-size: cover;
}

.residence-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.residence-text {
  width: 48%;
  position: relative;
}

.residence-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(26, 10, 11, 0.75);
}

.residence-text .leisure-title {
  margin-bottom: 20px;
}

.residence-text .leisure-title h3 {
  font-size: 40px;
}

.residence-text_price {
  display: flex;
  align-items: flex-end;
  color: #88281A;
  font-family: "MinionPro", sans-serif;
  margin-bottom: 20px;
}

.residence-text_price span {
  display: flex;
  align-items: center;
  font-size: 30px;
  line-height: 28px;
  margin: 0 4px;
}

.residence-text_icon {
  height: 22px;
  width: 22px;
}

.residence-text_icon {
  fill: #88281A;
}

.residence-text_btn {
  height: 50px;
  width: 170px;
  margin-right: 20px;
}

.residence-text_btn:after {
  background: #88281A;
}

.residence-text_btn:before {
  background: #671F15;
}

.residence-text_link {
  display: flex;
  align-items: center;
  color: #1A0A0B;
  font-size: 14px;
  transition: 0.2s;
}

.residence-text_buttons {
  display: flex;
  align-items: center;
}

.residence-text_arrow {
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  margin-left: 5px;
  fill: #1A0A0B;
  transition: 0.2s;
  margin-top: 2px;
}

.residence-text_link:hover {
  color: #671F15;
}

.residence-text_link:hover .residence-text_arrow {
  fill: #671F15;
}

.residence-slider {
  width: 48%;
  height: 320px;
  margin: 0;
}

.residence-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.residence-arrows {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.residence-arrows_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(93, 35, 41, 0.75);
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}

.residence-arrows_box:first-child {
  margin-right: 2px;
}

.residence-arrows_next, .residence-arrows_prev {
  width: 10px;
  height: 10px;
  fill: #FFFFFF;
}

.residence-arrows_next {
  transform: rotate(-90deg);
}

.residence-arrows_prev {
  transform: rotate(90deg);
}

.residence-text_descr {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.5);
}

.residence-line {
  width: 100%;
  height: 30px;
  margin: 30px 0;
}

/*-residence*/
.single-slider {
  height: 500px;
}

.single-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-arrows {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 80px;
  z-index: 1;
}

.single-arrows_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: rgba(93, 35, 41, 0.75);
  transition: 0.3s;
  cursor: pointer;
  outline: none;
}

.single-arrows_box:first-child {
  margin-right: 2px;
}

.single-arrows_next, .single-arrows_prev {
  width: 10px;
  height: 10px;
  fill: #FFFFFF;
}

.single-arrows_next {
  transform: rotate(-90deg);
}

.single-arrows_prev {
  transform: rotate(90deg);
}

.single-slider_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(48, 34, 35, 0.75);
  padding: 0 30px;
}

.single-slider_title h2 {
  color: #FFFFFF;
  font-size: 40px;
  font-family: "MinionPro", sans-serif;
  margin-bottom: 0;
}

.single-slider_price {
  display: flex;
  align-items: flex-end;
  color: #FFFFFF;
  font-family: "MinionPro", sans-serif;
  font-size: 18px;
}

.single-slider_price span {
  display: flex;
  align-items: center;
  color: #E2AE57;
  font-size: 30px;
  line-height: 28px;
}

.single-slider_icon {
  height: 22px;
  width: 22px;
  fill: #E2AE57;
  margin: 0 3px;
}

.single-slider_title {
  display: flex;
  align-items: center;
}

.single-slider_title .ic-list_right {
  width: 70px;
  min-width: 70px;
}

.single-boxs {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #C6C2C2;
}

.single-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24%;
  text-align: center;
}

.single-box_icon {
  fill: #88281A;
  height: 35px;
  width: 35px;
  margin-bottom: 15px;
}

.single-box span {
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(26, 10, 11, 0.75);
  letter-spacing: 0.1em;
}

.single-text p {
  font-size: 16px;
  color: rgba(26, 10, 11, 0.75);
  margin-bottom: 30px;
}

.single-text span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.single-equipment {
  padding: 30px;
}

.single-equipment .leisure-title {
  color: #FFFFFF;
}

.webp .single-equipment {
  background: url(../img/bgr/equipment.webp) center no-repeat;
  background-size: cover;
}

.no-webp .single-equipment {
  background: url(../img/bgr/equipment.jpg) center no-repeat;
  background-size: cover;
}

.single-equipment_boxs {
  display: flex;
  flex-wrap: wrap;
}

.single-equipment_boxs li {
  width: 33.3%;
  padding-right: 5px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 15px;
}

.single-equipment_img {
  width: 45px;
}

.single-equipment {
  margin-bottom: 40px;
}

.single-info {
  margin-bottom: 40px;
}

.single-table {
  width: 100%;
  margin-bottom: 30px;
}

.single-table td {
  padding: 10px 20px;
  border: 1px solid #C6C2C2;
  font-size: 14px;
  color: rgba(26, 10, 11, 0.75);
}

.single-table span {
  font-size: 18px;
  font-weight: 700;
  color: #88281A;
}

.single-info_text p {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: rgba(26, 10, 11, 0.75);
}

.single-info_text span {
  color: #88281A;
}

.single-info_btn {
  width: 235px;
  height: 60px;
  margin-top: 20px;
}

.single-info_btn:after {
  background: #88281A;
}

.single-info_btn:before {
  background: #671F15;
}

/*footer*/
.footer-top {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 450px;
  padding-bottom: 87px;
}

.webp .footer-top {
  background: url(../img/bgr/question.webp) center no-repeat;
  background-size: cover;
}

.no-webp .footer-top {
  background: url(../img/bgr/question.jpg) center no-repeat;
  background-size: cover;
}

.footer-top_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}

.footer-top_left p {
  margin-bottom: 0;
}

.footer-top_right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.footer-top_btn {
  width: 235px;
  height: 60px;
}

.footer-top_btn:after {
  background: #88281A;
}

.footer-top_btn:before {
  background: #671F15;
}

.footer-top_title h2 {
  font-family: "MinionPro", sans-serif;
  font-size: 50px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-top_left p {
  font-size: 24px;
}

.footer {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 70px 0;
  background: #4B1811;
}

.footer:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  width: 112%;
  height: 400px;
  transition: 0.5s;
  animation: footer-bgr 7s infinite linear alternate;
}

.webp .footer:after {
  background: url(../img/bgr/tree.webp) center no-repeat;
  background-size: cover;
}

.no-webp .footer:after {
  background: url(../img/bgr/tree.png) center no-repeat;
  background-size: cover;
}

@keyframes footer-bgr {
  0% {
    right: -200px;
  }
  100% {
    right: 0;
  }
}
.footer-menu span {
  display: inline-block;
  font-family: "MinionPro", sans-serif;
  color: #E2AE57;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-menu_list li {
  margin-bottom: 15px;
}

.footer-menu_list li:last-child {
  margin-bottom: 0;
}

.footer-menu_list a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 15px;
  transition: 0.3s;
}

.footer-menu_list a:before {
  content: "";
  height: 1px;
  width: 0px;
  background: #E2AE57;
  margin-right: 5px;
  transition: 0.3s;
}

.footer-contacts span {
  display: inline-block;
  font-family: "MinionPro", sans-serif;
  color: #E2AE57;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-contacts_list li {
  display: flex;
  margin-bottom: 10px;
}

.footer-contacts_list a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  font-size: 15px;
  transition: 0.3s;
}

.footer-contacts_icon {
  min-width: 13px;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  margin-right: 7px;
}

.footer-contacts_list a:hover {
  color: #E2AE57;
}

.footer-bottom {
  background: #42150F;
  padding: 10px 0;
}

.footer-bottom_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom_text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-bottom_text p {
  width: auto;
  margin-bottom: 0;
  text-align: right;
}

.footer-bottom_text a {
  color: #E2AE57;
  font-size: 14px;
}

.totop {
  display: none;
  position: fixed;
  right: 40px;
  bottom: 50px;
  z-index: 10;
  width: 50px;
  height: 50px;
  background: #E2AE57;
  border: none;
  border-radius: 3px;
  transition: 0.3s;
}

.totop.show {
  display: flex;
}

.totop-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translate(-50%, -50%);
}

.footer-line_icon {
  display: none;
  height: 20px;
  width: 100%;
  margin-bottom: 20px;
  opacity: 0.5;
}

.totop-mob {
  display: none;
}

.mob-phone {
  display: none;
}

/*-footer*/
/*overlay*/
@keyframes anim-modal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.overlay-call.open {
  display: flex;
  animation: anim-modal 1s;
}

.overlay-reservation.open {
  display: flex;
  animation: anim-modal 1s;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay-form {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  width: 780px;
  padding: 50px 60px;
  background: #fff;
}

.overlay-form:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
}

.webp .overlay-form:after {
  background: url(../img/bgr/overlay.webp) center no-repeat;
  background-size: cover;
}

.no-webp .overlay-form:after {
  background: url(../img/bgr/overlay.png) center no-repeat;
  background-size: cover;
}

.overlay-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 17px;
  height: 17px;
  cursor: pointer;
  fill: #E2AE57;
  transition: 0.3s;
}

.overlay-title {
  display: flex;
  align-items: center;
}

.overlay-title h2 {
  font-family: "Chronicle", sans-serif;
  color: #88281A;
  font-size: 50px;
  margin-bottom: 10px;
}

.overlay-title p {
  color: rgba(26, 10, 11, 0.75);
}

.overlay-box button {
  width: 100%;
  margin-top: 25px;
}

.overlay-form label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(26, 10, 11, 0.75);
  font-size: 14px;
}

.overlay-form input {
  width: 290px;
  font-size: 15px;
  padding-bottom: 10px;
  color: #1A0A0B;
  border-left: none;
  border-right: none;
  border-top: none;
  margin-top: 12px;
  border-bottom: 1px solid #C0BCBD;
  background: transparent;
}

.overlay-form input:focus {
  border-bottom: 1px solid #1A0A0B;
}

.overlay-form button {
  width: 290px;
  height: 60px;
}

.overlay-form button:after {
  background: #88281A;
}

.overlay-form button:before {
  background: #671F15;
}

.overlay-inputs {
  display: flex;
  margin-bottom: 20px;
  margin-top: 10px;
}

.overlay-inputs label:nth-child(1) {
  margin-right: 20px;
}

/*end overlay*/
/*modal-thank*/
.modal-thank.open {
  bottom: 0;
}

.modal-thank {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: -250px;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 10px 15px;
  background: #4B1811;
  border-top: 1px solid #E2AE57;
  transition: 0.5s;
}

.modal-thank_text {
  position: relative;
}

.modal-thank_text h3 {
  color: #E2AE57;
  font-size: 30px;
  font-family: "MinionPro", sans-serif;
}

.modal-thank_text p {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.modal-thank_close {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  fill: #E2AE57;
  cursor: pointer;
}

/*-modal-thank*/
.overlay-forma {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.overlay-forma .sidebar-room {
  width: 100%;
}

.overlay-forma_wrap:nth-child(3) .sidebar-room_box {
  width: 100%;
}

.overlay-forma_wrap {
  width: 31%;
  display: flex;
  justify-content: space-between;
}

.overlay-forma_center {
  width: 66%;
  display: flex;
  justify-content: space-between;
}

.overlay-forma_center label {
  width: 47%;
}

.overlay-reservation input {
  width: 100%;
}

.overlay-forma .sidebar-people_boxs {
  width: 30%;
}

.overlay-forma_bottom {
  display: flex;
  justify-content: space-between;
  width: 66%;
}

.overlay-forma_bottom .sidebar-label {
  width: 47%;
}

.overlay-forma_buttons {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.overlay-forma_buttons .sidebar-button {
  position: relative;
  order: 1;
  width: 290px;
  border-radius: 3px;
  margin-right: 15px;
}

.overlay-forma_buttons .sidebar-reset {
  order: 2;
  width: auto;
}

@media (min-width: 992px) {
  .header-info_phone:hover a {
    color: #C7994D;
  }
  .header-info_phone:hover .header-info_icon {
    fill: #C7994D;
  }
  .buttons:hover:before {
    width: 130%;
    left: -15%;
  }
  .header-menu_list a:hover {
    color: #FFFFFF;
  }
  .header-menu_list a:hover:after {
    transform: scale(1, 1);
  }
  .footer-menu_list a:hover {
    color: #E2AE57;
  }
  .footer-menu_list a:hover:before {
    width: 7px;
  }
  .totop:hover {
    background: #C7994D;
  }
  .overlay-close:hover {
    fill: #88281A;
  }
  .cap-box a:hover:after {
    transform: scale(1, 1);
  }
  .cap-box li:last-child a:hover:after {
    transform: scale(0, 0);
  }
  .jq-selectbox__dropdown li:hover {
    background: #FAD494;
  }
  .contacts-box a:hover:after {
    transform: scale(1, 1);
  }
  .single-info_btn:hover:after {
    transform: scale(1, 1);
  }
  .sidebar-reset:hover {
    color: #671F15;
  }
  .sidebar-reset:hover .sidebar-reset_icon {
    fill: #671F15;
  }
  .clients-arrows_box:hover, .leisure-arrows_box:hover, .residence-arrows_box:hover, .single-arrows_box:hover {
    background: #88281A;
  }
  @keyframes header-show {
    0% {
      opacity: 0;
      top: -200px;
    }
    100% {
      opacity: 1;
      top: 0;
    }
  }
}
@media (max-width: 1200px) {
  body {
    font-size: 16px;
  }
  .main {
    height: 800px;
  }
  .main-box h1 {
    font-size: 170px;
  }
  .info-box_title h3, .about-info_title h3, .about-text_title h2, .work-title h2, .comments-text_title h2 {
    font-size: 50px;
    line-height: 60px;
  }
  .info-box_img {
    width: 48%;
  }
  .info-box_text {
    width: 48%;
  }
  .work-box {
    width: 32%;
  }
  .about:after, .work:after, .footer:after {
    width: 120%;
  }
  .comments-slide {
    padding: 20px;
  }
  .comments-text {
    padding: 0 15px;
  }
  .footer-top_left p {
    font-size: 20px;
  }
  .cap-box h1 {
    font-size: 50px;
    line-height: 55px;
  }
  .cap-box a {
    font-size: 15px;
  }
  .clients-slider {
    height: 400px;
  }
  .leisure-slider {
    height: 350px;
  }
  .single-slider {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .contacts-map {
    height: 350px;
  }
  .sidebar-wrap {
    order: 2;
    margin-bottom: 50px;
    margin-top: 50px;
  }
  .contacts-boxs {
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 0;
  }
  .contacts-box {
    width: 47%;
    margin-bottom: 20px;
  }
  .cap-wrap {
    margin-bottom: 50px;
  }
  .header-mobile {
    display: flex;
    z-index: 3;
  }
  .header {
    display: none;
    padding-top: 120px;
    padding-left: 0;
    padding-right: 0;
    background: #FFFFFF;
    z-index: 2;
  }
  .header:before {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 500px;
  }
  .webp .header:before {
    background: url(../img/bgr/menu.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .header:before {
    background: url(../img/bgr/menu.png) center no-repeat;
    background-size: cover;
  }
  .header-info {
    width: 100%;
  }
  .header-menu_list {
    flex-direction: column;
    align-items: center;
  }
  .header.open-burger {
    display: flex;
    animation: anim-header 1s;
  }
  @keyframes anim-header {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .header-menu_list a {
    font-size: 15px;
  }
  .header-info_contacts {
    margin-right: 20px;
  }
  .header-logo {
    height: 60px;
    width: 200px;
  }
  .header .header-left {
    display: none;
  }
  .header-info_phone a {
    color: #88281A;
  }
  .header-info_icon, .header-info_icon {
    fill: #88281A;
  }
  .heade-info_adress span {
    color: #1A0A0B;
  }
  .header-menu {
    order: 1;
    margin-top: 0;
  }
  .header-info {
    order: 3;
    flex-direction: column;
    align-items: center;
  }
  .header-info_contacts {
    margin-right: 0;
    margin-bottom: 30px;
    align-items: center;
  }
  .header-menu_list {
    margin-bottom: 30px;
  }
  .header-menu_list a {
    font-size: 16px;
    font-weight: 700;
    color: rgba(26, 10, 11, 0.5);
  }
  .header-menu_list li {
    margin-bottom: 15px;
  }
  .header-menu_list li:last-child {
    margin-bottom: 0;
  }
  .header-info_button {
    width: 100%;
    border-radius: 0;
  }
  .header-info_button:after {
    background: #88281A;
    border-radius: 0;
  }
  .header-info_phone a {
    font-size: 20px;
  }
  .header-line {
    display: flex;
  }
  .main-box h1 {
    font-size: 125px;
  }
  .main-box span {
    font-size: 30px;
  }
  .main {
    height: 700px;
  }
  .about-img {
    position: absolute;
    left: 0;
    padding-top: 60px;
  }
  .about:after, .work:after, .footer:after {
    width: 123%;
  }
  .about-text_title {
    margin-bottom: 450px;
  }
  @keyframes footer-bgr {
    0% {
      right: -150px;
    }
    100% {
      right: 0;
    }
  }
  .about {
    padding-top: 50px;
  }
  .info-box_title h3, .about-info_title h3, .about-text_title h2, .work-title h2, .comments-text_title h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .about .row {
    position: relative;
  }
  .about-text {
    margin-bottom: 40px;
  }
  .totop.show {
    width: 40px;
    height: 40px;
    right: 10px;
  }
  .about-info {
    margin-top: 50px;
  }
  .about-slide {
    width: 250px;
  }
  .about-slide_img {
    height: 170px;
  }
  .about-img img {
    height: 400px;
    width: auto;
  }
  .info-box_img {
    position: absolute;
    left: 15px;
    padding-top: 70px;
    width: 100%;
    z-index: -1;
  }
  .info-box_img img {
    height: 400px;
    width: auto;
  }
  .info-box_text {
    width: 100%;
  }
  .info-box {
    position: relative;
    z-index: 1;
  }
  .info-box_title {
    margin-bottom: 440px;
  }
  .info-box:nth-child(1) .ic-list_right {
    position: absolute;
    bottom: 11%;
    left: 14%;
  }
  .info-box:nth-child(2) .ic-list_right {
    right: auto;
    left: 35%;
    bottom: 11%;
  }
  .info-box:nth-child(1) .info-box_img, .info-box:nth-child(2) .info-box_img {
    padding-top: 110px;
  }
  .info {
    padding: 100px 0;
  }
  .work-box {
    width: 100%;
    margin-bottom: 0;
  }
  .work-box {
    align-items: flex-start;
  }
  .work-box span {
    text-align: left;
  }
  .work-box p {
    text-align: left;
  }
  .work-box:nth-child(4) {
    margin-left: 0;
  }
  .work-box:nth-child(5) {
    margin-right: 0;
  }
  .work-box:nth-child(1) .work-box_line {
    position: relative;
    right: auto;
    left: 0;
    height: 60px;
    background: url(../img/icon/mob-line1.svg) center no-repeat;
    background-size: contain;
  }
  .work-box:nth-child(1) .work-box_line:after {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .work-box:nth-child(3) .work-box_line {
    position: relative;
    right: auto;
    left: 0;
    height: 70px;
    width: 46px;
    background: url(../img/icon/mob-line2.svg) center no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
  .work-box:nth-child(3) .work-box_line:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .work-box:nth-child(2) .work-box_line {
    position: relative;
    height: 70px;
    width: 46px;
    background: url(../img/icon/mob-line2.svg) center no-repeat;
    background-size: contain;
  }
  .work-box:nth-child(2) .work-box_line:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/icon/ok.svg) center no-repeat;
    background-size: contain;
    transform: translate(-50%, -50%);
  }
  .work-box:nth-child(4) .work-box_line {
    position: relative;
    height: 70px;
    width: 46px;
    right: auto;
    background: url(../img/icon/mob-line2.svg) center no-repeat;
    background-size: contain;
  }
  .work-box:nth-child(4) .work-box_line:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .comments-text {
    order: 1;
    margin-bottom: 40px;
  }
  .comments-slider {
    order: 2;
    padding: 15px 15px;
  }
  .comments:after {
    height: 50px;
  }
  .comments {
    padding: 70px 0;
  }
  .comments-slider {
    height: auto;
  }
  .work-title {
    margin-bottom: 50px;
  }
  .work {
    padding-bottom: 50px;
  }
  .footer-top {
    padding: 50px 0;
  }
  .comments-arrows {
    display: none;
  }
  .footer-top {
    height: 300px;
  }
  .footer-top_right {
    justify-content: flex-start;
    margin-top: 30px;
  }
  .footer-top_title h2 {
    font-size: 40px;
    line-height: 50px;
  }
  .footer-top_left p {
    font-size: 18px;
  }
  .footer {
    padding: 50px 0;
  }
  .footer-menu {
    margin-bottom: 20px;
  }
  .work-box span {
    margin-bottom: 10px;
  }
  .comments-slider_pagination {
    display: block;
  }
  .comments-slider {
    padding-bottom: 50px;
  }
  .comments:before {
    height: 50px;
  }
  .comments-slide {
    width: 90%;
    background: #FFFFFF;
    box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.1);
  }
  .comments-slide_top img {
    min-width: 50px;
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .totop-icon {
    display: none;
  }
  .totop.show {
    width: 100px;
    height: 0;
    right: 0;
    bottom: 130px;
    background: transparent;
  }
  .totop-mob {
    display: block;
    width: 39px;
    height: 82px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .mob-phone {
    display: none;
  }
  .mob-phone.show {
    display: block;
    position: fixed;
    z-index: 10;
    width: 100px;
    height: 0;
    right: 0;
    bottom: 201px;
  }
  .mob-phone_icon {
    display: block;
    width: 39px;
    height: 82px;
    position: absolute;
    right: 0;
    top: 0;
  }
  .overlay-form {
    width: 570px;
  }
  .overlay-inputs {
    flex-direction: column;
    align-items: flex-start;
  }
  .cap-box {
    flex-direction: column;
  }
  .cap {
    height: 350px;
  }
  .cap-clouds_three, .cap-clouds_four {
    height: 129px;
    width: 400px;
    bottom: -5px;
  }
  .cap-clouds_one, .cap-clouds_two {
    height: 129px;
    width: 400px;
    bottom: -5px;
  }
  .header-line_icon {
    display: block;
  }
  .overlay-forma_wrap {
    width: 100%;
  }
  .overlay-forma_center {
    width: 100%;
  }
  .overlay-forma .sidebar-people_boxs {
    width: 100%;
  }
  .overlay-forma_bottom {
    width: 100%;
    flex-direction: column;
  }
  .overlay-forma_bottom .sidebar-label {
    width: 100%;
  }
  .overlay-forma_buttons .sidebar-button {
    position: absolute;
    width: 100%;
    border-radius: 0;
  }
  .overlay-reservation {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    height: auto;
  }
  .overlay-reservation .overlay-form {
    height: 100%;
  }
  .overlay-forma_buttons {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .info-box_title h3, .about-info_title h3, .about-text_title h2, .work-title h2, .comments-text_title h2 {
    font-size: 35px;
    line-height: 45px;
  }
  .leisure-slider {
    height: 300px;
  }
  .restaurant-boxs {
    flex-wrap: wrap;
  }
  .restaurant-box_info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .restaurant-box:nth-child(1), .restaurant-box:nth-child(2) {
    width: 100%;
  }
  .residence-text {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 40px;
  }
  .residence-slider {
    width: 100%;
  }
  .single-equipment_boxs li {
    width: 50%;
  }
  .single-slider_box {
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 10px;
  }
  .single-slider_title h2 {
    font-size: 30px;
  }
  .single-box {
    width: 50%;
    margin-bottom: 10px;
  }
  .single-boxs {
    flex-wrap: wrap;
  }
  .comments-boxs {
    padding: 20px 0px;
  }
}
@media (max-width: 576px) {
  .ic-list_right {
    width: 60px;
    min-width: 60px;
    height: 30px;
  }
  .heade-info_adress span {
    font-size: 13px;
  }
  .header-logo {
    height: 40px;
    width: 139px;
  }
  .webp .main {
    height: 500px;
  }
  .webp .main {
    background: url(../img/bgr/main-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .main {
    background: url(../img/bgr/main-mob.jpg) center no-repeat;
    background-size: cover;
  }
  .main-box h1 {
    font-size: 76px;
    line-height: 76px;
    margin-bottom: 20px;
  }
  .main-box span {
    font-size: 24px;
    line-height: 29px;
  }
  .header-mobile {
    align-items: flex-end;
  }
  .header-burger {
    margin-bottom: 6px;
  }
  .main-clouds_four, .main-clouds_three, .main-clouds_two, .main-clouds_one {
    height: 170px;
    width: 600px;
  }
  .about-img img {
    height: 340px;
    width: 100%;
  }
  .about-text_title {
    margin-bottom: 395px;
  }
  .about-text_boxs {
    flex-direction: column;
  }
  .about-text_box {
    width: 100%;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
  }
  .about-text_box:last-child {
    margin-bottom: 0;
  }
  .about-text_icon {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }
  .about-text_btn {
    width: 100%;
    height: 50px;
  }
  .about:after, .work:after {
    width: 120%;
  }
  @keyframes footer-bgr {
    0% {
      right: 0;
    }
    50% {
      right: -19%;
    }
    100% {
      right: 0;
    }
  }
  .about-info_title {
    justify-content: flex-start;
    align-items: flex-end;
  }
  .info-box_title h3, .about-info_title h3, .about-text_title h2, .work-title h2, .comments-text_title h2 {
    line-height: 37px;
  }
  .about-info {
    margin-top: 0;
  }
  .about-text {
    margin-bottom: 70px;
  }
  .about-slide {
    width: 296px;
  }
  .about-slide_img {
    height: 189px;
  }
  .about-slider {
    padding-bottom: 30px;
  }
  .info {
    padding: 70px 0;
  }
  .info-box_img img {
    height: 350px;
    width: 100%;
  }
  .info-box_img {
    left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .info-box:nth-child(1) .ic-list_right {
    left: 80px;
  }
  .info-box:nth-child(2) .ic-list_right {
    left: 195px;
  }
  .info-box_text button {
    width: 100%;
    height: 50px;
  }
  .comments-text_btn {
    height: 50px;
  }
  .work-title {
    align-items: flex-end;
    justify-content: flex-start;
  }
  .footer-top_title h2 {
    font-size: 26px;
    line-height: 30px;
  }
  .footer-top_left p {
    line-height: 23px;
  }
  .footer-top_btn {
    width: 100%;
    height: 50px;
  }
  .ic-list_left {
    display: none;
  }
  .work-title h2 {
    width: 140px;
  }
  .comments-slide:after {
    right: 12px;
    font-size: 79px;
    line-height: 91px;
  }
  .comments-slide_text h5 {
    padding-right: 30px;
  }
  .about-info_title h3 {
    width: 134px;
  }
  .footer-bottom_box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom_box span {
    margin-bottom: 5px;
  }
  .footer-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-menu_list a {
    justify-content: center;
  }
  .footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-contacts_list li {
    display: flex;
    justify-content: center;
  }
  .about-slider_pagination {
    width: 93% !important;
  }
  .comments-slider_pagination {
    width: 93% !important;
  }
  .info-box_title {
    margin-bottom: 417px;
  }
  .footer-line_icon {
    display: block;
  }
  .footer:after {
    height: 100%;
  }
  .webp .footer:after {
    background: url(../img/bgr/tree-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .footer:after {
    background: url(../img/bgr/tree-mob.png) center no-repeat;
    background-size: cover;
  }
  .overlay {
    align-items: flex-start;
  }
  .overlay-form {
    width: 100%;
    padding: 36px 15px 50px 15px;
  }
  .overlay-inputs label, .overlay-inputs input {
    width: 100%;
  }
  .overlay-form button {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-radius: 0;
    height: 45px;
  }
  .overlay-form button:after {
    border-radius: 0;
  }
  .overlay-title h2 {
    font-size: 30px;
  }
  .overlay-form p {
    font-size: 14px;
  }
  .overlay-inputs label:nth-child(1) {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .cap-box a {
    font-size: 12px;
  }
  .cap-box a:after {
    display: none;
  }
  .cap-box li:after {
    margin-left: 5px;
  }
  .cap-box li {
    margin-right: 5px;
  }
  .cap-box h1 {
    font-size: 50px;
    line-height: 40px;
    margin-bottom: 21px;
  }
  .webp .cap-contacts {
    background: url(../img/bgr/contacts-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .cap-contacts {
    background: url(../img/bgr/contacts-mob.jpg) center no-repeat;
    background-size: cover;
  }
  .contacts-box {
    width: 100%;
  }
  .contacts-info_text span {
    padding-left: 0;
  }
  .contacts-info_text p {
    font-size: 14px;
  }
  .footer-top {
    height: auto;
  }
  .webp .cap-clients {
    background: url(../img/bgr/clients-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .cap-clients {
    background: url(../img/bgr/clients-mob.jpg) center no-repeat;
    background-size: cover;
  }
  .clients-box {
    width: 50%;
  }
  .clients-box:last-child {
    margin-bottom: 0;
  }
  .clients-title h3 {
    width: 208px;
  }
  .clients-title {
    align-items: flex-end;
  }
  .clients-title .ic-list_right {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .clients-slider {
    height: 300px;
  }
  .webp .cap-leisure {
    background: url(../img/bgr/leisure-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .cap-leisure {
    background: url(../img/bgr/leisure-mob.jpg) center no-repeat;
    background-size: cover;
  }
  .leisure {
    flex-wrap: wrap;
  }
  .leisure-wrap {
    width: 100%;
  }
  .leisure-wrap:first-child {
    margin-bottom: 50px;
  }
  .leisure-boxs span {
    font-size: 18px;
  }
  .webp .cap-sport {
    background: url(../img/bgr/sport-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .cap-sport {
    background: url(../img/bgr/sport-mob.jpg) center no-repeat;
    background-size: cover;
  }
  .webp .cap-restaurant {
    background: url(../img/bgr/restaurant-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .cap-restaurant {
    background: url(../img/bgr/restaurant-mob.jpg) center no-repeat;
    background-size: cover;
  }
  .restaurant .leisure-title h3 {
    width: 195px;
  }
  .restaurant .leisure-title {
    position: relative;
  }
  .restaurant .ic-list_right {
    position: absolute;
    left: 140px;
    bottom: 10px;
  }
  .restaurant-box_bottom p {
    margin-bottom: 0;
  }
  .webp .cap-residence {
    background: url(../img/bgr/residence-mob.webp) center no-repeat;
    background-size: cover;
  }
  .no-webp .cap-residence {
    background: url(../img/bgr/residence-mob.jpg) center no-repeat;
    background-size: cover;
  }
  .residence-slider {
    height: 250px;
  }
  .residence-line {
    margin: 20px 0;
    height: 20px;
  }
  .single-slider {
    height: 300px;
  }
  .single-equipment {
    padding: 20px;
  }
  .single-equipment_boxs li {
    width: 100%;
    margin-bottom: 10px;
  }
  .single-table td {
    padding: 7px 5px;
  }
  .single-slider_title .ic-list_right {
    width: 50px;
    min-width: 50px;
  }
  .single-slider_price {
    font-size: 15px;
  }
  .single-slider_price span {
    font-size: 24px;
    line-height: 20px;
  }
  .single-slider_icon {
    height: 20px;
    width: 20px;
  }
  .single-slider_box {
    justify-content: center;
    height: 65px;
  }
  .single-arrows {
    bottom: 65px;
  }
  .single-box {
    width: 100%;
  }
  .single-text span {
    font-size: 17px;
  }
  .single-info_text p {
    font-size: 15px;
  }
  .single-info_btn {
    height: 50px;
  }
  .modal-thank_text p {
    font-size: 14px;
  }
  .footer-bottom_text {
    align-items: center;
  }
  .footer-bottom_text p {
    text-align: center;
  }
  .footer-bottom_text p:nth-child(1) {
    margin-bottom: 5px;
  }
  .restaurant-box .clients-slider {
    height: 250px;
  }
}