/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*
null styles
BEGIN
*/

html,
body {
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
/*  color: #181C19; */
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

/* 
fonts
BEGIN
*/

@font-face {
  font-family: 'Montserrat';
  src: url(/fonts/Montserrat-Thin.ttf);
  font-style: normal;
  font-weight: 200;
}

@font-face {
  font-family: 'Montserrat';
  src: url(/fonts/Montserrat-Light.ttf);
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Montserrat';
  src: url(/fonts/Montserrat-Regular.ttf);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'Montserrat';
  src: url(/Montserrat-Medium.ttf);
  font-style: normal;
  font-weight: 500;
}

/*
common
BEGIN
*/

* {
/*  font-family: 'Montserrat'; */
}

.pestovo-2023-wrapper {
  width: 100%;
  height: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-transition: padding 100ms linear;
  -o-transition: padding 100ms linear;
  transition: padding 100ms linear;
}

/*
buttons
BEGIN
*/

.pestovo-2023-button {
  width: 188px;
  padding: 13px;
  text-align: center;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.32); 
  color: white;
  cursor: pointer;
}

.pestovo-2023-button_outline {
  width: 188px;
  padding: 13px;
  text-align: center;
  background: transparent;
  -webkit-box-shadow: 0 0 0 1px inset rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 1px inset rgba(255, 255, 255, 0.5);
  color: white;
}

.pestovo-2023-input-block label {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #181C19;
  margin-bottom: 6px;
}

.pestovo-2023-input-block.hidden {
  display: none;
}

.pestovo-2023-input {
  width: 100%;
  border-radius: 0;
  outline: none;
  border: 1px solid rgba(24, 28, 25, 0.26);
  padding: 5px 10px;
  height: 38px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(24, 28, 25, 0.7);
}

.pestovo-2023-input:focus {
  border: 1px solid rgba(24, 28, 25, 0.5);
}

.pestovo-2023-input.error {
  border: 1px solid red;
}

/*
header
BEGIN
*/

.pestovo-2023-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

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

.pestovo-2023-header a {
  color: white;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}


.header__nav-link,
.header__nav-sublink {
    font-weight: 300;
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.3s linear;
    will-change: opacity;
}

.header__nav-link:hover,
.header__nav-sublink:hover,
.header__nav-link:focus,
.header__nav-sublink:focus {
    opacity: 0.3;
}

.header__nav-link_active,
.header__nav-sublink_active,
.header__nav-link:active,
.header__nav-sublink:active {
    opacity: 1;
    font-weight: 600;
}


.pestovo-2023-header nav {
  -webkit-transition: width 100ms linear;
  -o-transition: width 100ms linear;
  transition: width 100ms linear;
}

.pestovo-2023-header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-transition: gap 100ms linear;
  -o-transition: gap 100ms linear;
  transition: gap 100ms linear;
}

.pestovo-2023-header nav ul li a {
  padding: 16px 0;
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 18px;
}

.pestovo-2023-header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.pestovo-2023-header.scrolled {
  background: rgba(55, 55, 55, 0.64);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  /* background: #181C19; */
}

.pestovo-2023-header.scrolled a {
  /* color: #181C19; */
}

.pestovo-2023-header.scrolled .pestovo-2023-button {
  /* background: rgba(24, 28, 25, 0.88); */
  /* color: white; */
}

.pestovo-2023-header.scrolled .pestovo-2023-button_outline {
  /* background: transparent; */
  /* color: #181C19; */
  /* box-shadow: 0 0 0 1px inset rgba(24, 28, 25, 0.55); */
}

.pestovo-2023-logo {
  width: 106;
  height: 72px;
}


.pestovo-2023-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pestovo-2023-header.scrolled .pestovo-2023-logo img {
  /* filter: invert(1); */
  /* opacity: 0.74; */
}

.pestovo-2023-call {
  display: none;
}

/* 
main banner
BEGIN
*/

.pestovo-2023-main-banner {
  height: 686px;
  position: relative;
  overflow: hidden;
}

.pestovo-2023-main-banner ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0 25px;
}

.pestovo-2023-main-banner ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 28, 25, 0.34);
}

.pestovo-2023-main-banner ul li p {
  position: relative;
  z-index: 2;
  font-family: 'Montserrat';
  font-size: 40px;
  text-align: center;
  font-weight: 500;
  color: white;
}

.pestovo-2023-main-banner .swiper-pagination {
  bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.pestovo-2023-main-banner .swiper-pagination-bullet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid white;
  background: transparent;
  opacity: 1;
  margin: 0;
}

.pestovo-2023-main-banner .swiper-pagination-bullet-active::after {
  content: '';
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
}

.mobile-button-tel {
  display: none !important;
}

/* 
about
BEGIN
*/

.pestovo-2023-about {
  position: relative;
  padding: 70px 0 92px;
  background-color: #0F1923;
  background-image: -o-linear-gradient(170.12deg, #0F1923 35.07%, rgba(15, 25, 35, 0) 52.55%);
  background-image: linear-gradient(279.88deg, #0F1923 35.07%, rgba(15, 25, 35, 0) 52.55%);
}

.pestovo-2023-about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* z-index: -1; */
  background: url(../images/bg-1.png) center center / cover no-repeat;
}

.pestovo-2023-about .pestovo-2023-wrapper {
  position: relative;
  z-index: 1;
} 

.pestovo-2023-about .pestovo-2023-wrapper * {
  color: white;
}

.pestovo-2023-about .pestovo-2023-wrapper p {
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
  max-width: 692px;
  margin-bottom: 32px;
} 

.pestovo-2023-about .pestovo-2023-wrapper h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 32px;
}

