@import "normalize.min.css";

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"),
    url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"),
    url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Regular.woff2") format("woff2"),
    url("../fonts/Unbounded-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Medium.woff2") format("woff2"),
    url("../fonts/Unbounded-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-SemiBold.woff2") format("woff2"),
    url("../fonts/Unbounded-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Bold.woff2") format("woff2"),
    url("../fonts/Unbounded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-Montserrat: "Montserrat", sans-serif;
  --font-Unbounded: "Unbounded", sans-serif;
  --black-font: #2c2c2c;
  --white: #fff;
  --green: #497149;
  --brown: #3f3738;
}
* {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.4;
  font-weight: 500;
}
[data-href] {
  cursor: pointer;
}
body {
  font-size: 18px;
  font-family: var(--font-Montserrat);
  color: var(--black-font);
  line-height: 1.4;
  background-color: var(--white);
}
body.no-scroll {
  overflow-y: hidden;
}
@media screen and (max-width: 860px) {
  body {
    font-size: 16px;
  }
}
h1,
h2,
.h2 {
  font-family: var(--font-Unbounded);
  font-weight: normal;
  text-transform: uppercase;
}
h1,
h2,
.h2 {
  font-size: 40px;
  margin: 30px 0;
}
h3 {
  font-size: 20px;
}
@media screen and (max-width: 1280px) {
  h1,
  h2,
  .h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 992px) {
  h1,
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  h1,
  h2,
  .h2 {
    font-size: 28px;
    margin: 25px 0;
  }
}
@media screen and (max-width: 480px) {
  h1,
  h2,
  .h2 {
    font-size: 24px;
    margin: 20px 0;
    line-height: 1.2em;
  }
  h3 {
    font-size: 18px;
  }
}
.container {
  width: 100%;
  max-width: 1450px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dark-form ::-webkit-input-placeholder {
  color: var(--white);
}
.dark-form :-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
.dark-form ::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}
.dark-form :-ms-input-placeholder {
  color: var(--white);
}
.dark-form ::-ms-input-placeholder {
  color: var(--white);
}
.dark-form ::placeholder {
  color: var(--white);
}
.fancybox-container {
  z-index: 100;
}
.fancybox-close-small {
  color: var(--black-font);
}
.mb-0 {
  margin-bottom: 0;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.uppercase {
  text-transform: uppercase;
}
.btn {
  border: none;
  cursor: pointer;
  text-align: center;
}
.gdpr {
  position: fixed;
  top: auto;
  bottom: 0;
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  box-shadow: 0px 3px 38px 0px rgba(99, 99, 99, 0.38);
  padding: 15px 0;
  font-weight: 600;
  z-index: 1000;
}
.gdpr--white {
  background-color: rgba(255, 255, 255, 0.9);
  color: #090f1f;
  border-top: 3px solid #191919;
}
.gdpr .container {
  display: grid;
  grid-template-columns: 1fr 244px;
  grid-column-gap: 80px;
  align-items: center;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}
.gdpr .container:before,
.gdpr .container:after {
  display: none;
}
.gdpr p,
.gdpr small {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
}
.gdpr .container > small {
  display: none;
}
.gdpr a {
  text-decoration: underline;
  color: #005dc2;
}
.gdpr a:hover {
  text-decoration: none;
}
.btn_close {
  grid-row: 1/3;
  grid-column: 2/3;
  display: block;
  margin: 0;
  padding: 20px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background-color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.gdpr--white .btn_close {
  background-color: #000000;
  color: #fff;
}
.btn_close:hover {
  color: #000;
}
.gdpr--white .btn_close:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .gdpr .container {
    grid-template-columns: 1fr 200px;
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 680px) {
  .gdpr {
    padding: 20px 0 15px;
  }
  .gdpr .container {
    grid-template-columns: 1fr 175px;
    grid-column-gap: 35px;
  }
  .gdpr p {
    grid-column: 1/-1;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .gdpr p small {
    display: none;
  }
  .gdpr .container > small {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
  .btn_close {
    grid-row: 2/3;
    grid-column: 2/3;
    font-size: 13px;
  }
}
@media screen and (max-width: 400px) {
  .gdpr .container {
    grid-template-columns: 1fr 145px;
    grid-column-gap: 20px;
  }
  .btn_close {
    padding: 15px 10px;
  }
}
.contact-elem {
  position: relative;
  display: block;
  padding-left: 38px;
}
.contact-elem::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 30px;
  top: -5px;
  left: 0;
}
header .contact-elem::before {
  filter: invert(18%) sepia(6%) saturate(923%) hue-rotate(303deg)
    brightness(100%) contrast(87%);
}
header.invert:not(.open) .header:not(.fixed) .contact-elem::before {
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(295deg)
    brightness(103%) contrast(102%);
}
.contact-elem--adr::before {
  background: url("/static/img/adr.svg") center center / 75% no-repeat;
}
.contact-elem--mail::before {
  background: url("/static/img/mail.svg") center center / 100% no-repeat;
}
.contact-elem--tel::before {
  background: url("/static/img/tel.svg") center center / 95% no-repeat;
}
.contact-elem .contact-elem--none {
  padding-left: 0;
}
@media screen and (max-width: 480px) {
  .contact-elem {
    padding-left: 30px;
  }
  .contact-elem::before {
    width: 20px;
    height: 22px;
    top: 0px;
  }
}
.menu-toggle {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
}
.menu-toggle > span {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 5px;
  background: var(--brown);
  color: var(--brown);
}
.menu-toggle > span::before,
.menu-toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: currentColor;
  left: 0;
}
.menu-toggle > span::before {
  top: -16px;
  transition: top 0.3s;
}
.menu-toggle > span::after {
  bottom: -16px;
  transition: bottom 0.3s;
}
.menu-toggle.is-active > span {
  background: transparent !important;
}
.menu-toggle.is-active > span::before {
  top: 0;
  transform: rotate(-45deg);
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.menu-toggle.is-active > span::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.invert:not(.open) .header:not(.fixed) .menu-toggle > span {
  background: var(--white);
  color: var(--white);
}
@media screen and (max-width: 400px) {
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .menu-toggle > span {
    height: 4px;
  }
  .menu-toggle > span::before {
    top: -12px;
  }
  .menu-toggle > span::after {
    bottom: -12px;
  }
}
@media screen and (max-width: 380px) {
  .menu-toggle {
    width: 30px;
  }
  .menu-toggle > span {
    height: 3px;
  }
  .menu-toggle > span::before {
    top: -12px;
  }
  .menu-toggle > span::after {
    bottom: -12px;
  }
}
/* mobile header */
header.open {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: var(--black-font);
  background-color: var(--white);
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .menu_wrap {
    display: none !important;
  }
  .open .menu_wrap {
    display: flex !important;
  }
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 80px;
  min-height: 95px;
  color: var(--green);
  font-weight: 500;
  font-family: var(--font-Unbounded);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2em;
}
.logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 71px;
  height: 93px;
  background: url("/static/img/logo.svg") center center / 100% no-repeat;
  filter: invert(40%) sepia(6%) saturate(2393%) hue-rotate(71deg)
    brightness(96%) contrast(91%);
}
.invert:not(.open) .header:not(.fixed) .logo {
  color: var(--white);
}
.invert:not(.open) .header:not(.fixed) .logo::before {
  filter: invert(100%) sepia(100%) saturate(1%) hue-rotate(295deg)
    brightness(103%) contrast(102%);
}
@media screen and (max-width: 480px) {
  .logo {
    padding-left: 60px;
    min-height: 70px;
    font-size: 18px;
  }
  .logo::before {
    width: 50px;
    height: 70px;
  }
}
@media screen and (max-width: 380px) {
  .logo {
    padding-left: 48px;
    font-size: 14px;
    min-height: 60px;
  }
  .logo::before {
    width: 42px;
    height: 60px;
  }
}
header {
  color: var(--brown);
  font-weight: 500;
  font-size: 17px;
}
header.invert:not(.open) {
  color: var(--white);
}
.header > .container {
  position: relative;
  padding-bottom: 70px;
}
.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  border-bottom: 3px solid currentColor;
  padding: 25px 0;
}
.header_contacts {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: start;
  justify-content: flex-end;
  row-gap: 10px;
  column-gap: 50px;
  flex: 0.8;
}
.header_phones {
  display: flex;
  align-items: center;
  column-gap: 8px;
  row-gap: 10px;
  margin: 0;
  grid-column: 2/3;
  grid-row: 1/3;
}
.header_phones a {
  white-space: nowrap;
}
.header_btn {
  padding: 14px 50px;
  border-radius: 10px;
  background-color: var(--brown);
  color: var(--white);
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}
.invert:not(.open) .header:not(.fixed) .header_btn {
  color: var(--black-font);
  background-color: var(--white);
}
.menu_wrap {
  position: absolute;
  display: none;
  left: 0;
  bottom: 10px;
  width: 100%;
}
.menu_wrap .header_btn {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px 10px;
  min-height: 50px;
  max-width: 208px;
}
.header_menu {
  width: 100%;
  padding: 0 15px;
}
.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  font-weight: 500;
}
.menu li a {
  position: relative;
  display: block;
  padding: 5px 0;
}
.menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 2px;
  background-color: var(--green);
  opacity: 0;
  transition: opacity 0.2s;
}
.menu li.active a::before,
.menu li a:hover::before {
  opacity: 1;
}
.mobile_contacts {
  display: none;
  grid-template-columns: repeat(2, auto);
  row-gap: 10px;
  column-gap: 10px;
}
.mobile_contacts .header_phones {
  grid-column: 1/2;
  grid-row: 1/3;
  row-gap: 10px;
}
@media screen and (max-width: 1360px) {
  .header_contacts {
    column-gap: 20px;
  }
  .header_btn {
    padding: 14px 25px;
  }
}
@media screen and (max-width: 1280px) {
  .header_contacts {
    grid-template-columns: 100%;
  }
  .header_phones {
    grid-column: initial;
    grid-row: initial;
    row-gap: initial;
  }
  .header_btn {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 992px) {
  .header > .container {
    padding-bottom: 50px;
  }
  .header_content {
    padding: 15px 0;
  }
}
@media screen and (max-width: 860px) {
  header {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header_contacts,
  .header_btn {
    display: none;
  }
  .menu_wrap {
    flex: 0.8;
    flex-direction: column;
    padding-top: 30px;
    row-gap: 30px;
    justify-content: space-between;
    position: static;
    left: unset;
    bottom: unset;
  }
  .menu_wrap .header_btn {
    display: flex;
  }
  .header_menu {
    padding: 0;
  }
  .header > .container {
    padding-bottom: 20px;
  }
  .open .header {
    display: flex;
    height: 100%;
  }
  .open .header > .container {
    display: flex;
    flex-direction: column;
  }
  .menu {
    display: block;
  }
  .menu li a {
    padding: 14px 0;
  }
  .mobile_contacts {
    display: grid;
  }
}
@media screen and (max-width: 600px) {
  .mobile_contacts {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 480px) {
  .header_content {
    padding: 10px 0;
    border-bottom-width: 2px;
  }
  .menu {
    font-size: 14px;
  }
  .mobile_contacts {
    font-size: 14px;
  }
  .mobile_contacts .header_phones {
    column-gap: 6px;
  }
}

.header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--white);
  color: var(--black-font);
  z-index: 100;
  box-shadow: 0px 0px 46px 0px rgba(154, 152, 152, 0.3);
}
.header.fixed > .container {
  padding-bottom: 0;
}
.header.fixed .header_content {
  border-bottom: none;
}
.header.fixed .menu_wrap {
  position: relative;
  left: unset;
  bottom: unset;
  padding: 20px 0;
}
.header.fixed .menu_wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100vw;
  height: 2px;
  background: var(--brown);
}

