* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  line-height: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
li {
  list-style-type: none;
}
button {
  background: none;
  border: none;
  color: inherit;
}
body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 1320px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}
.logo {
  max-width: 50px;
}
.header {
  color: #EADFC9;
  position: relative;
}
.header_center {
  position: relative;
  padding: 35px 0;
}
.header_center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background: url(../images/tmp/header/2.png) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.header_wrapper {
  position: relative;
  z-index: 2;
}
.header_title {
  margin: 40px 0;
}
.header_about {
  background: rgba(120, 117, 110, 0.9);
  color: #fff;
}
.header_btn_call {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  padding-bottom: 0.11em;
  border-bottom: 1px solid;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video_item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scroll {
  width: 30px;
  margin: 30px auto 0;
}
.scroll svg {
  width: 100%;
  height: inherit;
}
.scroll svg path:first-child {
  opacity: 1;
  animation: scroll 1.3s linear infinite;
}
.scroll svg path:nth-child(2) {
  opacity: 0.6;
  animation: scroll2 1.3s linear infinite;
}
.scroll svg path:last-child {
  opacity: 0.3;
  animation: scroll3 1.3s linear infinite;
}
.slider {
  position: relative;
}
.slider .owl-dots {
  max-width: 1320px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 14px;
  line-height: 0;
}
.slider .owl-dots .owl-dot {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid #fff;
}
.slider .owl-dots .owl-dot:not(:last-child) {
  margin-right: 1em;
}
.slider .owl-dots .owl-dot.active {
  background: #fff;
}
.slider .header {
  padding: 80px 0 50px;
  position: relative;
}
.slider .header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}
.slider .header_title {
  margin-top: 0;
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes scroll2 {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
@keyframes scroll3 {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
.block_item:not(:last-child) {
  margin-bottom: 20px;
}
.block_title {
  font-size: 20px;
  margin-bottom: 5px;
}
.block_text {
  font-weight: 200;
}
.block_center {
  text-align: center;
}
.about {
  padding: 20px 0;
}
.about_item {
  padding: 15px 0;
  border-left: 4px solid #D9D9D9;
  padding-left: 20px;
}
.about_item:not(:first-child) {
  margin-top: 20px;
}
.section {
  padding: 50px 0;
}
.section_title {
  font-size: 24px;
  margin-bottom: 1em;
  color: #78756e;
}
.section_title mark {
  background: none;
  color: #dc7646;
}
.section-description {
  background: #E4E4DA;
}
.section-slider {
  padding: 0;
}
.section-form {
  background: #1d1d1d;
  color: #eadfc9;
}
.description_right {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.562em;
}
.link {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-transform: uppercase;
}
.link_icon {
  margin: 1em 0;
  width: 3.642em;
}
.menu {
  font-size: 12px;
  line-height: 1.214em;
  background: #585858;
  color: #fff;
  padding: 7px 0;
  font-weight: 200;
}
.menu_list {
  display: flex;
  justify-content: space-between;
}
.menu_list_desc {
  display: none;
}
.menu_list_links {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.menu_list_links > *:not(:last-child) {
  margin-right: 30px;
}
.menu_link {
  display: flex;
}
.menu_link_icon {
  margin-right: 0.571em;
  height: 1em;
}
.menu_link:hover {
  text-decoration: underline;
}
.form .input{
  width: 100%;
  max-width: 100%;
}
.form_title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 1em;
  color: #dc7646;
}
.form_row {
  display: flex;
  flex-direction: column;
}
.form_row:not(:last-child) {
  margin-bottom: 25px;
}
.form-btn {
  background: #eadfc9;
  color: #1d1d1d;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
}
.form-btn:not(:disabled):active {
  background: #f3a14b;
}
.form:invalid .form-btn {
  opacity: 0.2;
  pointer-events: none;
}
.label {
  font-size: 14px;
  margin-bottom: 8px;
}
.label_req {
  color: #dc7646;
}
.input {
  color: #eadfc9;
  background: none;
  border: 1px solid ;
  padding: 12px 16px;
  font-size: 16px;
}
.input:focus {
  outline: none;
  color: #f3a14b;
}
.footer {
  margin-top: auto;
  background: #1d1d1d;
  color: #eadfc9;
  font-size: 16px;
  border-top: 0.5px solid #eaeaea4c;
}
.footer_btn_call {
  font-weight: 100;
  font-size: 18px;
  line-height: 100%;
  padding-bottom: 0.11em;
  border-bottom: 1px solid;
}
.footer_center {
  padding: 50px 0;
}
.footer_menu_links {
  font-weight: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer_menu_links > *:not(:first-child) {
  margin-top: 20px;
}
.footer_menu_links:not(:first-child) {
  margin-top: 20px;
}
.footer_tel {
  color: #f3a14b;
}
.home {
  font-size: 14px;
}
.home_item:not(:last-child) {
  margin-bottom: 20px;
}
.home_img {
  position: relative;
  height: 0vw;
  padding-top: 70%;
  line-height: 0;
}
.home_img_item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home_desc {
  background: #3e362f;
  color: #f2f2ea;
  font-weight: 200;
  padding: 16px;
}
.home_wrapper {
  max-width: 500px;
}
.home_m2,
.home_title {
  font-weight: 200;
  font-size: 18px;
  margin-bottom: 0.5em;
}
.home_info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -5px;
}
.home_info li {
  margin: 5px;
}
.home_link {
  font-size: 12px;
  display: block;
  text-align: center;
  padding: 1em;
  margin-top: 1em;
  width: 100%;
  text-transform: uppercase;
  border: 1px solid;
}
.home_link:active {
  background: #fff;
  color: #3e362f;
}
.tiles {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
}
.tiles_item {
  padding: 20px;
  border-left: 1px solid #EAEAEA;
  border-right: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
}
.tiles_item:first-child {
  border-top: 1px solid #EAEAEA;
}
.link-gold {
  color: #e1974f;
  border-bottom: 1px dashed #e1974f;
}
@media screen and (min-width: 480px) {
  .form {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 560px) {
  .about,
  .home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .about_item:not(:last-child),
  .home_item:not(:last-child) {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media screen and (min-width: 660px) {
  .menu_list_desc {
    display: block;
    flex-shrink: 0;
  }
  .menu_list_links {
    width: fit-content;
  }
}
@media screen and (min-width: 768px) {
  .footer .logo {
    margin: 0 auto;
  }
  .footer_menu {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    grid-template-areas: 'logo link link2' 'tel link link2';
  }
  .footer_menu_links {
    align-items: flex-start;
  }
  .footer_menu_links:nth-child(1) {
    grid-area: logo;
  }
  .footer_menu_links:nth-child(2) {
    grid-area: link;
  }
  .footer_menu_links:nth-child(3) {
    grid-area: link2;
  }
  .footer_menu_links:nth-child(4) {
    grid-area: tel;
  }
}
@media screen and (min-width: 1024px) {
  .link {
    margin-top: 40px;
  }
  .form_title,
  .section_title {
    font-size: 46px;
  }
  .header_title {
    font-size: 50px;
    max-width: 658px ;
  }
  .header_link_tel,
  .header_btn_call {
    font-size: 42px;
    font-weight: 600;
  }
  .header_btn_call {
    border-bottom-width: 3px;
  }
  .block {
    max-width: 890px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .block_center {
    text-align: left;
  }
  .about {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .description_row {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .description_left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .description_right {
    max-width: 812px;
    position: relative;
  }
  .description_right::after {
    content: "";
    width: 1px;
    height: 71px;
    background: #D1D1D0;
    position: absolute;
    left: -34px;
    top: -40px;
  }
  .description_right::before {
    content: "";
    width: 452px;
    height: 1px;
    background: #D1D1D0;
    position: absolute;
    left: -100px;
    top: -20px;
  }
  .home {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 282px ;
  }
  .home_img {
    padding-top: 0;
    height: 100%;
  }
  .home_item {
    cursor: pointer;
    position: relative;
  }
  .home_item:nth-child(2) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .home_item:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2 ;
    grid-row-end: 4 ;
  }
  .home_item:nth-child(3) .home_desc {
    padding: 50px;
  }
  .home_item:nth-child(3) .home_m2,
  .home_item:nth-child(3) .home_title {
    font-size: 36px;
  }
  .home_item:nth-child(3) .home_info {
    font-size: 20px;
  }
  .home_item:nth-child(3) .home_link {
    font-size: 20px;
  }
  .home_item:nth-child(7) {
    grid-column-start: 2;
    grid-column-end: 4;
  }
  .home_item:not(:hover) .home_desc {
    opacity: 0;
    pointer-events: none;
  }
  .home_wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .home_title,
  .home_link {
    margin-top: auto;
  }
  .home_desc {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: #3e362fc8;
    transition: all 0.2s linear;
  }
  .home_link {
    border: none;
    text-align: left;
    padding: 0;
    position: relative;
  }
  .home_link::after {
    content: "";
    display: block;
    margin-top: 15px;
    width: 51px;
    height: 16px;
    background: url(../images/tmp/icon/arrow.png) no-repeat;
    background-position: center;
    background-size: contain;
  }
  .home_link:hover {
    color: #f3a14b;
  }
  .tiles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .tiles_item {
    padding: 50px;
    border: none;
    position: relative;
  }
  .tiles_item:nth-child(1) {
    border-top: none;
  }
  .tiles_item:nth-child(1)::after {
    content: "";
    width: 1px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: -15px;
    background: #EAEAEA;
  }
  .tiles_item:nth-child(4)::after {
    content: "";
    width: 1px;
    position: absolute;
    left: 0;
    top: -15px;
    bottom: 0px;
    background: #EAEAEA;
  }
  .tiles_item:nth-child(1),
  .tiles_item:nth-child(2) {
    border-bottom: 1px solid #EAEAEA;
  }
  .tiles_item:nth-child(2) {
    grid-column-start: 2 ;
    grid-column-end: 4;
  }
  .tiles_item:nth-child(3) {
    grid-column-start: 1 ;
    grid-column-end: 3;
  }
  .slider .block {
    grid-template-columns: 1fr;
  }
  .slider .header {
    padding: 134px 0 50px;
    position: relative;
  }
  .scroll {
    margin: 66px auto 0;
  }
  .link:hover,
  .header_link_tel:hover,
  .header_btn_call:hover,
  .footer_menu_links a:hover {
    color: #f3a14b;
  }
}
.col {
  display: grid;
  gap: 1em;
}
.col-2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.categories {
  color: #808080;
}
.categories a {
  font-style: italic;
  color: #22405C;
  text-decoration: underline;
  font-weight: 600;
}
.categories a:hover {
  color: #b17126;
}
.card {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
.card-title {
  max-width: 760px;
  display: flex;
  font-size: 40px;
  column-gap: 1.15em;
  color: #442c2c;
  font-weight: 700;
  line-height: 1.15em;
}
.card-title img {
  flex-shrink: 0;
  width: 1.925em;
  height: 2.3em;
}
.card-header {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 30px;
}
.card-slider {
  position: relative;
  overflow: hidden;
  height: fit-content;
}
.card-slider-item {
  width: 100%;
}
.card-slider-item a {
  display: block;
}
.card-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-slider-zoom {
  position: absolute;
  font-size: 24px;
  width: 1em;
  height: 1em;
  display: block;
  top: 0;
  right: 0;
  background: url(../images/tmp/icon/icon-zoom.png) no-repeat;
  z-index: 10;
}
.card-slider .owl-dots {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  display: flex;
  font-size: 16px !important;
  gap: 0.8125em;
  justify-content: center;
}
.card-slider .owl-dot {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid #eadfc9 !important;
  background-color: red;
}
.card-slider .owl-dot.active {
  background: #eadfc9 !important;
}
.card-slider .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #fff !important;
  font-size: 16px !important;
  display: inline-block !important;
}
.card-slider .owl-nav button span {
  font-size: 3em !important;
}
.card-slider .owl-nav button.owl-prev {
  left: 0;
  padding: 0.5em 1em !important;
}
.card-slider .owl-nav button.owl-next {
  right: 0;
  padding: 0.5em 1em !important;
}
.card-slider .owl-nav button:hover {
  background-color: #0000006a;
}
.card-slider .owl-nav button.disabled {
  display: none !important;
}
.card-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.card-info-list {
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  margin-left: 1em;
}
.card-info-list li {
  list-style-type: disc !important;
}
.card-info-square {
  font-weight: 400;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
}
.card-info-square span {
  font-size: 3.5714em;
  color: #dc7646;
  display: block;
  font-weight: 700;
  line-height: 0.92em;
  text-transform: lowercase;
}
.card-info-square span sup {
  font-size: 0.5em;
}
.card-info-room {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 30px;
}
.card-info-room-item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
.card-info-room-count {
  font-size: 40px;
  font-weight: 400;
}
.card-info-room-name {
  flex-basis: 100%;
}
.card-object {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.card-object-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.card-object-btns button {
  cursor: pointer;
  background: #f2f2f2;
  border-radius: 0.375em;
  padding: 1.125em 1.625em;
}
.card-object-btns button.active {
  background: #A8BE4F;
  color: #fff;
  pointer-events: none;
}
.card-object-btns button:not(.active):hover {
  background: #d2d0d0;
}
.card .objects {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.card .objects.active {
  display: grid;
}
.card .objects-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 30px;
}
.card .objects-img {
  position: relative;
}

.card .objects-img img {
  width: 100%;
}


.card .objects-img a[data-fancybox] {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  width: 1em;
  height: 1em;
  background: url(../images/tmp/icon/icon-zoom.png) no-repeat;
}
.card .objects-info {
  position: relative;
  margin-top: auto;
  padding-top: 21px;
  line-height: 190%;
}
.card .objects-info::before {
  content: "";
  width: 74px;
  height: 5px;
  background: #5E7446;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.card .objects-info span {
  display: block;
  color: #5E7446;
  font-weight: 700;
  font-size: 32px;
}
.card .objects-info span sup {
  font-size: 0.5em;
}
@media screen and (max-width: 678px) {
  .card .objects {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 420px) {
  .card .objects {
    grid-template-columns: 1fr;
  }
}
.card-text {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.card-tabs-btns {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  overflow-y: hidden ;
}
.card-tabs-btns button {
  background: #efefef;
  color: #000;
  padding: 15px 16px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  white-space: nowrap;
}
.card-tabs-btns button:not(.active) {
  border-bottom: 1px solid #d8d8d8;
}
.card-tabs-btns button:not(.active):hover {
  background: #d2d0d0;
  cursor: pointer;
}
.card-tabs-btns button.active {
  position: relative;
  background: transparent;
  border: 1px solid #d8d8d8;
  z-index: 1;
}
.card-tabs-btns button.active::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #fff;
}
.card-tabs-body {
  margin-top: -1px;
  font-size: 13px;
  padding-top: 20px;
  border-top: 1px solid #d8d8d8;
}
.card .tabs {
  display: none;
}
.card .tabs.active {
  display: block;
}
.card-view {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 30px;
}
.card-view-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
}
.card-view-gallery p {
  position: relative;
}
.card-view-gallery p a[data-fancybox] {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  width: 1em;
  height: 1em;
  background: url(../images/tmp/icon/icon-zoom.png) no-repeat;
}
.card-view-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.card-view-info {
  font-size: 13px;
}
.card-view-info ul {
  font-weight: 400;
  line-height: 1.923em;
  margin-left: 1em;
}
.card-view-info ul li {
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .card-view {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 900px) {
  .card-title {
    font-size: 32px;
  }
  .card-slider .owl-dots {
    bottom: 20px;
    font-size: 12px !important;
  }
  .card-slider .owl-nav button span {
    font-size: 2em !important;
  }
  .card-info-square {
    font-size: 12px;
  }
}
@media screen and (max-width: 820px) {
  .card-header {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 620px) {
  .card-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .card-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 360px) {
  .card-title {
    font-size: 18px;
  }
}
.link-download {
  background-color: #bf8436;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  border-radius: 0.3em;
  padding: 0.625em 0.875em;
  box-shadow: 0px 0.3em 0px #b17126;
  transition: box-shadow 0.1s linear, transform 0.1s linear;
}
.link-download:active {
  transform: translateY(0.3em);
  box-shadow: 0px 0em 0px #b17126;
}