.pestovo-2023-about__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 692px;
  margin-bottom: 46px;
}

.pestovo-2023-about__line {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

.pestovo-2023-about__line_50px {
  max-width: 50px;
}

.pestovo-2023-about .pestovo-2023-button {
  width: 226px;
  padding: 16px;
}

/* 
event types
BEGIN
*/

.pestovo-2023-event-types {
  position: relative;
  padding: 80px 0 80px;
  background: #F8F8F8;
}

.pestovo-2023-event-types .pestovo-2023-wrapper {
  position: relative;
  z-index: 2;
}

.pestovo-2023-event-types h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 48px;
  text-align: center;
  margin: 0 100px 36px;
}

.pestovo-2023-event-types .pestovo-2023-wrapper > p {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  line-height: 160%;
  font-size: 16px;
  margin: 0 100px 36px;
}

.pestovo-2023-event-types__rectangle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pestovo-2023-event-types__rectangle::after {
  content: '';
  position: absolute;
  top: calc(50% - 40px);
  /* left: 0; */
  width: 100vw;
  height: 100%;
  background: white;
}

/* mob vers */


.pestovo-2023-event-types__swiper-mob  {
  position: relative;
  display: none;
  padding: 0 0 60px 25px;
  overflow-x: hidden;
  overflow-y: visible;
}

.pestovo-2023-event-types__swiper-mob::before  {
 /* position: absolute; */
  top: 0;
  left: 0;
  content: '';
  width: 25px;
  height: 100%;
  background: #FFFFFF;
  z-index: 10;
}

.pestovo-2023-event-types__swiper-mob .swiper-button-next {
  position: absolute;
  top: 0;
  left: unset;
  right: 0;
  bottom: unset;
  height: 100%;
  width: 100px;
}

.pestovo-2023-event-types__swiper-mob .swiper-button-prev {
  position: absolute;
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  height: 100% !important;
  width: 100px;
  margin-top: 0 !important;
}

.swiper-button-prev__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  margin-bottom: 80px;
  background-color: #EAEAEA;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.pestovo-2023-event-types__swiper-mob .swiper-button-prev img {
  margin-right: 2px;
}

.pestovo-2023-event-types__swiper-mob .swiper-button-prev::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: #F8F8F8;
  width: 100%;
  height: calc(50% - 40px);
  z-index: 1;
}

.pestovo-2023-event-types__swiper-mob .swiper-button-prev::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background: #ffffff;
  width: 100%;
  height: calc(50% + 40px);
  z-index: 1;
}

.pestovo-2023-event-types__swiper-mob .swiper-button-next {
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  bottom: unset;
  height: 100% !important;
  width: 100px;
  margin-top: 0 !important;
}

.pestovo-2023-event-types__swiper-mob .swiper-pagination {
  position: absolute;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.pestovo-2023-event-types__swiper-mob .swiper-pagination-bullet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(24, 28, 25, 0.4);
  background: transparent;
  opacity: 1;
  margin: 0;
}

.pestovo-2023-event-types__swiper-mob .swiper-pagination-bullet-active::after {
  content: '';
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(24, 28, 25, 0.2);
}

/*  */

.pestovo-2023-event-types__swiper  {
  position: relative;
  padding: 0 100px 80px;
  overflow-x: hidden;
  overflow-y: visible;
}

.pestovo-2023-event-types__swiper .swiper-button-next {
  position: absolute;
  top: 0;
  left: unset;
  right: 0;
  bottom: unset;
  height: 100%;
  width: 100px;
}

.pestovo-2023-event-types__swiper .swiper-button-prev {
  position: absolute;
  top: 0;
  left: 0;
  right: unset;
  bottom: unset;
  height: 100% !important;
  width: 100px;
  margin-top: 0 !important;
}

.swiper-button-prev__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  margin-bottom: 80px;
  background-color: #EAEAEA;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.pestovo-2023-event-types__swiper .swiper-button-prev img {
  margin-right: 2px;
}

.pestovo-2023-event-types__swiper .swiper-button-prev::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: #F8F8F8;
  width: 100%;
  height: calc(50% - 40px);
  z-index: 1;
}

.pestovo-2023-event-types__swiper .swiper-button-prev::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background: #ffffff;
  width: 100%;
  height: calc(50% + 40px);
  z-index: 1;
}

.pestovo-2023-event-types__swiper .swiper-button-next {
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  bottom: unset;
  height: 100% !important;
  width: 100px;
  margin-top: 0 !important;
}

.swiper-button-next__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  margin-bottom: 80px;
  background-color: #EAEAEA;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.pestovo-2023-event-types__swiper .swiper-button-next img {
  margin-left: 2px;
}

.pestovo-2023-event-types__swiper .swiper-button-next::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background: #F8F8F8;
  width: 100%;
  height: calc(50% - 40px);
  z-index: 1;
}

.pestovo-2023-event-types__swiper .swiper-button-next::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background: #ffffff;
  width: 100%;
  height: calc(50% + 40px);
  z-index: 1;
}

.pestovo-2023-event-types__swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.pestovo-2023-event-types__swiper .swiper-pagination-bullet {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(24, 28, 25, 0.4);
  background: transparent;
  opacity: 1;
  margin: 0;
}