footer {
  padding: 60px 0 55px;
  border-top: 2px solid currentColor;
  font-size: 17px;
}
.footer_content {
  display: flex;
  justify-content: space-between;
  column-gap: 145px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1400px) {
  footer .logo {
    font-size: 26px;
    padding-left: 94px;
    margin-right: auto;
  }
  footer .logo::before {
    width: 80px;
    height: 105px;
  }
}
.footer_phones,
.footer_contacts {
  display: flex;
  align-self: flex-start;
  align-items: flex-start;
  column-gap: 8px;
  row-gap: 10px;
  margin: 0;
}
.footer_phones {
  align-items: center;
}
.footer_contacts {
  flex-direction: column;

}
footer .contact-elem--mail {
  margin-top: 10px;
}
.footer_copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.footer_copy__link {
  display: block;
  color: var(--green);
  text-decoration: underline;
}
.footer_copy__link:hover {
  text-decoration: none;
}
.footer_copy__holder {
  position: relative;
  display: block;
  padding-left: 34px;
}
.footer_copy__holder::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  background: url("/static/img/copy.svg") center center / 100% no-repeat;
}
@media screen and (max-width: 1400px) {
  .footer_content {
    column-gap: 40px;
  }
}
@media screen and (max-width: 992px) {
  footer {
    padding: 30px 0;
  }
  footer .logo {
    margin-bottom: 20px;
    grid-row: 1/3;
  }
  .footer_content {
    display: grid;
    grid-template-columns: auto auto;
    align-items: flex-start;
    justify-content: space-between;
    row-gap: 20px;
  }
  .footer_contacts {
    align-items: flex-start;
  }
  .footer_copy__holder {
    order: -1;
  }
}
@media screen and (max-width: 640px) {
  .footer_content {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 480px) {
  footer {
    font-size: 16px;
  }
}

.mainslide {
  display: flex;
  flex-direction: column;
  background: url("/static/img/mainslide.jpg") center center / cover no-repeat;
  color: var(--white);
  width: 100%;
  max-width: 1950px;
  min-height: 100vh;
  max-height: 1080px;
  padding-bottom: 150px;
  margin: 0 auto;
}
.mainslide_content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 400px;
  font-size: 24px;
}
.mainslide_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  font-family: var(--font-Unbounded);
  text-transform: uppercase;
  margin-bottom: 60px;
}
.mainslide_sub {
  font-size: 48px;
  margin-bottom: 10px;
}
.mainslide_title {
  font-size: 133px;
  margin: 0;
  line-height: 1em;
}
.mainslide_desc {
  line-height: 1.2em;
  margin: 0;
}
@media screen and (max-width: 1400px) {
  .mainslide {
    padding-bottom: 100px;
  }
  .mainslide_title {
    font-size: 120px;
  }
  .mainslide_sub {
    font-size: 44px;
  }
}
@media screen and (max-width: 1080px) {
  .mainslide {
    padding-bottom: 100px;
  }
  .mainslide_content {
    font-size: 24px;
  }
  .mainslide_title {
    font-size: 90px;
  }
  .mainslide_sub {
    font-size: 34px;
  }
}
@media screen and (max-width: 992px) {
  .mainslide {
    background-position: right 25% center;
  }
}
@media screen and (max-width: 600px) {
  .mainslide {
    background-position: right 15% center;
  }
  .mainslide_content {
    font-size: 16px;
  }
  .mainslide_title {
    font-size: 14vw;
  }
  .mainslide_sub {
    font-size: 5vw;
  }
}
@media screen and (max-width: 400px) {
  .mainslide {
    background: url("/static/img/mainslide_sm.jpg") center center / cover no-repeat;
  }
}
.mainpage {
  padding-top: 60px;
  padding-bottom: 120px;
  /* background-color: #f7f7f7; */
}
.mainpage_intro {
  align-items: center;
  row-gap: 20px;
  padding: 90px 0;
  margin-bottom: 90px;
}
.mainpage_intro__sub {
  width: 56%;
  margin: 0;
}
.mainpage_intro__text {
  width: 42%;
  max-width: 570px;
}
.mainpage_intro__text p {
  margin-bottom: 0;
  line-height: 1.5;
}
.mainpage_why {
  margin-bottom: 100px;
}
.mainpage_why__row {
  row-gap: 20px;
  margin-bottom: 70px;
}
.mainpage_why__text {
  width: 38%;
  max-width: 480px;
}
.mainpage_why__text h2 {
  margin: 0 0 35px;
}
.mainpage_why__text p {
  margin-bottom: 30px;
  line-height: 1.5;
}
.mainpage_why__img {
  align-self: flex-start;
  width: 58%;
  border-radius: 35px;
  overflow: hidden;
}
.mainpage_why__img img {
  display: block;
}
.mainpage_why__list {
  display: grid;
  grid-template-columns: 20% 24% 27% 23%;
  justify-content: space-between;
  row-gap: 10px;
  font-size: 15px;
}
.mainpage_why__list li {
  background-color: var(--brown);
  color: var(--white);
  padding: 18px 30px 22px 40px;
  border-radius: 15px;
}
.mainpage_why__list b {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 1.13em;
}
.mainpage_why__list p {
  margin: 0;
  line-height: 1.25em;
}
@media screen and (max-width: 1400px) {
  .mainpage_intro {
    padding: 60px 0;
    margin-bottom: 60px;
  }
  .mainpage_why {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 992px) {
  .mainpage {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .mainpage_intro {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  .mainpage_why__row {
    margin-bottom: 40px;
  }
  .mainpage_why__text h2 {
    margin-bottom: 20px;
  }
  .mainpage_why__list {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 820px) {
  .mainpage_intro__sub,
  .mainpage_intro__text {
    width: 100%;
    max-width: initial;
  }
  .mainpage_why__text,
  .mainpage_why__img {
    width: 100%;
    max-width: initial;
  }
  .mainpage_why__text p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .mainpage_why {
    margin-bottom: 40px;
  }
  .mainpage_why__list li {
    padding: 18px 15px 22px 20px;
  }
}
@media screen and (max-width: 480px) {
  .mainpage_why__list {
    grid-template-columns: 100%;
  }
}
.mainpage_catalog {
  padding-top: 40px;
  padding-bottom: 110px;
}
.catalog-list {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  row-gap: 30px;
  padding-top: 10px;
  margin-bottom: 45px;
}
.catalog-slider .catalog-list {
  display: flex;
  justify-content: flex-start;
}
.catalog-slider .catalog-item.swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.catalog-slider .catalog-item_general {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.catalog-item_img {
  position: relative;
  width: 100%;
  max-width: 454px;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto 38px;
}
.catalog-item_img::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 20px;
  right: 30px;
  background: url("/static/img/arrow.svg") center center / 50% no-repeat,
    var(--white);
}
.catalog-item_img img {
  display: block;
}
.catalog-item_name {
  display: block;
  font-family: var(--font-Unbounded);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.catalog-item_text {
  padding-bottom: 20px;
  flex: 1;
  max-width: 400px;
}
.catalog-item_specs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 500;
}
.catalog-item_specs li {
  padding: 8px 22px;
  border: 2px solid var(--brown);
  border-radius: 40px;
}
.catalog-item_specs .catalog-item_spec {
  padding: 12px 22px 12px 60px;
}
.catalog-item_spec {
  position: relative;
}
.catalog-item_spec::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
.catalog-item_spec--square::before {
  background: url("/static/img/square.svg") center center / 100% no-repeat;
}
.catalog-item_spec--guests::before {
  background: url("/static/img/guests.svg") center center / 100% no-repeat;
}
.catalog-item_spec--time::before {
  background: url("/static/img/time.svg") center center / 100% no-repeat;
}
.catalog-item_more {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  font-size: 17px;
  font-weight: 500;
  align-self: flex-start;
}
.catalog-item_more::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  background: url("/static/img/arrow.svg") center center / 100% no-repeat;
}
.mainpage_slogan {
  font-family: var(--font-Unbounded);
  font-size: 40px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .catalog-item_img {
    margin-bottom: 20px;
  }
  .catalog-item_name {
    margin-bottom: 10px;
  }
  .catalog-item_specs .catalog-item_spec {
    padding: 10px 15px 10px 50px;
  }
  .catalog-item_spec::before {
    left: 15px;
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 992px) {
  .catalog-list {
    margin-bottom: 30px;
  }
  .mainpage_catalog {
    padding-bottom: 60px;
  }
  .mainpage_slogan {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .mainpage_catalog {
    padding-bottom: 40px;
  }
  .mainpage_slogan {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.slider-btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: url("/static/img/arrow.svg") center center / 50% no-repeat,
    var(--white);
  cursor: pointer;
  box-shadow: 0 0 8px 1px rgba(99, 99, 99, 0.2);
}
.catalog-gallery_header {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.catalog-slider-prev {
  transform: scale(-1, 1);
}
.catalog-gallery_header .catalog-slider-prev {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .slider-btn {
    width: 42px;
    height: 42px;
  }
}
@media screen and (max-width: 480px) {
  .slider-btn {
    width: 36px;
    height: 36px;
  }
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--green);
  column-gap: 8px;
  padding: 5px 0 20px;
  font-weight: 500;
}
.breadcrumbs > li > a {
  position: relative;
  padding-right: 25px;
}
.breadcrumbs > li > a::before {
  content: "";
  position: absolute;
  right: 4px;
  top: 45%;
  transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background: url("/static/img/arr.svg") center center / 8px no-repeat;
}
.houses {
  padding-bottom: 120px;
}
.houses_intro {
  display: grid;
  grid-template-columns: 40% 58%;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  padding: 80px 0;
  margin-bottom: 100px;
}
.houses_intro h1 {
  margin: 0;
}
.houses_intro p {
  margin-bottom: 0;
}
.houses_exposure {
  padding-bottom: 95px;
}
.exposure {
  background: url("/static/img/exposure.jpg") center center / cover no-repeat;
  color: var(--white);
  padding: 45px 40px 20px 60px;
  margin-bottom: 40px;
  border-radius: 30px;
  overflow: hidden;
  font-size: 15px;
}
.exposure h2 {
  margin: 0 0 10px;
}
.exposure_row {
  justify-content: flex-end;
  column-gap: 20px;
  row-gap: 20px;
  margin-bottom: 20px;
}
.exposure_row.grid {
  display: grid;
  grid-template-columns: 26% 23% 41%;
  justify-content: end;
}
.exposure_row li {
  border-radius: 10px;
  background-image: linear-gradient(
    to right,
    rgba(220, 220, 220, 0.2) 0%,
    rgba(165, 165, 165, 0.4) 100%
  );
  padding: 8px 30px;
  line-height: 1.3em;
}
.exposure_row.grid li {
  padding-top: 18px;
  padding-bottom: 18px;
}
.exposure_row b {
  display: block;
  font-size: 1.2em;
}
.exposure_row span {
  display: block;
  margin-top: 4px;
  font-weight: 500;
}
.houses_catalog {
  margin-bottom: 165px;
}
@media screen and (max-width: 1400px) {
  .houses_intro {
    padding: 60px 0;
    margin-bottom: 60px;
  }
  .houses_catalog {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1200px) {
  .houses {
    padding-bottom: 80px;
  }
  .exposure_row.grid {
    grid-template-columns: 29% 25% 42%;
    column-gap: initial;
    justify-content: space-between;
  }
}
@media screen and (max-width: 992px) {
  .houses_intro {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .houses_exposure {
    padding-bottom: 70px;
  }
  .exposure {
    padding: 25px 20px 20px 25px;
    margin-bottom: 30px;
  }
  .exposure_row li {
    padding: 8px 15px;
    background: rgba(165, 165, 165, 0.6);
  }
  .houses_catalog {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .houses_intro {
    grid-template-columns: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
  }
  .exposure_row.grid {
    grid-template-columns: 48.5% 48.5%;
  }
  .exposure_row.grid li:last-child {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 600px) {
  .exposure_row {
    row-gap: 10px;
    margin-bottom: 10px;
  }
  .exposure_row.grid {
    grid-template-columns: 100%;
  }
  .exposure_row li {
    width: 100%;
  }
  .houses_exposure {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .houses {
    padding-bottom: 40px;
  }
  .exposure {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  .houses_catalog {
    margin-bottom: 40px;
  }
}
.photo-panel {
  margin-bottom: 40px;
}
.photo-panel_list {
  display: grid;
  grid-template-columns: 41% 24% 32%;
  justify-content: space-between;
  row-gap: 30px;
}
.photo-panel_list li:nth-child(4) {
  grid-column: 1/3;
}
.photo-panel_list img {
  display: block;
  border-radius: 20px;
}
.photo-panel_list img + img {
  margin-top: 13px;
}
@media screen and (max-width: 840px) {
  .photo-panel_list {
    grid-template-columns: 60% 36%;
    row-gap: 20px;
  }
  .photo-panel_list li:nth-child(4) {
    grid-column: 1/-1;
    order: 1;
  }
  .photo-panel_list li:nth-child(5) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .photo-panel_list img + img {
    margin-top: 6px;
  }
  .photo-panel_list img:only-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 480px) {
  .photo-panel_list {
    grid-template-columns: 100%;
    row-gap: 10px;
  }
  .photo-panel_list__double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
  }
  .photo-panel_list img {
    border-radius: 10px;
  }
  .photo-panel_list img + img {
    margin: 0;
  }
}
.contacts_row {
  padding: 80px 0;
  margin-bottom: 80px;
  row-gap: 25px;
}
.contacts_text {
  width: 40%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  font-weight: 500;
}
.contacts_row h1 {
  margin: 0 0 60px;
}
.contacts_map {
  width: 58%;
  border-radius: 20px;
  overflow: hidden;
}
.contacts_content {
  padding: 0 0 20px;
  margin-bottom: auto;
  color: var(--brown);
}
.contacts_content_phones,
.contacts_content_links {
  display: flex;
  row-gap: 35px;
  margin-bottom: 35px;
  column-gap: 8px;
}
.contacts_content_phones {
  align-items: center;
}
.contacts_content_links {
  flex-wrap: wrap;
}
.contacts .contact-elem::before {
  filter: invert(18%) sepia(6%) saturate(923%) hue-rotate(303deg)
    brightness(100%) contrast(87%);
}
.contacts_whats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
}
.contacts_whats__phones {
  display: flex;
  align-items: center;
  white-space: nowrap;
  column-gap: 8px;
}
.contacts_whats p {
  margin: 0;
}
.phones-row {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 500;
}
.phones-row a[href^="tel:"] {
  white-space: nowrap;
}
.messenger {
  display: block;
  flex-shrink: 0;
}
.messenger img {
  display: block;
}
@media screen and (max-width: 480px) {
  .phones-row {
    column-gap: 6px;
  }
  .messenger {
    max-width: 26px;
  }
}
@media screen and (min-width: 1281px) {
  .contacts .contact-elem {
    padding-left: 48px;
  }
  .contacts .contact-elem--none {
    padding-left: 10px;
  }
  .contacts .contact-elem::before {
    width: 30px;
    height: 35px;
  }
}
@media screen and (max-width: 1400px) {
  .contacts_row {
    padding: 40px 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .contacts_map iframe {
    height: 380px;
  }
  .contacts_row {
    padding: 20px 0;
    margin-bottom: 40px;
  }
  .contacts_row h1 {
    margin: 0 0 30px;
  }
  .contacts_content_phones,
  .contacts_content_links {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contacts_text,
  .contacts_map {
    width: 100%;
  }
}
.booking-page {
  padding-bottom: 60px;
}
.booking-page_header {
  align-items: center;
  justify-content: flex-start;
  column-gap: 65px;
  row-gap: 10px;
  padding: 80px 0 0;
  margin: 0 0 60px;
}
.booking-page_header h1 {
  margin: 0;
}
.booking-page_header p {
  margin: 0;
}
.booking-search {
  font-size: 15px;
  margin-bottom: 40px;
}
.form-entry {
  width: 100%;
}
.form-entry--date {
  padding-right: 48px;
  background: url("/static/img/date.svg") right 20px center / 22px no-repeat;
}
.booking-search .form-entry {
  padding: 15px;
  border: 2px solid var(--brown);
  border-radius: 10px;
}
.booking-search .form-entry--date {
  padding-right: 48px;
}
.booking-search_content {
  display: grid;
  align-items: center;
  grid-template-columns: 47% 24.5% 24%;
  justify-content: space-between;
  row-gap: 15px;
  padding: 28px;
  border: 2px solid var(--brown);
  border-radius: 15px;
}
.booking-search_dates {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.booking-search_divider {
  font-size: 1.2em;
}
.booking-search_btn {
  padding: 15px;
  font-size: 1.2em;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.booking-page_contacts {
  align-items: center;
  justify-content: flex-start;
  column-gap: 30px;
  font-weight: 500;
  padding-top: 20px;
  margin-bottom: 50px;
}
.booking-page_contacts p {
  margin: 0;
}
.booking-page_sub {
  font-family: var(--font-Unbounded);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
}
@media screen and (max-width: 1280px) {
  .booking-page_header {
    column-gap: 40px;
    padding: 40px 0 0;
    margin: 0 0 30px;
  }
  .booking-search_content {
    padding: 20px;
  }
}
@media screen and (max-width: 992px) {
  .booking-search_content {
    grid-template-columns: repeat(2, 48.5%);
  }
  .booking-search_dates {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 600px) {
  .booking-search_content {
    grid-template-columns: 100%;
    row-gap: 10px;
  }
  .booking-search_dates {
    flex-direction: column;
    row-gap: 10px;
  }
  .booking-search_divider {
    display: none;
  }
  .booking-page_header {
    padding: 20px 0 0;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .booking-search {
    margin-bottom: 20px;
  }
  .booking-search_content {
    padding: 15px 10px;
  }
  .booking-page_contacts {
    margin-bottom: 30px;
  }
}
.dotted {
  list-style: none;
  font-weight: 500;
}
.dotted li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}
.dotted li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--green);
}
@media screen and (max-width: 480px) {
  .dotted li {
    padding-left: 20px;
  }
}
.booking-page_conditions,
.booking-page_rules {
  margin-bottom: 110px;
}
.booking-page_conditions .dotted {
  margin-bottom: 30px;
}
.booking-page_conditions p {
  margin-bottom: 40px;
}
.booking-page_conditions .booking-page_sub {
  margin-bottom: 20px;
}
.booking-page_rules .booking-page_sub {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .booking-page_conditions,
  .booking-page_rules {
    margin-bottom: 60px;
  }
  .booking-page_conditions p {
    margin-bottom: 20px;
  }
}
body .ui-datepicker {
  padding: 20px;
  border-radius: 10px;
}
body .ui-widget.ui-widget-content {
  width: 265px;
}
body .ui-datepicker .ui-datepicker-header {
  font-size: 14px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #bdbdbd;
  margin-bottom: 10px;
}
body .ui-datepicker table {
  font-size: 14px;
  margin: 0;
}
body .ui-datepicker th {
  padding: 2px;
  font-weight: normal;
}
body .ui-datepicker td .ui-state-default {
  padding: 2px;
  text-align: center;
  border: none;
}
body .ui-datepicker td.ui-datepicker-unselectable .ui-state-default {
  background: transparent;
}
.ui-datepicker td.ui-datepicker-week-end .ui-state-default {
  color: #cc2626;
}
.ui-datepicker.start-datepicker td.ui-datepicker-today {
  opacity: 1;
}
body .ui-datepicker td.ui-datepicker-today .ui-state-default {
  text-decoration: underline;
}
body .ui-datepicker td.ui-datepicker-current-day .ui-state-default {
  display: block;
  max-width: 25px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
}
.ui-datepicker.start-datepicker td .ui-state-default {
  background: #ade1ad;
}
.ui-datepicker.end-datepicker td .ui-state-default {
  background: transparent;
}
.spec-plate {
  position: relative;
  display: inline-block;
  padding: 15px 20px 15px 60px;
  border: 2px solid var(--brown);
  border-radius: 40px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
}
.spec-plate--simple {
  padding-left: 20px;
}
.spec-plate--icons {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 10px 20px;
}
.spec-plate::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.spec-plate--square::before {
  background-image: url("/static/img/square.svg");
  background-size: 95%;
}
.spec-plate--guests::before {
  background-image: url("/static/img/guests.svg");
}
.spec-plate--time::before {
  background-image: url("/static/img/time.svg");
}
.spec-plate--simple::before {
  display: none;
}
.spec-plate_price {
  position: relative;
  display: inline-block;
  font-weight: 700;
  padding-left: 22px;
  margin-left: 16px;
}
.spec-plate_price::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120%;
  background: currentColor;
}
.house {
  padding-bottom: 100px;
}
.house_hero {
  display: grid;
  grid-template-columns: 39% 57%;
  justify-content: space-between;
  row-gap: 20px;
  padding-top: 85px;
  margin-bottom: 85px;
}
.house_hero__img img {
  display: block;
  border-radius: 25px;
}
.house_hero h1 {
  margin: 0 0 10px;
  line-height: 1.1em;
}
.house_hero__price {
  display: block;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
  padding-top: 20px;
  padding-bottom: 6px;
  margin-bottom: 40px;
  max-width: 330px;
}
.house_specs {
  font-size: 14px;
  margin-bottom: 40px;
}
.house_specs li {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  margin-bottom: 10px;
  line-height: 1.2em;
  font-weight: 500;
}
.house_hero__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 10px;
  background-color: var(--brown);
  color: var(--white);
  font-size: 18px;
  margin-bottom: 35px;
}
.house_hero__tels {
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: 16px;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .house_hero {
    grid-template-columns: 40% 57%;
    padding-top: 45px;
    margin-bottom: 45px;
  }
  .house_hero__tels {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 992px) {
  .house {
    padding-bottom: 60px;
  }
  .house_specs li {
    flex-wrap: wrap;
  }
  .house_specs li br {
    display: none;
  }
  .spec-plate {
    padding: 12px 15px 12px 45px;
  }
  .spec-plate--simple {
    padding-left: 15px;
  }
  .spec-plate::before {
    width: 24px;
    height: 24px;
    left: 12px;
  }
}
@media screen and (max-width: 768px) {
  .house_hero {
    grid-template-columns: 100%;
  }
  .house_specs,
  .house_hero__btn {
    margin-bottom: 20px;
  }
  .house_hero__img img {
    border-radius: 15px;
  }
}
.house_desc {
  padding-top: 35px;
  padding-bottom: 35px;
}
.house_desc h2 {
  font-size: 30px;
  margin-bottom: 60px;
}
.house_desc p {
  max-width: 1025px;
}
.house_desc__sub {
  font-family: var(--font-Unbounded);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
}
.house_desc__img-grid {
  display: grid;
  grid-template-columns: 40.5% 32% 23.5%;
  justify-content: space-between;
  row-gap: 15px;
  padding-top: 25px;
  margin-bottom: 120px;
}
.house_desc__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 100px;
}
.house_desc__text {
  width: 48%;
}
.house_desc__img {
  width: 50%;
}
.house_desc__img--2 {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  row-gap: 20px;
}
.house_desc__text p {
  margin: 0 0 10px;
  max-width: 600px;
}
.house_desc__text p + p {
  margin-top: 20px;
}
.house_desc__text ul {
  margin-bottom: 15px;
}
.house_desc__text ul li {
  margin-bottom: 0;
}
.house_desc__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 100px;
}
.house_desc__block-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 49%;
}
.house_desc__block-text p {
  max-width: 600px;
}
.house_desc__block-imgs {
  width: 49%;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  row-gap: 30px;
}
.house_desc__block-imgs img:first-child {
  grid-column: 1/-1;
}
.house_gallery {
  margin-bottom: 60px;
}
.house_gallery__list {
  display: grid;
  grid-template-columns: repeat(4, 24%);
  justify-content: space-between;
  row-gap: 20px;
  padding-top: 35px;
  margin-bottom: 35px;
}
.house_gallery__links {
  text-align: center;
}
.house_gallery__more {
  display: inline-block;
  text-decoration: underline;
  font-size: 17px;
}
@media screen and (max-width: 1280px) {
  .house_desc h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .house_desc__img-grid {
    margin-bottom: 80px;
  }
  .house_desc__row,
  .house_desc__block {
    margin-bottom: 60px;
  }
  .house_gallery__list {
    padding-top: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 992px) {
  .house_desc h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .house_desc__row,
  .house_desc__block {
    margin-bottom: 30px;
  }
  .house_desc__text,
  .house_desc__img {
    width: 100%;
  }
  .house_desc__block-text,
  .house_desc__block-imgs {
    width: 100%;
  }
  .house_gallery__list {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 600px) {
  .house_desc__img-grid {
    grid-template-columns: 56% 41%;
    padding-top: 15px;
    margin-bottom: 60px;
  }
  .house_desc__img-grid img:first-child {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 480px) {
  .house_hero {
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .house_desc {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .house_desc h2 {
    font-size: 20px;
  }
  .house_gallery {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 400px) {
  .house_desc__img-grid,
  .house_desc__block-imgs,
  .house_gallery__list,
  .house_desc__img--2 {
    grid-template-columns: auto;
    justify-content: center;
    row-gap: 15px;
  }
}
.gallery {
  padding-bottom: 100px;
}
.gallery .breadcrumbs {
  margin-bottom: 80px;
}
.gallery_list {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  row-gap: 65px;
  padding-top: 25px;
  font-size: 20px;
  font-family: var(--font-Unbounded);
  text-transform: uppercase;
  margin-bottom: 60px;
}
.gallery_list__display {
  position: relative;
  display: block;
  margin-bottom: 35px;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.2s;
}
.gallery_list__display::before,
.gallery_list__display::after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery_list__display::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6)
  );
}
.gallery_list__display::after {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 30px;
  right: 30px;
  background: url("/static/img/arrow.svg") center center / 50% no-repeat,
    var(--white);
}
.gallery_list li:hover .gallery_list__display {
  transform: scale(1.02);
}
.gallery_list li:hover .gallery_list__display::before,
.gallery_list li:hover .gallery_list__display::after {
  opacity: 1;
}
.gallery_list__display img {
  display: block;
}
.gallery-item {
  padding-bottom: 120px;
}
.gallery-item .breadcrumbs {
  margin-bottom: 80px;
}
.gallery-item_photos {
  display: grid;
  grid-template-columns: repeat(4, 23.5%);
  justify-content: space-between;
  row-gap: 30px;
  padding-top: 30px;
  margin-bottom: 60px;
}
.gallery-item_link {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 333px;
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.2s;
  transform-origin: bottom center;
}
.gallery-item_link::before,
.gallery-item_link::after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item_link::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6)
  );
}
.gallery-item_link::after {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 15px;
  right: 15px;
  background: url("/static/img/arrow.svg") center center / 50% no-repeat,
    var(--white);
  transform: rotate(-45deg);
}
.gallery-item_link:hover {
  transform: scale(1.05);
}
.gallery-item_link:hover::before,
.gallery-item_link:hover::after {
  opacity: 1;
}
.gallery-item_link img {
  display: block;
}
@media screen and (max-width: 1280px) {
  .gallery .breadcrumbs,
  .gallery-item .breadcrumbs {
    margin-bottom: 40px;
  }
  .gallery_list {
    row-gap: 40px;
    padding-top: 10px;
    margin-bottom: 40px;
  }
  .gallery-item_photos {
    padding-top: 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .gallery_list {
    grid-template-columns: repeat(2, 48.5%);
    font-size: 18px;
  }
  .gallery_list__display {
    margin-bottom: 20px;
  }
  .gallery-item_photos {
    grid-template-columns: repeat(3, 31.5%);
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .gallery {
    padding-bottom: 60px;
  }
  .gallery .breadcrumbs,
  .gallery-item .breadcrumbs {
    margin-bottom: 0px;
  }
  .gallery-item_photos {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 480px) {
  .gallery_list {
    grid-template-columns: 100%;
    font-size: 16px;
  }
}
@media screen and (max-width: 380px) {
  .gallery-item_photos {
    grid-template-columns: 100%;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 14px;
  row-gap: 10px;
  flex-wrap: wrap;
  font-size: 17px;
  font-weight: 500;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  border: 2px solid var(--brown);
  background-color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  padding-top: 2px;
  transition: background 0.2s;
}
.pagination a:hover,
.pagination a.active {
  background-color: var(--brown);
  color: var(--white);
}
.popup {
  display: none;
  font-family: var(--font-Montserrat);
}
.popup .fancybox-close-small {
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
}
@media screen and (max-width: 1280px) {
  .popup .fancybox-close-small {
    top: 0px;
    right: 0px;
  }
}
@media screen and (max-width: 480px) {
  .popup .fancybox-close-small {
    width: 40px;
    height: 40px;
    padding: 0;
  }
}
.booking-popup {
  width: 95vw;
  max-width: 1420px;
  padding: 60px;
  border-radius: 30px;
}
.booking-popup h2 {
  margin: 0 0 40px;
}
.booking-modal_form {
  margin-bottom: 90px;
}
.booking-results_sub {
  font-size: 30px;
  text-transform: uppercase;
  font-family: var(--font-Unbounded);
  margin-bottom: 40px;
}
.booking-item {
  display: grid;
  grid-template-columns: 36% 62%;
  justify-content: space-between;
  row-gap: 20px;
}
.booking-item_img img {
  display: block;
  border-radius: 20px;
}
.booking-results_list > li + li {
  margin-top: 100px;
  padding-top: 100px;
  border-top: 2px solid var(--brown);
}
.booking-item_name {
  text-transform: uppercase;
  font-family: var(--font-Unbounded);
  font-size: 30px;
  margin-bottom: 5px;
}
.booking-item_price {
  display: block;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
  padding-bottom: 6px;
  margin-bottom: 15px;
  max-width: 330px;
}
.booking-item_text {
  min-height: 100px;
}
.booking-item_btn {
  font-size: 17px;
  padding: 14px 30px;
  border-radius: 10px;
  background-color: var(--brown);
  color: var(--white);
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .booking-popup h2 {
    margin-bottom: 20px;
  }
  .booking-modal_form {
    margin-bottom: 40px;
  }
  .booking-results_list > li + li {
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .booking-popup {
    padding: 40px 30px;
  }
  .booking-results_sub {
    font-size: 26px;
  }
  .booking-item_name {
    font-size: 26px;
  }
}
@media screen and (max-width: 992px) {
  .booking-popup {
    padding: 40px 20px 30px;
  }
  .booking-results_sub {
    font-size: 22px;
  }
  .booking-item_name {
    font-size: 24px;
  }
  .booking-results_list > li + li {
    margin-top: 30px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .booking-item {
    grid-template-columns: 100%;
  }
  .booking-popup {
    padding: 30px 15px;
    border-radius: 10px;
  }
}
.booking-request {
  width: 95vw;
  max-width: 1210px;
  padding: 60px 70px;
  border-radius: 30px;
}
.booking-request h2 {
  margin: 0 0 40px;
}
.booking-form_content {
  display: grid;
  grid-template-columns: 32.5% 32.5% 27%;
  justify-content: space-between;
  row-gap: 15px;
  font-size: 16px;
}
.booking-form_sub {
  display: block;
  margin-bottom: 10px;
}
.booking-form .form-entry {
  padding: 13px 10px 13px 18px;
  border: 2px solid var(--brown);
  border-radius: 10px;
  font-size: 14px;
}
.form-entry_wrap--textarea {
  display: flex;
  flex-direction: column;
  grid-row: 1/3;
  grid-column: 2/3;
}
.form-entry_wrap--textarea .form-entry {
  flex: 1;
  resize: none;
  min-height: 80px;
}
.booking-form_controls {
  grid-row: 1/3;
  grid-column: 3/-1;
}
.booking-form .agreement {
  font-size: 13px;
  margin-bottom: 25px;
}
.booking-form .agreement_desc {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}
.agreement label,
.form-variants label {
  position: relative;
  display: block;
}
.agreement label + label,
.form-variants label + label {
  margin-top: 5px;
}
.agreement label input,
.form-variants label input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.agreement label span,
.form-variants label span {
  position: relative;
  display: block;
  padding-left: 30px;
  line-height: 1.2em;
}
.agreement label span::before,
.agreement label span::after {
  content: "";
  position: absolute;
}
.agreement label span::before {
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--brown);
}
.agreement label span::after {
  width: 10px;
  height: 10px;
  left: 2px;
  top: 2px;
  background-color: var(--green);
  opacity: 0;
}
.agreement label input:checked + span::after {
  opacity: 1;
}
.booking-form_btn {
  display: block;
  padding: 15px;
  font-size: 17px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .booking-request {
    padding: 40px 30px 30px;
  }
  .booking-form_content {
    grid-template-columns: 34% 34% 28%;
  }
  .booking-form .agreement {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 992px) {
  .booking-request h2 {
    margin-bottom: 20px;
  }
  .booking-form_content {
    grid-template-columns: 48% 48%;
  }
  .form-entry_wrap--textarea,
  .booking-form_controls {
    grid-row: initial;
    grid-column: 1 / -1;
  }
}
@media screen and (max-width: 600px) {
  .booking-form_content {
    grid-template-columns: 100%;
    row-gap: 12px;
  }
  .booking-form_sub {
    margin-bottom: 5px;
  }
  .booking-form .form-entry {
    padding: 12px 10px 12px 15px;
  }
}
@media screen and (max-width: 480px) {
  .agreement label span {
    padding-left: 24px;
  }
  .booking-request {
    padding: 30px 15px 20px;
    border-radius: 10px;
  }
  .booking-request h2 {
    font-size: 20px;
    text-align: center;
  }
}
.booking-success {
  width: 95vw;
  max-width: 940px;
  border-radius: 30px;
  background: url("/static/img/booking-success.png") right bottom / 44%
      no-repeat,
    var(--white);
}
.booking-success__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding: 0 57% 0 50px;
}
.booking-success .h2 {
  margin: 0 0 5px;
  padding: 0 0 20px;
  border-bottom: 2px solid currentColor;
}
@media screen and (min-width: 1281px) {
  .booking-success .h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 992px) {
  .booking-success__content {
    padding: 0 45% 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .booking-success__content {
    min-height: 240px;
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .booking-success {
    border-radius: 10px;
  }
  .booking-success__content {
    padding-right: 0;
    padding-top: 10px;
    justify-content: flex-start;
  }
  .booking-success .h2 {
    padding: 0 0 10px;
  }
}
.feedback-popup {
  width: 95vw;
  max-width: 1200px;
  padding: 60px 70px;
  border-radius: 30px;
  background: url("/static/img/feedback-popup.jpg") center center / cover
    no-repeat;
  color: var(--white);
}
.feedback-popup .fancybox-close-small {
  color: var(--white);
}
.feedback-popup h2 {
  margin: 0 0 30px;
}
.feedback-form_content {
  display: grid;
  grid-template-columns: 1fr 1fr 285px;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 15px;
  font-size: 16px;
}
.feedback-form_content .form-entry_wrap--textarea {
  grid-column: 1/3;
  grid-row: 2/3;
}
.feedback-form_controls {
  display: flex;
  flex-direction: column;
  grid-column: 3/-1;
  grid-row: 1/3;
}
.feedback-form .form-entry {
  background-color: rgba(220, 220, 220, 0.4);
  color: var(--white);
  padding: 15px 10px 15px 20px;
  border-radius: 15px;
  border: none;
  font-size: 14px;
}
.feedback-form textarea.form-entry {
  min-height: 140px;
  resize: none;
}
.feedback-form_sub {
  display: block;
  margin-bottom: 10px;
}
.feedback-form .agreement {
  font-size: 15px;
  margin-bottom: 10px;
}
.feedback-form .agreement_desc {
  display: block;
  margin-bottom: 5px;
}
.feedback-form .agreement label span {
  font-size: 12px;
}
.feedback-form .agreement label span::before {
  border-color: var(--white);
  background-color: var(--white);
}
.feedback-form_variants {
  margin-bottom: 20px;
}
.feedback-form_variants__sub {
  margin-bottom: 5px;
}
.feedback-form_variants label span::before,
.feedback-form_variants label span::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.feedback-form_variants label span::before {
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: var(--white);
}
.feedback-form_variants label span::after {
  width: 12px;
  height: 12px;
  left: 3px;
  top: 3px;
  background-color: #d9d9d9;
}
.feedback-form_variants label input:checked + span::after {
  background-color: var(--green);
}
.feedback-form_btn {
  display: block;
  padding: 15px;
  font-size: 17px;
  background: var(--green);
  color: var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  margin: auto auto 0;
}
@media screen and (max-width: 1200px) {
  .feedback-popup {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 992px) {
  .feedback-form_content {
    column-gap: 25px;
  }
}
@media screen and (max-width: 840px) {
  .feedback-form_content {
    grid-template-columns: 58% 40%;
    column-gap: initial;
    row-gap: 10px;
  }
  .feedback-form_content .form-entry_wrap--textarea {
    grid-column: initial;
    grid-row: initial;
  }
  .feedback-form_controls {
    grid-column: 2/-1;
    grid-row: 1/4;
  }
  .feedback-form_sub {
    margin-bottom: 5px;
  }
  .feedback-popup h2 {
    margin: 0 0 20px;
  }
  .feedback-form .form-entry {
    padding: 12px 10px 12px 15px;
    border-radius: 10px;
  }
  .feedback-form textarea.form-entry {
    min-height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .feedback-popup {
    padding: 40px 15px 20px;
  }
  .feedback-form_variants {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .feedback-form_content {
    grid-template-columns: 100%;
  }
  .feedback-form_controls {
    grid-column: initial;
    grid-row: initial;
  }
  .feedback-form_controls br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .feedback-popup {
    border-radius: 10px;
  }
  .feedback-popup h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.fancybox-navigation .fancybox-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(/static/img/arrow.svg) center center / 50% no-repeat,
    var(--white);
}
.fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
  transform: scale(-1, 1);
}
.fancybox-navigation .fancybox-button svg {
  display: none;
}
.fancybox-image {
  border-radius: 45px;
}
@media screen and (max-width: 768px) {
  .fancybox-image {
    border-radius: 15px;
  }
}
.politic-page {
  padding-top: 40px;
  padding-bottom: 60px;
}
.politic-page ul {
  padding: 0 0 0 40px;
  margin: 20px 0;
}
.politic-page li {
  list-style: disc;
}
.politic-page li p {
  padding: 0;
  margin: 0 0 5px;
}
.politic-page table p {
  padding: 0;
}
.politic-page table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.politic-page table th,
.politic-page table td {
  padding: 5px;
  border: 1px solid currentColor;
}
.site-creator {
  padding: 20px 0;
  background-color: #555555;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.site-creator_link {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  font-weight: bold;
}
.site-creator_block {
  display: block;
}
@media (max-width: 480px) {
  .site-creator {
    font-size: 14px;
  }
}
.banner-fete img {
  display: block;
}