.pestovo-2023-event-types__swiper .swiper-pagination-bullet-active::after {
  content: '';
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(24, 28, 25, 0.2);
}

.pestovo-2023-event-types ul li {
  height: 330px;
  padding: 30px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.17);
}

.pestovo-2023-event-types ul li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
}

.pestovo-2023-event-types ul li > a::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.36);
}

.pestovo-2023-event-types ul li > a span {
  text-align: center;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 30px;
  color: white;
  pointer-events: none;
  z-index: 2;
  position: relative;
}

.pestovo-2023-event-types ul li > div {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
}

.pestovo-2023-event-types ul li > div::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: '';
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.36);
}

.pestovo-2023-event-types ul li > div span {
  text-align: center;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 30px;
  color: white;
  pointer-events: none;
  z-index: 2;
  position: relative;
}

/* SERVICES */

.pestovo-2023-services {
  position: relative;
  z-index: 2;
  background: url(../images/bg-services.png) center top / cover no-repeat;
  padding: 90px 0 160px;
}

.pestovo-2023-services .pestovo-2023-wrapper { 
  display: -ms-grid; 
  display: grid;
  -ms-grid-columns: 3fr 48px 4fr;
  grid-template-columns: 3fr 4fr;
  gap: 48px;  
}

.pestovo-2023-services__1st-col {

}

.pestovo-2023-services__1st-col h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 50px;
  color: white;
  margin-bottom: 35px;
}

.pestovo-2023-services__1st-col p {
  font-family: 'Montserrat';
  font-weight: 300;
  font-size: 16px;
  line-height: 200%;
  color: white;
  margin-bottom: 56px;
}

.pestovo-2023-services__1st-col .pestovo-2023-button {
  color: white;
}

.pestovo-2023-services__2nd-col ul {
}

.pestovo-2023-services__2nd-col ul li {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  color: #8D7C51;
  margin-bottom: 70px;
}

.pestovo-2023-services__2nd-col ul li:nth-child(1) {
  margin-left: 230px;
}

.pestovo-2023-services__2nd-col ul li:nth-child(2) {
  margin-left: 210px;
}

.pestovo-2023-services__2nd-col ul li:nth-child(3) {
  margin-left: 182px;
}

.pestovo-2023-services__2nd-col ul li:nth-child(4) {
  margin-left: 136px;
}

.pestovo-2023-services__2nd-col ul li:nth-child(5) {
  margin-left: 60px;
}

.pestovo-2023-services__2nd-col ul li:nth-child(6) {
  margin-left: -40px;
}

.pestovo-2023-services__2nd-col ul li:last-child {
  margin-bottom: 0;
}

/* rent */

/* banner */

.pestovo-2023-rent__banner {
  padding: 180px 0 140px;
  background: url(../images/bg-rent.jpg) center center / cover no-repeat;
}

.pestovo-2023-rent__banner h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.pestovo-2023-rent__banner p {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 200%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 60px;
}

.pestovo-2023-rent__banner .pestovo-2023-scroll-to-bottom-button {
  cursor: pointer;
}

.pestovo-2023-flex-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* form */

.pestovo-2023-rent__form {
  padding: 20px 90px 30px;
  background: white;
  margin-top: -40px;
  margin-bottom: 80px;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.03);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.03);
}

.pestovo-2023-rent-form {

}


.pestovo-2023-rent-form > h3 {
  font-weight: 400;
  font-size: 18px;
  text-align: center;
  color: #181C19;
  margin-bottom: 12px;
  line-height: 200%;
}

.pestovo-2023-rent-form__count-areas-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 23px;
}

.pestovo-2023-rent-form__yes-no {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 40px;
}

.pestovo-2023-rent-form__count-areas-decrement {
  width: 38px;
  height: 38px;
  padding-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.26);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #181C19;
  cursor: pointer;
}

.pestovo-2023-rent-form__count-areas-decrement::-moz-selection {
  color: inherit;
  background: inherit;
}

.pestovo-2023-rent-form__count-areas-decrement::selection {
  color: inherit;
  background: inherit;
}

.pestovo-2023-rent-form__count-areas-increment {
  width: 38px;
  height: 38px;
  padding-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.26);
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  text-align: center;
  color: #181C19;
  cursor: pointer;
}

.pestovo-2023-rent-form__count-areas-increment::-moz-selection {
  color: inherit;
  background: inherit;
}

.pestovo-2023-rent-form__count-areas-increment::selection {
  color: inherit;
  background: inherit;
}

.pestovo-2023-rent-form__count-areas {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 50px;
  line-height: 67px;
  text-align: center;
  color: #181C19;
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: -20px 0 0;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
}

.pestovo-2023-rent-form__type-areas-and-count-peoples-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 54px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.pestovo-2023-rent-form__type-areas {

}

.pestovo-2023-rent-form__type-areas h3 {
  font-weight: 400;
  font-size: 18px;
  color: #181C19;
  margin-bottom: 6px;
  line-height: 200%;
}

.pestovo-2023-rent-form__count-peoples {

}

.pestovo-2023-rent-form__count-peoples h3 {
  font-weight: 400;
  font-size: 18px;
  color: #181C19;
  margin-bottom: 6px;
  line-height: 200%;
}

.pestovo-2023-hr {
  height: 1px;
  width: 100%;
  background: rgba(24, 28, 25, 0.24);
  margin-bottom: 11px;
}

.pestovo-2023-grid-3col-gap-8 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr 8px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

/* select */

.pestovo-2023-select {
  position: relative;
}

.pestovo-2023-select__default {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 38px;
  border: 1px solid rgba(24, 28, 25, 0.26);
  padding: 5px 10px;
  font-size: 14px;
  color: rgba(24, 28, 25, 0.7);
  cursor: pointer;
}

.pestovo-2023-select__default::after {
  position: absolute;
  right: 10px;
  content: url('../images/icons/arrow-select.svg');
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
}

.pestovo-2023-select__default.active::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pestovo-2023-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 100ms linear;
  -o-transition: all 100ms linear;
  transition: all 100ms linear;
  background-color: #FFFFFF;
  border: 1px solid transparent;
}

.pestovo-2023-select__list.active {
  padding: 5px 0 10px;
  height: auto;
  overflow: visible;
  border-left: 1px solid rgba(24, 28, 25, 0.26);
  border-right: 1px solid rgba(24, 28, 25, 0.26);
  border-bottom: 1px solid rgba(24, 28, 25, 0.26);
  z-index: 2;
}

.pestovo-2023-select__list li {
  padding: 10px;
  font-size: 14px;
  color: rgba(24, 28, 25, 0.7);
  cursor: pointer;
}

.pestovo-2023-select__list li:hover {
  background: rgba(24, 28, 25, 0.1);
}

.pestovo-2023-select label {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #181C19;
  margin-bottom: 6px;
}


.pestovo-2023-select.hidden {
  display: none;
}

/* radio */

.pestovo-2023-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: rgba(24, 28, 25, 0.4);
  cursor: pointer;
}

.pestovo-2023-radio input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  width: 22px;
  height: 22px;
  /* box-shadow: inset 0 0 0 1px white; */
  border: 1px solid rgba(24, 28, 25, 0.7);
  border-radius: 50%;
  cursor: pointer;
}

.pestovo-2023-radio input:checked {
  -webkit-box-shadow: inset 0 0 0 4px white;
          box-shadow: inset 0 0 0 4px white;
  background-color: rgba(24, 28, 25, 0.7);
}

.pestovo-2023-radio.checked {
  color: rgba(24, 28, 25, 0.7);
}

.pestovo-2023-rent-form__footer-row {
  padding: 26px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.pestovo-2023-rent-form__footer-row h3 {
  font-weight: 400;
  font-size: 18px;
  color: #181C19;
  margin-bottom: 6px;
  line-height: 200%;
}

.pestovo-2023-rent-form__need-hall-with-coctails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}


.pestovo-2023-rent-form__footer-row .pestovo-2023-text-input-to-row {
  font-size: 14px;
  line-height: 135.02%;
  color: #181C19;
  padding-left: 26px;
}

#coctails-peoples {
  width: 172px;
  height: 38px;
  border-radius: 0;
  outline: none;
  border: 1px solid rgba(24, 28, 25, 0.26);
  padding: 5px 10px;
  margin-left: 6px;
  font-weight: 400;
  font-size: 14px;
  color: rgba(24, 28, 25, 0.7);
}

#coctails-peoples.error {
  border: 1px solid red;
}

.pestovo-2023-button_black {
  color: white;
  background: #181C19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 226px;
  height: 50px;
}

.pestovo-2023-rent-form__need-hall-with-coctails-col {
  width: 100%;
}

.pestovo-2023-rent-form__apply-button-section {
  /* width: 100%; */
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-left: auto;
}

/* list */

.pestovo-2023-rent__list {
  padding-bottom: 104px;
}

/* card */

.pestovo-2023-rent-card {
  background: white;
  padding: 33px;
  border: 1px solid rgba(0, 0, 0, 0.17);
  margin-bottom: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 54px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 524px;
}

.pestovo-2023-rent-card:last-child {
  margin-bottom: 0;
}

.pestovo-2023-rent-card__cover {
  width: 490px; 
  -o-object-fit: cover; 
     object-fit: cover;
}

.pestovo-2023-rent-card__content h3 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 30px;
  color: #181C19;
  margin-bottom: 18px;
}

.pestovo-2023-rent-card__content > p {
  font-weight: 300;
  font-size: 16px;
  line-height: 188%;
  color: #181C19;
  margin-bottom: 16px;
}

.pestovo-2023-rent-card__content > h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: rgba(24, 28, 25, 0.42);
  margin-bottom: 20px;
}

.pestovo-2023-rent-card__seating-arrangement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pestovo-2023-rent-card__seating {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 202px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding-top: 10px;
}

.pestovo-2023-rent-card__seating svg {
  margin-bottom: auto;
}

.pestovo-2023-rent-card__seating.green  svg path {
  fill: #59965A;
}


.pestovo-2023-rent-card__seating.green svg circle {
  fill: #59965A;
}

.pestovo-2023-rent-card__seating.green svg rect {
  fill: #59965A;
}

.pestovo-2023-rent-card__seating span {
  font-style: italic;
  font-weight: 200;
  font-size: 16px;
  line-height: 188%;
  color: #181C19;
  width: 100%;
  text-align: center;
}

.pestovo-2023-rent-card__plan {
  width: 160px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;  
}

.pestovo-2023-rent-card__vip-text {

}

.pestovo-2023-rent-card__vip-text span {
font-weight: 600;
font-size: 16px;
line-height: 188%;
color: #59965A;
}

.pestovo-2023-rent__list-button-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 70px;
}

.pestovo-2023-rent__list-button-section .pestovo-2023-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 226px;
  height: 50px;
}


/* ho to het there */

.pestovo-2023-how-to-get-there {
  height: 644px;
  padding-top: 180px;
  background: #F5F5F5 url(../images/map.png) right center / contain no-repeat;
}

.pestovo-2023-how-to-get-there h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 50px;
  color: #181C19;
  margin-bottom: 26px;
}

.pestovo-2023-how-to-get-there .pestovo-2023-wrapper > p {
  max-width: 580px;
  font-weight: 400;
  font-size: 16px;
  line-height: 188%;
  color: #181C19;
}

/* resons */

.pestovo-2023-reasons {
  position: relative;
  background: url(../images/winter.jpg) center center / cover no-repeat;
  padding-top: 38px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.pestovo-2023-reasons::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.42)), to(rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 100%);
}

.pestovo-2023-reasons .pestovo-2023-wrapper {
  position: relative;
  z-index: 2;
}

.pestovo-2023-reasons h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 50px;
  color: #FFFFFF;
  margin-bottom: 42px;
}

.pestovo-2023-reasons__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(32, 71, 92, 0.33);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  gap: 40px;
  padding: 44px 20px 54px;
}

.pestovo-2023-reason {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 250px;
  height: auto;
}


.pestovo-2023-reason span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 72px;
  height: 72px;
  padding-bottom: 12px;
  border-radius: 50%;
  color: #32789C;
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  background: white;
  margin-bottom: 18px;  
}

.pestovo-2023-reason p {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.pestovo-2023-reasons__swiper {
  display: none;
}

/* footer */

.pestovo-2023-footer {
  padding: 56px 0 86px;
  background: #0F1923 url(../images/cotteg.png) center center / contain no-repeat;
}

.pestovo-2023-footer .pestovo-2023-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pestovo-2023-footer .pestovo-2023-wrapper h2 {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.pestovo-2023-footer .pestovo-2023-wrapper p {
  font-weight: 300;
  font-size: 18px;
  line-height: 188%;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 26px;
}

.pestovo-2023-footer .pestovo-2023-button_outline {
  color: white;
  margin-bottom: 14px;
  height: 50px;
  width: 226px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pestovo-2023-footer .pestovo-2023-show-modal-apply {
  background-color: #FFFFFF;
  color:  #0F1923;
  height: 50px;
  width: 226px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* apply modal */

.pestovo-2023-modal-apply {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  max-width: 500px;
  background: white;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
  padding: 45px 43px 50px;
  /* transform: translate(-50%, -50%); */
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.pestovo-2023-modal-apply.active {
  position: relative;
  left: unset;
  top: unset;
  opacity: 1;
  z-index: 100;
}

.pestovo-2023-modal-apply__hide {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  cursor: pointer;
}

.pestovo-2023-modal-apply input[type="text"],
.pestovo-2023-modal-apply input[type="email"],
.pestovo-2023-modal-apply textarea {
  width: 100%;
  padding: 6px 0;
  border: none;
  border-bottom: 1px solid black;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 16px;
  line-height: 180%;
  color: rgba(0, 0, 0, 1);
  outline: none;
}

.pestovo-2023-modal-apply textarea {
  resize: none;
}

.pestovo-2023-modal-apply input[type="text"]::-webkit-input-placeholder, .pestovo-2023-modal-apply input[type="email"]::-webkit-input-placeholder, .pestovo-2023-modal-apply textarea::-webkit-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 180%;
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.pestovo-2023-modal-apply input[type="text"]::-moz-placeholder, .pestovo-2023-modal-apply input[type="email"]::-moz-placeholder, .pestovo-2023-modal-apply textarea::-moz-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 180%;
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.pestovo-2023-modal-apply input[type="text"]:-ms-input-placeholder, .pestovo-2023-modal-apply input[type="email"]:-ms-input-placeholder, .pestovo-2023-modal-apply textarea:-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 180%;
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.pestovo-2023-modal-apply input[type="text"]::-ms-input-placeholder, .pestovo-2023-modal-apply input[type="email"]::-ms-input-placeholder, .pestovo-2023-modal-apply textarea::-ms-input-placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 180%;
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.pestovo-2023-modal-apply input[type="text"]::placeholder,
.pestovo-2023-modal-apply input[type="email"]::placeholder,
.pestovo-2023-modal-apply textarea::placeholder {
  font-weight: 300;
  font-size: 16px;
  line-height: 180%;
  color: rgba(0, 0, 0, 0.7);
  opacity: 1;
}

.pestovo-2023-apply-form-send {
  width: 182px;
  margin: 14px 0 32px;
}

.pestovo-2023-modal-apply__agreement {

}

.pestovo-2023-modal-apply__agreement input {
  display: none;
}

.pestovo-2023-modal-apply__agreement label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 12px;
  font-weight: 300;
  font-size: 14px;
  line-height: 152%;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.pestovo-2023-modal-apply__agreement input:checked + label {
  color: #000000;
}

.pestovo-2023-modal-apply__agreement label::before {
  content: '';
  width: 16px;
  height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.7);
  margin-top: 2px;
}

.pestovo-2023-modal-apply__agreement input:checked + label::before {
  content: url(../images/icons/checked.svg);
  border: 1px solid black;
}

/* thankyou modal */

.pestovo-2023-modal-thankyou {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: 500px;
  background: white;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
  padding: 45px 43px 50px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.pestovo-2023-modal-thankyou p {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000000;
}

.pestovo-2023-modal-thankyou.active {
  opacity: 1;
  z-index: 101;
}

.pestovo-2023-modal-thankyou__hide {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  cursor: pointer;
}

.pestovo-2023-show-modal-thankyou {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 10px;
  width: 100%;
  text-align: center;
  opacity: 0.6;
  cursor: pointer;
}

.pestovo-2023-show-modal-thankyou:hover {
  opacity: 1;
}

/* call modal */

/* thankyou modal */

.pestovo-2023-modal-call {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100vw;
  max-width: 400px;
  background: white;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.05);
  padding: 45px 43px 50px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.pestovo-2023-modal-call a {
/*  font-family: 'Montserrat'; */
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  width: 100%;
  display: block;
  color: #000000;
}

.pestovo-2023-modal-call.active {
  opacity: 1;
  z-index: 101;
}

.pestovo-2023-modal-call__hide {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 52px;
  height: 52px;
  cursor: pointer;
}

/* plug */

.pestovo-2023-plug {
}

.pestovo-2023-plug.active {
  width: 100vw;
  height: 100vh;
  padding: 100px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
  overflow-x: hidden;
  overflow-y: scroll;
}

/**
Media
queries
*/

/* less then 1700px */

@media screen and (max-width: 1700px) {

  .pestovo-2023-rent-card {
    gap: 44px;
  }

  .pestovo-2023-rent-card__cover {
    width: 440px; 
    -o-object-fit: cover; 
       object-fit: cover;
  }

  .pestovo-2023-services .pestovo-2023-wrapper {
    gap: 0;
  }

  .pestovo-2023-how-to-get-there {
    background: #F5F5F5 url(../images/map.png) center center / cover no-repeat;
  }
}

/* less then 1300px */

@media screen and (max-width: 1300px) {
  
  /* wrapper */

  .pestovo-2023-wrapper {
    padding: 0 25px;
  }

  /* header */

  .pestovo-2023-header nav ul {
    gap: 25px;
  }
  
  /* types */

  .pestovo-2023-event-types h2 {
    margin: 0 0 40px;
  }

  .pestovo-2023-event-types .pestovo-2023-wrapper > p {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: unset;
       -moz-column-gap: unset;
            column-gap: unset;
    font-size: 16px;
    margin: 0 0 40px;
  }

  .pestovo-2023-event-types .swiper-button-prev,
  .pestovo-2023-event-types .swiper-button-next {
    display: none;
  }

  .pestovo-2023-event-types__swiper {
    padding: 0 0 60px;
  }

  .pestovo-2023-rent-card {
    gap: 30px;
    padding: 22px;
    min-height: 484px;
  }

  .pestovo-2023-rent-card__cover {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .pestovo-2023-rent-card__content h3 {
    font-size: 26px;
  }

  .pestovo-2023-rent-card__content > p {
    font-size: 15px;
    line-height: 168%;
  }

  .pestovo-2023-rent-card__seating-arrangement {
    gap: 16px;
  }

  .pestovo-2023-rent-card__seating {
    max-width: 190px;
  }

  .pestovo-2023-rent-card__seating span {
    font-size: 15px;
  }

  .pestovo-2023-rent-card__plan {
    width: 146px;
  }

  .pestovo-2023-rent-card__plan img {
    width: 100%;
  }

  .pestovo-2023-rent-form__need-hall-with-coctails {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .pestovo-2023-rent-form__footer-row .pestovo-2023-text-input-to-row {
    padding-left: 0;
  }

  .pestovo-2023-services__1st-col p {
    font-size: 14px;
  }

  .pestovo-2023-services__2nd-col ul li {
    font-size: 19px;
  }
}

/* less then 1100px */

@media screen and (max-width: 1100px) {

  /* header */

  .pestovo-2023-header nav {
    position: absolute;
    left: 0;
    top: 92px;
    width: 0;
    height: calc(100vh - 92px);
    z-index: -1;
    overflow: hidden;
  }

  .pestovo-2023-header nav.active {
    width: 210px;
  }

  .pestovo-2023-header.scrolled {
    /* background: #033011; */
    /* background: #8D7C51; */
    /* background: #474744; */
    background: #1b2938e5;
  }

  .pestovo-2023-header.scrolled nav {
    /* background: rgba(77, 77, 77, 0.64); */
    /* backdrop-filter: blur(3px); */
    /* background: #033011; */
    /* background: #8D7C51; */
    /* background: #31312f; */
    /* background: #0F1923; */
    background: #1b2938;
  }

  .pestovo-2023-header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 25px 0;
  }

  .pestovo-2023-header nav ul li a {
    /* color: #0F1923; */
    padding: 10px 25px;
  }

  /* types */

  .pestovo-2023-event-types ul li {
    height: 260px;
    padding: 26px;
  }

  .pestovo-2023-rent-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 22px;
  }

  .pestovo-2023-rent-card__cover {
    width: 100%;
    height: 400px;
  }

  .pestovo-2023-rent-card__seating-arrangement {
    gap: 24px;
  }

  .pestovo-2023-text-input-to-row label {
    display: inline-block;
    margin-bottom: 12px;
  }

  #coctails-peoples {
    margin-left: 0;
  }

  .pestovo-2023-grid-3col-gap-8 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .pestovo-2023-services {
    background: url(../images/bg-services-2.jpg) center top / 100% no-repeat;
    padding: 90px 0 160px;
  }

  .pestovo-2023-services .pestovo-2023-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .pestovo-2023-services__1st-col h2 {
    font-size: 42px;
  }

  .pestovo-2023-services__1st-col p {
    font-size: 16px;
    line-height: 160%;
  }

  .pestovo-2023-services__1st-col br {
    display: none;
  }

  .pestovo-2023-services__2nd-col ul li {
    font-size: 21px;
    margin-left: 0 !important;
    color: #181C19;
    margin-bottom: 35px;
  }

  .pestovo-2023-rent__list-button-section {
    /* display: none; */
    padding-top: 10px;
  }

  .pestovo-2023-rent__list {
    padding-bottom: 0;
  }

  .pestovo-2023-how-to-get-there {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 40px 0 64px;
    background: #ffffff;
  }

  .pestovo-2023-how-to-get-there h2 {
    font-size: 35px;
  }

  .pestovo-2023-how-to-get-there .pestovo-2023-wrapper > p {
    margin-bottom: 40px;
  }

  .pestovo-2023-how-to-get-there__mobile-map {
    height: 640px;
    width: 100%;
    background: #F5F5F5 url(../images/map.png) center center / cover no-repeat;
  }
}

/* less then 800px */

@media screen and (max-width: 800px) {
  .pestovo-2023-header .pestovo-2023-button {
    background: transparent;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .pestovo-2023-header.scrolled .pestovo-2023-button {
    background: transparent;
    /* color: #181C19; */
  }
  
  .pestovo-2023-header .pestovo-2023-button_outline {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .pestovo-2023-header.scrolled .pestovo-2023-button_outline {
    -webkit-box-shadow: none;
            box-shadow: none;
  }

  .pestovo-2023-header .pestovo-2023-show-modal-call {
    display: none;
  }

  .pestovo-2023-call {
    display: block;
  }

  .pestovo-2023-main-banner {
    height: 80vh;
  }

  .pestovo-2023-main-banner ul li p {
    font-size: 36px;
  }

  .mobile-button-tel {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .desktop-button-tel {
    display: none !important;
  }

  /* about */

  .pestovo-2023-about {
    padding: 80px 0 320px;
  }

  .pestovo-2023-about::before {
    background: url(../images/bg-1-m.png) center bottom / contain no-repeat;
  }

  .pestovo-2023-about .pestovo-2023-wrapper h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }

  .pestovo-2023-about .pestovo-2023-wrapper p {
    line-height: 160%;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .pestovo-2023-about__line_50px {
    max-width: none;
  }

  .pestovo-2023-about .pestovo-2023-button {
    display: none;
  }

  /* types */

  .pestovo-2023-event-types {
    background: #FFFFFF;
  }

  .pestovo-2023-event-types h2 {
    text-align: left;
    font-size: 42px;
  }

  .pestovo-2023-event-types__swiper {
    display: none;
  }

  .pestovo-2023-event-types__swiper-mob {
    display: -webkit-box;
    display: -ms-flexbox;
/*    display: flex; */
  }

  .pestovo-2023-event-types ul li {
    height: 340px;
  }

  .pestovo-2023-rent-card__seating-arrangement {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .pestovo-2023-rent-card__cover {
    height: 300px;
  }

  .pestovo-2023-rent-card__content > p {
    line-height: 160%;
    font-size: 14px;
  }

  .pestovo-2023-rent-card__content h3 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 15px;
  }

  .pestovo-2023-rent-card__content p {
    margin-bottom: 12px;
  }

  .pestovo-2023-rent-form {
    padding: 20px 22px 40px;
  }

  .pestovo-2023-rent-form__footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }

  .pestovo-2023-rent-form__apply-button-section {
    margin: 0 auto; 
  }

  .pestovo-2023-rent-form h3 {
    line-height: 26px;
  }

  .pestovo-2023-rent-form__type-areas-and-count-peoples-row {
    gap: 38px;
  }

  .pestovo-2023-footer {
    background: #0F1923 url(../images/cotteg.png) center bottom / contain no-repeat;
  }


  .pestovo-2023-services__2nd-col ul li {
    font-size: 18px;
  }

  .pestovo-2023-rent__banner {
    padding: 68px 0 100px;
  }

  .pestovo-2023-rent__banner h2 {
    font-size: 35px;
    line-height: 47px;
  }

  .pestovo-2023-rent__banner p {
    margin-bottom: 0;
    font-size: 16px;
  }

  .pestovo-2023-scroll-to-bottom-button {
    display: none;
  }

  .pestovo-2023-how-to-get-there {
    padding: 24px 0 62px;
  }

  .pestovo-2023-reasons h2 {
    font-size: 35px;
  }

  /* reasons */

  .pestovo-2023-reasons {
    padding: 38px 0 80px;
  }

  .pestovo-2023-reasons__list {
    display: none;
  }

  .pestovo-2023-reasons__swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 74px;
  }

  .pestovo-2023-reasons::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.28)));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.28) 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.28) 100%);
  }

  .pestovo-2023-reasons__swiper .swiper-pagination-bullet {
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.36);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.36);
    opacity: 0.64;
  }

  .pestovo-2023-reasons__swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }

  /* 
  NOT WORKING IN SWIPER!!!!
  .pestovo-2023-reasons__swiper .swiper-wrapper {
    background-color: #59965A;
  }
  */
  
  /* 
  NOT WORKING IN SWIPER!!!!
  backdrop-filter: blur(3px);
  */

  .pestovo-2023-reason {
    padding: 34px 24px 50px;
    background: rgba(32, 71, 92, 0.33);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
  }

  .pestovo-2023-reasons__swiper .swiper-pagination  {
    bottom: 0;
  }

  .pestovo-2023-reasons__swiper .swiper-pagination-bullet {
    width: 18px;
    height: 18px; 
    border-radius: 50%;
    opacity: 0.5;
    background-color: #fff;
    margin: 0 8px !important; 
  }

  .pestovo-2023-reasons__swiper .swiper-pagination-bullet-active {
    opacity: 1;
  }

}

/* less then 520px */

@media screen and (max-width: 520px) {
  .pestovo-2023-how-to-get-there__mobile-map {
    background: #F5F5F5 url(../images/map-mob.jpg) center center / cover no-repeat;
  }
}

/* less then 500px */

@media screen and (max-width: 500px) {
  .pestovo-2023-logo {
    width: 98px;
  }

  .pestovo-2023-main-banner ul li p {
    font-size: 30px;
  }

  /* about */

  .pestovo-2023-about {
    padding: 36px 0 320px;
  }

  .pestovo-2023-about .pestovo-2023-wrapper h2 {
    font-size: 30px;
    margin: 0 0 20px;
  }

  /* types */

  .pestovo-2023-event-types {
    position: relative;
    padding: 36px 0 40px;
  }

  .pestovo-2023-event-types h2 {
    font-size: 30px;
    margin: 0 0 20px;
  }

  .pestovo-2023-event-types ul li {
    height: 220px;
    padding: 22px;
  }

  .pestovo-2023-event-types .pestovo-2023-wrapper > p {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .pestovo-2023-about .pestovo-2023-wrapper p {
    font-size: 14px;
  }

  .pestovo-2023-event-types ul li a span {
    font-size: 21px;
  }

  .pestovo-2023-footer .pestovo-2023-wrapper p {
    font-size: 16px;
  }

  .pestovo-2023-services {
    background: url(../images/bg-services-2.jpg) center top / contain no-repeat;
    padding: 60px 0;
  }

  .pestovo-2023-services .pestovo-2023-wrapper {
    gap: 200px;
  }

  .pestovo-2023-services__1st-col p {
    font-size: 16px;
  }

  .pestovo-2023-services__1st-col br {
    display: none;
  }
  
  .pestovo-2023-services__2nd-col ul li {
    color: #8D7C51;
  }

  .pestovo-2023-how-to-get-there .pestovo-2023-wrapper > p {
    line-height: 160%;
  }

  .pestovo-2023-how-to-get-there__mobile-map {
    height: 400px;
    background: #F5F5F5 url(../images/map-mob.jpg) center center / contain no-repeat;
  }

  .pestovo-2023-rent-card__content h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .pestovo-2023-rent-card__content > h4 {
    font-size: 14px;
    line-height: 160%;
  }

  .pestovo-2023-rent-card__seating {
    max-width: 110px;
  }

  .pestovo-2023-rent-card__seating span {
    font-size: 14px;
    line-height: 160%;
  }

  .pestovo-2023-rent-card {
    gap: 16px;
    padding: 16px;
  }

  .pestovo-2023-rent-card__cover {
    height: 180px;
  }

  .pestovo-2023-reasons {
    padding: 38px 0 30px;
  }

  .pestovo-2023-reasons h2 {
    font-size: 32px;
  }

  .pestovo-2023-reasons__swiper {
    padding-bottom: 48px;
  }

  .pestovo-2023-reason {
    padding: 28px 20px 34px;
  }
}

/* less then 476px */

@media screen and (max-width: 476px) {
  
  .pestovo-2023-rent-form__type-areas-and-count-peoples-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pestovo-2023-services .pestovo-2023-wrapper {
    gap: 180px;
  }
}


/* less then 450px */

@media screen and (max-width: 450px) {

  .pestovo-2023-header .pestovo-2023-button {
    font-size: 12px;
    padding: 10px 0;
  }

  .pestovo-2023-logo {
    width: 80px;
  }

  .pestovo-2023-wrapper {
    padding: 0 16px;
  }

  .pestovo-2023-footer .pestovo-2023-wrapper p {
    font-size: 14px;
  }

  .pestovo-2023-services .pestovo-2023-wrapper {
    gap: 160px;
  }

  .pestovo-2023-services__1st-col p {
    margin-bottom: 36px;
  }
}

/* less then 420px */

@media screen and (max-width: 420px) {

  .pestovo-2023-services .pestovo-2023-wrapper {
    gap: 140px;
  }

  .pestovo-2023-services__1st-col p {
    font-size: 14px;
    margin-bottom: 34px;
  }
}

/* less then 400px */

@media screen and (max-width: 400px) {

  .pestovo-2023-services {
    background: url(../images/bg-services-2.jpg) center top / cover no-repeat;
    padding: 60px 0 180px;
  }

  .pestovo-2023-services .pestovo-2023-wrapper {
    gap: 40px;
  }

  .pestovo-2023-services__1st-col p {
  }

  .pestovo-2023-services__2nd-col ul li {
    color: #ffffff;
    margin-bottom: 20px;
  }
}